1
1

Use pkg-config --cflags-only-I when getting the include files necessary to

build with OpenSSL. Previous approach caused a bad compiler option get set.
Этот коммит содержится в:
Daniel Stenberg 2006-11-17 10:26:11 +00:00
родитель 1baaa31792
Коммит 1854b4536f

Просмотреть файл

@ -85,7 +85,7 @@ if test "$found_openssl" = "no" && test -x "$PKG_CONFIG" && $PKG_CONFIG --exists
found_openssl=yes
pkgcfg_openssl=yes
OPENSSL_LIBLINE=`$PKG_CONFIG --libs openssl`
OPENSSL_INCLINE=`$PKG_CONFIG --variable=includedir openssl`
OPENSSL_INCLINE=`$PKG_CONFIG --cflags-only-I openssl`
AC_MSG_RESULT([Using paths from pkg-config])
fi