chiark / gitweb /
Remove "junk".
[adns] / configure.in
CommitLineData
11b35193 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
19AC_INIT(src/adns.h)
20AC_CONFIG_HEADER(src/config.h)
21AC_PROG_CC
9579019a 22AC_PROG_RANLIB
8b5269f2 23
620c146d 24AC_CHECK_FUNCS(poll)
8b5269f2 25ADNS_C_GETFUNC(socket,socket)
26ADNS_C_GETFUNC(inet_ntoa,nsl)
27
28ADNS_C_GETFUNC(inet_aton,resolv,[
29 LIBS="-lresolv $LIBS";
30 AC_MSG_WARN([inet_aton is in libresolv, urgh. Must use -lresolv.])
31])
32
11b35193 33ADNS_C_GCCATTRIB
34
35AC_SUBST(WARNS)
36
37if test "${GCC-no}" = yes; then
38 WARNS="-Wall -Wmissing-prototypes -Wwrite-strings -Wstrict-prototypes -Wcast-qual -Wpointer-arith"
39else
40 WARNS=
41fi
42
43AC_SUBST(SHLIBCC)
44AC_SUBST(MKSHLIB_1)
45AC_SUBST(MKSHLIB_2)
46AC_SUBST(MKSHLIB_3)
47AC_SUBST(SHLIBFILE)
48AC_SUBST(SHLIBSONAME)
49
50SHLIBCC='$(CC) $(CFLAGS) -fpic'
51MKSHLIB_1='$(CC) $(LDFLAGS) -shared -Wxl,soname=$(SONAME) -o'
52MKSHLIB_2=''
53MKSHLIB_3='-lc'
54SHLIBFILE='libadns.so.$(MAJOR).$(MINOR)'
55SHLIBSONAME='libadns.so.$(MAJOR)'
56
9579019a 57AC_OUTPUT(
58 settings.make Makefile
59 src/Makefile client/Makefile dynamic/Makefile regress/Makefile
60)