From a95eae0bfe26c20be3fd84871ce14c861d505c19 Mon Sep 17 00:00:00 2001 From: Daniil Baturin Date: Sat, 25 May 2013 21:54:36 -0700 Subject: Multiple improvements. * Change option handling, allow multiple options at the same time, treated as logical AND. * IPv4 feature set is mostly complete. * Change function lib license to LGPL for the case it will be converted into a shared lib. * Add unit tests (rely on Check framework) * Something else, but who cares, it's a very early stage. --- configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index edf56e6..8cc478c 100644 --- a/configure.ac +++ b/configure.ac @@ -2,13 +2,15 @@ AC_INIT([iptest], [0.1], [daniil@baturin.org]) AC_PROG_CC -#AC_CHECK_HEADER(unistd.h) +AC_CHECK_HEADER(pcre.h) AC_CHECK_HEADER(libcidr.h) AM_INIT_AUTOMAKE([gnu no-dist-gzip dist-bzip2 subdir-objects]) AC_PREFIX_DEFAULT([/usr]) -AC_CONFIG_FILES([Makefile src/Makefile]) +AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile]) AC_CONFIG_HEADERS([src/config.h]) +PKG_CHECK_MODULES([CHECK], [check >= 0.9.4]) + AC_OUTPUT -- cgit v1.2.3