forked from troglobit/ssdp-responder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
146 lines (114 loc) · 4.52 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
AC_INIT([ssdpd], [2.1], [https://github.com/troglobit/ssdp-responder/issues],
[ssdp-responder], [https://github.com/troglobit/ssdp-responder])
AC_CONFIG_AUX_DIR(aux)
AM_INIT_AUTOMAKE([1.11 foreign])
AM_SILENT_RULES([yes])
AC_CONFIG_SRCDIR([src/ssdpd.c])
AC_CONFIG_HEADER([config.h])
AC_CONFIG_FILES([Makefile src/Makefile man/Makefile ssdpd.service])
# Check for standard programs, headers, and functions
AC_PROG_CC
AC_PROG_INSTALL
# Check build host, differnt for each operating system
AC_CANONICAL_HOST
case $host_os in
netbsd*|openbsd*|freebsd*|dragonfly*|solaris*)
vardb=db
;;
linux*)
vardb=lib/misc
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
;;
*)
vardb=tmp
;;
esac
AC_SUBST(vardb)
# Required to check for libsystemd-dev
PKG_PROG_PKG_CONFIG
# Check if some func is not in libc
AC_CHECK_LIB([util], [pidfile])
# Check for Linux Netlink support
AC_CHECK_HEADERS([linux/netlink.h linux/rtnetlink.h termios.h])
# Check for usually missing API's, which we can replace
AC_REPLACE_FUNCS([pidfile strlcpy utimensat])
AC_CONFIG_LIBOBJ_DIR([lib])
# Options
AC_ARG_ENABLE(test-mode,
AS_HELP_STRING([--enable-test-mode], [Enable loopback test mode]),, [enable_test_mode=no])
AC_ARG_WITH([vendor],
AS_HELP_STRING([--with-vendor=VENDOR], [Override vendor string, default: Troglobit Software Systems]),
[vendor=$withval], [vendor="Troglobit Software Systems"])
AC_ARG_WITH([vendor-url],
AS_HELP_STRING([--with-vendor-url=VENDOR], [Set vendor URL, default disabled]))
AC_ARG_WITH([model],
AS_HELP_STRING([--with-model=MODEL], [Override model string, default: Generic]),
[model=$withval], [model="Generic"])
AC_ARG_WITH([systemd],
[AS_HELP_STRING([--with-systemd=DIR], [Override detected directory for systemd unit files])],,
[with_systemd=auto])
AS_IF([test "x$enable_test_mode" == "xyes"], [
AC_DEFINE(TEST_MODE, 1, [Loopback test mode])])
AM_CONDITIONAL([TEST_MODE], [test "x$enable_test_mode" == "xyes"])
AS_IF([test "x$with_vendor_url" != "xno" -a "x$with_vendor_url" != "xyes"], [
AC_DEFINE_UNQUOTED(MANUFACTURER_URL, "$with_vendor_url", [Manufacturer URL in XML])])
AS_IF([test "x$with_vendor" != "xno"], [
AS_IF([test "x$vendor" = "xyes"], [
vendor="Troglobit Software Systems"])])
AC_DEFINE_UNQUOTED(MANUFACTURER, "$vendor", [Manufacturer in XML])
AS_IF([test "x$with_model" != "xno"], [
AS_IF([test "x$model" = "xyes"], [
model="Generic"])])
AC_DEFINE_UNQUOTED(MODEL, "$model", [Model name in XML])
# Check where to install the systemd .service file
AS_IF([test "x$with_systemd" = "xyes" -o "x$with_systemd" = "xauto"], [
def_systemd=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)
AS_IF([test "x$def_systemd" = "x"],
[AS_IF([test "x$with_systemd" = "xyes"],
[AC_MSG_ERROR([systemd support requested but pkg-config unable to query systemd package])])
with_systemd=no], [with_systemd="$def_systemd"])]
)
AS_IF([test "x$with_systemd" != "xno"],
[AC_SUBST([systemddir], [$with_systemd])])
AM_CONDITIONAL([HAVE_SYSTEMD], [test "x$with_systemd" != "xno"])
# Expand $sbindir and $sysconfdir for systemd unit file
# NOTE: This does *not* take prefix/exec_prefix override at "make
# install" into account, unfortunately.
test "x$prefix" = xNONE && prefix=$ac_default_prefix
test "x$exec_prefix" = "xNONE" && exec_prefix='${prefix}'
SBINDIR=`eval echo $sbindir`
SBINDIR=`eval echo $SBINDIR`
AC_SUBST(SBINDIR)
SYSCONFDIR=`eval echo $sysconfdir`
AC_SUBST(SYSCONFDIR)
# Workaround for autoconf < 2.70, although some major distros have
# backported support for runstatedir already.
AS_IF([test -z "$runstatedir"], runstatedir="$localstatedir/run")
AC_SUBST(runstatedir)
# Create all config files
AC_OUTPUT
# Expand directories for configuration summary, unexpanded defaults:
# runstatedir => ${localstatedir}/run
LOCALSTATEDIR=`eval echo $localstatedir`
RUNSTATEDIR=`eval echo $runstatedir`
RUNSTATEDIR=`eval echo $RUNSTATEDIR`
cat <<EOF
------------------ Summary ------------------
$PACKAGE_NAME version $PACKAGE_VERSION
Install prefix.....: $prefix
PID file...........: $RUNSTATEDIR/ssdpd.pid
UUID cache file....: $LOCALSTATEDIR/$vardb/ssdpd.cache
C Compiler.........: $CC $CFLAGS $CPPFLAGS $LDFLAGS $LIBS
Site specifics:
vendor.............: $vendor
vendor URL.........: $vendor_url
device model.......: $model
Optional features:
test mode..........: $enable_test_mode
systemd............: $with_systemd
------------- Compiler version --------------
$($CC --version || true)
---------------------------------------------
Check the above options and compile with:
${MAKE-make}
EOF