]> git.ipfire.org Git - thirdparty/cups.git/blob - config-scripts/cups-launchd.m4
Load cups into easysw/current.
[thirdparty/cups.git] / config-scripts / cups-launchd.m4
1 dnl
2 dnl "$Id: cups-launchd.m4 6649 2007-07-11 21:46:42Z mike $"
3 dnl
4 dnl launchd stuff for the Common UNIX Printing System (CUPS).
5 dnl
6 dnl Copyright 2007 by Apple Inc.
7 dnl Copyright 1997-2005 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
17 AC_ARG_ENABLE(launchd, [ --enable-launchd turn on launchd support, default=yes])
18
19 DEFAULT_LAUNCHD_CONF=""
20 LAUNCHDLIBS=""
21
22 if test x$enable_launchd != xno; then
23 AC_CHECK_FUNC(launch_msg, AC_DEFINE(HAVE_LAUNCHD))
24 AC_CHECK_HEADER(launch.h, AC_DEFINE(HAVE_LAUNCH_H))
25
26 case "$uname" in
27 Darwin*)
28 # Darwin, MacOS X
29 DEFAULT_LAUNCHD_CONF="/System/Library/LaunchDaemons/org.cups.cupsd.plist"
30 # liblaunch is already part of libSystem
31 ;;
32 *)
33 # All others; this test will need to be updated
34 ;;
35 esac
36 fi
37
38 AC_DEFINE_UNQUOTED(CUPS_DEFAULT_LAUNCHD_CONF, "$DEFAULT_LAUNCHD_CONF")
39 AC_SUBST(DEFAULT_LAUNCHD_CONF)
40 AC_SUBST(LAUNCHDLIBS)
41
42 dnl
43 dnl End of "$Id: cups-launchd.m4 6649 2007-07-11 21:46:42Z mike $".
44 dnl