]> git.ipfire.org Git - thirdparty/cups.git/blob - config-scripts/cups-scripting.m4
Merge changes from CUPS 1.6svn-r9939.
[thirdparty/cups.git] / config-scripts / cups-scripting.m4
1 dnl
2 dnl "$Id: cups-scripting.m4 7915 2008-09-07 22:18:29Z mike $"
3 dnl
4 dnl Scripting configuration stuff for CUPS.
5 dnl
6 dnl Copyright 2007-2010 by Apple Inc.
7 dnl Copyright 1997-2006 by Easy Software Products, all rights reserved.
8 dnl
9 dnl These coded instructions, statements, and computer programs are the
10 dnl property of Apple Inc. and are protected by Federal copyright
11 dnl law. Distribution and use rights are outlined in the file "LICENSE.txt"
12 dnl which should have been included with this file. If this file is
13 dnl file is missing or damaged, see the license at "http://www.cups.org/".
14 dnl
15
16 dnl Do we have Java?
17 AC_ARG_WITH(java, [ --with-java set Java interpreter for web interfaces ],
18 CUPS_JAVA="$withval",
19 CUPS_JAVA="")
20
21 if test "x$CUPS_JAVA" = x; then
22 AC_PATH_PROG(JAVA,java)
23 CUPS_JAVA="$JAVA"
24 fi
25
26 AC_DEFINE_UNQUOTED(CUPS_JAVA, "$CUPS_JAVA")
27
28 if test "x$CUPS_JAVA" != x; then
29 AC_DEFINE(HAVE_JAVA)
30 fi
31
32 dnl Do we have Perl?
33 AC_ARG_WITH(perl, [ --with-perl set Perl interpreter for web interfaces ],
34 CUPS_PERL="$withval",
35 CUPS_PERL="")
36
37 if test "x$CUPS_PERL" = x; then
38 AC_PATH_PROG(PERL,perl)
39 CUPS_PERL="$PERL"
40 fi
41
42 AC_DEFINE_UNQUOTED(CUPS_PERL, "$CUPS_PERL")
43
44 if test "x$CUPS_PERL" != x; then
45 AC_DEFINE(HAVE_PERL)
46 fi
47
48 dnl Do we have PHP?
49 AC_ARG_WITH(php, [ --with-php set PHP interpreter for web interfaces ],
50 CUPS_PHP="$withval",
51 CUPS_PHP="")
52
53 if test "x$CUPS_PHP" = x; then
54 AC_PATH_PROG(PHPCGI,php-cgi)
55 if test "x$PHPCGI" = x; then
56 AC_PATH_PROG(PHP,php)
57 CUPS_PHP="$PHP"
58 else
59 CUPS_PHP="$PHPCGI"
60 fi
61 fi
62
63 AC_DEFINE_UNQUOTED(CUPS_PHP, "$CUPS_PHP")
64
65 if test "x$CUPS_PHP" = x; then
66 CUPS_PHP="no"
67 else
68 AC_DEFINE(HAVE_PHP)
69 fi
70
71 dnl Do we have Python?
72 AC_ARG_WITH(python, [ --with-python set Python interpreter for web interfaces ],
73 CUPS_PYTHON="$withval",
74 CUPS_PYTHON="")
75
76 if test "x$CUPS_PYTHON" = x; then
77 AC_PATH_PROG(PYTHON,python)
78 CUPS_PYTHON="$PYTHON"
79 fi
80
81 AC_DEFINE_UNQUOTED(CUPS_PYTHON, "$CUPS_PYTHON")
82
83 if test "x$CUPS_PYTHON" != x; then
84 AC_DEFINE(HAVE_PYTHON)
85 fi
86
87 dnl
88 dnl End of "$Id: cups-scripting.m4 7915 2008-09-07 22:18:29Z mike $".
89 dnl