]> git.ipfire.org Git - thirdparty/cups.git/blame_incremental - configure.in
Merge changes from CUPS 1.5.1-r9875.
[thirdparty/cups.git] / configure.in
... / ...
CommitLineData
1dnl
2dnl "$Id: configure.in 7833 2008-08-04 20:55:13Z mike $"
3dnl
4dnl Configuration script for CUPS.
5dnl
6dnl Copyright 2007-2010 by Apple Inc.
7dnl Copyright 1997-2007 by Easy Software Products, all rights reserved.
8dnl
9dnl These coded instructions, statements, and computer programs are the
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/".
14dnl
15
16AC_INIT(cups/cups.h)
17
18sinclude(config-scripts/cups-opsys.m4)
19sinclude(config-scripts/cups-common.m4)
20sinclude(config-scripts/cups-directories.m4)
21sinclude(config-scripts/cups-manpages.m4)
22
23sinclude(config-scripts/cups-3264.m4)
24sinclude(config-scripts/cups-sharedlibs.m4)
25sinclude(config-scripts/cups-libtool.m4)
26sinclude(config-scripts/cups-compiler.m4)
27
28sinclude(config-scripts/cups-image.m4)
29sinclude(config-scripts/cups-network.m4)
30sinclude(config-scripts/cups-poll.m4)
31sinclude(config-scripts/cups-slp.m4)
32sinclude(config-scripts/cups-gssapi.m4)
33sinclude(config-scripts/cups-ldap.m4)
34sinclude(config-scripts/cups-threads.m4)
35sinclude(config-scripts/cups-ssl.m4)
36sinclude(config-scripts/cups-pam.m4)
37sinclude(config-scripts/cups-largefile.m4)
38sinclude(config-scripts/cups-dnssd.m4)
39sinclude(config-scripts/cups-launchd.m4)
40sinclude(config-scripts/cups-defaults.m4)
41sinclude(config-scripts/cups-pdf.m4)
42sinclude(config-scripts/cups-scripting.m4)
43
44INSTALL_LANGUAGES=""
45UNINSTALL_LANGUAGES=""
46LANGFILES=""
47if test "x$LANGUAGES" != x; then
48 INSTALL_LANGUAGES="install-languages"
49 UNINSTALL_LANGUAGES="uninstall-languages"
50 for lang in $LANGUAGES; do
51 if test -f doc/$lang/index.html.in; then
52 LANGFILES="$LANGFILES doc/$lang/index.html"
53 fi
54
55 if test -f templates/$lang/header.tmpl.in; then
56 LANGFILES="$LANGFILES templates/$lang/header.tmpl"
57 fi
58 done
59elif test "x$CUPS_BUNDLEDIR" != ""; then
60 INSTALL_LANGUAGES="install-langbundle"
61 UNINSTALL_LANGUAGES="uninstall-langbundle"
62fi
63
64AC_SUBST(INSTALL_LANGUAGES)
65AC_SUBST(UNINSTALL_LANGUAGES)
66
67AC_OUTPUT(Makedefs
68 conf/cupsd.conf
69 conf/mime.convs
70 conf/pam.std
71 conf/snmp.conf
72 cups-config
73 data/testprint
74 desktop/cups.desktop
75 doc/help/ref-cupsd-conf.html
76 doc/help/standard.html
77 doc/index.html
78 man/client.conf.man
79 man/cups-deviced.man
80 man/cups-driverd.man
81 man/cups-lpd.man
82 man/cupsaddsmb.man
83 man/cupsd.conf.man
84 man/cupsd.man
85 man/lpoptions.man
86 scheduler/cups-lpd.xinetd
87 scheduler/cups.sh
88 scheduler/cups.xml
89 scheduler/org.cups.cups-lpd.plist
90 templates/header.tmpl
91 packaging/cups.list
92 $LANGFILES)
93
94chmod +x cups-config
95
96dnl
97dnl End of "$Id: configure.in 7833 2008-08-04 20:55:13Z mike $".
98dnl