chiark / gitweb /
build-sys: prepare release
[elogind.git] / configure.ac
1 # -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 # This file is part of nss-myhostname.
5 #
6 # Copyright 2008 Lennart Poettering
7 #
8 # nss-myhostname is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public License
10 # as published by the Free Software Foundation, either version 2.1 of
11 # the License, or (at your option) any later version.
12 #
13 # nss-myhostname is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 # Lesser General Public License for more details.
17 #
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with nss-myhostname. If not, If not, see
20 # <http://www.gnu.org/licenses/>.
21
22 AC_PREREQ(2.62)
23 AC_INIT([nss-myhostname],[0.3],[mzzlubfganzr (at) 0pointer (dot) de])
24 AC_CONFIG_SRCDIR([nss-myhostname.c])
25 AC_CONFIG_HEADERS([config.h])
26 AC_CONFIG_MACRO_DIR(m4)
27 AC_USE_SYSTEM_EXTENSIONS
28 AC_SYS_LARGEFILE
29
30 AM_INIT_AUTOMAKE([foreign 1.9 -Wall -Wno-portability silent-rules tar-pax subdir-objects dist-bzip2])
31
32 AC_SUBST(PACKAGE_URL, [http://0pointer.de/lennart/projects/nss-myhostname/])
33
34 ac_default_prefix="/"
35
36 # Checks for programs.
37 AC_PROG_CC
38 AC_PROG_CC_C99
39 AC_PROG_CPP
40
41 AC_PROG_INSTALL
42 AC_PROG_LN_S
43 AC_PROG_MAKE_SET
44
45 # GCC flags
46
47 DESIRED_FLAGS="-Wall -W -Wextra -pedantic -pipe -Wformat -Wold-style-definition -Wdeclaration-after-statement -Wfloat-equal -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wmissing-noreturn -Wshadow -Wendif-labels -Wpointer-arith -Wcast-align -Wwrite-strings -Winline -Wno-unused-parameter -ffast-math -fvisibility=hidden -fdiagnostics-show-option"
48
49 for flag in $DESIRED_FLAGS ; do
50   CC_CHECK_CFLAGS([$flag], [CFLAGS="$CFLAGS $flag"])
51 done
52
53 # libtool stuff
54 AC_DISABLE_STATIC
55 LT_PREREQ(2.2)
56 LT_INIT
57
58 # Checks for header files.
59 AC_HEADER_STDC
60 AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h netdb.h netinet/in.h stdlib.h string.h sys/socket.h sys/time.h unistd.h nss.h sys/ioctl.h])
61
62 # Checks for typedefs, structures, and compiler characteristics.
63 AC_C_CONST
64 AC_TYPE_SIZE_T
65 AC_HEADER_TIME
66
67 # Checks for library functions.
68 AC_FUNC_MALLOC
69 AC_FUNC_SELECT_ARGTYPES
70 AC_CHECK_FUNCS([gethostbyaddr gethostbyname gettimeofday inet_ntoa memset select socket strcspn strdup strerror strncasecmp strcasecmp strspn])
71
72 # LYNX documentation generation
73 ZP_LYNX_DOC
74
75 AC_CONFIG_FILES([Makefile doc/Makefile doc/README.html ])
76
77 AC_OUTPUT