]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
The cups-files.conf file contained the old ServerCertificate/Key directives
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Fri, 5 Dec 2014 17:25:43 +0000 (17:25 +0000)
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>
Fri, 5 Dec 2014 17:25:43 +0000 (17:25 +0000)
instead of ServerKeychain.

git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12289 a1ca3aef-8c08-0410-bb20-df032aa958be

CHANGES-2.0.txt
conf/cups-files.conf.in
config-scripts/cups-ssl.m4

index dc8d9491c9199ad76927b91ec007de797caf635d..bd44c4e7718d043c5db163b301d6a77a47b095dc 100644 (file)
@@ -13,6 +13,8 @@ CHANGES IN CUPS V2.0.2
          values.
        - The scheduler incorrectly aborted jobs after a job was restarted
          (<rdar://problem/19129387>)
+       - The cups-files.conf file contained the old ServerCertificate/Key
+         directives instead of ServerKeychain.
 
 
 CHANGES IN CUPS V2.0.1
index 71683a6549c466c1a1a654dd568d86ac844cd5a6..4a78ba6158fa593fe88ca6a34cf11153f9d35aad 100644 (file)
@@ -75,11 +75,8 @@ PageLog @CUPS_LOGDIR@/page_log
 # Location of helper programs...
 #ServerBin @CUPS_SERVERBIN@
 
-# SSL/TLS certificate for the scheduler...
-#ServerCertificate @CUPS_SERVERCERT@
-
-# SSL/TLS private key for the scheduler...
-#ServerKey @CUPS_SERVERKEY@
+# SSL/TLS keychain for the scheduler...
+#ServerKeychain @CUPS_SERVERKEYCHAIN@
 
 # Location of other configuration files...
 #ServerRoot @CUPS_SERVERROOT@
index b27880bf549ba153933ebc17b71a6150fcb0eeea..f5f8d6405b75040c6c51e0d8ea2fde5805ebd6d7 100644 (file)
@@ -20,8 +20,7 @@ AC_ARG_ENABLE(gnutls, [  --enable-gnutls         use GNU TLS for SSL/TLS support
 SSLFLAGS=""
 SSLLIBS=""
 have_ssl=0
-CUPS_SERVERCERT=""
-CUPS_SERVERKEY=""
+CUPS_SERVERKEYCHAIN=""
 
 if test x$enable_ssl != xno; then
     dnl Look for CDSA...
@@ -31,7 +30,7 @@ if test x$enable_ssl != xno; then
                have_ssl=1
                AC_DEFINE(HAVE_SSL)
                AC_DEFINE(HAVE_CDSASSL)
-               CUPS_SERVERCERT="/Library/Keychains/System.keychain"
+               CUPS_SERVERKEYCHAIN="/Library/Keychains/System.keychain"
 
                dnl Check for the various security headers...
                AC_CHECK_HEADER(Security/SecureTransportPriv.h,
@@ -76,8 +75,7 @@ if test x$enable_ssl != xno; then
        fi
 
        if test $have_ssl = 1; then
-           CUPS_SERVERCERT="ssl/server.crt"
-           CUPS_SERVERKEY="ssl/server.key"
+           CUPS_SERVERKEYCHAIN="ssl"
 
            SAVELIBS="$LIBS"
            LIBS="$LIBS $SSLLIBS"
@@ -97,8 +95,7 @@ elif test x$enable_cdsa = xyes -o x$enable_gnutls = xyes; then
     AC_MSG_ERROR([Unable to enable SSL support.])
 fi
 
-AC_SUBST(CUPS_SERVERCERT)
-AC_SUBST(CUPS_SERVERKEY)
+AC_SUBST(CUPS_SERVERKEYCHAIN)
 AC_SUBST(IPPALIASES)
 AC_SUBST(SSLFLAGS)
 AC_SUBST(SSLLIBS)