| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The goal is to get rid of the Makefile.in's (replace it with Automake Makefile.am's)
as they duplicate lot's of text.
That decreases readability and is in general a bad design pattern.
It seems appropriate to use Automake for an Autoconf based project.
Currently achieved:
* using libtool to build the core library (+libtool's semantic versioning)
* out-of-source builds should work right now
* introducing Automake based Makefile in src/
* removed some (maybe) unused GIT ignored files
* provide some small python fixes
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
|
|
|
|
|
| |
* libm will now be part of @ADDITIONAL_LIBS@ (if required)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
|
| |
|
| |
|
|\
| |
| | |
Fixed broken `make dist' and added CI check.
|
| |
| |
| |
| | |
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
|
|/
|
|
| |
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
|
| |
|
| |
|
|
|
|
|
|
|
| |
To enable the leaks detector, set the ASAN_OPTIONS=detect_leaks=1
environment variable, e.g:
ASAN_OPTIONS=detect_leaks=1 example/ndpiReader -i test.pcap
|
| |
|
| |
|
| |
|
|
|
|
| |
Fixed warning
|
|
|
|
| |
Signed-off-by: Ravi Kerur <ravi.kerur@viasat.com>
|
| |
|
| |
|
| |
|
|
|
| |
removed -F option from makefile for alpine support. Actually not sure the relevance of -F flag for other OS
|
| |
|
|\
| |
| |
| | |
Merge branch 'dev' of https://github.com/ntop/nDPI into dev
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
relative link path can preserve link relation after packaging and
doplying to new machine
ex:
$ make DESTDIR=/tmp/ndpi install
$ tar czf ndpi.tar.gz /tmp/ndpi
$ tar xf ndpi.tar.gz -C /lib
Orignal install script will caused the /lib/libndpi.so.2 links to
/tmp/ndpi/libndpi.so.2.9.0 which is not intended
Signed-off-by: chiehminw <chiehminw@synology.com>
|
|/
|
|
|
| |
Added coherency in application protol guess by exploiting the host server name
Various protocol optimizations
|
|
|
|
|
| |
A "make install" was failing because the --prefix flag
setting was not being propagated to the Makefiles.
|
|\
| |
| | |
Also create the libndpi.so.2 link.
|
| |
| |
| |
| | |
This is created bydefault by all build tools for libraries and required in certain cases. FreeBSD linker requires it when using SONAME.
|
| |
| |
| |
| | |
Signed-off-by: Vitaliy Ivanov <vitaliyi@interfacemasters.com>
|
| |
| |
| |
| |
| |
| |
| | |
- take libpcap from configure information.
- clean up distclean.
Signed-off-by: Vitaliy Ivanov <vitaliyi@interfacemasters.com>
|
| | |
|
|/ |
|
| |
|
| |
|
|
|
|
| |
property.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Used clang instead of gcc on MacOS
|
|
Added target for install
Fixes #593
|