From bfc493fea30da2a6928af225827ae8b6f5ba97dc Mon Sep 17 00:00:00 2001 From: rootTHC Date: Sat, 20 Feb 2021 15:28:09 +0000 Subject: [PATCH] release --- configure.ac | 2 +- tests/run_gs_tests.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 94f00506..b6740213 100755 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this File with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT([gsocket], 1.4.23-ft3) +AC_INIT([gsocket], 1.4.24) dnl AC_CONFIG_AUX_DIR(config-x86_64-apple-darwin19.6.0) AC_CONFIG_AUX_DIR(config) AC_CANONICAL_SYSTEM diff --git a/tests/run_gs_tests.sh b/tests/run_gs_tests.sh index 894b9d90..80662c72 100755 --- a/tests/run_gs_tests.sh +++ b/tests/run_gs_tests.sh @@ -29,6 +29,7 @@ command -v md5 >/dev/null 2>&1 && MD5(){ md5 -q "${1}";} command -v md5sum >/dev/null 2>&1 && MD5() { md5sum "${1}" | cut -f1 -d' ';} command -v bc >/dev/null 2>&1 || { echo >&2 "bc not installed. apt-get install bc."; exit 255; } command -v rsync >/dev/null 2>&1 || { echo >&2 "rsync not installed. apt-get install rsync."; exit 255; } +command -v netstat >/dev/null 2>&1 || { echo >&2 "netstat not installed. apt-get install net-tools."; exit 255; } # Use traditional netcat that supports "netcat -nlp" for cross-platform comp. # on CentOS there is only nmap's netcat as 'nc' but we are expecting 'netcat()'. if [[ "$(nc --version 2>&1)" =~ Ncat ]]; then