libbacktrace: Suppress the default action-if-found for AC_CHECK_LIBS.
authorIain Buclaw <ibuclaw@gdcproject.org>
Sun, 5 Aug 2018 20:24:59 +0000 (20:24 +0000)
committerIain Buclaw <ibuclaw@gcc.gnu.org>
Sun, 5 Aug 2018 20:24:59 +0000 (20:24 +0000)
Zlib is not a dependency of libbacktrace, and so it shouldn't be added
to LIBS.

libbacktrace/

* configure.ac: Move define of HAVE_ZLIB into check for -lz.
* Makefile.in: Regenerate.
* config.h.in: Likewise.
* configure: Likewise.

From-SVN: r263320

libbacktrace/ChangeLog
libbacktrace/Makefile.in
libbacktrace/config.h.in
libbacktrace/configure
libbacktrace/configure.ac

index 0a117a08042def66ceb297677a37092c638a5fa2..140bf4d155b2027b4bc6557777e35d511468f11a 100644 (file)
@@ -1,3 +1,10 @@
+2018-08-05 Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       * configure.ac: Move define of HAVE_ZLIB into check for -lz.
+       * Makefile.in: Regenerate.
+       * config.h.in: Likewise.
+       * configure: Likewise.
+
 2018-08-01  Tony Reix  <tony.reix@atos.net>
 
        * xcoff.c (struct xcoff_line, struct xcoff_line_vector): Remove.
index f7f849bdeaf2da4e440f86b75d1d82c2f5a54713..8b5dc3e5b41bffe52c9618c89d8962cdd3c640d6 100644 (file)
@@ -16,7 +16,7 @@
 @SET_MAKE@
 
 # Makefile.am -- Backtrace Makefile.
-# Copyright (C) 2012-2017 Free Software Foundation, Inc.
+# Copyright (C) 2012-2018 Free Software Foundation, Inc.
 
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions are
index c19b6e430cb57d5c8b5979de395cf6984c928b69..6205fc55fa574f3742cc22db067bd3dac274687b 100644 (file)
@@ -34,9 +34,6 @@
 /* Define to 1 if you have the <inttypes.h> header file. */
 #undef HAVE_INTTYPES_H
 
-/* Define to 1 if you have the `z' library (-lz). */
-#undef HAVE_LIBZ
-
 /* Define to 1 if you have the <link.h> header file. */
 #undef HAVE_LINK_H
 
index 87cadda6c8c68968ed2b834390bc478443c9211a..d5a9d79e15c467100f4c3181d9da24afb53f46e7 100755 (executable)
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_compress" >&5
 $as_echo "$ac_cv_lib_z_compress" >&6; }
 if test "x$ac_cv_lib_z_compress" = x""yes; then :
-  cat >>confdefs.h <<_ACEOF
-#define HAVE_LIBZ 1
-_ACEOF
-
-  LIBS="-lz $LIBS"
-
-fi
-
-if test $ac_cv_lib_z_compress = "yes"; then
 
 $as_echo "#define HAVE_ZLIB 1" >>confdefs.h
 
 fi
+
  if test "$ac_cv_lib_z_compress" = yes; then
   HAVE_ZLIB_TRUE=
   HAVE_ZLIB_FALSE='#'
index 6f7b5eabca6b0ebab1c8ec5dd39d045d534fc9fd..fd367451602b5c8d8386fd776648e6127d483662 100644 (file)
@@ -426,10 +426,8 @@ AC_SUBST(PTHREAD_CFLAGS)
 
 AM_CONDITIONAL(HAVE_PTHREAD, test "$libgo_cv_lib_pthread" = yes)
 
-AC_CHECK_LIB([z], [compress], [])
-if test $ac_cv_lib_z_compress = "yes"; then
-  AC_DEFINE(HAVE_ZLIB, 1, [Define if -lz is available.])
-fi
+AC_CHECK_LIB([z], [compress],
+    [AC_DEFINE(HAVE_ZLIB, 1, [Define if -lz is available.])])
 AM_CONDITIONAL(HAVE_ZLIB, test "$ac_cv_lib_z_compress" = yes)
 
 dnl Test whether the linker supports the --compress_debug_sections option.