diff options
| -rw-r--r-- | Makefile.am | 2 | ||||
| -rw-r--r-- | NEWS | 1 | ||||
| -rw-r--r-- | configure.in | 4 |
3 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 770a7983..0452133f 100644 --- a/Makefile.am +++ b/Makefile.am | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | ## Process this file with automake to produce Makefile.in | 1 | ## Process this file with automake to produce Makefile.in |
| 2 | 2 | ||
| 3 | SUBDIRS = gl lib plugins plugins-scripts plugins-root po @PERLMODS_DIR@ | 3 | SUBDIRS = gl @INCLUDE_TAP_DIR@ lib plugins plugins-scripts plugins-root po @PERLMODS_DIR@ |
| 4 | 4 | ||
| 5 | # Have to list TAP_DIR manually to get in distribution | 5 | # Have to list TAP_DIR manually to get in distribution |
| 6 | EXTRA_DIST = config.rpath \ | 6 | EXTRA_DIST = config.rpath \ |
| @@ -8,6 +8,7 @@ This file documents the major additions and syntax changes between releases. | |||
| 8 | check_ups now sends a LOGOUT string (debian bug #387001) | 8 | check_ups now sends a LOGOUT string (debian bug #387001) |
| 9 | Extra-opts (C plugins) now allows both '#' and ';' for comments (like N::P) | 9 | Extra-opts (C plugins) now allows both '#' and ';' for comments (like N::P) |
| 10 | Extra-opts (C plugins) does not allow trailing comments anymore (like N::P) | 10 | Extra-opts (C plugins) does not allow trailing comments anymore (like N::P) |
| 11 | Fixed dependency issue on libtap when ./configure --enable-libtap used. Warning: will install libtap | ||
| 11 | 12 | ||
| 12 | 1.4.13 25th Sept 2008 | 13 | 1.4.13 25th Sept 2008 |
| 13 | Fix Debian bug #460097: check_http --max-age broken (Hilko Bengen) | 14 | Fix Debian bug #460097: check_http --max-age broken (Hilko Bengen) |
diff --git a/configure.in b/configure.in index 17fd14c4..7687ae6e 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -166,6 +166,10 @@ AC_SUBST(TAP_DIR) | |||
| 166 | if test "$enable_libtap" = yes; then | 166 | if test "$enable_libtap" = yes; then |
| 167 | dnl Have to have AC_CONFIG_SUBDIRS as a literal | 167 | dnl Have to have AC_CONFIG_SUBDIRS as a literal |
| 168 | AC_CONFIG_SUBDIRS([external/tap-1.01]) | 168 | AC_CONFIG_SUBDIRS([external/tap-1.01]) |
| 169 | dnl This is required so that TAP stuff is compiled before the libs and tests | ||
| 170 | dnl A make install will also install the tap library, but as this is a development tool, this should be okay | ||
| 171 | INCLUDE_TAP_DIR=$TAP_DIR | ||
| 172 | AC_SUBST(INCLUDE_TAP_DIR) | ||
| 169 | EXTRA_TEST="test_utils test_disk test_tcp test_cmd test_base64" | 173 | EXTRA_TEST="test_utils test_disk test_tcp test_cmd test_base64" |
| 170 | AC_SUBST(EXTRA_TEST) | 174 | AC_SUBST(EXTRA_TEST) |
| 171 | fi | 175 | fi |
