chiark / gitweb /
codec, baseconv: Cleanup of the various binary encoding functions.
[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
42mdw_MANEXT
43
44AC_DEFINE_UNQUOTED([SRCDIR], ["$(cd $srcdir && pwd)"],
45 [absolute pathname for the source directory.])
46
47dnl--------------------------------------------------------------------------
48dnl C programming environment.
49
50dnl Headers.
51AC_CHECK_HEADERS([float.h])
52
53dnl Libraries.
54AC_SEARCH_LIBS([socket], [socket])
55AC_SEARCH_LIBS([gethostbyname], [nsl resolv])
56
57dnl Which version of struct msghdr do we have?
58AC_CHECK_MEMBERS([struct msgdr.msg_control],,, [
59#include <sys/types.h>
60#include <sys/socket.h>
61])
62
173ff44a
MW
63dnl Find out whether we're cross-compiling.
64AM_CONDITIONAL([CROSS_COMPILING], [test "$cross_compiling" = yes ])
65
a0150d8d
MW
66dnl--------------------------------------------------------------------------
67dnl Name resolution.
68
69AC_ARG_WITH([adns],
70 AS_HELP_STRING([--with-adns],
71 [use ADNS library for background name resolution]),
72 [want_adns=$withval],
73 [want_adns=auto])
74
75case $want_adns in
76 no) ;;
77 *) AC_SEARCH_LIBS([adns_init], [adns], [have_adns=yes], [have_adns=no]) ;;
78esac
79case $want_adns,$have_adns in
80 yes,no)
81 AC_MSG_ERROR([ADNS library not found but explicitly requested])
82 ;;
83 yes,yes | auto,yes)
84 use_adns=yes
85 AC_DEFINE([HAVE_ADNS], [1],
86 [define if you have (and want to use) the ADNS library.])
87 ;;
88 no,* | auto,no)
89 use_adns=no
90 mdw_DEFINE_PATHS([
91 AC_DEFINE_UNQUOTED([BRES_SERVER],
92 ["mdw_PATH($libexecdir)/$PACKAGE/mdw_PROG(bres)"],
93 [pathname to the standalone `bres' binary.'])
94 ])
95 ;;
96esac
97AM_CONDITIONAL([WITH_ADNS], [test "$use_adns" = yes])
98
99dnl--------------------------------------------------------------------------
100dnl Output.
101
102AC_CONFIG_HEADER([config/config.h])
103
104AC_CONFIG_FILES(
18c831dc
MW
105 [Makefile]
106 [buf/Makefile]
107 [codec/Makefile]
108 [hash/Makefile]
109 [mem/Makefile]
110 [sel/Makefile]
111 [struct/Makefile]
112 [sys/Makefile]
113 [test/Makefile]
114 [trace/Makefile]
115 [ui/Makefile]
116 [utils/Makefile])
a0150d8d
MW
117AC_OUTPUT
118
119dnl ----- That's all, folks -------------------------------------------------