New upstream version 3.1.1
This commit is contained in:
parent
4e9934e5ec
commit
e7b41df57b
229 changed files with 57000 additions and 12055 deletions
60
packages/debian/configure.in
Normal file
60
packages/debian/configure.in
Normal file
|
@ -0,0 +1,60 @@
|
|||
AC_INIT([Makefile.in], 1.0)
|
||||
|
||||
AC_ARG_WITH(edgex, [ --with-edgex Build for Ubiquity-X])
|
||||
|
||||
# NOTE: this file is not actually used. You need to edit configure as well!
|
||||
N2N_VERSION=$(../../scripts/version.sh)
|
||||
|
||||
DEBIAN_VERSION=`cat /etc/debian_version | grep "^8" | wc -l`
|
||||
|
||||
EXTRA_DEP=""
|
||||
if test $DEBIAN_VERSION = "0"; then
|
||||
EXTRA_DEP=", libzstd1"
|
||||
fi
|
||||
|
||||
if test "${EXTN+set}" != set; then
|
||||
MACHINE=`uname -m`
|
||||
SHORT_MACHINE=`echo $MACHINE | cut -b1-3`
|
||||
|
||||
if test $MACHINE = "x86_64"; then
|
||||
EXTN="amd64"
|
||||
else
|
||||
if test $SHORT_MACHINE = "aar"; then
|
||||
EXTN="arm64"
|
||||
else
|
||||
if test $SHORT_MACHINE = "arm"; then
|
||||
EXTN="armhf"
|
||||
else
|
||||
if test $SHORT_MACHINE = "mip"; then
|
||||
EXTN="mips"
|
||||
else
|
||||
EXTN="i386"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "${with_edgex+set}" = set; then
|
||||
EXTN="mipsel"
|
||||
fi
|
||||
|
||||
APP=n2n
|
||||
DATE=`date -R`
|
||||
|
||||
AC_SUBST(APP)
|
||||
AC_SUBST(N2N_VERSION)
|
||||
AC_SUBST(EXTN)
|
||||
AC_SUBST(DATE)
|
||||
AC_SUBST(EXTRA_DEP)
|
||||
|
||||
AC_CONFIG_FILES(debian/changelog)
|
||||
AC_CONFIG_FILES(debian/files)
|
||||
AC_CONFIG_FILES(debian/control)
|
||||
AC_CONFIG_FILES(debian/rules)
|
||||
AC_CONFIG_FILES(../etc/systemd/system/edge.service)
|
||||
AC_CONFIG_FILES(../etc/systemd/system/edge@.service)
|
||||
AC_CONFIG_FILES(../etc/systemd/system/edge-ntopng@.service)
|
||||
AC_CONFIG_FILES(../etc/systemd/system/supernode.service)
|
||||
AC_CONFIG_FILES(Makefile)
|
||||
AC_OUTPUT
|
Loading…
Add table
Add a link
Reference in a new issue