fixed the pkg-config stuff for rh9

This commit is contained in:
Daniel Stenberg 2003-03-26 19:05:24 +00:00
parent 5111ce782f
commit 7d7ebbe9f7
1 changed files with 2 additions and 2 deletions

View File

@ -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])