]> git.ipfire.org Git - thirdparty/cups.git/blame_incremental - config-scripts/cups-scripting.m4
Load cups into easysw/current.
[thirdparty/cups.git] / config-scripts / cups-scripting.m4
... / ...
CommitLineData
1dnl
2dnl "$Id: cups-scripting.m4 6649 2007-07-11 21:46:42Z mike $"
3dnl
4dnl Scripting configuration stuff for the Common UNIX Printing System (CUPS).
5dnl
6dnl Copyright 2007 by Apple Inc.
7dnl Copyright 1997-2006 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
16dnl Do we have Java?
17AC_ARG_WITH(java, [ --with-java set Java interpreter for web interfaces ],
18 CUPS_JAVA="$withval",
19 CUPS_JAVA="")
20
21if test "x$CUPS_JAVA" = x; then
22 AC_PATH_PROG(JAVA,java)
23 CUPS_JAVA="$JAVA"
24fi
25
26AC_DEFINE_UNQUOTED(CUPS_JAVA, "$CUPS_JAVA")
27
28if test "x$CUPS_JAVA" != x; then
29 AC_DEFINE(HAVE_JAVA)
30fi
31
32dnl Do we have Perl?
33AC_ARG_WITH(perl, [ --with-perl set Perl interpreter for web interfaces ],
34 CUPS_PERL="$withval",
35 CUPS_PERL="")
36
37if test "x$CUPS_PERL" = x; then
38 AC_PATH_PROG(PERL,perl)
39 CUPS_PERL="$PERL"
40fi
41
42AC_DEFINE_UNQUOTED(CUPS_PERL, "$CUPS_PERL")
43
44if test "x$CUPS_PERL" != x; then
45 AC_DEFINE(HAVE_PERL)
46fi
47
48dnl Do we have PHP?
49AC_ARG_WITH(php, [ --with-php set PHP interpreter for web interfaces ],
50 CUPS_PHP="$withval",
51 CUPS_PHP="")
52
53if test "x$CUPS_PHP" = x; then
54 AC_PATH_PROG(PHP,php)
55 CUPS_PHP="$PHP"
56fi
57
58AC_DEFINE_UNQUOTED(CUPS_PHP, "$CUPS_PHP")
59
60if test "x$CUPS_PHP" = x; then
61 CUPS_PHP="no"
62else
63 AC_DEFINE(HAVE_PHP)
64fi
65
66PHPDIR=""
67if test "x$CUPS_PHP" != xno; then
68 AC_PATH_PROG(PHPCONFIG, php-config)
69
70 if test "x$PHPCONFIG" != x; then
71 PHPDIR="scripting/php"
72 fi
73fi
74
75AC_SUBST(PHPDIR)
76
77dnl Do we have Python?
78AC_ARG_WITH(python, [ --with-python set Python interpreter for web interfaces ],
79 CUPS_PYTHON="$withval",
80 CUPS_PYTHON="")
81
82if test "x$CUPS_PYTHON" = x; then
83 AC_PATH_PROG(PYTHON,python)
84 CUPS_PYTHON="$PYTHON"
85fi
86
87AC_DEFINE_UNQUOTED(CUPS_PYTHON, "$CUPS_PYTHON")
88
89if test "x$CUPS_PYTHON" != x; then
90 AC_DEFINE(HAVE_PYTHON)
91fi
92
93dnl
94dnl End of "$Id: cups-scripting.m4 6649 2007-07-11 21:46:42Z mike $".
95dnl