File: no-ltdl-convenience.patch

package info (click to toggle)
diagnostics 0.3.3-12.3
  • links: PTS
  • area: main
  • in suites: bookworm, trixie
  • size: 4,168 kB
  • sloc: cpp: 13,604; sh: 10,950; makefile: 225; ansic: 9
file content (25 lines) | stat: -rw-r--r-- 790 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Description: Disable AC_LIBLTDL_CONVENIENCE and use the distro's ltdl
 For some reason configure.ac enables AC_LIBLTDL_CONVENIENCE which is
 rather pointless in a distro that comes with its own ltdl and also
 interferes with the build (#980642).  This patch disables that.
Author: Dennis Filder <d.filder@web.de>
Bug-Debian: https://bugs.debian.org/980642
Last-Update: 2021-02-10

--- diagnostics-0.3.3/configure.ac
+++ diagnostics-0.3.3/configure.ac
@@ -29,9 +29,11 @@ AC_PROG_LN_S
 AC_PROG_MAKE_SET
 AC_PROG_AWK
 # new libtool versions:
-# LT_INIT
-# LTDL_INIT
-AC_LIBLTDL_CONVENIENCE
+LT_INIT
+LTDL_INIT
+
+#AC_LIBLTDL_CONVENIENCE # disabled as this is pointless/redundant in
+#                       # a distro shipping its own ltdl (see also: #652201)
 AC_WITH_LTDL
 AC_PROG_LIBTOOL