diff options
author | Luca <deri@ntop.org> | 2018-08-25 10:50:16 +0200 |
---|---|---|
committer | Luca <deri@ntop.org> | 2018-08-25 10:50:16 +0200 |
commit | a98c0a81be86936e96be7d2312ae11ef85b785b2 (patch) | |
tree | a49dc35a225cb61d8b480b84ac7b884ed3bccd69 /configure.seed | |
parent | 2f83375eec070acf5c5bad87e2bcf319f39103f0 (diff) |
Added target for shared liubrary creation
Added target for install
Fixes #593
Diffstat (limited to 'configure.seed')
-rw-r--r-- | configure.seed | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.seed b/configure.seed index 6b85c66e9..946557a33 100644 --- a/configure.seed +++ b/configure.seed @@ -10,6 +10,7 @@ AC_PROG_CC AM_PROG_CC_C_O AX_PTHREAD +NDPI_VERSION_SHORT="@NDPI_VERSION_SHORT@" NDPI_MAJOR="@NDPI_MAJOR@" NDPI_MINOR="@NDPI_MINOR@" NDPI_PATCH="@NDPI_PATCH@" @@ -127,12 +128,13 @@ AC_ARG_ENABLE([debug-messages], AC_CHECK_LIB(pthread, pthread_setaffinity_np, AC_DEFINE_UNQUOTED(HAVE_PTHREAD_SETAFFINITY_NP, 1, [libc has pthread_setaffinity_np])) -AC_CONFIG_FILES([Makefile example/Makefile tests/Makefile libndpi.pc src/include/ndpi_define.h]) +AC_CONFIG_FILES([Makefile example/Makefile tests/Makefile src/include/ndpi_define.h src/lib/Makefile]) AC_CONFIG_HEADERS(src/include/ndpi_config.h) AC_SUBST(GIT_RELEASE) AC_SUBST(NDPI_MAJOR) AC_SUBST(NDPI_MINOR) AC_SUBST(NDPI_PATCH) +AC_SUBST(NDPI_VERSION_SHORT) AC_SUBST(SVN_DATE) AC_SUBST(JSON_C_LIB) AC_SUBST(PCAP_INC) |