netatalk: prevent use of LD_LIBRARY_PATH
Add a patch to prevent use of LD_LIBRARY_PATH when checking for BDB libs This caused build failure when host = target Signed-off-by: Nicolas Thill <nico@openwrt.org>
This commit is contained in:
parent
829fd8fc9a
commit
0fa95f0e25
1 changed files with 26 additions and 0 deletions
26
net/netatalk/patches/002-ld_library_path.patch
Normal file
26
net/netatalk/patches/002-ld_library_path.patch
Normal file
|
@ -0,0 +1,26 @@
|
|||
--- a/macros/db3-check.m4
|
||||
+++ b/macros/db3-check.m4
|
||||
@@ -148,9 +148,9 @@ AC_DEFUN([AC_PATH_BDB],[
|
||||
dnl -- LD_LIBRARY_PATH on many platforms. This will be fairly
|
||||
dnl -- portable hopefully. Reference:
|
||||
dnl -- http://lists.gnu.org/archive/html/autoconf/2009-03/msg00040.html
|
||||
- eval export $shlibpath_var=$bdblibdir
|
||||
+# eval export $shlibpath_var=$bdblibdir
|
||||
NETATALK_BDB_TRY_LINK
|
||||
- eval export $shlibpath_var=$saved_shlibpath_var
|
||||
+# eval export $shlibpath_var=$saved_shlibpath_var
|
||||
|
||||
if test x"${atalk_cv_bdb_version}" = x"yes"; then
|
||||
BDB_CFLAGS="-I${bdbdir}/include${subdir}"
|
||||
@@ -171,9 +171,9 @@ AC_DEFUN([AC_PATH_BDB],[
|
||||
CPPFLAGS="-I${bdbdir}/include${subdir} $CPPFLAGS"
|
||||
LDFLAGS="-L$bdblibdir $LDFLAGS"
|
||||
|
||||
- eval export $shlibpath_var=$bdblibdir
|
||||
+# eval export $shlibpath_var=$bdblibdir
|
||||
NETATALK_BDB_TRY_LINK
|
||||
- eval export $shlibpath_var=$saved_shlibpath_var
|
||||
+# eval export $shlibpath_var=$saved_shlibpath_var
|
||||
|
||||
if test x"${atalk_cv_bdb_version}" = x"yes"; then
|
||||
BDB_CFLAGS="-I${bdbdir}/include${subdir}"
|
Loading…
Reference in a new issue