summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2013-05-25 21:54:36 -0700
committerDaniil Baturin <daniil@baturin.org>2013-05-25 21:54:36 -0700
commita95eae0bfe26c20be3fd84871ce14c861d505c19 (patch)
tree07a4726ccebaed7c19bbc3e772c2989dd99ad387 /configure.ac
parent256d4d7c8d494093a206cd72e7375079e6cf8b99 (diff)
downloadipaddrcheck-a95eae0bfe26c20be3fd84871ce14c861d505c19.tar.gz
ipaddrcheck-a95eae0bfe26c20be3fd84871ce14c861d505c19.zip
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.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
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