]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
The configure script now supports a --with-rundir option to change the
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Tue, 9 Apr 2013 19:44:01 +0000 (19:44 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Tue, 9 Apr 2013 19:44:01 +0000 (19:44 +0000)
transient run-time state directory from the default to other locations like
/run/cups (STR #4306)

Bump version to 1.7b1, in preparation for the first beta release.

git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@10945 7a7537e8-13f0-0310-91df-b6672ffda945

CHANGES-1.6.txt
CHANGES.txt
config-scripts/cups-common.m4
config-scripts/cups-directories.m4

index 57a0ff5f82257099ec7802f308523c84ee294c58..6d94e5e03c0b87947597d096a8fcf850a4ac7c26 100644 (file)
@@ -5,6 +5,7 @@ CHANGES IN CUPS V1.6.3
 
        - The configure script now prefers Clang over GCC.
        - Fixed a compile problem on AIX (STR #4307)
+       - The Russian web interface templates were broken (STR #4310)
        - The scheduler no longer tries to do Kerberos authentication over the
          loopback interface.
        - The IPP backend could fail to pause a job for authentication
index 3ce9b9bebc178c5e61bf7c983f260b0316161244..f85fc21ce0984249a0057653828d4e545a78f61d 100644 (file)
@@ -3,6 +3,9 @@ CHANGES.txt - 1.7b1 - 2013-04-09
 
 CHANGES IN CUPS V1.7b1
 
+       - The configure script now supports a --with-rundir option to change
+         the transient run-time state directory from the default to other
+         locations like /run/cups (STR #4306)
        - The scheduler now supports PPD lookups for classes (STR #4296)
        - The cupsfilter program did not set the FINAL_CONTENT_TYPE
          environment variable for filters.
index 62c17c362a58af85fb1db76834e7ddfb1e8a8989..b3f82b551763b7354e0ef7036e98a7dc0806912e 100644 (file)
@@ -20,11 +20,11 @@ dnl Set the name of the config header file...
 AC_CONFIG_HEADER(config.h)
 
 dnl Version number information...
-CUPS_VERSION="1.7svn"
+CUPS_VERSION="1.7b1"
 CUPS_REVISION=""
-if test -z "$CUPS_REVISION" -a -d .svn; then
-       CUPS_REVISION="-r`svnversion . | awk -F: '{print $NF}' | sed -e '1,$s/[[a-zA-Z]]*//g'`"
-fi
+#if test -z "$CUPS_REVISION" -a -d .svn; then
+#      CUPS_REVISION="-r`svnversion . | awk -F: '{print $NF}' | sed -e '1,$s/[[a-zA-Z]]*//g'`"
+#fi
 CUPS_BUILD="cups-$CUPS_VERSION"
 
 AC_ARG_WITH(cups_build, [  --with-cups-build       set "cups-config --build" string ],
index e0349593f1129da08eb16296459c74c19ec8fff3..45665a13f391f453b8d5bf2448db3e86e7d0fafd 100644 (file)
@@ -3,7 +3,7 @@ dnl "$Id$"
 dnl
 dnl   Directory stuff for CUPS.
 dnl
-dnl   Copyright 2007-2012 by Apple Inc.
+dnl   Copyright 2007-2013 by Apple Inc.
 dnl   Copyright 1997-2007 by Easy Software Products, all rights reserved.
 dnl
 dnl   These coded instructions, statements, and computer programs are the
@@ -412,16 +412,17 @@ AC_DEFINE_UNQUOTED(CUPS_SERVERROOT, "$sysconfdir/cups")
 AC_SUBST(CUPS_SERVERROOT)
 
 # Transient run-time state
-case "$uname" in
-       Darwin*)
-               # Darwin (OS X)
-               CUPS_STATEDIR="$CUPS_SERVERROOT"
-               ;;
-       *)
-               # All others
-               CUPS_STATEDIR="$localstatedir/run/cups"
-               ;;
-esac
+AC_ARG_WITH(rundir, [  --with-rundir           set transient run-time state directory],CUPS_STATEDIR="$withval",[
+       case "$uname" in
+               Darwin*)
+                       # Darwin (OS X)
+                       CUPS_STATEDIR="$CUPS_SERVERROOT"
+                       ;;
+               *)
+                       # All others
+                       CUPS_STATEDIR="$localstatedir/run/cups"
+                       ;;
+       esac])
 AC_DEFINE_UNQUOTED(CUPS_STATEDIR, "$CUPS_STATEDIR")
 AC_SUBST(CUPS_STATEDIR)