]> git.ipfire.org Git - thirdparty/cups.git/blame - configure.in
Use the directories loaded into the libcups global data.
[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
e6ea7199 65AC_OUTPUT(Makedefs
66 conf/cupsd.conf
67 conf/mime.convs
68 conf/pam.std
69 conf/snmp.conf
70 cups-config
d5ca4b18 71 data/testprint
ea101cc4 72 desktop/cups.desktop
e6ea7199 73 doc/help/ref-cupsd-conf.html
74 doc/help/standard.html
75 doc/index.html
76 man/client.conf.man
77 man/cups-deviced.man
78 man/cups-driverd.man
79 man/cups-lpd.man
80 man/cupsaddsmb.man
81 man/cupsd.conf.man
82 man/cupsd.man
83 man/drv.man
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