]> git.ipfire.org Git - thirdparty/cups.git/blob - config-scripts/cups-pap.m4
Remove svn:keywords since they cause svn_load_dirs.pl to complain about every file.
[thirdparty/cups.git] / config-scripts / cups-pap.m4
1 dnl
2 dnl "$Id: cups-pap.m4 177 2006-06-21 00:20:03Z jlovell $"
3 dnl
4 dnl PAP (AppleTalk) 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 # Currently the PAP backend is only supported on MacOS X with the AppleTalk
26 # SDK installed...
27 PAP=""
28 if test $uname = Darwin; then
29 PAP="pap"
30 AC_CHECK_HEADER(AppleTalk/at_proto.h)
31 fi
32
33 AC_SUBST(PAP)
34
35 dnl
36 dnl End of "$Id: cups-pap.m4 177 2006-06-21 00:20:03Z jlovell $".
37 dnl