aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorToni <matzeton@googlemail.com>2021-10-10 13:13:52 +0200
committerGitHub <noreply@github.com>2021-10-10 13:13:52 +0200
commitcf931fda6bfb3925555c7bd11d950a886676bcb3 (patch)
treea1ae588d0b7a0b96b7ef258f18ed59e962e7d418 /autogen.sh
parent6ff67b5043e52db3de1c8fc63dddabe906612217 (diff)
Get rid of `configure.seed` as it comes with some disadvantages. (#1328)
* using Autotools best-practices to achieve (hopefully) the same result Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/autogen.sh b/autogen.sh
index 94e1cfd69..0aa75079d 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,10 +1,5 @@
#!/bin/sh
-NDPI_MAJOR="4"
-NDPI_MINOR="1"
-NDPI_PATCH="0"
-NDPI_VERSION_SHORT="$NDPI_MAJOR.$NDPI_MINOR.$NDPI_PATCH"
-
rm -f configure config.h config.h.in
AUTOCONF=$(command -v autoconf)
@@ -13,16 +8,10 @@ LIBTOOL=$(command -v libtool)
LIBTOOLIZE=$(command -v libtoolize)
AUTORECONF=$(command -v autoreconf)
PKG_CONFIG=$(command -v pkg-config)
-FUZZY=
if test -z $AUTOCONF; then
echo "autoconf is missing: please install it and try again"
exit
-else
- V=`autoconf --version | head -1 | cut -d ' ' -f 4`
- if [ "$V" = '2.63' ]; then
- FUZZY="dnl> "
- fi
fi
if test -z $AUTOMAKE; then
@@ -45,17 +34,7 @@ if test -z $PKG_CONFIG; then
exit
fi
-cat configure.seed | sed \
- -e "s/@NDPI_MAJOR@/$NDPI_MAJOR/g" \
- -e "s/@NDPI_MINOR@/$NDPI_MINOR/g" \
- -e "s/@NDPI_PATCH@/$NDPI_PATCH/g" \
- -e "s/@NDPI_VERSION_SHORT@/$NDPI_VERSION_SHORT/g" \
- -e "s/@FUZZY@/$FUZZY/g" \
- > configure.ac
-
autoreconf -ivf
-cat configure | sed "s/#define PACKAGE/#define NDPI_PACKAGE/g" | sed "s/#define VERSION/#define NDPI_VERSION/g" > configure.tmp
-cat configure.tmp > configure
echo "./configure $@"
chmod +x configure