]> git.ipfire.org Git - thirdparty/cups.git/blob - config-scripts/cups-dnssd.m4
License change: Apache License, Version 2.0.
[thirdparty/cups.git] / config-scripts / cups-dnssd.m4
1 dnl
2 dnl DNS Service Discovery (aka Bonjour) stuff for CUPS.
3 dnl
4 dnl Copyright 2007-2017 by Apple Inc.
5 dnl
6 dnl Licensed under Apache License v2.0. See the file "LICENSE" for more information.
7 dnl
8
9 AC_ARG_ENABLE(avahi, [ --disable-avahi disable DNS Service Discovery support using Avahi])
10 AC_ARG_ENABLE(dnssd, [ --disable-dnssd disable DNS Service Discovery support using mDNSResponder])
11 AC_ARG_WITH(dnssd-libs, [ --with-dnssd-libs set directory for DNS Service Discovery library],
12 LDFLAGS="-L$withval $LDFLAGS"
13 DSOFLAGS="-L$withval $DSOFLAGS",)
14 AC_ARG_WITH(dnssd-includes, [ --with-dnssd-includes set directory for DNS Service Discovery includes],
15 CFLAGS="-I$withval $CFLAGS"
16 CPPFLAGS="-I$withval $CPPFLAGS",)
17
18 DNSSDLIBS=""
19 DNSSD_BACKEND=""
20 IPPFIND_BIN=""
21 IPPFIND_MAN=""
22
23 if test "x$PKGCONFIG" != x -a x$enable_avahi != xno -a x$host_os_name != xdarwin; then
24 AC_MSG_CHECKING(for Avahi)
25 if $PKGCONFIG --exists avahi-client; then
26 AC_MSG_RESULT(yes)
27 CFLAGS="$CFLAGS `$PKGCONFIG --cflags avahi-client`"
28 DNSSDLIBS="`$PKGCONFIG --libs avahi-client`"
29 DNSSD_BACKEND="dnssd"
30 IPPFIND_BIN="ippfind"
31 IPPFIND_MAN="ippfind.\$(MAN1EXT)"
32 AC_DEFINE(HAVE_AVAHI)
33 else
34 AC_MSG_RESULT(no)
35 fi
36 fi
37
38 if test "x$DNSSD_BACKEND" = x -a x$enable_dnssd != xno; then
39 AC_CHECK_HEADER(dns_sd.h, [
40 case "$host_os_name" in
41 darwin*)
42 # Darwin and macOS...
43 AC_DEFINE(HAVE_DNSSD)
44 DNSSDLIBS="-framework CoreFoundation -framework SystemConfiguration"
45 DNSSD_BACKEND="dnssd"
46 IPPFIND_BIN="ippfind"
47 IPPFIND_MAN="ippfind.\$(MAN1EXT)"
48 ;;
49 *)
50 # All others...
51 AC_MSG_CHECKING(for current version of dns_sd library)
52 SAVELIBS="$LIBS"
53 LIBS="$LIBS -ldns_sd"
54 AC_TRY_COMPILE([#include <dns_sd.h>],
55 [int constant = kDNSServiceFlagsShareConnection;
56 unsigned char txtRecord[100];
57 uint8_t valueLen;
58 TXTRecordGetValuePtr(sizeof(txtRecord),
59 txtRecord, "value", &valueLen);],
60 AC_MSG_RESULT(yes)
61 AC_DEFINE(HAVE_DNSSD)
62 DNSSDLIBS="-ldns_sd"
63 DNSSD_BACKEND="dnssd",
64 IPPFIND_BIN="ippfind"
65 IPPFIND_MAN="ippfind.\$(MAN1EXT)"
66 AC_MSG_RESULT(no))
67 LIBS="$SAVELIBS"
68 ;;
69 esac
70 ])
71 fi
72
73 AC_SUBST(DNSSDLIBS)
74 AC_SUBST(DNSSD_BACKEND)
75 AC_SUBST(IPPFIND_BIN)
76 AC_SUBST(IPPFIND_MAN)