mirror of https://gitee.com/openkylin/cups.git
82 lines
2.2 KiB
Plaintext
82 lines
2.2 KiB
Plaintext
dnl
|
||
dnl Configuration script for CUPS.
|
||
dnl
|
||
dnl Copyright © 2007-2019 by Apple Inc.
|
||
dnl Copyright © 1997-2007 by Easy Software Products, all rights reserved.
|
||
dnl
|
||
dnl Licensed under Apache License v2.0. See the file "LICENSE" for more
|
||
dnl information.
|
||
dnl
|
||
|
||
dnl We need at least autoconf 2.60...
|
||
AC_PREREQ(2.60)
|
||
|
||
dnl Package name and version...
|
||
AC_INIT([CUPS], [2.3.1], [https://github.com/apple/cups/issues], [cups], [https://www.cups.org/])
|
||
|
||
sinclude(config-scripts/cups-opsys.m4)
|
||
sinclude(config-scripts/cups-common.m4)
|
||
sinclude(config-scripts/cups-directories.m4)
|
||
sinclude(config-scripts/cups-manpages.m4)
|
||
|
||
sinclude(config-scripts/cups-sharedlibs.m4)
|
||
sinclude(config-scripts/cups-libtool.m4)
|
||
sinclude(config-scripts/cups-compiler.m4)
|
||
|
||
sinclude(config-scripts/cups-network.m4)
|
||
sinclude(config-scripts/cups-poll.m4)
|
||
sinclude(config-scripts/cups-gssapi.m4)
|
||
sinclude(config-scripts/cups-threads.m4)
|
||
sinclude(config-scripts/cups-ssl.m4)
|
||
sinclude(config-scripts/cups-pam.m4)
|
||
sinclude(config-scripts/cups-largefile.m4)
|
||
sinclude(config-scripts/cups-dnssd.m4)
|
||
sinclude(config-scripts/cups-startup.m4)
|
||
sinclude(config-scripts/cups-defaults.m4)
|
||
|
||
INSTALL_LANGUAGES=""
|
||
UNINSTALL_LANGUAGES=""
|
||
LANGFILES=""
|
||
if test "x$LANGUAGES" != x; then
|
||
INSTALL_LANGUAGES="install-languages"
|
||
UNINSTALL_LANGUAGES="uninstall-languages"
|
||
for lang in $LANGUAGES; do
|
||
if test -f doc/$lang/index.html.in; then
|
||
LANGFILES="$LANGFILES doc/$lang/index.html"
|
||
fi
|
||
|
||
if test -f templates/$lang/header.tmpl.in; then
|
||
LANGFILES="$LANGFILES templates/$lang/header.tmpl"
|
||
fi
|
||
done
|
||
elif test "x$CUPS_BUNDLEDIR" != x; then
|
||
INSTALL_LANGUAGES="install-langbundle"
|
||
UNINSTALL_LANGUAGES="uninstall-langbundle"
|
||
fi
|
||
|
||
AC_SUBST(INSTALL_LANGUAGES)
|
||
AC_SUBST(UNINSTALL_LANGUAGES)
|
||
|
||
AC_OUTPUT(Makedefs
|
||
conf/cups-files.conf
|
||
conf/cupsd.conf
|
||
conf/mime.convs
|
||
conf/pam.std
|
||
conf/snmp.conf
|
||
cups-config
|
||
desktop/cups.desktop
|
||
doc/index.html
|
||
scheduler/cups-lpd.xinetd
|
||
scheduler/cups.sh
|
||
scheduler/cups.xml
|
||
scheduler/org.cups.cups-lpd.plist
|
||
scheduler/org.cups.cups-lpdAT.service
|
||
scheduler/org.cups.cupsd.path
|
||
scheduler/org.cups.cupsd.service
|
||
scheduler/org.cups.cupsd.socket
|
||
templates/header.tmpl
|
||
packaging/cups.list
|
||
$LANGFILES)
|
||
|
||
chmod +x cups-config
|