configure (n2n-2.8) | : | configure (n2n-3.0) | ||
---|---|---|---|---|
skipping to change at line 579 | skipping to change at line 579 | |||
# Identity of this package. | # Identity of this package. | |||
PACKAGE_NAME='Makefile.in' | PACKAGE_NAME='Makefile.in' | |||
PACKAGE_TARNAME='makefile-in' | PACKAGE_TARNAME='makefile-in' | |||
PACKAGE_VERSION='1.0' | PACKAGE_VERSION='1.0' | |||
PACKAGE_STRING='Makefile.in 1.0' | PACKAGE_STRING='Makefile.in 1.0' | |||
PACKAGE_BUGREPORT='' | PACKAGE_BUGREPORT='' | |||
PACKAGE_URL='' | PACKAGE_URL='' | |||
ac_subst_vars='LTLIBOBJS | ac_subst_vars='LTLIBOBJS | |||
LIBOBJS | LIBOBJS | |||
N2N_VERSION_SHORT | EXTRA_DEP | |||
GIT_COMMITS | ||||
DATE | DATE | |||
EXTN | EXTN | |||
MACHINE | GIT_COMMITS | |||
N2N_VERSION_SHORT | ||||
APP | APP | |||
target_alias | target_alias | |||
host_alias | host_alias | |||
build_alias | build_alias | |||
LIBS | LIBS | |||
ECHO_T | ECHO_T | |||
ECHO_N | ECHO_N | |||
ECHO_C | ECHO_C | |||
DEFS | DEFS | |||
mandir | mandir | |||
skipping to change at line 627 | skipping to change at line 627 | |||
PACKAGE_BUGREPORT | PACKAGE_BUGREPORT | |||
PACKAGE_STRING | PACKAGE_STRING | |||
PACKAGE_VERSION | PACKAGE_VERSION | |||
PACKAGE_TARNAME | PACKAGE_TARNAME | |||
PACKAGE_NAME | PACKAGE_NAME | |||
PATH_SEPARATOR | PATH_SEPARATOR | |||
SHELL' | SHELL' | |||
ac_subst_files='' | ac_subst_files='' | |||
ac_user_opts=' | ac_user_opts=' | |||
enable_option_checking | enable_option_checking | |||
with_edgex | ||||
' | ' | |||
ac_precious_vars='build_alias | ac_precious_vars='build_alias | |||
host_alias | host_alias | |||
target_alias' | target_alias' | |||
# Initialize some variables set by options. | # Initialize some variables set by options. | |||
ac_init_help= | ac_init_help= | |||
ac_init_version=false | ac_init_version=false | |||
ac_unrecognized_opts= | ac_unrecognized_opts= | |||
ac_unrecognized_sep= | ac_unrecognized_sep= | |||
skipping to change at line 1244 | skipping to change at line 1245 | |||
cat <<\_ACEOF | cat <<\_ACEOF | |||
_ACEOF | _ACEOF | |||
fi | fi | |||
if test -n "$ac_init_help"; then | if test -n "$ac_init_help"; then | |||
case $ac_init_help in | case $ac_init_help in | |||
short | recursive ) echo "Configuration of Makefile.in 1.0:";; | short | recursive ) echo "Configuration of Makefile.in 1.0:";; | |||
esac | esac | |||
cat <<\_ACEOF | cat <<\_ACEOF | |||
Optional Packages: | ||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes] | ||||
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) | ||||
--with-edgex Build for Ubiquity-X | ||||
Report bugs to the package provider. | Report bugs to the package provider. | |||
_ACEOF | _ACEOF | |||
ac_status=$? | ac_status=$? | |||
fi | fi | |||
if test "$ac_init_help" = "recursive"; then | if test "$ac_init_help" = "recursive"; then | |||
# If there are subdirs, report their specific --help. | # If there are subdirs, report their specific --help. | |||
for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue | for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue | |||
test -d "$ac_dir" || | test -d "$ac_dir" || | |||
{ cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || | { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || | |||
skipping to change at line 1668 | skipping to change at line 1674 | |||
## -------------------- ## | ## -------------------- ## | |||
## Main body of script. ## | ## Main body of script. ## | |||
## -------------------- ## | ## -------------------- ## | |||
ac_ext=c | ac_ext=c | |||
ac_cpp='$CPP $CPPFLAGS' | ac_cpp='$CPP $CPPFLAGS' | |||
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' | |||
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ LIBS >&5' | ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ LIBS >&5' | |||
ac_compiler_gnu=$ac_cv_c_compiler_gnu | ac_compiler_gnu=$ac_cv_c_compiler_gnu | |||
MACHINE=`uname -m` | # Check whether --with-edgex was given. | |||
SHORT_MACHINE=`uname -m | cut -b1-3` | if test "${with_edgex+set}" = set; then : | |||
withval=$with_edgex; | ||||
fi | ||||
if test $MACHINE = "x86_64"; then | # NOTE: this file is not actually used. You need to edit configure as well! | |||
EXTN="amd64" | N2N_VERSION_SHORT=`grep N2N_VERSION_SHORT ../../Makefile | head -1| cut -d "=" - | |||
else | f 2` | |||
if test $SHORT_MACHINE = "aar"; then | GIT_COMMITS=`grep GIT_COMMITS ../../Makefile | head -1| cut -d "=" -f 2` | |||
EXTN="arm64" | ||||
EXTRA_DEPS="" | DEBIAN_VERSION=`cat /etc/debian_version | grep "^8" | wc -l` | |||
else | ||||
if test $SHORT_MACHINE = "arm"; then | EXTRA_DEP="" | |||
EXTN="armhf" | if test $DEBIAN_VERSION = "0"; then | |||
EXTRA_DEPS="" | 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 | else | |||
if test $SHORT_MACHINE = "mip"; then | if test $SHORT_MACHINE = "aar"; then | |||
EXTN="mips" | EXTN="arm64" | |||
EXTRA_DEPS="" | else | |||
else | if test $SHORT_MACHINE = "arm"; then | |||
EXTN="i386" | EXTN="armhf" | |||
fi | else | |||
fi | if test $SHORT_MACHINE = "mip"; then | |||
fi | EXTN="mips" | |||
else | ||||
EXTN="i386" | ||||
fi | ||||
fi | ||||
fi | ||||
fi | ||||
fi | ||||
if test "${with_edgex+set}" = set; then | ||||
EXTN="mipsel" | ||||
fi | fi | |||
APP=n2n | APP=n2n | |||
N2N_VERSION_SHORT=`grep N2N_VERSION_SHORT ../../Makefile | head -1| cut -d "=" - | ||||
f 2` | ||||
GIT_COMMITS=`grep GIT_COMMITS ../../Makefile | head -1| cut -d "=" -f 2` | ||||
DATE=`date -R` | DATE=`date -R` | |||
ac_config_files="$ac_config_files debian/changelog" | ac_config_files="$ac_config_files debian/changelog" | |||
ac_config_files="$ac_config_files debian/files" | ac_config_files="$ac_config_files debian/files" | |||
ac_config_files="$ac_config_files debian/control" | ac_config_files="$ac_config_files debian/control" | |||
ac_config_files="$ac_config_files debian/rules" | ac_config_files="$ac_config_files debian/rules" | |||
End of changes. 8 change blocks. | ||||
26 lines changed or deleted | 49 lines changed or added |