aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
Commit message (Collapse)AuthorAge
* shell: reformatted, fixed inspections, typos (#2506)Petr2024-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reformatted shell scripts according to [ShellCheck](https://github.com/koalaman/shellcheck/). I. Most common changes: 1. https://github.com/koalaman/shellcheck/wiki/SC2086 `$var` → `"$var"` Note: this isn't always necessary and I've been careful not to substitute where it wasn't necessary in meaning. 2. https://github.com/koalaman/shellcheck/wiki/SC2006 `` `command` `` → `$(command)` 3. https://github.com/koalaman/shellcheck/wiki/SC2004 `$(( $a + $b ))` → `$(( a + b ))` 4. https://github.com/koalaman/shellcheck/wiki/SC2164 `cd "$dir"` → `cd "$dir" || exit 1` 5. https://github.com/koalaman/shellcheck/wiki/SC2166 `[ check1 -o check2 ]` → `[ check1 ] || [ check2 ]` 6. https://github.com/koalaman/shellcheck/wiki/SC2002 `cat "${file}" | wc -c` → `< "${file}" wc -c` Note: this looks a bit uglier but works faster. II. Some special changes: 1. In file `utils/common.sh`: https://github.com/koalaman/shellcheck/wiki/SC2112 This script is interpreted by `sh`, not by `bash`, but uses the keyword `function`. So I replaced `#!/usr/bin/env sh` to `#!/usr/bin/env bash`. 2. After that I thought of replacing all shebangs to `#!/usr/bin/env bash` for consistency and cross-platform compatibility, especially since most of the files already use bash. 3. But in cases when it was `#!/bin/sh -e` or `#!/bin/bash -eu` another problem appears: https://github.com/koalaman/shellcheck/wiki/SC2096 So I decided to make all shebangs look uniform: ``` #!/usr/bin/env bash set -e (or set -eu) (if needed) ``` 4. In file `tests/ossfuzz.sh`: https://github.com/koalaman/shellcheck/wiki/SC2162 `read i` → `read -r i` Note: I think that there is no need in special treatment for backslashes, but I could be wrong. 5. In file `tests/do.sh.in`: https://github.com/koalaman/shellcheck/wiki/SC2035 `ls *.*cap*` → `ls -- *.*cap*` 6. In file `utils/verify_dist_tarball.sh`: https://github.com/koalaman/shellcheck/wiki/SC2268 `[ "x${TARBALL}" = x ]` → `[ -z "${TARBALL}" ]` 7. In file `utils/check_symbols.sh`: https://github.com/koalaman/shellcheck/wiki/SC2221 `'[ndpi_utils.o]'|'[ndpi_memory.o]'|'[roaring.o]')` → `'[ndpi_utils.o]'|'[ndpi_memory.o]')` 8. In file `autogen.sh`: https://github.com/koalaman/shellcheck/wiki/SC2145 `echo "./configure $@"` → `echo "./configure $*"` https://github.com/koalaman/shellcheck/wiki/SC2068 `./configure $@` → `./configure "$@"` III. `LIST6_MERGED` and `LIST_MERGED6` There were typos with this variables in files `utils/aws_ip_addresses_download.sh`, `utils/aws_ip_addresses_download.sh` and `utils/microsoft_ip_addresses_download.sh` where variable `LIST6_MERGED` was defined, but `LIST_MERGED6` was removed by `rm`. I changed all `LIST_MERGED6` to `LIST6_MERGED`. Not all changes are absolutely necessary, but some may save you from future bugs.
* Fixed msys2 build warnings and re-activated CI Mingw64 build.fix/windows-msys2Toni Uhlig2022-04-14
| | | | | | | * Removed Visual Studio leftovers. Maintaining an autotools project with VS integration requires some additional overhead. Signed-off-by: Toni Uhlig <matzeton@googlemail.com> Signed-off-by: lns <matzeton@googlemail.com>
* 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>
* Moved to 4.1.0Luca Deri2021-07-26
|
* Disable tests that require libgcrypt if --disable-gcrypt set. (#1121)Toni2021-01-21
| | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Initial 3.5 commitLuca Deri2020-10-19
|
* 3.4 nDPI Release3.4Luca Deri2020-10-19
|
* don't pass arguments to ./configure as 1 string (#1027)borisVanhoof2020-09-29
| | | | | | | this causes the following error if there are arguments after --host : 'checking host system type... config.sub: too many arguments' Co-authored-by: sahnalys12 <boris.vanhoof_ext@softathome.com> Co-authored-by: Luca Deri <lucaderi@users.noreply.github.com>
* Added missing files to `make dist' target which are not required to build ↵Toni2020-09-29
| | | | | nDPI but still somehow essential. (#1024) Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Check for CentOS 6lucaderi2020-06-26
|
* fixed autoconf version checkToni Uhlig2020-06-25
| | | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* CentOS6 fix (santize won't work as too old system)lucaderi2020-06-25
| | | | Fixes warning
* Added check for pkg-config presenceLuca Deri2020-04-19
|
* Moved to 3.3Alfredo Cardigliano2020-02-20
|
* Code cleanupLuca Deri2019-12-09
|
* Moved to 3.1 releaseLuca Deri2019-10-04
|
* Bump to version 2.9Simone Mainardi2019-03-01
|
* Moved to 2.7Alfredo Cardigliano2018-12-21
|
* Added target for shared liubrary creationLuca2018-08-25
| | | | | Added target for install Fixes #593
* Moved to 2.5.0Luca Deri2018-08-22
|
* Major code cleanupLuca2018-07-21
| | | | Converted some not popular protocols to NDPI_PROTOCOL_GENERIC with category detection
* Add chmod +x to the generated configure fileYingpei Zeng2018-03-06
| | | | Fix an error when running autogen.sh on Ubuntu (16.04 LTS): ./autogen.sh: 49: ./autogen.sh: ./configure: Permission denied
* Added fix for invalid RTP/Skype detectionLuca Deri2018-02-21
| | | | Added change in config.h generated by nDPI to avoid name clashes (the GNU autotools are really outdated)
* Added PACKAGE_XXX rename to avoid name clashes when nDPI is used inside ↵Luca Deri2018-02-19
| | | | another project that use the autotools
* autogen.sh: break overlong sed lineBjørn Forsman2018-02-18
|
* autogen.sh: which -> command -vBjørn Forsman2018-02-18
| | | | | command -v is a POSIX standard, available in all POSIX sh. which is not. Prefer command -v for portability.
* autogen.sh: /bin/rm -> rmBjørn Forsman2018-02-18
| | | | | | | For portability, don't assume that /bin/rm exists, rely on $PATH lookup instead. This fixes building in sandboxed Nix(pkgs) builds.
* Bump to version 2.3Simone Mainardi2017-12-03
|
* Implements #376Luca2017-08-29
|
* Call configure with args from autogentheirix2016-04-01
|
* fix quic.c and add libtoolize option to autogen.shMichele Campus2015-06-20
|
* Added autoreconf checkLuca Deri2015-05-23
|
* Fixes to catch missing GNU toolsLuca Deri2015-05-23
|
* Win32 fixesLuca Deri2015-05-18
|
* Initial import from SVNLuca Deri2015-04-19