chiark / gitweb /
Import release 0.08
[secnet.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_INIT(secnet.c)
4 AC_CONFIG_HEADER(config.h)
5
6 AC_REVISION($Id$)
7
8 AC_LANG_C
9
10 AC_PROG_MAKE_SET
11 AC_PROG_CC
12 AC_PROG_INSTALL
13 AC_PATH_PROG(RM,rm)
14 AC_STDC_HEADERS
15 AC_CHECK_HEADERS(stdint.h inttypes.h)
16 AC_CHECK_HEADERS(linux/if.h)
17 AC_C_BIGENDIAN
18
19 AC_CHECK_LIB(gmp,mpz_init_set_str)
20 AC_CHECK_LIB(gmp2,mpz_init_set_str)
21 AC_CHECK_LIB(fl,yywrap)
22 AC_CHECK_LIB(adns,adns_init)
23 AC_CHECK_LIB(getopt,getopt_long)
24 AC_CHECK_LIB(gnugetopt,getopt_long)
25
26 AC_OUTPUT(Makefile,echo timestamp >stamp-h)