Blame configure.ac

Packit Service 4ae4ad
dnl
Packit Service 4ae4ad
dnl Configuration script for CUPS.
Packit Service 4ae4ad
dnl
Packit Service 4ae4ad
dnl Copyright 2007-2017 by Apple Inc.
Packit Service 4ae4ad
dnl Copyright 1997-2007 by Easy Software Products, all rights reserved.
Packit Service 4ae4ad
dnl
Packit Service 4ae4ad
dnl These coded instructions, statements, and computer programs are the
Packit Service 4ae4ad
dnl property of Apple Inc. and are protected by Federal copyright
Packit Service 4ae4ad
dnl law.  Distribution and use rights are outlined in the file "LICENSE.txt"
Packit Service 4ae4ad
dnl which should have been included with this file.  If this file is
Packit Service 4ae4ad
dnl missing or damaged, see the license at "http://www.cups.org/".
Packit Service 4ae4ad
dnl
Packit Service 4ae4ad
Packit Service 4ae4ad
dnl We need at least autoconf 2.60...
Packit Service 4ae4ad
AC_PREREQ(2.60)
Packit Service 4ae4ad
Packit Service 4ae4ad
dnl Package name and version...
Packit Service 4ae4ad
AC_INIT([CUPS], [2.2.6], [https://github.com/apple/cups/issues], [cups], [https://www.cups.org/])
Packit Service 4ae4ad
Packit Service 4ae4ad
sinclude(config-scripts/cups-opsys.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-common.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-directories.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-manpages.m4)
Packit Service 4ae4ad
Packit Service 4ae4ad
sinclude(config-scripts/cups-sharedlibs.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-libtool.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-compiler.m4)
Packit Service 4ae4ad
Packit Service 4ae4ad
sinclude(config-scripts/cups-network.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-poll.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-gssapi.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-threads.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-ssl.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-pam.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-largefile.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-dnssd.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-startup.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-defaults.m4)
Packit Service 4ae4ad
sinclude(config-scripts/cups-scripting.m4)
Packit Service 4ae4ad
Packit Service 039e10
sinclude(config-scripts/cups-lspp.m4)
Packit Service 039e10
Packit Service 4ae4ad
INSTALL_LANGUAGES=""
Packit Service 4ae4ad
UNINSTALL_LANGUAGES=""
Packit Service 4ae4ad
LANGFILES=""
Packit Service 4ae4ad
if test "x$LANGUAGES" != x; then
Packit Service 4ae4ad
	INSTALL_LANGUAGES="install-languages"
Packit Service 4ae4ad
	UNINSTALL_LANGUAGES="uninstall-languages"
Packit Service 4ae4ad
	for lang in $LANGUAGES; do
Packit Service 4ae4ad
		if test -f doc/$lang/index.html.in; then
Packit Service 4ae4ad
			LANGFILES="$LANGFILES doc/$lang/index.html"
Packit Service 4ae4ad
		fi
Packit Service 4ae4ad
Packit Service 4ae4ad
		if test -f templates/$lang/header.tmpl.in; then
Packit Service 4ae4ad
			LANGFILES="$LANGFILES templates/$lang/header.tmpl"
Packit Service 4ae4ad
		fi
Packit Service 4ae4ad
	done
Packit Service 4ae4ad
elif test "x$CUPS_BUNDLEDIR" != x; then
Packit Service 4ae4ad
	INSTALL_LANGUAGES="install-langbundle"
Packit Service 4ae4ad
	UNINSTALL_LANGUAGES="uninstall-langbundle"
Packit Service 4ae4ad
fi
Packit Service 4ae4ad
Packit Service 4ae4ad
AC_SUBST(INSTALL_LANGUAGES)
Packit Service 4ae4ad
AC_SUBST(UNINSTALL_LANGUAGES)
Packit Service 4ae4ad
Packit Service 4ae4ad
AC_OUTPUT(Makedefs
Packit Service 4ae4ad
	  conf/cups-files.conf
Packit Service 4ae4ad
	  conf/cupsd.conf
Packit Service 4ae4ad
	  conf/mime.convs
Packit Service 4ae4ad
	  conf/pam.std
Packit Service 4ae4ad
	  conf/snmp.conf
Packit Service 4ae4ad
	  cups-config
Packit Service 4ae4ad
	  desktop/cups.desktop
Packit Service 4ae4ad
	  doc/index.html
Packit Service 4ae4ad
	  man/client.conf.man
Packit Service 4ae4ad
	  man/cups-files.conf.man
Packit Service 4ae4ad
	  man/cups-lpd.man
Packit Service 4ae4ad
	  man/cups-snmp.man
Packit Service 4ae4ad
	  man/cupsaddsmb.man
Packit Service 4ae4ad
	  man/cupsd.conf.man
Packit Service 4ae4ad
	  man/cupsd.man
Packit Service 4ae4ad
	  man/lpoptions.man
Packit Service 4ae4ad
	  scheduler/cups-lpd.xinetd
Packit Service 4ae4ad
	  scheduler/cups.sh
Packit Service 4ae4ad
	  scheduler/cups.xml
Packit Service 4ae4ad
	  scheduler/org.cups.cups-lpd.plist
Packit Service 4ae4ad
	  scheduler/org.cups.cups-lpdAT.service
Packit Service 4ae4ad
	  scheduler/org.cups.cupsd.path
Packit Service 4ae4ad
	  scheduler/org.cups.cupsd.service
Packit Service 4ae4ad
	  scheduler/org.cups.cupsd.socket
Packit Service 4ae4ad
 	  templates/header.tmpl
Packit Service 4ae4ad
          packaging/cups.list
Packit Service 4ae4ad
	  $LANGFILES)
Packit Service 4ae4ad
Packit Service 4ae4ad
chmod +x cups-config