]> git.ipfire.org Git - thirdparty/cups.git/blame - configure.in
Add printer-state-reasons stuff from hrPrinterDetectedErrorState.
[thirdparty/cups.git] / configure.in
CommitLineData
dec51c23 1dnl
c9d3f842 2dnl "$Id$"
dec51c23 3dnl
4dnl Configuration script for the Common UNIX Printing System (CUPS).
5dnl
4e8d321f 6dnl Copyright 2007 by Apple Inc.
2344229d 7dnl Copyright 1997-2007 by Easy Software Products, all rights reserved.
dec51c23 8dnl
9dnl These coded instructions, statements, and computer programs are the
4e8d321f 10dnl property of Apple Inc. and are protected by Federal copyright
11dnl law. Distribution and use rights are outlined in the file "LICENSE.txt"
12dnl which should have been included with this file. If this file is
13dnl file is missing or damaged, see the license at "http://www.cups.org/".
dec51c23 14dnl
3a57cba8 15
16AC_INIT(cups/cups.h)
a810d5d8 17
753453e4 18sinclude(config-scripts/cups-opsys.m4)
19sinclude(config-scripts/cups-common.m4)
20sinclude(config-scripts/cups-directories.m4)
21sinclude(config-scripts/cups-manpages.m4)
a810d5d8 22
58365c13 23sinclude(config-scripts/cups-3264.m4)
753453e4 24sinclude(config-scripts/cups-sharedlibs.m4)
25sinclude(config-scripts/cups-libtool.m4)
26sinclude(config-scripts/cups-compiler.m4)
45dec87e 27
753453e4 28sinclude(config-scripts/cups-image.m4)
29sinclude(config-scripts/cups-network.m4)
9d4830a3 30sinclude(config-scripts/cups-poll.m4)
2c780061 31sinclude(config-scripts/cups-slp.m4)
cf94bcb1 32sinclude(config-scripts/cups-gssapi.m4)
c52c6d95 33sinclude(config-scripts/cups-ldap.m4)
2c780061 34sinclude(config-scripts/cups-ssl.m4)
753453e4 35sinclude(config-scripts/cups-pam.m4)
03f61bf3 36sinclude(config-scripts/cups-threads.m4)
1479646d 37sinclude(config-scripts/cups-largefile.m4)
2344229d 38sinclude(config-scripts/cups-dnssd.m4)
5db6985b 39sinclude(config-scripts/cups-launchd.m4)
bfbabcab 40sinclude(config-scripts/cups-defaults.m4)
250dc658 41sinclude(config-scripts/cups-pap.m4)
069587e3 42sinclude(config-scripts/cups-pdf.m4)
3721af07 43sinclude(config-scripts/cups-scripting.m4)
44
479c997f 45INSTALL_LANGUAGES=""
46UNINSTALL_LANGUAGES=""
13bffc9a 47LANGFILES=""
48if test "x$LANGUAGES" != x; then
479c997f 49 INSTALL_LANGUAGES="install-languages"
50 UNINSTALL_LANGUAGES="uninstall-languages"
13bffc9a 51 for lang in $LANGUAGES; do
cec530e6 52 if test -f doc/$lang/index.html.in; then
53 LANGFILES="$LANGFILES doc/$lang/index.html"
54 fi
55
cec530e6 56 if test -f templates/$lang/header.tmpl.in; then
57 LANGFILES="$LANGFILES templates/$lang/header.tmpl"
58 fi
13bffc9a 59 done
60fi
61
479c997f 62AC_SUBST(INSTALL_LANGUAGES)
63AC_SUBST(UNINSTALL_LANGUAGES)
64
069587e3 65AC_OUTPUT(Makedefs packaging/cups.list init/cups.sh init/cups-lpd cups-config
1decbd64 66 conf/cupsd.conf conf/mime.convs conf/pam.std conf/snmp.conf
67 doc/index.html doc/help/ref-cupsd-conf.html doc/help/standard.html
17ce1b2b 68 init/org.cups.cups-lpd.plist
e1555341 69 man/client.conf.man man/cups-deviced.man man/cups-driverd.man
961f24eb 70 man/cups-lpd.man man/cupsaddsmb.man man/cupsd.man
71 man/cupsd.conf.man man/lpoptions.man
f88145ed 72 templates/header.tmpl
13bffc9a 73 $LANGFILES)
3a57cba8 74
753453e4 75chmod +x cups-config
3a57cba8 76
dec51c23 77dnl
c9d3f842 78dnl End of "$Id$".
dec51c23 79dnl