@@@ all the mess ever
[mLib] / configure.ac
... / ...
CommitLineData
1dnl -*-autoconf-*-
2dnl
3dnl Configuration script for mLib
4dnl
5dnl (c) 2008 Straylight/Edgeware
6dnl
7
8dnl----- Licensing notice ---------------------------------------------------
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
31AC_INIT([mLib], AUTO_VERSION, [mdw@distorted.org.uk], [mLib])
32AC_CONFIG_SRCDIR([mLib.pc.in])
33AC_CONFIG_AUX_DIR([config])
34AM_INIT_AUTOMAKE([foreign subdir-objects])
35mdw_SILENT_RULES
36
37AC_PROG_CC
38AM_PROG_CC_C_O
39AM_PROG_LIBTOOL
40AX_CFLAGS_WARN_ALL
41mdw_LIBTOOL_VERSION_INFO
42
43AC_CHECK_PROGS([AUTOM4TE], [autom4te])
44
45mdw_MANEXT([mLib])
46
47AC_DEFINE_UNQUOTED([SRCDIR], ["$(cd $srcdir && pwd)"],
48 [absolute pathname for the source directory.])
49
50dnl--------------------------------------------------------------------------
51dnl C programming environment.
52
53MLIB_LIBS=
54
55dnl Headers.
56AC_CHECK_HEADERS([float.h])
57AC_CHECK_HEADERS([stdint.h])
58
59dnl Libraries.
60mdw_ORIG_LIBS=$LIBS LIBS=$MLIB_LIBS
61AC_SEARCH_LIBS([sqrt], [m])
62AC_SEARCH_LIBS([socket], [socket])
63AC_SEARCH_LIBS([gethostbyname], [nsl resolv])
64MLIB_LIBS=$LIBS LIBS=$mdw_ORIG_LIBS
65
66dnl Functions.
67AC_CHECK_FUNCS([snprintf])
68
69dnl Types.
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])
76
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
83dnl Find out whether we're cross-compiling.
84AM_CONDITIONAL([CROSS_COMPILING], [test "$cross_compiling" = yes])
85
86dnl Set the master library list.
87AC_SUBST([MLIB_LIBS])
88
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
98mdw_ORIG_LIBS=$LIBS LIBS=$MLIB_LIBS
99case $want_adns in
100 no) ;;
101 *) AC_SEARCH_LIBS([adns_init], [adns], [have_adns=yes], [have_adns=no]) ;;
102esac
103MLIB_LIBS=$LIBS LIBS=$mdw_ORIG_LIBS
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--------------------------------------------------------------------------
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--------------------------------------------------------------------------
138dnl Python (used for testing).
139
140AM_PATH_PYTHON([2.4],, [:])
141
142dnl--------------------------------------------------------------------------
143dnl Output.
144
145AC_CONFIG_HEADER([config/config.h])
146AC_CONFIG_TESTDIR([t])
147
148AC_CONFIG_FILES(
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]
160 [utils/Makefile]
161 [t/Makefile t/atlocal])
162AC_OUTPUT
163
164dnl------ That's all, folks -------------------------------------------------