chiark / gitweb /
Portability fixes (missing struct in_addr, INADDR_LOOPBACK defs, rrs=0
[adns.git] / configure.in
1 # configure.in - input to autoconf
2 #  
3 #  This file is part of adns, which is Copyright (C) 1997-1999 Ian Jackson
4 #
5 #  This program is free software; you can redistribute it and/or modify
6 #  it under the terms of the GNU General Public License as published by
7 #  the Free Software Foundation; either version 2, or (at your option)
8 #  any later version.
9 #  
10 #  This program is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #  GNU General Public License for more details.
14 #  
15 #  You should have received a copy of the GNU General Public License
16 #  along with this program; if not, write to the Free Software Foundation,
17 #  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
18
19 AC_INIT(src/adns.h)
20 AC_CONFIG_HEADER(src/config.h)
21 AC_PROG_CC
22 AC_PROG_RANLIB
23 AC_CHECK_LIB(socket,socket)
24 ADNS_C_GCCATTRIB
25
26 AC_SUBST(WARNS)
27
28 if test "${GCC-no}" = yes; then
29         WARNS="-Wall -Wmissing-prototypes -Wwrite-strings -Wstrict-prototypes -Wcast-qual -Wpointer-arith"
30 else
31         WARNS=
32 fi
33
34 AC_SUBST(SHLIBCC)
35 AC_SUBST(MKSHLIB_1)
36 AC_SUBST(MKSHLIB_2)
37 AC_SUBST(MKSHLIB_3)
38 AC_SUBST(SHLIBFILE)
39 AC_SUBST(SHLIBSONAME)
40
41 SHLIBCC='$(CC) $(CFLAGS) -fpic'
42 MKSHLIB_1='$(CC) $(LDFLAGS) -shared -Wxl,soname=$(SONAME) -o'
43 MKSHLIB_2=''
44 MKSHLIB_3='-lc'
45 SHLIBFILE='libadns.so.$(MAJOR).$(MINOR)'
46 SHLIBSONAME='libadns.so.$(MAJOR)'
47
48 AC_OUTPUT(
49         settings.make Makefile
50         src/Makefile client/Makefile dynamic/Makefile regress/Makefile
51 )