comparison configure.ac @ 23348:adc85bf02fa0

Rename --with-ssl-certificates to --with-system-ssl-certs as per Ethan's comment on devel@pidgin.im: I would be inclined to use --with-system-ssl-certdir or something similar ... the name --with-ssl-certificates sounds like you're turning on and off the use of certificates altogether.
author Richard Laager <rlaager@wiktel.com>
date Tue, 10 Jun 2008 16:23:14 +0000
parents 390384053186
children b175f6441bba
comparison
equal deleted inserted replaced
23347:1767bf74b95c 23348:adc85bf02fa0
1559 dnl # SSL support 1559 dnl # SSL support
1560 dnl # 1560 dnl #
1561 dnl # Thanks go to Evolution for the checks. 1561 dnl # Thanks go to Evolution for the checks.
1562 dnl ####################################################################### 1562 dnl #######################################################################
1563 1563
1564 AC_ARG_WITH(ssl-certificates, [AC_HELP_STRING([--with-ssl-certificates=<dir>], [directory containing system-wide SSL CA certificates])]) 1564 AC_ARG_WITH(with-system-ssl-certs, [AC_HELP_STRING([--with-system-ssl-certs=<dir>], [directory containing system-wide SSL CA certificates])])
1565 1565
1566 SSL_CERTIFICATES_DIR="" 1566 SSL_CERTIFICATES_DIR=""
1567 if ! test -z "$with_ssl_certificates" ; then 1567 if ! test -z "$with_system_ssl_certs" ; then
1568 if ! test -d "$with_ssl_certificates" ; then 1568 if ! test -d "$with_system_ssl_certs" ; then
1569 AC_MSG_ERROR([$with_ssl_certificates does not exist, if this is the correct location please make sure that it exists.]) 1569 AC_MSG_ERROR([$with_system_ssl_certs does not exist, if this is the correct location please make sure that it exists.])
1570 fi 1570 fi
1571 SSL_CERTIFICATES_DIR="$with_ssl_certificates" 1571 SSL_CERTIFICATES_DIR="$with_system_ssl_certs"
1572 fi 1572 fi
1573 AC_SUBST(SSL_CERTIFICATES_DIR) 1573 AC_SUBST(SSL_CERTIFICATES_DIR)
1574 AM_CONDITIONAL(INSTALL_SSL_CERTIFICATES, test "x$SSL_CERTIFICATES_DIR" = "x") 1574 AM_CONDITIONAL(INSTALL_SSL_CERTIFICATES, test "x$SSL_CERTIFICATES_DIR" = "x")
1575 1575
1576 dnl These two are inverses of each other <-- stolen from evolution! 1576 dnl These two are inverses of each other <-- stolen from evolution!