]> git.ipfire.org Git - thirdparty/cups.git/blame - config-scripts/cups-pap.m4
Import changes from CUPS 1.4svn-r8704.
[thirdparty/cups.git] / config-scripts / cups-pap.m4
CommitLineData
a74454a7 1dnl
e07d4801 2dnl "$Id$"
a74454a7 3dnl
4dnl PAP (AppleTalk) stuff for the Common UNIX Printing System (CUPS).
5dnl
bf3816c7 6dnl Copyright 2007-2009 by Apple Inc.
a74454a7 7dnl Copyright 2006 by Easy Software Products, all rights reserved.
8dnl
9dnl These coded instructions, statements, and computer programs are the
bc44d920 10dnl property of Apple Inc. and are protected by Federal copyright
11dnl law. Distribution and use rights are outlined in the file "LICENSE.txt"
12dnl which should have been included with this file. If this file is
13dnl file is missing or damaged, see the license at "http://www.cups.org/".
a74454a7 14dnl
15
16# Currently the PAP backend is only supported on MacOS X with the AppleTalk
17# SDK installed...
bf3816c7 18AC_ARG_ENABLE(pap, [ --enable-pap build with AppleTalk support])
839a51c8 19
a74454a7 20PAP=""
839a51c8
MS
21AC_SUBST(PAP)
22
bf3816c7 23if test x$enable_pap = xyes -a $uname = Darwin; then
52f6f666
MS
24 AC_CHECK_HEADER(netat/appletalk.h,[
25 PAP="pap"
26 AC_CHECK_HEADER(AppleTalk/at_proto.h)])
a74454a7 27fi
28
a74454a7 29dnl
e07d4801 30dnl End of "$Id$".
a74454a7 31dnl