]> git.ipfire.org Git - thirdparty/cups.git/blame - configure.in
Changelog.
[thirdparty/cups.git] / configure.in
CommitLineData
dec51c23 1dnl
c9d3f842 2dnl "$Id$"
dec51c23 3dnl
2256cc12 4dnl Configuration script for CUPS.
dec51c23 5dnl
f6acb765 6dnl Copyright 2007-2012 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
753453e4 23sinclude(config-scripts/cups-sharedlibs.m4)
24sinclude(config-scripts/cups-libtool.m4)
25sinclude(config-scripts/cups-compiler.m4)
45dec87e 26
753453e4 27sinclude(config-scripts/cups-network.m4)
9d4830a3 28sinclude(config-scripts/cups-poll.m4)
cf94bcb1 29sinclude(config-scripts/cups-gssapi.m4)
b44f284a 30sinclude(config-scripts/cups-threads.m4)
2c780061 31sinclude(config-scripts/cups-ssl.m4)
753453e4 32sinclude(config-scripts/cups-pam.m4)
1479646d 33sinclude(config-scripts/cups-largefile.m4)
2344229d 34sinclude(config-scripts/cups-dnssd.m4)
5db6985b 35sinclude(config-scripts/cups-launchd.m4)
bfbabcab 36sinclude(config-scripts/cups-defaults.m4)
3721af07 37sinclude(config-scripts/cups-scripting.m4)
38
479c997f 39INSTALL_LANGUAGES=""
40UNINSTALL_LANGUAGES=""
13bffc9a 41LANGFILES=""
42if test "x$LANGUAGES" != x; then
479c997f 43 INSTALL_LANGUAGES="install-languages"
44 UNINSTALL_LANGUAGES="uninstall-languages"
13bffc9a 45 for lang in $LANGUAGES; do
cec530e6 46 if test -f doc/$lang/index.html.in; then
47 LANGFILES="$LANGFILES doc/$lang/index.html"
48 fi
49
cec530e6 50 if test -f templates/$lang/header.tmpl.in; then
51 LANGFILES="$LANGFILES templates/$lang/header.tmpl"
52 fi
13bffc9a 53 done
6f32170d 54elif test "x$CUPS_BUNDLEDIR" != x; then
2e3228ef 55 INSTALL_LANGUAGES="install-langbundle"
56 UNINSTALL_LANGUAGES="uninstall-langbundle"
13bffc9a 57fi
58
479c997f 59AC_SUBST(INSTALL_LANGUAGES)
60AC_SUBST(UNINSTALL_LANGUAGES)
61
e6ea7199 62AC_OUTPUT(Makedefs
6b21a4ce 63 conf/cups-files.conf
e6ea7199 64 conf/cupsd.conf
65 conf/mime.convs
66 conf/pam.std
67 conf/snmp.conf
68 cups-config
d5ca4b18 69 data/testprint
ea101cc4 70 desktop/cups.desktop
5f1e9934 71 doc/help/ref-cups-files-conf.html
e6ea7199 72 doc/help/ref-cupsd-conf.html
73 doc/help/standard.html
74 doc/index.html
75 man/client.conf.man
76 man/cups-deviced.man
77 man/cups-driverd.man
6b21a4ce 78 man/cups-files.conf.man
e6ea7199 79 man/cups-lpd.man
c45401bb 80 man/cups-snmp.man
e6ea7199 81 man/cupsaddsmb.man
82 man/cupsd.conf.man
83 man/cupsd.man
e6ea7199 84 man/lpoptions.man
85 scheduler/cups-lpd.xinetd
86 scheduler/cups.sh
87 scheduler/cups.xml
88 scheduler/org.cups.cups-lpd.plist
89 templates/header.tmpl
90 packaging/cups.list
13bffc9a 91 $LANGFILES)
3a57cba8 92
753453e4 93chmod +x cups-config
3a57cba8 94
dec51c23 95dnl
c9d3f842 96dnl End of "$Id$".
dec51c23 97dnl