diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-03-26 19:05:24 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-03-26 19:05:24 +0000 |
commit | 7d7ebbe9f775ee80d956be7729993f8bde5b835f (patch) | |
tree | 90d5c960a83e092663ae4dafbe52e40346ac5e97 | |
parent | 5111ce782fa6ff2e4e150c72012b2f3067a163e3 (diff) |
fixed the pkg-config stuff for rh9
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index fcb9ab731..43e916eed 100644 --- a/configure.ac +++ b/configure.ac @@ -465,10 +465,10 @@ if test "$PKGCONFIG" != "no" ; then if test "$SSL_EXISTS" -eq "0"; then SSL_LIBS=`$PKGCONFIG --libs-only-l openssl 2>/dev/null` SSL_LDFLAGS=`$PKGCONFIG --libs-only-L openssl 2>/dev/null` - SSL_CFLAGS=`$PKGCONFIG --cflags openssl 2>/dev/null` + SSL_CPPFLAGS=`$PKGCONFIG --cflags-only-I openssl 2>/dev/null` LIBS="$LIBS $SSL_LIBS" - CFLAGS="$CFLAGS $SSL_CFLAGS" + CPPFLAGS="$CPPFLAGS $SSL_CPPFLAGS" LDFLAGS="$LDFLAGS $SSL_LDFLAGS" AC_MSG_RESULT([yes]) |