1 ###############################################################################
3 # Pakfire - The IPFire package management system #
4 # Copyright (C) 2013 IPFire Network Development Team #
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. #
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. #
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/>. #
19 ###############################################################################
27 [http://www.ipfire.org/])
29 AC_CONFIG_AUX_DIR([build-aux])
31 AC_PREFIX_DEFAULT([/usr])
42 AM_SILENT_RULES([yes])
48 AC_PATH_PROG([XSLTPROC], [xsltproc])
52 # This makes sure pkg.m4 is available.
53 m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
59 AC_PROG_GCC_TRADITIONAL
61 CC_CHECK_FLAGS_APPEND([with_cflags], [CFLAGS], [\
67 "-Wformat=2 -Wformat-security -Wformat-nonliteral" \
68 -Wno-unused-parameter \
70 -fno-strict-aliasing \
73 -fstack-protector-all \
74 --param=ssp-buffer-size=4])
75 AC_SUBST([OUR_CFLAGS], $with_cflags)
77 AS_CASE([$CFLAGS], [*-O[[12345g\ ]]*],
78 [CC_CHECK_FLAGS_APPEND([with_cppflags], [CPPFLAGS], [\
79 -Wp,-D_FORTIFY_SOURCE=2])],
80 [AC_MSG_RESULT([skipping -D_FORTIFY_SOURCE, optimization not enabled])])
81 AC_SUBST([OUR_CPPFLAGS], $with_cppflags)
83 CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [\
89 AC_SUBST([OUR_LDFLAGS], $with_ldflags)
91 # ------------------------------------------------------------------------------
92 AC_ARG_WITH([systemdsystemunitdir],
93 AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
94 [], [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)])
95 AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])
96 AM_CONDITIONAL(HAVE_SYSTEMD, [test -n "$with_systemdsystemunitdir"])
98 # ------------------------------------------------------------------------------
99 AC_ARG_WITH([udevdir],
100 AS_HELP_STRING([--with-udevdir=DIR], [Directory for udev files]),
101 [], [with_udevdir=$($PKG_CONFIG --variable=udevdir udev)])
102 AC_SUBST([udevdir], [$with_udevdir])
103 AM_CONDITIONAL(HAVE_UDEV, [test -n "$with_udevdir"])
105 # ------------------------------------------------------------------------------
112 $PACKAGE_NAME $VERSION
114 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
115 CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
116 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
120 systemdsystemunitdir: $systemdsystemunitdir