summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 08a0e78..4a9a92a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1064,6 +1064,14 @@ then
1064 ac_cv_ping_packets_first=yes 1064 ac_cv_ping_packets_first=yes
1065 AC_MSG_RESULT([$with_ping_command]) 1065 AC_MSG_RESULT([$with_ping_command])
1066 1066
1067elif $PATH_TO_PING -4 -n -U -w 10 -c 1 127.0.0.1 2>/dev/null | \
1068 egrep -i "^round-trip|^rtt" >/dev/null
1069then
1070 # check if -4 is supported - issue #1550
1071 with_ping_command="$PATH_TO_PING -4 -n -U -w %d -c %d %s"
1072 ac_cv_ping_packets_first=yes
1073 ac_cv_ping_has_timeout=yes
1074 AC_MSG_RESULT([$with_ping_command])
1067elif $PATH_TO_PING -n -U -w 10 -c 1 127.0.0.1 2>/dev/null | \ 1075elif $PATH_TO_PING -n -U -w 10 -c 1 127.0.0.1 2>/dev/null | \
1068 egrep -i "^round-trip|^rtt" >/dev/null 1076 egrep -i "^round-trip|^rtt" >/dev/null
1069then 1077then