Ensure that shell variable contents which have active meaning
[platform/upstream/c-ares.git] / configure.ac
1 AC_PREREQ(2.57)
2
3 dnl Version not hardcoded here. Fetched later from ares_version.h
4 AC_INIT([c-ares], [-],
5   [c-ares mailing list => http://cool.haxx.se/mailman/listinfo/c-ares])
6
7 AC_CONFIG_SRCDIR([ares_ipv6.h])
8 AM_CONFIG_HEADER([config.h])
9 AM_MAINTAINER_MODE
10
11 CARES_CHECK_OPTION_DEBUG
12 CARES_CHECK_OPTION_OPTIMIZE
13 CARES_CHECK_OPTION_WARNINGS
14
15 dnl SED is mandatory for configure process and libtool.
16 dnl Set it now, allowing it to be changed later.
17 AC_PATH_PROG([SED], [sed], [not_found],
18   [$PATH:/usr/bin:/usr/local/bin])
19 if test -z "$SED" || test "$SED" = "not_found"; then
20   AC_MSG_ERROR([sed not found in PATH. Cannot continue without sed.])
21 fi
22 AC_SUBST([SED])
23
24 dnl GREP is mandatory for configure process and libtool.
25 dnl Set it now, allowing it to be changed later.
26 AC_PATH_PROG([GREP], [grep], [not_found],
27   [$PATH:/usr/bin:/usr/local/bin])
28 if test -z "$GREP" || test "$GREP" = "not_found"; then
29   AC_MSG_ERROR([grep not found in PATH. Cannot continue without grep.])
30 fi
31 AC_SUBST([GREP])
32
33 dnl EGREP is mandatory for configure process and libtool.
34 dnl Set it now, allowing it to be changed later.
35 if echo a | ($GREP -E '(a|b)') >/dev/null 2>&1; then
36   AC_MSG_CHECKING([for egrep])
37   EGREP="$GREP -E"
38   AC_MSG_RESULT([$EGREP])
39 else
40   AC_PATH_PROG([EGREP], [egrep], [not_found],
41     [$PATH:/usr/bin:/usr/local/bin])
42 fi
43 if test -z "$EGREP" || test "$EGREP" = "not_found"; then
44   AC_MSG_ERROR([egrep not found in PATH. Cannot continue without egrep.])
45 fi
46 AC_SUBST([EGREP])
47
48 dnl AR is mandatory for configure process and libtool.
49 dnl This is target dependant, so check it as a tool.
50 AC_PATH_TOOL([AR], [ar], [not_found],
51   [$PATH:/usr/bin:/usr/local/bin])
52 if test -z "$AR" || test "$AR" = "not_found"; then
53   AC_MSG_ERROR([ar not found in PATH. Cannot continue without ar.])
54 fi
55 AC_SUBST([AR])
56
57 dnl Fetch c-ares version from ares_version.h
58 VERSION=`$SED -ne 's/^#define ARES_VERSION_STR "\(.*\)"/\1/p' ${srcdir}/ares_version.h`
59 AM_INIT_AUTOMAKE([c-ares], [$VERSION])
60 AC_MSG_CHECKING([c-ares version])
61 AC_MSG_RESULT([$VERSION])
62
63 dnl
64 dnl Detect the canonical host and target build environment
65 dnl
66
67 AC_CANONICAL_HOST
68 dnl Get system canonical name
69 AC_DEFINE_UNQUOTED(OS, "${host}", [cpu-machine-OS])
70
71 CARES_CHECK_PROG_CC
72 AM_PROG_CC_C_O
73 AC_PROG_INSTALL
74
75 dnl This defines _ALL_SOURCE for AIX
76 CARES_CHECK_AIX_ALL_SOURCE
77
78 dnl Our configure and build reentrant settings
79 CARES_CONFIGURE_REENTRANT
80
81 dnl check for how to do large files
82 AC_SYS_LARGEFILE
83
84 case $host_os in
85   solaris*)
86     AC_DEFINE(ETC_INET, 1, [if a /etc/inet dir is being used])
87     ;;
88 esac
89
90 dnl support building of Windows DLLs
91 AC_LIBTOOL_WIN32_DLL
92
93 CARES_PROCESS_DEBUG_BUILD_OPTS
94
95 AM_CONDITIONAL(DEBUGBUILD, test x$want_debug = xyes)
96 AM_CONDITIONAL(CURLDEBUG, test x$want_debug = xyes)
97
98 dnl skip libtool C++ and Fortran compiler checks
99 m4_ifdef([AC_PROG_CXX], [m4_undefine([AC_PROG_CXX])])
100 m4_defun([AC_PROG_CXX],[])
101 m4_ifdef([AC_PROG_CXXCPP], [m4_undefine([AC_PROG_CXXCPP])])
102 m4_defun([AC_PROG_CXXCPP],[true])
103 m4_ifdef([AC_PROG_F77], [m4_undefine([AC_PROG_F77])])
104 m4_defun([AC_PROG_F77],[])
105
106 dnl skip libtool C++ and Fortran linker checks
107 m4_ifdef([AC_LIBTOOL_CXX], [m4_undefine([AC_LIBTOOL_CXX])])
108 m4_defun([AC_LIBTOOL_CXX],[])
109 m4_ifdef([AC_LIBTOOL_CXXCPP], [m4_undefine([AC_LIBTOOL_CXXCPP])])
110 m4_defun([AC_LIBTOOL_CXXCPP],[true])
111 m4_ifdef([AC_LIBTOOL_F77], [m4_undefine([AC_LIBTOOL_F77])])
112 m4_defun([AC_LIBTOOL_F77],[])
113
114 dnl force libtool to build static libraries with PIC on AMD64-Linux & FreeBSD
115 AC_MSG_CHECKING([if arch-OS host is AMD64-Linux/FreeBSD (to build static libraries with PIC)])
116 case $host in
117   x86_64*linux*|amd64*freebsd*|ia64*freebsd*)
118     AC_MSG_RESULT([yes])
119     with_pic=yes
120     ;;
121   *)
122     AC_MSG_RESULT([no])
123     ;;
124 esac
125
126 dnl libtool setup
127 AC_PROG_LIBTOOL
128
129 AC_MSG_CHECKING([if we need -no-undefined])
130 case $host in
131   *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
132     need_no_undefined=yes
133     ;;
134   *)
135     need_no_undefined=no
136     ;;
137 esac
138 AC_MSG_RESULT($need_no_undefined)
139 AM_CONDITIONAL(NO_UNDEFINED, test x$need_no_undefined = xyes)
140
141 dnl **********************************************************************
142 dnl platform/compiler/architecture specific checks/flags
143 dnl **********************************************************************
144
145 CARES_CHECK_COMPILER
146 CARES_SET_COMPILER_BASIC_OPTS
147 CARES_SET_COMPILER_DEBUG_OPTS
148 CARES_SET_COMPILER_OPTIMIZE_OPTS
149 CARES_SET_COMPILER_WARNING_OPTS
150
151 case $host in
152   #
153   x86_64*linux*|amd64*freebsd*|ia64*freebsd*)
154     #
155     if test "$compiler_id" = "ICC_unix"; then
156       #
157       if test "$compiler_num" -ge "900" &&
158         test "$compiler_num" -lt "1000"; then
159         dnl icc 9.X specific
160         CFLAGS="$CFLAGS -i-dynamic"
161       fi
162       #
163       if test "$compiler_num" -ge "1000"; then
164         dnl icc 10.X or later
165         CFLAGS="$CFLAGS -shared-intel"
166       fi
167       #
168     fi
169     ;;
170   #
171 esac
172
173 CURL_CHECK_COMPILER_HALT_ON_ERROR
174 CURL_CHECK_COMPILER_ARRAY_SIZE_NEGATIVE
175
176 dnl **********************************************************************
177 dnl Compilation based checks should not be done before this point.
178 dnl **********************************************************************
179
180 dnl **********************************************************************
181 dnl Make sure that our checks for headers windows.h winsock.h winsock2.h 
182 dnl and ws2tcpip.h take precedence over any other further checks which 
183 dnl could be done later using AC_CHECK_HEADER or AC_CHECK_HEADERS for
184 dnl this specific header files. And do them before its results are used.
185 dnl **********************************************************************
186
187 CURL_CHECK_HEADER_WINDOWS
188 CURL_CHECK_NATIVE_WINDOWS
189 case X-"$ac_cv_native_windows" in
190   X-yes)
191     CURL_CHECK_HEADER_WINSOCK
192     CURL_CHECK_HEADER_WINSOCK2
193     CURL_CHECK_HEADER_WS2TCPIP
194     ;;
195   *)
196     ac_cv_header_winsock_h="no"
197     ac_cv_header_winsock2_h="no"
198     ac_cv_header_ws2tcpip_h="no"
199     ;;
200 esac
201
202 dnl **********************************************************************
203 dnl Checks for libraries.
204 dnl **********************************************************************
205
206 dnl gethostbyname without lib or in the nsl lib?
207 AC_CHECK_FUNC(gethostbyname,
208               [HAVE_GETHOSTBYNAME="1"
209               ],
210               [ AC_CHECK_LIB(nsl, gethostbyname,
211                              [HAVE_GETHOSTBYNAME="1"
212                              LIBS="$LIBS -lnsl"
213                              ])
214               ])
215
216 if test "$HAVE_GETHOSTBYNAME" != "1"
217 then
218   dnl gethostbyname in the socket lib?
219   AC_CHECK_LIB(socket, gethostbyname,
220                [HAVE_GETHOSTBYNAME="1"
221                LIBS="$LIBS -lsocket"
222                ])
223 fi
224
225 dnl At least one system has been identified to require BOTH nsl and socket
226 dnl libs at the same time to link properly.
227 if test "$HAVE_GETHOSTBYNAME" != "1"
228 then
229   AC_MSG_CHECKING([for gethostbyname with both nsl and socket libs])
230   my_ac_save_LIBS=$LIBS
231   LIBS="-lnsl -lsocket $LIBS"
232   AC_LINK_IFELSE([
233     AC_LANG_PROGRAM([[
234     ]],[[
235       gethostbyname();
236     ]])
237   ],[
238     AC_MSG_RESULT([yes])
239     HAVE_GETHOSTBYNAME="1"
240   ],[
241     AC_MSG_RESULT([no])
242     LIBS=$my_ac_save_LIBS
243   ])
244 fi
245
246 if test "$HAVE_GETHOSTBYNAME" != "1"
247 then
248   dnl This is for winsock systems
249   if test "$ac_cv_header_windows_h" = "yes"; then
250     if test "$ac_cv_header_winsock_h" = "yes"; then
251       case $host in
252         *-*-mingw32ce*)
253           winsock_LIB="-lwinsock"
254           ;;
255         *)
256           winsock_LIB="-lwsock32"
257           ;;
258       esac
259     fi
260     if test "$ac_cv_header_winsock2_h" = "yes"; then
261       winsock_LIB="-lws2_32"
262     fi
263     if test ! -z "$winsock_LIB"; then
264       my_ac_save_LIBS=$LIBS
265       LIBS="$winsock_LIB $LIBS"
266       AC_MSG_CHECKING([for gethostbyname in $winsock_LIB])
267       AC_LINK_IFELSE([
268         AC_LANG_PROGRAM([[
269 #ifdef HAVE_WINDOWS_H
270 #ifndef WIN32_LEAN_AND_MEAN
271 #define WIN32_LEAN_AND_MEAN
272 #endif
273 #include <windows.h>
274 #ifdef HAVE_WINSOCK2_H
275 #include <winsock2.h>
276 #else
277 #ifdef HAVE_WINSOCK_H
278 #include <winsock.h>
279 #endif
280 #endif
281 #endif
282         ]],[[
283           gethostbyname("www.dummysite.com");
284         ]])
285       ],[
286         AC_MSG_RESULT([yes])
287         HAVE_GETHOSTBYNAME="1"
288       ],[
289         AC_MSG_RESULT([no])
290         winsock_LIB=""
291         LIBS=$my_ac_save_LIBS
292       ])
293     fi
294   fi
295 fi
296
297 if test "$HAVE_GETHOSTBYNAME" != "1"
298 then
299   dnl This is for Minix 3.1
300   AC_MSG_CHECKING([for gethostbyname for Minix 3])
301   AC_LINK_IFELSE([
302     AC_LANG_PROGRAM([[
303 /* Older Minix versions may need <net/gen/netdb.h> here instead */
304 #include <netdb.h>
305     ]],[[
306       gethostbyname("www.dummysite.com");
307     ]])
308   ],[
309     AC_MSG_RESULT([yes])
310     HAVE_GETHOSTBYNAME="1"
311   ],[
312     AC_MSG_RESULT([no])
313   ])
314 fi
315
316 if test "$HAVE_GETHOSTBYNAME" != "1"
317 then
318   dnl This is for eCos with a stubbed DNS implementation
319   AC_MSG_CHECKING([for gethostbyname for eCos])
320   AC_LINK_IFELSE([
321     AC_LANG_PROGRAM([[
322 #include <stdio.h>
323 #include <netdb.h>
324     ]],[[
325       gethostbyname("www.dummysite.com");
326     ]])
327   ],[
328     AC_MSG_RESULT([yes])
329     HAVE_GETHOSTBYNAME="1"
330   ],[
331     AC_MSG_RESULT([no])
332   ])
333 fi
334
335 if test "$HAVE_GETHOSTBYNAME" != "1"
336 then
337   dnl gethostbyname in the net lib - for BeOS
338   AC_CHECK_LIB(net, gethostbyname,
339                [HAVE_GETHOSTBYNAME="1"
340                LIBS="$LIBS -lnet"
341                ])
342 fi
343
344
345 if test "$HAVE_GETHOSTBYNAME" = "1"; then
346   AC_DEFINE(HAVE_GETHOSTBYNAME, 1, [If you have gethostbyname])
347 else
348   AC_MSG_ERROR([couldn't find libraries for gethostbyname()])
349 fi
350
351 dnl resolve lib?
352 AC_CHECK_FUNC(strcasecmp, , [ AC_CHECK_LIB(resolve, strcasecmp) ])
353
354 if test "$ac_cv_lib_resolve_strcasecmp" = "$ac_cv_func_strcasecmp"; then
355   AC_CHECK_LIB(resolve, strcasecmp,
356               [LIBS="-lresolve $LIBS"],
357                ,
358                -lnsl)
359 fi
360 ac_cv_func_strcasecmp="no"
361
362 dnl socket lib?
363 AC_CHECK_FUNC(connect, , [ AC_CHECK_LIB(socket, connect) ])
364
365 dnl **********************************************************************
366 dnl In case that function clock_gettime with monotonic timer is available,
367 dnl check for additional required libraries.
368 dnl **********************************************************************
369 CURL_CHECK_LIBS_CLOCK_GETTIME_MONOTONIC
370
371 AC_MSG_CHECKING([whether to use libgcc])
372 AC_ARG_ENABLE(libgcc,
373 AC_HELP_STRING([--enable-libgcc],[use libgcc when linking]),
374 [ case "$enableval" in
375   yes)
376         LIBS="$LIBS -lgcc"
377        AC_MSG_RESULT(yes)
378        ;;
379   *)   AC_MSG_RESULT(no)
380        ;;
381   esac ],
382        AC_MSG_RESULT(no)
383 )
384
385
386 dnl Default is to try the thread-safe versions of a few functions
387 OPT_THREAD=on
388
389 dnl detect AIX 4.3 or later
390 AC_MSG_CHECKING([AIX 4.3 or later])
391 AC_PREPROC_IFELSE([
392 #if defined(_AIX) && defined(_AIX43)
393 printf("just fine");
394 #else
395 #error "this is not AIX 4.3 or later"
396 #endif
397 ],
398  [ AC_MSG_RESULT([yes])
399    RECENTAIX=yes
400    OPT_THREAD=off ],
401  [ AC_MSG_RESULT([no]) ]
402 )
403
404 AC_ARG_ENABLE(thread,dnl
405 AC_HELP_STRING([--disable-thread],[don't look for thread-safe functions])
406 AC_HELP_STRING([--enable-thread],[look for thread-safe functions]),
407 [ case "$enableval" in
408   no)
409     OPT_THREAD=off
410     AC_MSG_WARN(c-ares will not get built using thread-safe functions)
411     ;;
412   *)
413     ;;
414   esac
415 ]
416 )
417
418 if test X"$OPT_THREAD" = Xoff
419 then
420   AC_DEFINE(DISABLED_THREADSAFE, 1,
421     [Set to explicitly specify we don't want to use thread-safe functions])
422 fi
423
424 dnl for recent AIX versions, we skip all the thread-safe checks above since
425 dnl they claim a thread-safe libc using the standard API. But there are
426 dnl some functions still not thread-safe. Check for these!
427
428 dnl Let's hope this split URL remains working:
429 dnl http://publibn.boulder.ibm.com/doc_link/en_US/a_doc_lib/aixprggd/ \
430 dnl genprogc/thread_quick_ref.htm
431
432 if test "x$RECENTAIX" = "xyes"; then
433
434   AC_DEFINE(_THREAD_SAFE, 1, [define this if you need it to compile thread-safe code])
435
436 fi
437
438
439 dnl **********************************************************************
440 dnl Back to "normal" configuring
441 dnl **********************************************************************
442
443 dnl Checks for header files.
444 AC_HEADER_STDC
445
446 CURL_CHECK_HEADER_MALLOC
447
448 dnl check for a few basic system headers we need
449 AC_CHECK_HEADERS(
450        sys/types.h \
451        sys/time.h \
452        sys/select.h \
453        sys/socket.h \
454        sys/ioctl.h \
455        sys/param.h \
456        sys/uio.h \
457        netdb.h \
458        netinet/in.h \
459        netinet/tcp.h \
460        net/if.h \
461        errno.h \
462        strings.h \
463        stdbool.h \
464        time.h \
465        arpa/nameser.h \
466        arpa/nameser_compat.h \
467        arpa/inet.h,
468 dnl to do if not found
469 [],
470 dnl to do if found
471 [],
472 dnl default includes
473 [
474 #ifdef HAVE_SYS_TYPES_H
475 #include <sys/types.h>
476 #endif
477 #ifdef HAVE_SYS_TIME_H
478 #include <sys/time.h>
479 #endif
480 dnl We do this default-include simply to make sure that the nameser_compat.h
481 dnl header *REALLY* can be include after the new nameser.h. It seems AIX 5.1
482 dnl (and others?) is not designed to allow this.
483 #ifdef HAVE_ARPA_NAMESER_H
484 #include <arpa/nameser.h>
485 #endif
486
487 dnl *Sigh* these are needed in order for net/if.h to get properly detected.
488 #ifdef HAVE_SYS_SOCKET_H
489 #include <sys/socket.h>
490 #endif
491 #ifdef HAVE_NETINET_IN_H
492 #include <netinet/in.h>
493 #endif
494 ]
495 )
496
497 dnl Checks for typedefs, structures, and compiler characteristics.
498 AC_C_CONST
499 AC_TYPE_SIZE_T
500 AC_HEADER_TIME
501 CURL_CHECK_STRUCT_TIMEVAL
502
503 AC_CHECK_SIZEOF(size_t)
504 AC_CHECK_SIZEOF(long)
505 AC_CHECK_SIZEOF(time_t)
506
507 AC_CHECK_TYPE(long long,
508    [AC_DEFINE(HAVE_LONGLONG, 1,
509      [Define to 1 if the compiler supports the 'long long' data type.])]
510    longlong="yes"  
511 )
512
513 if test "xyes" = "x$longlong"; then
514   AC_MSG_CHECKING([if numberLL works])
515   AC_COMPILE_IFELSE([long long val = 1000LL;],
516    [AC_DEFINE(HAVE_LL, 1, [if your compiler supports LL])]
517    AC_MSG_RESULT(yes),
518    AC_MSG_RESULT(no)
519   )
520 fi
521
522
523 # check for ssize_t
524 AC_CHECK_TYPE(ssize_t, ,
525    AC_DEFINE(ssize_t, int, [the signed version of size_t]))
526
527 # check for bool type
528 AC_CHECK_TYPE([bool],[
529   AC_DEFINE(HAVE_BOOL_T, 1,
530     [Define to 1 if bool is an available type.])
531 ], ,[
532 #ifdef HAVE_SYS_TYPES_H
533 #include <sys/types.h>
534 #endif
535 #ifdef HAVE_STDBOOL_H
536 #include <stdbool.h>
537 #endif
538 ])
539
540 # Check for socklen_t or equivalent
541 CURL_CHECK_TYPE_SOCKLEN_T
542
543 TYPE_IN_ADDR_T
544
545 TYPE_SOCKADDR_STORAGE
546
547 TYPE_SIG_ATOMIC_T
548
549 AC_TYPE_SIGNAL
550
551 CURL_CHECK_FUNC_RECV
552 CURL_CHECK_FUNC_RECVFROM
553 CURL_CHECK_FUNC_SEND
554 CURL_CHECK_MSG_NOSIGNAL
555
556 CARES_CHECK_FUNC_GETHOSTNAME
557 CARES_CHECK_FUNC_GETSERVBYPORT_R
558 CARES_CHECK_FUNC_INET_NTOP
559 CARES_CHECK_FUNC_INET_PTON
560 CARES_CHECK_FUNC_STRCASECMP
561 CARES_CHECK_FUNC_STRCMPI
562 CARES_CHECK_FUNC_STRDUP
563 CARES_CHECK_FUNC_STRICMP
564 CARES_CHECK_FUNC_STRNCASECMP
565 CARES_CHECK_FUNC_STRNCMPI
566 CARES_CHECK_FUNC_STRNICMP
567 CARES_CHECK_FUNC_WRITEV
568
569
570 dnl check for AF_INET6
571 CARES_CHECK_CONSTANT(
572   [
573 #undef inline
574 #ifdef HAVE_WINDOWS_H
575 #ifndef WIN32_LEAN_AND_MEAN
576 #define WIN32_LEAN_AND_MEAN
577 #endif
578 #include <windows.h>
579 #ifdef HAVE_WINSOCK2_H
580 #include <winsock2.h>
581 #endif
582 #else
583 #ifdef HAVE_SYS_TYPES_H
584 #include <sys/types.h>
585 #endif
586 #ifdef HAVE_SYS_SOCKET_H
587 #include <sys/socket.h>
588 #endif
589 #endif
590   ], [PF_INET6], 
591      AC_DEFINE_UNQUOTED(HAVE_PF_INET6,1,[Define to 1 if you have PF_INET6.])
592 )
593
594 dnl check for PF_INET6
595 CARES_CHECK_CONSTANT(
596   [
597 #undef inline
598 #ifdef HAVE_WINDOWS_H
599 #ifndef WIN32_LEAN_AND_MEAN
600 #define WIN32_LEAN_AND_MEAN
601 #endif
602 #include <windows.h>
603 #ifdef HAVE_WINSOCK2_H
604 #include <winsock2.h>
605 #endif
606 #else
607 #ifdef HAVE_SYS_TYPES_H
608 #include <sys/types.h>
609 #endif
610 #ifdef HAVE_SYS_SOCKET_H
611 #include <sys/socket.h>
612 #endif
613 #endif
614   ], [AF_INET6], 
615      AC_DEFINE_UNQUOTED(HAVE_AF_INET6,1,[Define to 1 if you have AF_INET6.])
616 )
617
618
619 dnl check for the in6_addr structure
620 CARES_CHECK_STRUCT(
621   [
622 #undef inline
623 #ifdef HAVE_WINDOWS_H
624 #ifndef WIN32_LEAN_AND_MEAN
625 #define WIN32_LEAN_AND_MEAN
626 #endif
627 #include <windows.h>
628 #ifdef HAVE_WINSOCK2_H
629 #include <winsock2.h>
630 #ifdef HAVE_WS2TCPIP_H
631 #include <ws2tcpip.h>
632 #endif
633 #endif
634 #else
635 #ifdef HAVE_SYS_TYPES_H
636 #include <sys/types.h>
637 #endif
638 #ifdef HAVE_NETINET_IN_H
639 #include <netinet/in.h>
640 #endif
641 #endif
642   ], [in6_addr], 
643      AC_DEFINE_UNQUOTED(HAVE_STRUCT_IN6_ADDR,1,[Define to 1 if you have struct in6_addr.])
644 )
645
646 dnl check for the sockaddr_in6 structure
647 CARES_CHECK_STRUCT(
648   [
649 #undef inline
650 #ifdef HAVE_WINDOWS_H
651 #ifndef WIN32_LEAN_AND_MEAN
652 #define WIN32_LEAN_AND_MEAN
653 #endif
654 #include <windows.h>
655 #ifdef HAVE_WINSOCK2_H
656 #include <winsock2.h>
657 #ifdef HAVE_WS2TCPIP_H
658 #include <ws2tcpip.h>
659 #endif
660 #endif
661 #else
662 #ifdef HAVE_SYS_TYPES_H
663 #include <sys/types.h>
664 #endif
665 #ifdef HAVE_NETINET_IN_H
666 #include <netinet/in.h>
667 #endif
668 #endif
669   ], [sockaddr_in6], 
670      AC_DEFINE_UNQUOTED(HAVE_STRUCT_SOCKADDR_IN6,1,
671        [Define to 1 if you have struct sockaddr_in6.]) ac_have_sockaddr_in6=yes
672 )
673
674 AC_CHECK_MEMBER(struct sockaddr_in6.sin6_scope_id,
675     AC_DEFINE_UNQUOTED(HAVE_SOCKADDR_IN6_SIN6_SCOPE_ID,1,
676       [Define to 1 if your struct sockaddr_in6 has sin6_scope_id.])
677    , ,
678   [
679 #undef inline
680 #ifdef HAVE_WINDOWS_H
681 #ifndef WIN32_LEAN_AND_MEAN
682 #define WIN32_LEAN_AND_MEAN
683 #endif
684 #include <windows.h>
685 #ifdef HAVE_WINSOCK2_H
686 #include <winsock2.h>
687 #ifdef HAVE_WS2TCPIP_H
688 #include <ws2tcpip.h>
689 #endif
690 #endif
691 #else
692 #ifdef HAVE_SYS_TYPES_H
693 #include <sys/types.h>
694 #endif
695 #ifdef HAVE_NETINET_IN_H
696 #include <netinet/in.h>
697 #endif
698 #endif
699   ])
700
701 dnl check for the addrinfo structure
702 AC_CHECK_MEMBER(struct addrinfo.ai_flags,
703      AC_DEFINE_UNQUOTED(HAVE_STRUCT_ADDRINFO,1,
704        [Define to 1 if you have struct addrinfo.]),,
705   [
706 #undef inline
707 #ifdef HAVE_WINDOWS_H
708 #ifndef WIN32_LEAN_AND_MEAN
709 #define WIN32_LEAN_AND_MEAN
710 #endif
711 #include <windows.h>
712 #ifdef HAVE_WINSOCK2_H
713 #include <winsock2.h>
714 #ifdef HAVE_WS2TCPIP_H
715 #include <ws2tcpip.h>
716 #endif
717 #endif
718 #else
719 #ifdef HAVE_SYS_TYPES_H
720 #include <sys/types.h>
721 #endif
722 #ifdef HAVE_NETINET_IN_H
723 #include <netinet/in.h>
724 #endif
725 #ifdef HAVE_SYS_SOCKET_H
726 #include <sys/socket.h>
727 #endif
728 #ifdef HAVE_NETDB_H
729 #include <netdb.h>
730 #endif
731 #endif
732   ]
733 )
734
735
736 AC_CHECK_FUNCS([bitncmp \
737   gettimeofday \
738   if_indextoname
739 ],[
740 ],[
741   func="$ac_func"
742   AC_MSG_CHECKING([deeper for $func])
743   AC_LINK_IFELSE([
744     AC_LANG_PROGRAM([[
745     ]],[[
746       $func ();
747     ]])
748   ],[
749     AC_MSG_RESULT([yes])
750     eval "ac_cv_func_$func=yes"
751     AC_DEFINE_UNQUOTED([AS_TR_CPP([HAVE_$func])], [1],
752       [Define to 1 if you have the $func function.])
753   ],[
754     AC_MSG_RESULT([but still no])
755   ])
756 ])
757
758
759 dnl Check for inet_net_pton
760 AC_CHECK_FUNCS(inet_net_pton)
761 dnl Again, some systems have it, but not IPv6
762 if test "$ac_cv_func_inet_net_pton" = "yes" ; then
763 AC_MSG_CHECKING(if inet_net_pton supports IPv6)
764 AC_TRY_RUN(
765   [
766 #ifdef HAVE_SYS_TYPES_H
767 #include <sys/types.h>
768 #endif
769 #ifdef HAVE_SYS_SOCKET_H
770 #include <sys/socket.h>
771 #endif
772 #ifdef HAVE_NETINET_IN_H
773 #include <netinet/in.h>
774 #endif
775 int main()
776   {
777     struct in6_addr addr6;
778     if (inet_net_pton(AF_INET6, "::1", &addr6, sizeof(addr6)) < 1)
779       exit(1);
780     else
781       exit(0);
782   }
783   ], [
784        AC_MSG_RESULT(yes)
785        AC_DEFINE_UNQUOTED(HAVE_INET_NET_PTON_IPV6,1,[Define to 1 if inet_net_pton supports IPv6.])
786      ], AC_MSG_RESULT(no),AC_MSG_RESULT(no))
787 fi
788
789
790 AC_CHECK_SIZEOF(struct in6_addr, ,
791 [
792 #undef inline
793 #ifdef HAVE_WINDOWS_H
794 #ifndef WIN32_LEAN_AND_MEAN
795 #define WIN32_LEAN_AND_MEAN
796 #endif
797 #include <windows.h>
798 #ifdef HAVE_WINSOCK2_H
799 #include <winsock2.h>
800 #ifdef HAVE_WS2TCPIP_H
801 #include <ws2tcpip.h>
802 #endif
803 #endif
804 #else
805 #ifdef HAVE_SYS_TYPES_H
806 #include <sys/types.h>
807 #endif
808 #ifdef HAVE_SYS_SOCKET_H
809 #include <sys/socket.h>
810 #endif
811 #ifdef HAVE_NETINET_IN_H
812 #include <netinet/in.h>
813 #endif
814 #endif
815 ]
816 )
817
818 AC_CHECK_SIZEOF(struct in_addr, ,
819 [
820 #undef inline
821 #ifdef HAVE_WINDOWS_H
822 #ifndef WIN32_LEAN_AND_MEAN
823 #define WIN32_LEAN_AND_MEAN
824 #endif
825 #include <windows.h>
826 #ifdef HAVE_WINSOCK2_H
827 #include <winsock2.h>
828 #ifdef HAVE_WS2TCPIP_H
829 #include <ws2tcpip.h>
830 #endif
831 #endif
832 #else
833 #ifdef HAVE_SYS_TYPES_H
834 #include <sys/types.h>
835 #endif
836 #ifdef HAVE_SYS_SOCKET_H
837 #include <sys/socket.h>
838 #endif
839 #ifdef HAVE_NETINET_IN_H
840 #include <netinet/in.h>
841 #endif
842 #endif
843 ]
844 )
845
846
847 dnl Check if the getnameinfo function is available
848 dnl and get the types of five of its arguments.
849 CURL_CHECK_FUNC_GETNAMEINFO
850
851
852 CURL_CHECK_NONBLOCKING_SOCKET
853
854 AC_C_BIGENDIAN(
855     [AC_DEFINE(ARES_BIG_ENDIAN, 1,
856       [define this if ares is built for a big endian system])],
857     ,
858     [AC_MSG_WARN([couldn't figure out endianess, assuming little endian!])]
859 )
860
861 dnl Check for user-specified random device
862 AC_ARG_WITH(random,
863 AC_HELP_STRING([--with-random=FILE],
864                [read randomness from FILE (default=/dev/urandom)]),
865     [ RANDOM_FILE="$withval" ],
866     [
867         dnl Check for random device.  If we're cross compiling, we can't
868         dnl check, and it's better to assume it doesn't exist than it is
869         dnl to fail on AC_CHECK_FILE or later.
870         if test "$cross_compiling" = "no"; then
871           AC_CHECK_FILE("/dev/urandom", [ RANDOM_FILE="/dev/urandom"] )
872         else
873           AC_MSG_WARN([cannot check for /dev/urandom while cross compiling; assuming none])
874         fi
875         
876     ]
877 )
878 if test -n "$RANDOM_FILE" && test X"$RANDOM_FILE" != Xno ; then
879         AC_SUBST(RANDOM_FILE)
880         AC_DEFINE_UNQUOTED(RANDOM_FILE, "$RANDOM_FILE",
881         [a suitable file/device to read random data from])
882 fi
883
884 CARES_PRIVATE_LIBS="$LIBS"
885 AC_SUBST(CARES_PRIVATE_LIBS)
886
887 dnl squeeze whitespace out of some variables
888
889 squeeze CFLAGS
890 squeeze CPPFLAGS
891 squeeze DEFS
892 squeeze LDFLAGS
893 squeeze LIBS
894
895 squeeze CARES_PRIVATE_LIBS
896
897 AC_CONFIG_FILES([Makefile libcares.pc])
898 AC_OUTPUT