]> git.ipfire.org Git - thirdparty/cups.git/blob - config-scripts/cups-pdf.m4
d905ada0e7bdb4448d80a18fe6e8171aebbef0af
[thirdparty/cups.git] / config-scripts / cups-pdf.m4
1 dnl
2 dnl "$Id$"
3 dnl
4 dnl PDF filter configuration stuff for the Common UNIX Printing System (CUPS).
5 dnl
6 dnl Copyright 2006 by Easy Software Products, all rights reserved.
7 dnl
8 dnl These coded instructions, statements, and computer programs are the
9 dnl property of Easy Software Products and are protected by Federal
10 dnl copyright law. Distribution and use rights are outlined in the file
11 dnl "LICENSE.txt" which should have been included with this file. If this
12 dnl file is missing or damaged please contact Easy Software Products
13 dnl at:
14 dnl
15 dnl Attn: CUPS Licensing Information
16 dnl Easy Software Products
17 dnl 44141 Airport View Drive, Suite 204
18 dnl Hollywood, Maryland 20636 USA
19 dnl
20 dnl Voice: (301) 373-9600
21 dnl EMail: cups-info@cups.org
22 dnl WWW: http://www.cups.org
23 dnl
24
25 AC_ARG_ENABLE(pdftops, [ --enable-pdftops build pdftops filter, default=auto ])
26
27 PDFTOPS=""
28
29 if test "x$enable_pdftops" != xno; then
30 AC_MSG_CHECKING(whether to build pdftops filter)
31 if test "x$enable_pdftops" = xyes -o $uname != Darwin; then
32 PDFTOPS="pdftops"
33 AC_MSG_RESULT(yes)
34 else
35 AC_MSG_RESULT(no)
36 fi
37 fi
38
39 AC_SUBST(PDFTOPS)
40
41 dnl
42 dnl End of "$Id$".
43 dnl