From: Andre Noll Date: Tue, 1 Mar 2011 22:12:46 +0000 (+0100) Subject: configure: Use AC_ARG_WITH also for openssl options. X-Git-Tag: v0.4.7~14^2~1 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=ae7a5e56804fcb6789b5512201cacb6f29b2fb7b;hp=ae7a5e56804fcb6789b5512201cacb6f29b2fb7b configure: Use AC_ARG_WITH also for openssl options. Currently the check for openssl is performed by CHECK_SSL() in configure.ac. This function searches the given directory for the openssl-header but does not check the existence and usability of the openssl libraries. The argument of --enable-ssldir, if given, is tried first, and each member of a hard-coded list of directories is searched next. This patch replaces CHECK_SSL() by checks similar to those for other headers and libraries. In particular, we now also check for the openssl libraries, and the configure options are now called --with-openssl-headers and --with-openssl-libs rather than --enable-ssldir. ---