pidgin: 19703c67: Rename --with-ssl-certificates to --with...

rlaager at pidgin.im rlaager at pidgin.im
Tue Jun 10 12:31:08 EDT 2008


-----------------------------------------------------------------
Revision: 19703c67fa680f4ee37fb1ff944b7b3a0fcf18a4
Ancestor: 6e4841a19b2a86ec921b10544e73532734e52fa3
Author: rlaager at pidgin.im
Date: 2008-06-10T16:23:14
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/19703c67fa680f4ee37fb1ff944b7b3a0fcf18a4

Modified files:
        ChangeLog configure.ac

ChangeLog: 

Rename --with-ssl-certificates to --with-system-ssl-certs as per Ethan's
comment on devel at 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.

-------------- next part --------------
============================================================
--- ChangeLog	3f01ebc291450820ce2e633a6fbde9bf050cda46
+++ ChangeLog	1c0f485c1af2b9ec0a93bd7b6e227404cdbb2633
@@ -7,9 +7,10 @@ version 2.5.0 (??/??/2008):
 	  Marcus Lundblad, Jorge Villaseñor and other contributors)
 	* Yahoo! Japan now uses UTF-8, matching the behavior of official clients
 	  and restoring compatibility with the web messenger (Yusuke Odate)
-	* Add a configure option, --with-ssl-certificates to allow packagers
-	  to specify a system-wide SSL CA certificates directory.  Also, when
-	  set, we don't install our SSL CA certs.
+	* Add a configure option, --with-system-ssl-certs to allow packagers
+	  to specify a system-wide SSL CA certificates directory.  When set,
+	  we don't install our SSL CA certs, so it's important that the
+	  libpurple package depend on the CA certificates.
 
 	Pidgin:
 	* Custom buddy icons can now be added to and removed from buddy list
============================================================
--- configure.ac	6540f725fcca109f4b7a1d324bb9f9f0608abbfd
+++ configure.ac	e93dfa5cee17b76c4a5783c0804178353fedb8af
@@ -1561,14 +1561,14 @@ dnl ####################################
 dnl # Thanks go to Evolution for the checks.
 dnl #######################################################################
 
-AC_ARG_WITH(ssl-certificates, [AC_HELP_STRING([--with-ssl-certificates=<dir>], [directory containing system-wide SSL CA certificates])])
+AC_ARG_WITH(with-system-ssl-certs, [AC_HELP_STRING([--with-system-ssl-certs=<dir>], [directory containing system-wide SSL CA certificates])])
 
 SSL_CERTIFICATES_DIR=""
-if ! test -z "$with_ssl_certificates" ; then
-	if ! test -d "$with_ssl_certificates" ; then
-		AC_MSG_ERROR([$with_ssl_certificates does not exist, if this is the correct location please make sure that it exists.])
+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.])
 	fi
-	SSL_CERTIFICATES_DIR="$with_ssl_certificates"
+	SSL_CERTIFICATES_DIR="$with_system_ssl_certs"
 fi
 AC_SUBST(SSL_CERTIFICATES_DIR)
 AM_CONDITIONAL(INSTALL_SSL_CERTIFICATES, test "x$SSL_CERTIFICATES_DIR" = "x")


More information about the Commits mailing list