configure.ac (46dacce6) configure.ac (5424bb20)
1dnl /******************************************************************
2dnl * vi:set sw=3 ts=3 et:
3dnl *
4dnl * Name: configure.in
5dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland
6dnl * Date: $Date: 2008-09-08 07:38:40 $
7dnl *
8dnl * Desc: This file serves as input for the GNU autoconf package

--- 5046 unchanged lines hidden (view full) ---

5055 with_system_openssl=yes
5056fi
5057AC_MSG_CHECKING([which libssl to use])
5058if test -n "$with_system_openssl" -o -n "$with_system_libs" && \
5059 test "$with_system_openssl" != "no"; then
5060 AC_MSG_RESULT([external])
5061 # Mac OS builds should get out without extra stuff is the Mac porters'
5062 # wish. And pkg-config is although Xcode ships a .pc for openssl
1dnl /******************************************************************
2dnl * vi:set sw=3 ts=3 et:
3dnl *
4dnl * Name: configure.in
5dnl * Auth: Willem van Dorp, Ross Nicholson, Oisin Boydell - Sun Microsystems Ireland
6dnl * Date: $Date: 2008-09-08 07:38:40 $
7dnl *
8dnl * Desc: This file serves as input for the GNU autoconf package

--- 5046 unchanged lines hidden (view full) ---

5055 with_system_openssl=yes
5056fi
5057AC_MSG_CHECKING([which libssl to use])
5058if test -n "$with_system_openssl" -o -n "$with_system_libs" && \
5059 test "$with_system_openssl" != "no"; then
5060 AC_MSG_RESULT([external])
5061 # Mac OS builds should get out without extra stuff is the Mac porters'
5062 # wish. And pkg-config is although Xcode ships a .pc for openssl
5063 if test "$_os" = "Darwin"; then
5063 if test "$_os" = "Darwin" -o "$_os" = "FreeBSD"; then
5064 OPENSSL_CFLAGS=
5065 OPENSSL_LIBS="-lssl -lcrypto"
5066 else
5067 PKG_CHECK_MODULES( OPENSSL, openssl )
5068 fi
5069 SYSTEM_OPENSSL=YES
5070else
5071 AC_MSG_RESULT([internal])

--- 2344 unchanged lines hidden ---
5064 OPENSSL_CFLAGS=
5065 OPENSSL_LIBS="-lssl -lcrypto"
5066 else
5067 PKG_CHECK_MODULES( OPENSSL, openssl )
5068 fi
5069 SYSTEM_OPENSSL=YES
5070else
5071 AC_MSG_RESULT([internal])

--- 2344 unchanged lines hidden ---