aboutsummaryrefslogtreecommitdiff
path: root/ares/configure.in
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-10-07 21:54:04 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-10-07 21:54:04 +0000
commit0436fbe226ca8ea71a751f4a86a228632e5cbc63 (patch)
tree5cf6478e89608a8000bd36014ba4032bcc9c0528 /ares/configure.in
parent6494889e3ba6b1432258f0a8ed402723607cff21 (diff)
ares 1.1.1 with collected applied patches
Diffstat (limited to 'ares/configure.in')
-rw-r--r--ares/configure.in18
1 files changed, 18 insertions, 0 deletions
diff --git a/ares/configure.in b/ares/configure.in
new file mode 100644
index 000000000..cc8a3f271
--- /dev/null
+++ b/ares/configure.in
@@ -0,0 +1,18 @@
+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)