]> git.ipfire.org Git - thirdparty/cups.git/blame - configure.in
Merge changes from CUPS 1.6svn-r9968.
[thirdparty/cups.git] / configure.in
CommitLineData
ef416fc2 1dnl
b19ccc9e 2dnl "$Id: configure.in 7833 2008-08-04 20:55:13Z mike $"
ef416fc2 3dnl
f8b3a85b 4dnl Configuration script for CUPS.
ef416fc2 5dnl
f8b3a85b 6dnl Copyright 2007-2010 by Apple Inc.
f7deaa1a 7dnl Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 8dnl
9dnl These coded instructions, statements, and computer programs are the
bc44d920 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/".
ef416fc2 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
b86bc4cf 23sinclude(config-scripts/cups-3264.m4)
ef416fc2 24sinclude(config-scripts/cups-sharedlibs.m4)
25sinclude(config-scripts/cups-libtool.m4)
26sinclude(config-scripts/cups-compiler.m4)
27
ef416fc2 28sinclude(config-scripts/cups-network.m4)
f7deaa1a 29sinclude(config-scripts/cups-poll.m4)
ef416fc2 30sinclude(config-scripts/cups-slp.m4)
f7deaa1a 31sinclude(config-scripts/cups-gssapi.m4)
b423cd4c 32sinclude(config-scripts/cups-ldap.m4)
c7017ecc 33sinclude(config-scripts/cups-threads.m4)
ef416fc2 34sinclude(config-scripts/cups-ssl.m4)
35sinclude(config-scripts/cups-pam.m4)
ef416fc2 36sinclude(config-scripts/cups-largefile.m4)
f7deaa1a 37sinclude(config-scripts/cups-dnssd.m4)
a4d04587 38sinclude(config-scripts/cups-launchd.m4)
e53920b9 39sinclude(config-scripts/cups-defaults.m4)
ef416fc2 40sinclude(config-scripts/cups-scripting.m4)
41
ed486911 42INSTALL_LANGUAGES=""
43UNINSTALL_LANGUAGES=""
89d46774 44LANGFILES=""
45if test "x$LANGUAGES" != x; then
ed486911 46 INSTALL_LANGUAGES="install-languages"
47 UNINSTALL_LANGUAGES="uninstall-languages"
89d46774 48 for lang in $LANGUAGES; do
d09495fa 49 if test -f doc/$lang/index.html.in; then
50 LANGFILES="$LANGFILES doc/$lang/index.html"
51 fi
52
d09495fa 53 if test -f templates/$lang/header.tmpl.in; then
54 LANGFILES="$LANGFILES templates/$lang/header.tmpl"
55 fi
89d46774 56 done
a4845881 57elif test "x$CUPS_BUNDLEDIR" != x; then
0837b7e8
MS
58 INSTALL_LANGUAGES="install-langbundle"
59 UNINSTALL_LANGUAGES="uninstall-langbundle"
89d46774 60fi
61
ed486911 62AC_SUBST(INSTALL_LANGUAGES)
63AC_SUBST(UNINSTALL_LANGUAGES)
64
4d301e69
MS
65AC_OUTPUT(Makedefs
66 conf/cupsd.conf
67 conf/mime.convs
68 conf/pam.std
69 conf/snmp.conf
70 cups-config
4b3f67ff 71 data/testprint
ee571f26 72 desktop/cups.desktop
4d301e69
MS
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
4d301e69
MS
83 man/lpoptions.man
84 scheduler/cups-lpd.xinetd
85 scheduler/cups.sh
86 scheduler/cups.xml
87 scheduler/org.cups.cups-lpd.plist
88 templates/header.tmpl
89 packaging/cups.list
89d46774 90 $LANGFILES)
ef416fc2 91
92chmod +x cups-config
93
94dnl
b19ccc9e 95dnl End of "$Id: configure.in 7833 2008-08-04 20:55:13Z mike $".
ef416fc2 96dnl