]> git.ipfire.org Git - thirdparty/cups.git/blob - config-scripts/cups-launchd.m4
Drop old private APIs that are no longer used/supported.
[thirdparty/cups.git] / config-scripts / cups-launchd.m4
1 dnl
2 dnl "$Id$"
3 dnl
4 dnl launchd stuff for CUPS.
5 dnl
6 dnl Copyright 2007-2010 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, [ --disable-launchd disable launchd support])
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_SUBST(DEFAULT_LAUNCHD_CONF)
39 AC_SUBST(LAUNCHDLIBS)
40
41 dnl
42 dnl End of "$Id$".
43 dnl