File: configure.in

package info (click to toggle)
libares 1.1.1-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 708 kB
  • ctags: 294
  • sloc: sh: 7,677; ansic: 3,109; makefile: 126
file content (18 lines) | stat: -rw-r--r-- 296 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dnl Process this file with autoconf to produce a configure script.
AC_INIT(ares_init.c)

AC_PROG_CC
AC_PROG_INSTALL
AM_PROG_LIBTOOL

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)