Infrastructure: Switch testing over to Autotest.
[mLib] / configure.ac
CommitLineData
a0150d8d
MW
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
b3a0ac5e 31AC_INIT([mLib], AUTO_VERSION, [mdw@distorted.org.uk], [mLib])
a0150d8d
MW
32AC_CONFIG_SRCDIR([mLib.pc.in])
33AC_CONFIG_AUX_DIR([config])
34AM_INIT_AUTOMAKE([foreign])
35
36AC_PROG_CC
37AM_PROG_CC_C_O
38AM_PROG_LIBTOOL
39AX_CFLAGS_WARN_ALL
40mdw_LIBTOOL_VERSION_INFO
41
7cf5c72a
MW
42AC_CHECK_PROGS([AUTOM4TE], [autom4te])
43
a0150d8d
MW
44mdw_MANEXT
45
46AC_DEFINE_UNQUOTED([SRCDIR], ["$(cd $srcdir && pwd)"],
47 [absolute pathname for the source directory.])
48
49dnl--------------------------------------------------------------------------
50dnl C programming environment.
51
52dnl Headers.
53AC_CHECK_HEADERS([float.h])
54
55dnl Libraries.
56AC_SEARCH_LIBS([socket], [socket])
57AC_SEARCH_LIBS([gethostbyname], [nsl resolv])
58
59dnl Which version of struct msghdr do we have?
60AC_CHECK_MEMBERS([struct msgdr.msg_control],,, [
61#include <sys/types.h>
62#include <sys/socket.h>
63])
64
173ff44a
MW
65dnl Find out whether we're cross-compiling.
66AM_CONDITIONAL([CROSS_COMPILING], [test "$cross_compiling" = yes ])
67
a0150d8d
MW
68dnl--------------------------------------------------------------------------
69dnl Name resolution.
70
71AC_ARG_WITH([adns],
72 AS_HELP_STRING([--with-adns],
73 [use ADNS library for background name resolution]),
74 [want_adns=$withval],
75 [want_adns=auto])
76
77case $want_adns in
78 no) ;;
79 *) AC_SEARCH_LIBS([adns_init], [adns], [have_adns=yes], [have_adns=no]) ;;
80esac
81case $want_adns,$have_adns in
82 yes,no)
83 AC_MSG_ERROR([ADNS library not found but explicitly requested])
84 ;;
85 yes,yes | auto,yes)
86 use_adns=yes
87 AC_DEFINE([HAVE_ADNS], [1],
88 [define if you have (and want to use) the ADNS library.])
89 ;;
90 no,* | auto,no)
91 use_adns=no
92 mdw_DEFINE_PATHS([
93 AC_DEFINE_UNQUOTED([BRES_SERVER],
94 ["mdw_PATH($libexecdir)/$PACKAGE/mdw_PROG(bres)"],
95 [pathname to the standalone `bres' binary.'])
96 ])
97 ;;
98esac
99AM_CONDITIONAL([WITH_ADNS], [test "$use_adns" = yes])
100
101dnl--------------------------------------------------------------------------
7cf5c72a
MW
102dnl Python (used for testing).
103
104AM_PATH_PYTHON([2.4],, [:])
105
106dnl--------------------------------------------------------------------------
a0150d8d
MW
107dnl Output.
108
109AC_CONFIG_HEADER([config/config.h])
7cf5c72a 110AC_CONFIG_TESTDIR([t])
a0150d8d
MW
111
112AC_CONFIG_FILES(
18c831dc
MW
113 [Makefile]
114 [buf/Makefile]
115 [codec/Makefile]
116 [hash/Makefile]
117 [mem/Makefile]
118 [sel/Makefile]
119 [struct/Makefile]
120 [sys/Makefile]
121 [test/Makefile]
122 [trace/Makefile]
123 [ui/Makefile]
7cf5c72a
MW
124 [utils/Makefile]
125 [t/Makefile t/atlocal])
a0150d8d
MW
126AC_OUTPUT
127
128dnl ----- That's all, folks -------------------------------------------------