configure.ac: Lightly modernize.
[mLib] / configure.ac
CommitLineData
a0150d8d
MW
1dnl -*-autoconf-*-
2dnl
3dnl Configuration script for mLib
4dnl
5dnl (c) 2008 Straylight/Edgeware
6dnl
7
51c4088b 8dnl----- Licensing notice ---------------------------------------------------
a0150d8d
MW
9dnl
10dnl This file is part of the mLib utilities library.
11dnl
12dnl mLib is free software; you can redistribute it and/or modify
13dnl it under the terms of the GNU Library General Public License as
14dnl published by the Free Software Foundation; either version 2 of the
15dnl License, or (at your option) any later version.
16dnl
17dnl mLib is distributed in the hope that it will be useful,
18dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
19dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20dnl GNU Library General Public License for more details.
21dnl
22dnl You should have received a copy of the GNU Library General Public
23dnl License along with mLib; if not, write to the Free
24dnl Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
25dnl MA 02111-1307, USA.
26
27dnl--------------------------------------------------------------------------
28dnl Initialization.
29
30mdw_AUTO_VERSION
b3a0ac5e 31AC_INIT([mLib], AUTO_VERSION, [mdw@distorted.org.uk], [mLib])
a0150d8d
MW
32AC_CONFIG_SRCDIR([mLib.pc.in])
33AC_CONFIG_AUX_DIR([config])
b012588c 34AM_INIT_AUTOMAKE([foreign subdir-objects])
3ac6fc5f 35mdw_SILENT_RULES
a0150d8d
MW
36
37AC_PROG_CC
38AM_PROG_CC_C_O
0335afec 39LT_INIT
a0150d8d
MW
40AX_CFLAGS_WARN_ALL
41mdw_LIBTOOL_VERSION_INFO
42
7cf5c72a
MW
43AC_CHECK_PROGS([AUTOM4TE], [autom4te])
44
6b210fdf 45mdw_MANEXT([mLib])
a0150d8d
MW
46
47AC_DEFINE_UNQUOTED([SRCDIR], ["$(cd $srcdir && pwd)"],
48 [absolute pathname for the source directory.])
49
50dnl--------------------------------------------------------------------------
51dnl C programming environment.
52
5b2eac52
MW
53MLIB_LIBS=
54
a0150d8d
MW
55dnl Headers.
56AC_CHECK_HEADERS([float.h])
5007fea9 57AC_CHECK_HEADERS([stdint.h])
a0150d8d
MW
58
59dnl Libraries.
5b2eac52 60mdw_ORIG_LIBS=$LIBS LIBS=$MLIB_LIBS
b64eb60f 61AC_SEARCH_LIBS([sqrt], [m])
a0150d8d
MW
62AC_SEARCH_LIBS([socket], [socket])
63AC_SEARCH_LIBS([gethostbyname], [nsl resolv])
5b2eac52 64MLIB_LIBS=$LIBS LIBS=$mdw_ORIG_LIBS
a0150d8d 65
eff136f6
MW
66dnl Functions.
67AC_CHECK_FUNCS([snprintf])
68
0ce34834 69dnl Types.
892da3f9
MW
70AC_CHECK_TYPE([socklen_t], [],
71 [AC_DEFINE([socklen_t], [int],
72 [Define to `int' if <sys/socket.h> does not define])],
73 [AC_INCLUDES_DEFAULT
74#include <sys/socket.h>
75])
0ce34834 76
a0150d8d
MW
77dnl Which version of struct msghdr do we have?
78AC_CHECK_MEMBERS([struct msgdr.msg_control],,, [
79#include <sys/types.h>
80#include <sys/socket.h>
81])
82
173ff44a 83dnl Find out whether we're cross-compiling.
51c4088b 84AM_CONDITIONAL([CROSS_COMPILING], [test "$cross_compiling" = yes])
173ff44a 85
5b2eac52
MW
86dnl Set the master library list.
87AC_SUBST([MLIB_LIBS])
88
a0150d8d
MW
89dnl--------------------------------------------------------------------------
90dnl Name resolution.
91
92AC_ARG_WITH([adns],
93 AS_HELP_STRING([--with-adns],
94 [use ADNS library for background name resolution]),
95 [want_adns=$withval],
96 [want_adns=auto])
97
5b2eac52 98mdw_ORIG_LIBS=$LIBS LIBS=$MLIB_LIBS
a0150d8d
MW
99case $want_adns in
100 no) ;;
101 *) AC_SEARCH_LIBS([adns_init], [adns], [have_adns=yes], [have_adns=no]) ;;
102esac
5b2eac52 103MLIB_LIBS=$LIBS LIBS=$mdw_ORIG_LIBS
a0150d8d
MW
104case $want_adns,$have_adns in
105 yes,no)
106 AC_MSG_ERROR([ADNS library not found but explicitly requested])
107 ;;
108 yes,yes | auto,yes)
109 use_adns=yes
110 AC_DEFINE([HAVE_ADNS], [1],
111 [define if you have (and want to use) the ADNS library.])
112 ;;
113 no,* | auto,no)
114 use_adns=no
115 mdw_DEFINE_PATHS([
116 AC_DEFINE_UNQUOTED([BRES_SERVER],
117 ["mdw_PATH($libexecdir)/$PACKAGE/mdw_PROG(bres)"],
118 [pathname to the standalone `bres' binary.'])
119 ])
120 ;;
121esac
122AM_CONDITIONAL([WITH_ADNS], [test "$use_adns" = yes])
123
124dnl--------------------------------------------------------------------------
b64eb60f
MW
125dnl Timers.
126
127AC_CHECK_HEADERS([linux/perf_event.h])
128
129mdw_ORIG_LIBS=$LIBS LIBS=$MLIB_LIBS
130AC_SEARCH_LIBS([clock_gettime], [rt])
131MLIB_LIBS=$LIBS LIBS=$mdw_ORIG_LIBS
132if test "$ac_cv_search_clock_gettime" != no; then
133 AC_DEFINE([HAVE_CLOCK_GETTIME], [1],
134 [Define if you have the \`clock_gettime' function.])
135fi
136
137dnl--------------------------------------------------------------------------
7cf5c72a
MW
138dnl Python (used for testing).
139
140AM_PATH_PYTHON([2.4],, [:])
141
142dnl--------------------------------------------------------------------------
a0150d8d
MW
143dnl Output.
144
0335afec 145AC_CONFIG_HEADERS([config/config.h])
7cf5c72a 146AC_CONFIG_TESTDIR([t])
a0150d8d
MW
147
148AC_CONFIG_FILES(
18c831dc
MW
149 [Makefile]
150 [buf/Makefile]
151 [codec/Makefile]
152 [hash/Makefile]
153 [mem/Makefile]
154 [sel/Makefile]
155 [struct/Makefile]
156 [sys/Makefile]
157 [test/Makefile]
158 [trace/Makefile]
159 [ui/Makefile]
7cf5c72a
MW
160 [utils/Makefile]
161 [t/Makefile t/atlocal])
a0150d8d
MW
162AC_OUTPUT
163
51c4088b 164dnl------ That's all, folks -------------------------------------------------