]> git.ipfire.org Git - people/ms/network.git/blob - configure.ac
f3dd33b4d13182e5b1125fc947b861eecb6c2cf1
[people/ms/network.git] / configure.ac
1 ###############################################################################
2 # #
3 # Pakfire - The IPFire package management system #
4 # Copyright (C) 2013 IPFire Network Development Team #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 AC_PREREQ([2.64])
22
23 AC_INIT([network],
24 [006],
25 [info@ipfire.org],
26 [network],
27 [http://www.ipfire.org/])
28
29 AC_CONFIG_AUX_DIR([build-aux])
30
31 AC_PREFIX_DEFAULT([/usr])
32
33 AM_INIT_AUTOMAKE([
34 foreign
35 1.11
36 -Wall
37 -Wno-portability
38 silent-rules
39 tar-pax
40 subdir-objects
41 ])
42 AM_SILENT_RULES([yes])
43
44 AC_PROG_LN_S
45 AC_PROG_MKDIR_P
46 AC_PROG_SED
47
48 AC_PATH_PROG([XSLTPROC], [xsltproc])
49
50 # pkg-config
51 PKG_PROG_PKG_CONFIG
52 # This makes sure pkg.m4 is available.
53 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
54
55 # ------------------------------------------------------------------------------
56 AC_ARG_WITH([systemdsystemunitdir],
57 AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
58 [], [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)])
59 AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])
60 AM_CONDITIONAL(HAVE_SYSTEMD, [test -n "$with_systemdsystemunitdir"])
61
62 # ------------------------------------------------------------------------------
63 AC_ARG_WITH([udevdir],
64 AS_HELP_STRING([--with-udevdir=DIR], [Directory for udev files]),
65 [], [with_udevdir=$($PKG_CONFIG --variable=udevdir udev)])
66 AC_SUBST([udevdir], [$with_udevdir])
67 AM_CONDITIONAL(HAVE_UDEV, [test -n "$with_udevdir"])
68
69 # ------------------------------------------------------------------------------
70 AC_CONFIG_FILES([
71 Makefile
72 ])
73
74 AC_OUTPUT
75 AC_MSG_RESULT([
76 $PACKAGE_NAME $VERSION
77
78 prefix: $prefix
79
80 systemdsystemunitdir: $systemdsystemunitdir
81 udevdir: $udevdir
82 ])