mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 04:57:38 +03:00
2008-09-03 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Use pkg-config if is is available. * m4/openssl.m4
This commit is contained in:
parent
2439cad4ac
commit
8164c069d9
3 changed files with 90 additions and 38 deletions
|
@ -9,34 +9,55 @@ if test "x$openssl_prefix" = "x"; then
|
|||
openssl_prefix="/usr/local"
|
||||
fi
|
||||
|
||||
openssl_prefix_lib=$openssl_prefix/lib
|
||||
openssl_prefix_include=$openssl_prefix/include
|
||||
|
||||
LIBS_save=$LIBS
|
||||
CPPFLAGS_save=$CPPFLAGS
|
||||
|
||||
LIBS="-L$openssl_prefix_lib $LIBS"
|
||||
CPPFLAGS="-I$openssl_prefix_include $CPPFLAGS"
|
||||
PKG_CONFIG="$openssl_prefix/bin/pkg-config"
|
||||
if test -x $PKG_CONFIG; then
|
||||
AC_MSG_CHECKING([checking availability of openssl using pkg-config])
|
||||
$PKG_CONFIG --exists openssl
|
||||
if test "$?" = "0"; then
|
||||
# Use pkg-config to detect LIBS and CFLAGS
|
||||
OPENSSL_LIBS=`$PKG_CONFIG --libs openssl`
|
||||
OPENSSL_CFLAGS=`$PKG_CONFIG --cflags openssl`
|
||||
|
||||
AC_CHECK_LIB([ssl], [SSL_library_init], [have_openssl=yes; LIBS="-lssl $LIBS"])
|
||||
LIBS="$OPENSSL_LIBS $LIBS"
|
||||
CPPFLAGS="$OPENSSL_CFLAGS $CPPFLAGS"
|
||||
have_openssl=yes
|
||||
AC_MSG_RESULT([yes])
|
||||
else
|
||||
AC_MSG_RESULT([no])
|
||||
fi
|
||||
fi
|
||||
if test "x$have_openssl" != "xyes"; then
|
||||
openssl_prefix_lib=$openssl_prefix/lib
|
||||
openssl_prefix_include=$openssl_prefix/include
|
||||
|
||||
LIBS="-L$openssl_prefix_lib $LIBS"
|
||||
CPPFLAGS="-I$openssl_prefix_include $CPPFLAGS"
|
||||
|
||||
AC_CHECK_LIB([ssl], [SSL_library_init], [have_openssl=yes LIBS="-lssl $LIBS"])
|
||||
if test "x$have_openssl" = "xyes"; then
|
||||
have_openssl=no
|
||||
AC_CHECK_LIB([crypto], [main], [have_openssl=yes; LIBS="-lcrypto $LIBS"])
|
||||
if test "x$have_openssl" = "xyes"; then
|
||||
OPENSSL_LIBS="-L$openssl_prefix_lib -lssl -lcrypto"
|
||||
OPENSSL_CFLAGS="-I$openssl_prefix_include"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "x$have_openssl" = "xyes"; then
|
||||
have_openssl=no
|
||||
AC_CHECK_LIB([crypto], [main], [have_openssl=yes; LIBS="-lcrypto $LIBS"])
|
||||
if test "x$have_openssl" = "xyes"; then
|
||||
AC_DEFINE([HAVE_LIBSSL], [1], [Define to 1 if you have openssl.])
|
||||
dnl check whether EVP_DigestInit_ex exists. Old openssl doesn't have it.
|
||||
AC_CHECK_FUNCS([EVP_DigestInit_ex], [have_digestinit_ex=yes])
|
||||
if test "x$have_digestinit_ex" = "x"; then
|
||||
AC_DEFINE([HAVE_OLD_LIBSSL], [1], [Define to 1 if you have old openssl.])
|
||||
fi
|
||||
OPENSSL_LIBS="-L$openssl_prefix_lib -lssl -lcrypto"
|
||||
OPENSSL_CFLAGS="-I$openssl_prefix_include"
|
||||
AC_SUBST(OPENSSL_LIBS)
|
||||
AC_SUBST(OPENSSL_CFLAGS)
|
||||
dnl search for sha256 support
|
||||
AC_CHECK_FUNCS([EVP_sha256])
|
||||
AC_DEFINE([HAVE_LIBSSL], [1], [Define to 1 if you have openssl.])
|
||||
# check whether EVP_DigestInit_ex exists. Old openssl doesn't have it.
|
||||
AC_CHECK_FUNCS([EVP_DigestInit_ex], [have_digestinit_ex=yes])
|
||||
if test "x$have_digestinit_ex" = "x"; then
|
||||
AC_DEFINE([HAVE_OLD_LIBSSL], [1], [Define to 1 if you have old openssl.])
|
||||
fi
|
||||
AC_SUBST(OPENSSL_LIBS)
|
||||
AC_SUBST(OPENSSL_CFLAGS)
|
||||
# search for sha256 support
|
||||
AC_CHECK_FUNCS([EVP_sha256])
|
||||
fi
|
||||
|
||||
LIBS=$LIBS_save
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue