]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - config-scripts/cups-defaults.m4
Merge CUPS 1.4svn-r7319.
[thirdparty/cups.git] / config-scripts / cups-defaults.m4
index 4c6425af57527d5eb73b673d8b3b85642cb876cd..e9d6038e42bda9d91a32f39cc4f18f091d4e1975 100644 (file)
@@ -1,36 +1,32 @@
 dnl
-dnl "$Id$"
+dnl "$Id: cups-defaults.m4 6754 2007-08-01 19:00:07Z mike $"
 dnl
 dnl   Default cupsd configuration settings for the Common UNIX Printing System
 dnl   (CUPS).
 dnl
-dnl   Copyright 2006 by Easy Software Products, all rights reserved.
+dnl   Copyright 2007-2008 by Apple Inc.
+dnl   Copyright 2006-2007 by Easy Software Products, all rights reserved.
 dnl
 dnl   These coded instructions, statements, and computer programs are the
-dnl   property of Easy Software Products and are protected by Federal
-dnl   copyright law.  Distribution and use rights are outlined in the file
-dnl   "LICENSE.txt" which should have been included with this file.  If this
-dnl   file is missing or damaged please contact Easy Software Products
-dnl   at:
-dnl
-dnl       Attn: CUPS Licensing Information
-dnl       Easy Software Products
-dnl       44141 Airport View Drive, Suite 204
-dnl       Hollywood, Maryland 20636 USA
-dnl
-dnl       Voice: (301) 373-9600
-dnl       EMail: cups-info@cups.org
-dnl         WWW: http://www.cups.org
+dnl   property of Apple Inc. and are protected by Federal copyright
+dnl   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+dnl   which should have been included with this file.  If this file is
+dnl   file is missing or damaged, see the license at "http://www.cups.org/".
 dnl
 
-dnl Default langugages...
-AC_ARG_WITH(languages, [  --with-languages        set installed languages, default="es ja" ],
-       LANGUAGES="$withval",
-       LANGUAGES="es ja pl sv")
+dnl Default languages...
+LANGUAGES="`ls -1 locale/*.po | sed -e '1,$s/locale\/cups_//' -e '1,$s/\.po//' | tr '\n' ' '`"
+
+AC_ARG_WITH(languages, [  --with-languages        set installed languages, default=all ],[
+       case "$withval" in
+               none | no) LANGUAGES="" ;;
+               all) ;;
+               *) LANGUAGES="$withval" ;;
+       esac])
 AC_SUBST(LANGUAGES)
 
 dnl Default ConfigFilePerm
