]> git.ipfire.org Git - thirdparty/cups.git/blame - config-scripts/cups-pdf.m4
Remove svn:keywords since they cause svn_load_dirs.pl to complain about every file.
[thirdparty/cups.git] / config-scripts / cups-pdf.m4
CommitLineData
e1d6a774 1dnl
c07d5b2d 2dnl "$Id: cups-pdf.m4 177 2006-06-21 00:20:03Z jlovell $"
e1d6a774 3dnl
4dnl PDF filter configuration stuff for the Common UNIX Printing System (CUPS).
5dnl
6dnl Copyright 2006 by Easy Software Products, all rights reserved.
7dnl
8dnl These coded instructions, statements, and computer programs are the
9dnl property of Easy Software Products and are protected by Federal
10dnl copyright law. Distribution and use rights are outlined in the file
11dnl "LICENSE.txt" which should have been included with this file. If this
12dnl file is missing or damaged please contact Easy Software Products
13dnl at:
14dnl
15dnl Attn: CUPS Licensing Information
16dnl Easy Software Products
17dnl 44141 Airport View Drive, Suite 204
18dnl Hollywood, Maryland 20636 USA
19dnl
20dnl Voice: (301) 373-9600
21dnl EMail: cups-info@cups.org
22dnl WWW: http://www.cups.org
23dnl
24
25AC_ARG_ENABLE(pdftops, [ --enable-pdftops build pdftops filter, default=auto ])
26
27PDFTOPS=""
28
29if 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
37fi
38
39AC_SUBST(PDFTOPS)
40
41dnl
c07d5b2d 42dnl End of "$Id: cups-pdf.m4 177 2006-06-21 00:20:03Z jlovell $".
e1d6a774 43dnl