blob: f826305f79aa9c9f23790772511f7038844a1254 [file] [log] [blame]
Ravi Gummadidala5dcfae22013-01-23 20:13:27 -08001# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
5AC_INIT(data-ipa, 1.0.0)
6AM_INIT_AUTOMAKE(data-ipa, 1.0.0)
7AC_OUTPUT(Makefile ipanat/src/Makefile ipacm/src/Makefile)
8AC_CONFIG_SRCDIR([ipanat/src/ipa_nat_drv.c])
9AC_CONFIG_HEADERS([config.h])
10AC_CONFIG_MACRO_DIR([m4])
11
12# Checks for programs.
13AC_PROG_CC
14AC_PROG_LIBTOOL
15AC_PROG_CXX
16
17
18# Checks for libraries.
19
20# Checks for header files.
21AC_CHECK_HEADERS([fcntl.h netinet/in.h sys/ioctl.h unistd.h])
22
23# Checks for typedefs, structures, and compiler characteristics.
24AC_TYPE_OFF_T
25
26# Checks for library functions.
27AC_FUNC_MALLOC
28AC_FUNC_MMAP
29AC_CHECK_FUNCS([memset munmap])
30
31AC_OUTPUT