]> git.pld-linux.org Git - packages/dump.git/blob - dump-as_needed-fix.patch
- release 4 (by relup.sh)
[packages/dump.git] / dump-as_needed-fix.patch
1 --- dump-0.4b43/configure.in.orig       2011-02-03 19:33:01.000000000 +0100
2 +++ dump-0.4b43/configure.in    2011-02-03 19:37:25.852692227 +0100
3 @@ -407,9 +407,9 @@
4  dnl Check for Ext2fs headers and libraries
5  dnl
6  AC_CHECK_HEADER(ext2fs/ext2fs.h, [ext2fs_h=yes], [ext2fs_h=no], [-])
7 -PKG_CHECK_MODULES(EXT2FS, [ext2fs])
8 +PKG_CHECK_MODULES(EXT2FS, [ext2fs com_err])
9  if test -n "$STATIC" ; then
10 -       EXT2FS_LIBS=`$PKG_CONFIG --libs --static ext2fs`
11 +       EXT2FS_LIBS=`$PKG_CONFIG --libs --static ext2fs com_err`
12  fi
13  if test "$ext2fs_h" = no -o "x$EXT2FS_LIBS" = "x"; then
14         AC_MSG_ERROR(You need to install the Ext2fs libraries from the E2fsprogs distribution first - hint: make install-libs)
15 @@ -510,7 +510,7 @@
16  dnl
17  dnl Check for rl_completion_matches
18  dnl
19 -AC_CHECK_LIB(readline, rl_completion_matches, [rlcm=yes], [rlcm=no], "-ltermcap")
20 +AC_CHECK_LIB(readline, rl_completion_matches, [rlcm=yes], [rlcm=no], "$rdllib")
21  if test "$rlcm" = yes; then
22         AC_DEFINE([HAVE_READLINE_RLCM],1,[Define this if your readline libs have the rl_completion_matches library.])
23  fi
24 @@ -518,7 +518,7 @@
25  dnl
26  dnl Check for rl_completion_append_character
27  dnl
28 -AC_CHECK_LIB(readline, rl_completion_append_character, [rcac=yes], [rcac=no], "-ltermcap")
29 +AC_CHECK_LIB(readline, rl_completion_append_character, [rcac=yes], [rcac=no], "$rdllib")
30  if test "$rcac" = yes; then
31         AC_DEFINE([HAVE_READLINE_CAC],1,[Define this if your readline libs have the rl_completion_append_character variable.])
32  fi
This page took 0.029165 seconds and 3 git commands to generate.