]> git.ipfire.org Git - thirdparty/cups.git/blob - config-scripts/cups-pdf.m4
deac73ed832f48f34aa539359486325271f27f65
[thirdparty/cups.git] / config-scripts / cups-pdf.m4
1 dnl
2 dnl "$Id: cups-pdf.m4 6649 2007-07-11 21:46:42Z mike $"
3 dnl
4 dnl PDF filter configuration stuff for the Common UNIX Printing System (CUPS).
5 dnl
6 dnl Copyright 2007 by Apple Inc.
7 dnl Copyright 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 AC_ARG_ENABLE(pdftops, [ --enable-pdftops build pdftops filter, default=auto ])
17
18 PDFTOPS=""
19
20 if test "x$enable_pdftops" != xno; then
21 AC_MSG_CHECKING(whether to build pdftops filter)
22 if test "x$enable_pdftops" = xyes -o $uname != Darwin; then
23 PDFTOPS="pdftops"
24 AC_MSG_RESULT(yes)
25 else
26 AC_MSG_RESULT(no)
27 fi
28 fi
29
30 AC_SUBST(PDFTOPS)
31
32 dnl
33 dnl End of "$Id: cups-pdf.m4 6649 2007-07-11 21:46:42Z mike $".
34 dnl