]> granicus.if.org Git - curl/commitdiff
configure: make it work without PKG_CHECK_MODULES
authorDaniel Stenberg <daniel@haxx.se>
Sun, 21 Aug 2016 21:34:48 +0000 (23:34 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sun, 21 Aug 2016 21:34:48 +0000 (23:34 +0200)
With commit c2f9b78 we added a new dependency on pkg-config for
developers which may be unwanted. This change make the configure script
still work as before if pkg-config isn't installed, it'll just use the
old zlib detection logic without pkg-config.

Reported-by: Marc Hörsken
Fixes #972

configure.ac

index 3c00ae10771a05d2c77761797782cd2862fca8e7..5e769301e15a703511242c9a4e6cb7591a310098 100644 (file)
@@ -892,13 +892,16 @@ else
   fi
 
   if test -z "$OPT_ZLIB" ; then
-    PKG_CHECK_MODULES([ZLIB], [zlib],
+
+    m4_ifdef([PKG_CHECK_MODULES], [
+      PKG_CHECK_MODULES([ZLIB], [zlib],
         [ LIBS="${ZLIB_LIBS} $LIBS"
           CPPFLAGS="${ZLIB_CFLAGS} $CPPFLAGS"
           HAVE_LIBZ="1"
         ],
         [
         ])
+    ])
 
     if test -z "$HAVE_LIBZ"; then