etc/services - sync with NetBSD-8
[minix.git] / external / bsd / bind / dist / contrib / query-loc-0.4.0 / configure.in
blobde12058ea2270e1861d44d119d980a9abbe13bbe
1 dnl Process this file with autoconf to produce a configure script.
2 AC_RELEASE("Id: configure.in,v 1.1 2008/02/15 01:47:15 marka Exp ")
3 AC_INIT(query-loc.c)
5 dnl Checks for programs.
6 AC_PROG_CC
7 if test "$GCC" = "yes"; then
8         CFLAGS="${CFLAGS} -Wall"
9 fi
10 AC_PROG_INSTALL
12 dnl Checks for libraries.
13 AC_CHECK_LIB(resolv, res_query)
15 dnl Checks for header files.
16 AC_HEADER_STDC
17 AC_CONFIG_HEADER(config.h)
18 AC_CHECK_HEADER(resolv.h, , AC_MSG_ERROR("No headers for name service applications"))
19 AC_CHECK_HEADER(arpa/nameser.h, , AC_MSG_ERROR("No headers for name service applications"))
20 AC_CHECK_HEADER(sys/time.h, , AC_MSG_ERROR("Mandatory header missing on your system"))
21 AC_CHECK_HEADER(unistd.h, , AC_MSG_ERROR("Mandatory header missing on your system"))
24 dnl This one is only useful for Solaris?
25 AC_MSG_CHECKING(if libnsl is mandatory)
26 AC_TRY_LINK([#include <sys/types.h>
27              #include <netinet/in.h>
28              #include <arpa/nameser.h>
29              #include <resolv.h>
30              union
31              {
32                 HEADER hdr;     
33                 u_char buf[4096]; /* With RFC 2671, otherwise 512 is enough */
34              }
35              response;
36              char *domain;
37              int requested_type;        ], 
38         [res_query(domain,
39                   C_IN,         
40                   requested_type,       
41                   (u_char *) & response,        
42                   sizeof (response)) ], dnl
43         [AC_MSG_RESULT(no)], dnl
44         [AC_MSG_RESULT(yes); LIBS="${LIBS} -lnsl"]) 
46 dnl Check for the loc_ntoa macro/function
47 AC_MSG_CHECKING(loc_ntoa)
48 AC_TRY_LINK([#include <resolv.h>], dnl
49         [u_char *cp; char *result; loc_ntoa(cp, result)], dnl
50         [AC_MSG_RESULT(yes); AC_DEFINE(HAVE_LOC_NTOA)], dnl
51         [AC_MSG_RESULT([no, using the alternative]); LOC_NTOA=loc_ntoa.o]) 
52 AC_SUBST(LOC_NTOA)
54 dnl Checks for typedefs, structures, and compiler characteristics.
55 AC_C_CONST
56 AC_CHECK_SIZEOF(long)
57 AC_CHECK_SIZEOF(int)
58 AC_CHECK_SIZEOF(short)
59 AC_CHECK_SIZEOF(char)
61 dnl Misc.
62 AC_OUTPUT(Makefile)