]> git.ipfire.org Git - thirdparty/cups.git/blame - configure.in
Load cups into easysw/current.
[thirdparty/cups.git] / configure.in
CommitLineData
ef416fc2 1dnl
f7deaa1a 2dnl "$Id: configure.in 6291 2007-02-19 21:54:27Z mike $"
ef416fc2 3dnl
4dnl Configuration script for the Common UNIX Printing System (CUPS).
5dnl
f7deaa1a 6dnl Copyright 1997-2007 by Easy Software Products, all rights reserved.
ef416fc2 7dnl
8dnl These coded instructions, statements, and computer programs are the
9dnl property of Easy Software Products and are protected by Federal
10dnl copyright law. Distribution and use rights are outlined in the file
11dnl "LICENSE.txt" which should have been included with this file. If this
12dnl file is missing or damaged please contact Easy Software Products
13dnl at:
14dnl
15dnl Attn: CUPS Licensing Information
16dnl Easy Software Products
17dnl 44141 Airport View Drive, Suite 204
18dnl Hollywood, Maryland 20636 USA
19dnl
20dnl Voice: (301) 373-9600
21dnl EMail: cups-info@cups.org
22dnl WWW: http://www.cups.org
23dnl
24
25AC_INIT(cups/cups.h)
26
27sinclude(config-scripts/cups-opsys.m4)
28sinclude(config-scripts/cups-common.m4)
29sinclude(config-scripts/cups-directories.m4)
30sinclude(config-scripts/cups-manpages.m4)
31
b86bc4cf 32sinclude(config-scripts/cups-3264.m4)
ef416fc2 33sinclude(config-scripts/cups-sharedlibs.m4)
34sinclude(config-scripts/cups-libtool.m4)
35sinclude(config-scripts/cups-compiler.m4)
36
37sinclude(config-scripts/cups-image.m4)
38sinclude(config-scripts/cups-network.m4)
f7deaa1a 39sinclude(config-scripts/cups-poll.m4)
ef416fc2 40sinclude(config-scripts/cups-slp.m4)
f7deaa1a 41sinclude(config-scripts/cups-gssapi.m4)
b423cd4c 42sinclude(config-scripts/cups-ldap.m4)
ef416fc2 43sinclude(config-scripts/cups-ssl.m4)
44sinclude(config-scripts/cups-pam.m4)
45sinclude(config-scripts/cups-threads.m4)
46sinclude(config-scripts/cups-largefile.m4)
f7deaa1a 47sinclude(config-scripts/cups-dnssd.m4)
a4d04587 48sinclude(config-scripts/cups-launchd.m4)
e53920b9 49sinclude(config-scripts/cups-defaults.m4)
a74454a7 50sinclude(config-scripts/cups-pap.m4)
e1d6a774 51sinclude(config-scripts/cups-pdf.m4)
ef416fc2 52sinclude(config-scripts/cups-scripting.m4)
53
ed486911 54INSTALL_LANGUAGES=""
55UNINSTALL_LANGUAGES=""
89d46774 56LANGFILES=""
57if test "x$LANGUAGES" != x; then
ed486911 58 INSTALL_LANGUAGES="install-languages"
59 UNINSTALL_LANGUAGES="uninstall-languages"
89d46774 60 for lang in $LANGUAGES; do
d09495fa 61 if test -f doc/$lang/index.html.in; then
62 LANGFILES="$LANGFILES doc/$lang/index.html"
63 fi
64
65 if test -f templates/$lang/edit-config.tmpl.in; then
66 LANGFILES="$LANGFILES templates/$lang/edit-config.tmpl"
67 fi
68
69 if test -f templates/$lang/header.tmpl.in; then
70 LANGFILES="$LANGFILES templates/$lang/header.tmpl"
71 fi
89d46774 72 done
73fi
74
ed486911 75AC_SUBST(INSTALL_LANGUAGES)
76AC_SUBST(UNINSTALL_LANGUAGES)
77
e1d6a774 78AC_OUTPUT(Makedefs packaging/cups.list init/cups.sh init/cups-lpd cups-config
79 conf/cupsd.conf conf/pam.std doc/index.html
e1d6a774 80 doc/help/standard.html man/client.conf.man
81 man/cups-deviced.man man/cups-driverd.man
82 man/cups-lpd.man man/cupsaddsmb.man man/cupsd.man
83 man/cupsd.conf.man man/lpoptions.man
bd7854cb 84 templates/edit-config.tmpl templates/header.tmpl
89d46774 85 $LANGFILES)
ef416fc2 86
87chmod +x cups-config
88
89dnl
f7deaa1a 90dnl End of "$Id: configure.in 6291 2007-02-19 21:54:27Z mike $".
ef416fc2 91dnl