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