0004-configure-use-LDFLAGS-from-command-line.patch 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. From 5c58b8737dc9ccf9407f6725f6f07b764d6abb22 Mon Sep 17 00:00:00 2001
  2. From: Romain Naour <romain.naour@openwide.fr>
  3. Date: Thu, 22 Jan 2015 23:47:55 +0100
  4. Subject: [PATCH 4/6] configure: use LDFLAGS from command line
  5. The bzip2 support may not enabled due to a build error
  6. during the checking for bzip2 library.
  7. The library path (-L) to bzip2 library is missing.
  8. Signed-off-by: Romain Naour <romain.naour@openwide.fr>
  9. ---
  10. unix/configure | 4 ++--
  11. 1 file changed, 2 insertions(+), 2 deletions(-)
  12. diff --git a/unix/configure b/unix/configure
  13. index 489009f..de9fd68 100644
  14. --- a/unix/configure
  15. +++ b/unix/configure
  16. @@ -106,11 +106,11 @@ int main()
  17. return 0;
  18. }
  19. _EOF_
  20. - $CC $CFLAGS -o conftest conftest.c -lbz2 > /dev/null 2>/dev/null
  21. + $CC $CFLAGS $LDFLAGS -o conftest conftest.c -lbz2 > /dev/null 2>/dev/null
  22. if test $? -eq 0; then
  23. echo "-- OS supports bzip2 - linking in bzip2"
  24. CFLAGS="${CFLAGS} -DBZIP2_SUPPORT"
  25. - LFLAGS2="${LFLAGS2} -lbz2"
  26. + LFLAGS2="${LFLAGS2} ${LDFLAGS} -lbz2"
  27. else
  28. echo "-- Either bzlib.h or libbz2.a not found - no bzip2"
  29. fi
  30. --
  31. 1.9.3