]> git.ipfire.org Git - people/ms/libloc.git/blame - configure.ac
stringpool: Use mmap to make reading the pool more efficient
[people/ms/libloc.git] / configure.ac
CommitLineData
46aded9a
MT
1AC_PREREQ(2.60)
2AC_INIT([libloc],
3 [0],
4 [michael.tremer@ipfire.org],
5 [libloc],
6 [https://www.ipfire.org/])
7
8AC_CONFIG_SRCDIR([src/libloc.c])
9AC_CONFIG_AUX_DIR([build-aux])
10AM_INIT_AUTOMAKE([
11 foreign
12 1.11
13 -Wall
14 -Wno-portability
15 silent-rules
16 tar-pax
17 no-dist-gzip
18 dist-xz
19 subdir-objects
20])
21AC_PROG_CC_STDC
22AC_USE_SYSTEM_EXTENSIONS
23AC_SYS_LARGEFILE
24AC_CONFIG_MACRO_DIR([m4])
25AM_SILENT_RULES([yes])
26LT_INIT([
27 disable-static
28 pic-only
29])
30AC_PREFIX_DEFAULT([/usr])
31
32AC_PROG_SED
33AC_PROG_MKDIR_P
34
35AC_ARG_ENABLE([debug],
36 AS_HELP_STRING([--enable-debug], [enable debug messages @<:@default=disabled@:>@]),
37 [], [enable_debug=no])
38AS_IF([test "x$enable_debug" = "xyes"], [
39 AC_DEFINE(ENABLE_DEBUG, [1], [Debug messages.])
40])
41
42AC_CHECK_FUNCS([ \
6809d5ac
MT
43 mmap \
44 munmap \
46aded9a 45 __secure_getenv \
a5db3e49
MT
46 secure_getenv \
47 qsort \
46aded9a
MT
48])
49
50my_CFLAGS="\
51-Wall \
52-Wchar-subscripts \
53-Wformat-security \
54-Wmissing-declarations \
55-Wmissing-prototypes \
56-Wnested-externs \
57-Wpointer-arith \
58-Wshadow \
59-Wsign-compare \
60-Wstrict-prototypes \
61-Wtype-limits \
62"
63AC_SUBST([my_CFLAGS])
64
65AC_CONFIG_HEADERS(config.h)
66AC_CONFIG_FILES([
67 Makefile
68])
69
70AC_OUTPUT
71AC_MSG_RESULT([
72 $PACKAGE $VERSION
73 =====
74
75 prefix: ${prefix}
76 sysconfdir: ${sysconfdir}
77 libdir: ${libdir}
78 includedir: ${includedir}
79
80 compiler: ${CC}
81 cflags: ${CFLAGS}
82 ldflags: ${LDFLAGS}
83
84 logging: ${enable_logging}
85 debug: ${enable_debug}
86])