]> git.ipfire.org Git - thirdparty/cups.git/blob - config-scripts/cups-pap.m4
Load cups into easysw/current.
[thirdparty/cups.git] / config-scripts / cups-pap.m4
1 dnl
2 dnl "$Id: cups-pam.m4 5466 2006-04-26 19:52:27Z mike $"
3 dnl
4 dnl PAP (AppleTalk) 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 # Currently the PAP backend is only supported on MacOS X with the AppleTalk
17 # SDK installed...
18 PAP=""
19 if test $uname = Darwin; then
20 PAP="pap"
21 AC_CHECK_HEADER(AppleTalk/at_proto.h)
22 fi
23
24 AC_SUBST(PAP)
25
26 dnl
27 dnl End of "$Id: cups-pam.m4 5466 2006-04-26 19:52:27Z mike $".
28 dnl