]> git.ipfire.org Git - ipfire-2.x.git/blame - src/libsmooth/configure.ac
Merge remote-tracking branch 'mfischer/zlib' into next
[ipfire-2.x.git] / src / libsmooth / configure.ac
CommitLineData
765b17bc
MT
1# This file is part of libsmooth.
2#
3# libsmooth is free software; you can redistribute it and/or modify it
4# under the terms of the GNU Lesser General Public License as published by
5# the Free Software Foundation; either version 2.1 of the License, or
6# (at your option) any later version.
7
8AC_PREREQ([2.64])
9
10AC_INIT([libsmooth],
11 [001],
12 [],
13 [libsmooth],
14 [http://git.ipfire.org/?p=ipfire-2.x.git;a=summary])
15
16AC_CONFIG_MACRO_DIR([m4])
17AC_CONFIG_HEADERS([config.h])
18AC_CONFIG_AUX_DIR([build-aux])
19
20AM_INIT_AUTOMAKE([
21 foreign
22 1.11
23 -Wall
24 -Wno-portability
25 silent-rules
26 tar-pax
27 no-dist-gzip
28 dist-xz
29 subdir-objects
30])
31AM_SILENT_RULES([yes])
32
33LT_PREREQ(2.2)
34LT_INIT([disable-static])
35
36AC_PROG_SED
37
38AC_PROG_CC
39AC_PROG_CC_C99
40AC_PROG_CC_C_O
41
42AC_PATH_PROG([M4], [m4])
43
44# This makes sure pkg.m4 is available.
45m4_pattern_forbid([^_?PKG_[A-Z_]+$],[*** pkg.m4 missing, please install pkg-config])
46
47AC_CONFIG_FILES([
48 Makefile
49])
50
51AC_OUTPUT
52AC_MSG_RESULT([
53 $PACKAGE_NAME $VERSION
54
55 CFLAGS: ${OUR_CFLAGS} ${CFLAGS}
56 CPPFLAGS: ${OUR_CPPFLAGS} ${CPPFLAGS}
57 LDFLAGS: ${OUR_LDFLAGS} ${LDFLAGS}
58])