]> git.ipfire.org Git - thirdparty/cups.git/blame - config-scripts/cups-pdf.m4
Merge final 1.4.0 (r8761) changes.
[thirdparty/cups.git] / config-scripts / cups-pdf.m4
CommitLineData
e1d6a774 1dnl
75bd9771 2dnl "$Id: cups-pdf.m4 7449 2008-04-14 18:27:53Z mike $"
e1d6a774 3dnl
4dnl PDF filter configuration stuff for the Common UNIX Printing System (CUPS).
5dnl
8b116e60 6dnl Copyright 2007-2009 by Apple Inc.
e1d6a774 7dnl Copyright 2006 by Easy Software Products, all rights reserved.
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/".
e1d6a774 14dnl
15
ee6ddad2 16AC_ARG_WITH(pdftops, [ --with-pdftops set pdftops filter (gs,/path/to/gs,pdftops,/path/to/pdftops,none), default=pdftops ])
e1d6a774 17
18PDFTOPS=""
bf3816c7
MS
19CUPS_PDFTOPS=""
20CUPS_GHOSTSCRIPT=""
e1d6a774 21
bf3816c7
MS
22case "x$with_pdftops" in
23 x) # Default/auto
24 if test $uname != Darwin; then
25 AC_PATH_PROG(CUPS_PDFTOPS, pdftops)
26 if test "x$CUPS_PDFTOPS" != x; then
27 AC_DEFINE(HAVE_PDFTOPS)
28 PDFTOPS="pdftops"
29 else
30 AC_PATH_PROG(CUPS_GHOSTSCRIPT, gs)
31 if test "x$CUPS_GHOSTSCRIPT" != x; then
32 AC_DEFINE(HAVE_GHOSTSCRIPT)
33 PDFTOPS="pdftops"
34 fi
35 fi
ae71f5de 36 fi
bf3816c7 37 ;;
91c84a35 38
bf3816c7 39 xgs)
ae71f5de
MS
40 AC_PATH_PROG(CUPS_GHOSTSCRIPT, gs)
41 if test "x$CUPS_GHOSTSCRIPT" != x; then
42 AC_DEFINE(HAVE_GHOSTSCRIPT)
bf3816c7
MS
43 PDFTOPS="pdftops"
44 else
45 AC_MSG_ERROR(Unable to find gs program!)
46 exit 1
ae71f5de 47 fi
bf3816c7 48 ;;
ae71f5de 49
ee6ddad2
MS
50 x/*/gs) # Use /path/to/gs without any check:
51 CUPS_GHOSTSCRIPT="$with_pdftops"
52 AC_DEFINE(HAVE_GHOSTSCRIPT)
53 PDFTOPS="pdftops"
54 ;;
55
bf3816c7
MS
56 xpdftops)
57 AC_PATH_PROG(CUPS_PDFTOPS, pdftops)
58 if test "x$CUPS_PDFTOPS" != x; then
59 AC_DEFINE(HAVE_PDFTOPS)
60 PDFTOPS="pdftops"
61 else
62 AC_MSG_ERROR(Unable to find pdftops program!)
91c84a35 63 exit 1
e1d6a774 64 fi
bf3816c7 65 ;;
ee6ddad2
MS
66
67 x/*/pdftops) # Use /path/to/pdftops without any check:
68 CUPS_PDFTOPS="$with_pdftops"
69 AC_DEFINE(HAVE_PDFTOPS)
70 PDFTOPS="pdftops"
71 ;;
72
73 xnone) # Make no pdftops filter if with_pdftops=none:
74 ;;
75
76 *) # Invalid with_pdftops value:
77 AC_MSG_ERROR(Invalid with_pdftops value!)
78 exit 1
79 ;;
bf3816c7 80esac
e1d6a774 81
bf3816c7
MS
82AC_DEFINE_UNQUOTED(CUPS_PDFTOPS, "$CUPS_PDFTOPS")
83AC_DEFINE_UNQUOTED(CUPS_GHOSTSCRIPT, "$CUPS_GHOSTSCRIPT")
e1d6a774 84AC_SUBST(PDFTOPS)
85
86dnl
75bd9771 87dnl End of "$Id: cups-pdf.m4 7449 2008-04-14 18:27:53Z mike $".
e1d6a774 88dnl