aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAge
* [autoconf] Fixed .git submodule detection test. (#1507)Darryl Sokoloski2022-03-31
| | | Signed-off-by: Darryl Sokoloski <darryl@sokoloski.ca>
* Added code for identifiying anomalies with metrics stored in InfluxDBLuca Deri2022-03-30
|
* Complete rework of nDPI Python bindings (cffi API, automatic generation, ↵aouinizied2022-03-22
| | | | packaging and CI integration)
* configure: fix usage of libgpg-error with `--with-local-libgcrypt` (#1472)Ivan Nardi2022-03-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Right now, using external libgcrypt, nDPI is not linked to libgpg-error because configure script never checks for it. ``` ivan@ivan-Latitude-E6540:~/svnrepos/nDPI(dev)$ CC=gcc-11 CXX=g++-11 CFLAGS="-O3 -g -Werror" ./autogen.sh --enable-debug-messages --with-pcre --with-local-libgcrypt && make -s -j [...] checking for numa_available in -lnuma... yes checking for pcap_open_live in -lpcap... yes checking for pthread_setaffinity_np in -lpthread... yes checking for gcry_cipher_checktag in -lgcrypt... yes <------- missing check for libgpg-error checking for pcre_compile in -lpcre... yes checking that generated files are newer than configure... done [...] ivan@ivan-Latitude-E6540:~/svnrepos/nDPI(dev)$ grep HAVE_LIBGPG_ERROR src/include/ndpi_config.h /* #undef HAVE_LIBGPG_ERROR */ ``` Make both libgcrypt and libgpg-error mandatory if `--with-local-libgcrypt` is used. Technically speaking, libgpg-error might be optional, because it is used only for debug messages. However having both libraries mandatory slightly simplified the logic. In most environments, libgpg-error is a dependency of libgcrypt anyway, so having both libraries should be the standard case.
* Added autoconf option `--enable-tls-sigs'. (#1471)Toni2022-03-03
| | | | | | * Testing more code in CI environments. * Added strict option checking for `./configure' in CI environments. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Drop support for non-gcrypt builds. (#1469)Toni2022-03-02
| | | | | | | | * As there is now a builtin, lightweight libgcrypt there is no need to disable tls-clho decryption. * It is still possible to use a host libgcrypt with `--with-local-libgcrypt'. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Fix libgcrypt(-light/-internal) compile error. (#1465)Toni2022-03-02
| | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Unless --with-libgcrypt is used, nDPI now uses its internal gcrypt ↵Luca Deri2022-02-28
| | | | implementation
* Added `--enable-code-coverage' build using lcov for coverage generation. (#1430)Toni2022-02-28
| | | | | * CI job generates a coverage report Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Moved to 4.3Luca2022-02-01
|
* Fixed an issue on CentOS 7 introduced byLuca Deri2022-01-19
| | | | https://github.com/ntop/nDPI/commit/c2b7d77784beeae5f86f19e33ba3da5ddce55898
* build: respect environment options more (#1392)Sam James2022-01-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * build: update m4/ax_pthread.m4 from serial 23 -> serial 31 Update ax_pthread.m4 to the latest version from the autoconf-archive project. Signed-off-by: Sam James <sam@gentoo.org> * build: properly detect AR, CC, RANLIB It's necessary to be able to override choice of AR/CC/RANLIB and other toolchain variables/tools for cross-compilation, testing with other toolchains, and to ensure the compiler chosen by the user is actually used for the build. Previously, GNU_PREFIX was kind-of used for this but this isn't a standard variable (at all) and it wasn't applied consistently anyway. We now use the standard autoconf mechanisms for finding these tools. (RANLIB is already covered by LT_INIT.) Signed-off-by: Sam James <sam@gentoo.org> * build: use $(MAKE) This ensures that parallel make works correctly, as otherwise, a fresh make job will be started without the jobserver fd, and hence not know about its parent, forcing -j1. * build: respect CPPFLAGS, LDFLAGS - CPPFLAGS is for the C preprocessor (usually for setting defines) - LDFLAGS should be placed before objects for certain flags to work (e.g. -Wl,--as-needed) Signed-off-by: Sam James <sam@gentoo.org> Co-authored-by: Luca Deri <lucaderi@users.noreply.github.com>
* Added performance tests toolsLuca Deri2022-01-16
|
* FreeBSD fixesLuca Deri2022-01-13
|
* Added Microsoft Azure supportLuca Deri2021-12-19
|
* Fix configure script (after fb85dac9) (#1381)Ivan Nardi2021-12-04
| | | Fix/disable some LGTM warnings
* Configure improvementsLuca Deri2021-12-04
| | | | Fixed invalid anomaly detection in rrd_anomaly
* Updated rrdtool makefileLuca Deri2021-12-03
|
* Get rid of `configure.seed` as it comes with some disadvantages. (#1328)Toni2021-10-10
| | | | | * using Autotools best-practices to achieve (hopefully) the same result Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Implements #376Luca2017-08-29
|
* Improved checks on libnumaLuca Deri2017-06-30
|
* Added check for searching JSON-C in home directory if not installedLuca Deri2017-05-24
| | | | Fixed type
* Moved to 2.1.0Luca Deri2017-05-22
| | | | Updated test results
* Fixed JSON format when -v 3 and -b is usedLuca Deri2017-05-22
|
* Removed Napatech dependencyLuca Deri2017-04-27
|
* Easing OpenBSD buildNumeronove2017-02-11
| | | | | | | | | | Addedd macro AM_PROG_CC_C_O in configure.ac, needed to have autogen.sh manage the error: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac' Modified case instance in example/ndpi_util.c, since DLT_LINUX_SLL isn't defined in OpenBSD pcap.h.
* Checking for libdl vs. libc during configureMarco Gigante2016-11-23
|
* Allowed to run tests by 'make check'theirix2016-08-13
|
* Moved to 1.8 release1.8Luca Deri2016-05-28
|
* Improved detection of json-c package.theirix2016-04-01
| | | | | | | - Improved detection code for json-c package to use pkg-config with custom search path that includes /usr/local - Added optional option --disable-json-c to disable json-c package for reducing runtime dependencies.
* Added support for pfring_configLuca Deri2015-09-23
|
* Moved to 1.7.1 development branch1.7Luca Deri2015-08-18
|
* Moved to version 1.7.0Luca Deri2015-07-01
|
* Added EAQ protocol supportLuca Deri2015-06-14
|
* Fixed bug that caused configure to generate GIT version information ↵Luca2015-06-04
| | | | | | | containing spaces Modified ndpiReader to include flow details in dumps (used for testing) Rebuilt all test results to include flow details
* Updated readmeLuca Deri2015-05-31
| | | | Moved to version 1.6.0
* GIT commit count fix that should work on all platforms (RedHat/CentOS included)Luca Deri2015-05-27
|
* Add check for pthread_setaffinity_npFrancesco Del Degan2015-05-25
|
* Fixes to catch missing GNU toolsLuca Deri2015-05-23
|
* Modified GIT version format as shown ndpiReader -rLuca Deri2015-05-21
|
* Update configure.ac: introduced git tag for version, incremental number of ↵Luca Giovenzana2015-05-21
| | | | | | | | | | | | commits and release 1.5.2-43-gb3a292d-dirty ^ ^ ^ ^ | | | | | | | if there are uncommitted changes | | SHA of HEAD | number of commits since last tag last tag
* Updated git version variableLuca2015-04-30
|
* Changed version id since we moved to gitLuca Deri2015-04-19
|
* Initial import from SVNLuca Deri2015-04-19