mirror of
https://github.com/moparisthebest/curl
synced 2024-11-08 10:35:05 -05:00
19 lines
295 B
Plaintext
19 lines
295 B
Plaintext
|
dnl Process this file with autoconf to produce a configure script.
|
||
|
AC_INIT(ares_init.c)
|
||
|
|
||
|
AC_PROG_CC
|
||
|
AC_PROG_INSTALL
|
||
|
AC_PROG_RANLIB
|
||
|
|
||
|
AC_CANONICAL_HOST
|
||
|
case $host_os in
|
||
|
solaris*)
|
||
|
AC_DEFINE(ETC_INET)
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
AC_SEARCH_LIBS(gethostbyname, nsl)
|
||
|
AC_SEARCH_LIBS(socket, socket)
|
||
|
|
||
|
AC_OUTPUT(Makefile)
|