Compare commits

...

3 Commits

Author SHA1 Message Date
Michael R Sweet
cb6b493df6
Update configure script. 2023-12-10 15:38:35 -05:00
Michael R Sweet
2753a82eb9
Merge pull request #56 from eli-schwartz/misspelled
fix misspelled variable: PKCONFIG
2023-12-10 15:38:12 -05:00
Eli Schwartz
ddb8ddff9c
fix misspelled variable: PKCONFIG
This prevented using pkg-config for zlib lookup.
2023-12-10 01:39:23 -05:00
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -4024,7 +4024,7 @@ then :
printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h
fi
if $PKCONFIG --exists zlib
if $PKGCONFIG --exists zlib
then :
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5

View File

@ -103,7 +103,7 @@ AC_SUBST([PKGCONFIG_REQUIRES])
dnl ZLIB
AC_MSG_CHECKING([for zlib via pkg-config])
AS_IF([$PKCONFIG --exists zlib], [
AS_IF([$PKGCONFIG --exists zlib], [
AC_MSG_RESULT([yes])
LIBS="$($PKGCONFIG --libs zlib) $LIBS"
CPPFLAGS="$($PKGCONFIG --cflags zlib) $CPPFLAGS"