pidgin: 9b3deec2: And really fix that --with-system-ssl-ce...

rekkanoryo at pidgin.im rekkanoryo at pidgin.im
Sun Jul 26 18:25:29 EDT 2009


-----------------------------------------------------------------
Revision: 9b3deec2188b0d6cd5015cc06c8de2f7d5696a59
Ancestor: fda7950a4bcfea6022158baedf7b99a4e807ba20
Author: rekkanoryo at pidgin.im
Date: 2009-07-26T21:42:21
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/9b3deec2188b0d6cd5015cc06c8de2f7d5696a59

Modified files:
        configure.ac

ChangeLog: 

And really fix that --with-system-ssl-certs argument.

-------------- next part --------------
============================================================
--- configure.ac	2b6f9f36a32a0a09d988b0b614b9cdde1369552b
+++ configure.ac	40e93557a7942c9e63c53ca27d47f5b97e07d04f
@@ -1640,14 +1640,14 @@ dnl ####################################
 dnl # Thanks go to Evolution for the checks.
 dnl #######################################################################
 
-AC_ARG_WITH(system-ssl-certs, [AC_HELP_STRING([--with-system-ssl-certs=<dir>], [directory containing system-wide SSL CA certificates])])
+AC_ARG_WITH(system-ssl-certs, [AC_HELP_STRING([--with-system-ssl-certs=<dir>], [directory containing system-wide SSL CA certificates])], [ssl_certificates_dir=$withval])
 
 SSL_CERTIFICATES_DIR=""
-if ! test -z "$with_system_ssl_certs" ; then
-	if ! test -d "$with_system_ssl_certs" ; then
-		AC_MSG_ERROR([$with_system_ssl_certs does not exist, if this is the correct location please make sure that it exists.])
+if ! test -z "$ssl_certificates_dir" ; then
+	if ! test -d "$ssl_certificates_dir" ; then
+		AC_MSG_ERROR([$ssl_certificates_dir does not exist, if this is the correct location please make sure that it exists.])
 	fi
-	SSL_CERTIFICATES_DIR="$with_system_ssl_certs"
+	SSL_CERTIFICATES_DIR="$ssl_certificates_dir"
 fi
 AC_SUBST(SSL_CERTIFICATES_DIR)
 AM_CONDITIONAL(INSTALL_SSL_CERTIFICATES, test "x$SSL_CERTIFICATES_DIR" = "x")


More information about the Commits mailing list