-AC_ARG_WITH(config_perm, [  --with-config-file-perm set default ConfigFilePerm value, default=0640],
+AC_ARG_WITH(config_file_perm, [  --with-config-file-perm set default ConfigFilePerm value, default=0640],
        CUPS_CONFIG_FILE_PERM="$withval",
        if test "x$uname" = xDarwin; then
                CUPS_CONFIG_FILE_PERM="644"
@@ -41,7 +37,7 @@ AC_SUBST(CUPS_CONFIG_FILE_PERM)
 AC_DEFINE_UNQUOTED(CUPS_DEFAULT_CONFIG_FILE_PERM, 0$CUPS_CONFIG_FILE_PERM)
 
 dnl Default LogFilePerm
-AC_ARG_WITH(log_perm, [  --with-log-file-perm    set default LogFilePerm value, default=0644],
+AC_ARG_WITH(log_file_perm, [  --with-log-file-perm    set default LogFilePerm value, default=0644],
        CUPS_LOG_FILE_PERM="$withval",
        CUPS_LOG_FILE_PERM="644")
 AC_SUBST(CUPS_LOG_FILE_PERM)
@@ -59,17 +55,47 @@ fi
 AC_SUBST(CUPS_BROWSING)
 
 dnl Default BrowseLocalProtocols
-AC_ARG_WITH(browse_local, [  --with-local-protocols  set default BrowseLocalProtocols, default="CUPS"],
-       CUPS_BROWSE_LOCAL_PROTOCOLS="$withval",
-       CUPS_BROWSE_LOCAL_PROTOCOLS="CUPS")
+AC_ARG_WITH(local_protocols, [  --with-local-protocols  set default BrowseLocalProtocols, default="CUPS"],
+       default_local_protocols="$withval",
+       default_local_protocols="default")
+
+if test x$with_local_protocols != xno; then
+       if test "x$default_local_protocols" = "xdefault"; then
+               if test "x$DNSSDLIBS" != "x"; then
+               CUPS_BROWSE_LOCAL_PROTOCOLS="CUPS dnssd"
+       else
+               CUPS_BROWSE_LOCAL_PROTOCOLS="CUPS"
+               fi
+       else
+               CUPS_BROWSE_LOCAL_PROTOCOLS="$default_local_protocols"
+       fi
+else
+       CUPS_BROWSE_LOCAL_PROTOCOLS=""
+fi
+
 AC_SUBST(CUPS_BROWSE_LOCAL_PROTOCOLS)
 AC_DEFINE_UNQUOTED(CUPS_DEFAULT_BROWSE_LOCAL_PROTOCOLS,
        "$CUPS_BROWSE_LOCAL_PROTOCOLS")
 
 dnl Default BrowseRemoteProtocols
-AC_ARG_WITH(browse_remote, [  --with-remote-protocols set default BrowseRemoteProtocols, default="CUPS"],
-       CUPS_BROWSE_REMOTE_PROTOCOLS="$withval",
-       CUPS_BROWSE_REMOTE_PROTOCOLS="CUPS")
+AC_ARG_WITH(remote_protocols, [  --with-remote-protocols set default BrowseRemoteProtocols, default="CUPS"],
+       default_remote_protocols="$withval",
+       default_remote_protocols="default")
+
+if test x$with_remote_protocols != xno; then
+       if test "x$default_remote_protocols" = "xdefault"; then
+               if test "$uname" = "Darwin" -a $uversion -ge 90; then
+                       CUPS_BROWSE_REMOTE_PROTOCOLS=""
+               else
+                       CUPS_BROWSE_REMOTE_PROTOCOLS="CUPS"
+               fi
+       else
+               CUPS_BROWSE_REMOTE_PROTOCOLS="$default_remote_protocols"
+       fi
+else
+       CUPS_BROWSE_REMOTE_PROTOCOLS=""
+fi
+
 AC_SUBST(CUPS_BROWSE_REMOTE_PROTOCOLS)
 AC_DEFINE_UNQUOTED(CUPS_DEFAULT_BROWSE_REMOTE_PROTOCOLS,
        "$CUPS_BROWSE_REMOTE_PROTOCOLS")
@@ -110,11 +136,11 @@ fi
 AC_SUBST(CUPS_IMPLICIT_CLASSES)
 
 dnl Default UseNetworkDefault
-AC_ARG_ENABLE(network_default, [  --enable-use-network-default
+AC_ARG_ENABLE(use_network_default, [  --enable-use-network-default
                           enable UseNetworkDefault by default, default=auto])
-if test "x$enable_network_default" != xno; then
+if test "x$enable_use_network_default" != xno; then
        AC_MSG_CHECKING(whether to use network default printers)
-       if test "x$enable_network_default" = xyes -o $uname != Darwin; then
+       if test "x$enable_use_network_default" = xyes -o $uname != Darwin; then
                CUPS_USE_NETWORK_DEFAULT="Yes"
                AC_DEFINE_UNQUOTED(CUPS_DEFAULT_USE_NETWORK_DEFAULT, 1)
                AC_MSG_RESULT(yes)
@@ -130,10 +156,17 @@ fi
 AC_SUBST(CUPS_USE_NETWORK_DEFAULT)
 
 dnl Determine the correct username and group for this OS...
-AC_ARG_WITH(cups-user, [  --with-cups-user        set default user for CUPS],
+AC_ARG_WITH(cups_user, [  --with-cups-user        set default user for CUPS],
        CUPS_USER="$withval",
        AC_MSG_CHECKING(for default print user)
-       if test -f /etc/passwd; then
+       if test x$uname = xDarwin; then
+               if test x`id -u _lp 2>/dev/null` = x; then
+                       CUPS_USER="lp";
+               else
+                       CUPS_USER="_lp";
+               fi
+               AC_MSG_RESULT($CUPS_USER)
+       elif test -f /etc/passwd; then
                CUPS_USER=""
                for user in lp lpd guest daemon nobody; do
                        if test "`grep \^${user}: /etc/passwd`" != ""; then
@@ -152,11 +185,18 @@ AC_ARG_WITH(cups-user, [  --with-cups-user        set default user for CUPS],
                AC_MSG_RESULT(no password file, using "$CUPS_USER")
        fi)
 
-AC_ARG_WITH(cups-group, [  --with-cups-group       set default group for CUPS],
+AC_ARG_WITH(cups_group, [  --with-cups-group       set default group for CUPS],
        CUPS_GROUP="$withval",
        AC_MSG_CHECKING(for default print group)
-       if test -f /etc/group; then
-               GROUP_LIST="lp nobody"
+       if test x$uname = xDarwin; then
+               if test x`id -g _lp 2>/dev/null` = x; then
+                       CUPS_GROUP="lp";
+               else
+                       CUPS_GROUP="_lp";
+               fi
+               AC_MSG_RESULT($CUPS_GROUP)
+       elif test -f /etc/group; then
+               GROUP_LIST="_lp lp nobody"
                CUPS_GROUP=""
                for group in $GROUP_LIST; do
                        if test "`grep \^${group}: /etc/group`" != ""; then
@@ -175,38 +215,38 @@ AC_ARG_WITH(cups-group, [  --with-cups-group       set default group for CUPS],
                AC_MSG_RESULT(no group file, using "$CUPS_GROUP")
        fi)
 
-AC_ARG_WITH(system-groups, [  --with-system-groups    set default system groups for CUPS],
+AC_ARG_WITH(system_groups, [  --with-system-groups    set default system groups for CUPS],
        CUPS_SYSTEM_GROUPS="$withval",
        if test x$uname = xDarwin; then
-               GROUP_LIST="admin"
+               CUPS_SYSTEM_GROUPS="admin"
        else
-               GROUP_LIST="lpadmin sys system root"
-       fi
-
-       AC_MSG_CHECKING(for default system groups)
-       if test -f /etc/group; then
-               CUPS_SYSTEM_GROUPS=""
-               for group in $GROUP_LIST; do
-                       if test "`grep \^${group}: /etc/group`" != ""; then
-                               if test "x$CUPS_SYSTEM_GROUPS" = x; then
-                                       CUPS_SYSTEM_GROUPS="$group"
-                               else
-                                       CUPS_SYSTEM_GROUPS="$CUPS_SYSTEM_GROUPS $group"
+               AC_MSG_CHECKING(for default system groups)
+               if test -f /etc/group; then
+                       CUPS_SYSTEM_GROUPS=""
+                       GROUP_LIST="lpadmin sys system root"
+                       for group in $GROUP_LIST; do
+                               if test "`grep \^${group}: /etc/group`" != ""; then
+                                       if test "x$CUPS_SYSTEM_GROUPS" = x; then
+                                               CUPS_SYSTEM_GROUPS="$group"
+                                       else
+                                               CUPS_SYSTEM_GROUPS="$CUPS_SYSTEM_GROUPS $group"
+                                       fi
                                fi
-                       fi
-               done
+                       done
 
-               if test "x$CUPS_SYSTEM_GROUPS" = x; then
-                       CUPS_SYSTEM_GROUPS="$GROUP_LIST"
-                       AC_MSG_RESULT(no groups found, using "$CUPS_SYSTEM_GROUPS")
+                       if test "x$CUPS_SYSTEM_GROUPS" = x; then
+                               CUPS_SYSTEM_GROUPS="$GROUP_LIST"
+                               AC_MSG_RESULT(no groups found, using "$CUPS_SYSTEM_GROUPS")
+                       else
+                               AC_MSG_RESULT("$CUPS_SYSTEM_GROUPS")
+                       fi
                else
-                       AC_MSG_RESULT("$CUPS_SYSTEM_GROUPS")
+                       CUPS_SYSTEM_GROUPS="$GROUP_LIST"
+                       AC_MSG_RESULT(no group file, using "$CUPS_SYSTEM_GROUPS")
                fi
-       else
-               CUPS_SYSTEM_GROUPS="$GROUP_LIST"
-               AC_MSG_RESULT(no group file, using "$CUPS_SYSTEM_GROUPS")
        fi)
 
+
 CUPS_PRIMARY_SYSTEM_GROUP="`echo $CUPS_SYSTEM_GROUPS | awk '{print $1}'`"
 
 AC_SUBST(CUPS_USER)
@@ -221,11 +261,25 @@ AC_DEFINE_UNQUOTED(CUPS_DEFAULT_SYSTEM_GROUPS, "$CUPS_SYSTEM_GROUPS")
 dnl Default printcap file...
 AC_ARG_WITH(printcap, [  --with-printcap         set default printcap file],
        default_printcap="$withval",
-       default_printcap="/etc/printcap")
+       default_printcap="default")
 
-if test x$enable_printcap != xno -a x$default_printcap != xno; then
-       if test "x$default_printcap" = "x/etc/printcap" -a "$uname" = "Darwin" -a $uversion -ge 90; then
-               CUPS_DEFAULT_PRINTCAP=""
+if test x$default_printcap != xno; then
+       if test "x$default_printcap" = "xdefault"; then
+               case $uname in
+                       Darwin*)
+                               if test $uversion -ge 90; then
+                                       CUPS_DEFAULT_PRINTCAP=""
+                               else
+                                       CUPS_DEFAULT_PRINTCAP="/etc/printcap"
+                               fi
+                               ;;
+                       SunOS*)
+                               CUPS_DEFAULT_PRINTCAP="/etc/printers.conf"
+                               ;;
+                       *)
+                               CUPS_DEFAULT_PRINTCAP="/etc/printcap"
+                               ;;
+               esac
        else
                CUPS_DEFAULT_PRINTCAP="$default_printcap"
        fi
@@ -235,6 +289,62 @@ fi
 
 AC_DEFINE_UNQUOTED(CUPS_DEFAULT_PRINTCAP, "$CUPS_DEFAULT_PRINTCAP")
 
+dnl Default MaxCopies value...
+AC_ARG_WITH(max-copies, [  --with-max-copies       set max copies value, default=100 ],
+       CUPS_MAX_COPIES="$withval",
+       if test "x$uname" = xDarwin; then
+               CUPS_MAX_COPIES="999"
+       else
+               CUPS_MAX_COPIES="100"
+       fi)
+
+AC_SUBST(CUPS_MAX_COPIES)
+AC_DEFINE_UNQUOTED(CUPS_DEFAULT_MAX_COPIES, $CUPS_MAX_COPIES)
+
+dnl Default raw printing state
+AC_ARG_ENABLE(raw_printing, [  --enable-raw-printing   enable raw printing by default, default=auto])
+if test "x$enable_raw_printing" != xno; then
+       AC_MSG_CHECKING(whether to enable raw printing)
+       if test "x$enable_raw_printing" = xyes -o $uname = Darwin; then
+               DEFAULT_RAW_PRINTING=""
+               AC_MSG_RESULT(yes)
+       else
+               DEFAULT_RAW_PRINTING="#"
+               AC_MSG_RESULT(no)
+       fi
+else
+       DEFAULT_RAW_PRINTING="#"
+fi
+AC_SUBST(DEFAULT_RAW_PRINTING)
+
+dnl Default SNMP options...
+AC_ARG_WITH(snmp-address, [  --with-snmp-address     set SNMP query address, default=auto ],
+       if test "x$withval" = x; then
+               CUPS_SNMP_ADDRESS=""
+       else
+               CUPS_SNMP_ADDRESS="Address $withval"
+       fi,
+       if test "x$uname" = xDarwin; then
+               CUPS_SNMP_ADDRESS=""
+       else
+               CUPS_SNMP_ADDRESS="Address @LOCAL"
+       fi)
+
+AC_ARG_WITH(snmp-community, [  --with-snmp-community   set SNMP community, default=public ],
+       CUPS_SNMP_COMMUNITY="Community $withval",
+       CUPS_SNMP_COMMUNITY="Community public")
+
+AC_SUBST(CUPS_SNMP_ADDRESS)
+AC_SUBST(CUPS_SNMP_COMMUNITY)
+
+dnl New default port definition for IPP...
+AC_ARG_WITH(ipp-port, [  --with-ipp-port         set default port number for IPP ],
+       DEFAULT_IPP_PORT="$withval",
+       DEFAULT_IPP_PORT="631")
+
+AC_SUBST(DEFAULT_IPP_PORT)
+AC_DEFINE_UNQUOTED(CUPS_DEFAULT_IPP_PORT,$DEFAULT_IPP_PORT)
+
 dnl
-dnl End of "$Id$".
+dnl End of "$Id: cups-defaults.m4 6754 2007-08-01 19:00:07Z mike $".
 dnl