]> git.ipfire.org Git - network.git/blame - configure.ac
Makefile: Remove any excess substitution rules
[network.git] / configure.ac
CommitLineData
5ca9dc30
MT
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
21AC_PREREQ([2.64])
22
23AC_INIT([network],
ccc9e6fd 24 [009],
5ca9dc30
MT
25 [info@ipfire.org],
26 [network],
27 [http://www.ipfire.org/])
28
29AC_CONFIG_AUX_DIR([build-aux])
30
31AC_PREFIX_DEFAULT([/usr])
32
33AM_INIT_AUTOMAKE([
34 foreign
35 1.11
36 -Wall
37 -Wno-portability
38 silent-rules
39 tar-pax
40 subdir-objects
41])
42AM_SILENT_RULES([yes])
43
01f2b2e4
MT
44LT_INIT([
45 disable-static
46 pic-only
47])
48
5ca9dc30
MT
49AC_PROG_LN_S
50AC_PROG_MKDIR_P
51AC_PROG_SED
52
1908d2b3 53AC_PATH_PROG([NITSI], [nitsi])
5ca9dc30
MT
54AC_PATH_PROG([XSLTPROC], [xsltproc])
55
56# pkg-config
57PKG_PROG_PKG_CONFIG
58# This makes sure pkg.m4 is available.
59m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
60
e708653f
SS
61# C Compiler
62AC_PROG_CC
63AC_PROG_CC_C99
64AC_PROG_CC_C_O
65AC_PROG_GCC_TRADITIONAL
66
67CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
68 -pipe \
69 -Wall \
70 -Wextra \
71 -Wno-inline \
72 -Wundef \
73 "-Wformat=2 -Wformat-security -Wformat-nonliteral" \
74 -Wno-unused-parameter \
75 -Wno-unused-result \
76 -fno-strict-aliasing \
77 -ffunction-sections \
78 -fdata-sections \
79 -fstack-protector-all \
80 --param=ssp-buffer-size=4])
81AC_SUBST([OUR_CFLAGS], $with_cflags)
82
83AS_CASE([$CFLAGS], [*-O[[12345g\ ]]*],
84 [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
85 -Wp,-D_FORTIFY_SOURCE=2])],
86 [AC_MSG_RESULT([skipping -D_FORTIFY_SOURCE, optimization not enabled])])
87AC_SUBST([OUR_CPPFLAGS], $with_cppflags)
88
89CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
90 -Wl,--as-needed \
91 -Wl,--no-undefined \
92 -Wl,--gc-sections \
93 -Wl,-z,relro \
94 -Wl,-z,now])
95AC_SUBST([OUR_LDFLAGS], $with_ldflags)
96
0e880048
MT
97# ------------------------------------------------------------------------------
98
99AC_CHECK_HEADERS_ONCE([
6f4814db 100 ctype.h
0e880048 101 errno.h
c07b958a 102 linux/netlink.h
d1f1b577 103 net/if.h
6f4814db
MT
104 stdarg.h
105 stdio.h
0e880048 106 stdlib.h
6f4814db
MT
107 string.h
108 syslog.h
109])
110
111AC_CHECK_FUNCS([ \
112 __secure_getenv \
113 secure_getenv \
0e880048
MT
114])
115
e145b2f3
MT
116# ------------------------------------------------------------------------------
117
118AC_ARG_ENABLE([debug],
119 AS_HELP_STRING([--enable-debug], [enable debug messages @<:@default=disabled@:>@]),
120 [], [enable_debug=no])
121AS_IF([test "x$enable_debug" = "xyes"], [
122 AC_DEFINE(ENABLE_DEBUG, [1], [Debug messages.])
123])
124
5ca9dc30
MT
125# ------------------------------------------------------------------------------
126AC_ARG_WITH([systemdsystemunitdir],
127 AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
128 [], [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)])
129AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])
130AM_CONDITIONAL(HAVE_SYSTEMD, [test -n "$with_systemdsystemunitdir"])
131
132# ------------------------------------------------------------------------------
133AC_ARG_WITH([udevdir],
134 AS_HELP_STRING([--with-udevdir=DIR], [Directory for udev files]),
135 [], [with_udevdir=$($PKG_CONFIG --variable=udevdir udev)])
136AC_SUBST([udevdir], [$with_udevdir])
137AM_CONDITIONAL(HAVE_UDEV, [test -n "$with_udevdir"])
138
139# ------------------------------------------------------------------------------
db0a2d76
MT
140
141PKG_CHECK_MODULES([LIBNL], [libnl-3.0 libnl-genl-3.0])
142
143# ------------------------------------------------------------------------------
144
01f2b2e4 145AC_CONFIG_HEADERS(config.h)
5ca9dc30
MT
146AC_CONFIG_FILES([
147 Makefile
148])
149
150AC_OUTPUT
151AC_MSG_RESULT([
152 $PACKAGE_NAME $VERSION
153
e708653f
SS
154 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
155 CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
156 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
157
5ca9dc30
MT
158 prefix: $prefix
159
160 systemdsystemunitdir: $systemdsystemunitdir
161 udevdir: $udevdir
162])