From 23012f68c200a94878ba49a71eb6d9d1bab5b9cc Mon Sep 17 00:00:00 2001 From: Gerhard Rieger Date: Fri, 21 Mar 2014 12:47:52 +0100 Subject: [PATCH] configure checked for --disable-rawsocket but printed --disable-genericsocket --- CHANGES | 4 ++++ configure.in | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 38f75d1..26e12a6 100644 --- a/CHANGES +++ b/CHANGES @@ -7,6 +7,10 @@ corrections: make failed after configure with non gcc compiler due to missing include. Thanks to Horacio Mijail for reporting this problem + + configure checked for --disable-rawsocket but printed + --disable-genericsocket in the help text. Thanks to Ben Gardiner for + reporting and patching this bug fixed bug in xio-openssl.c that prevented error handling of bad number of arguments, thanks to Paulik Tamas for reporting diff --git a/configure.in b/configure.in index 0018217..5b4fdbf 100644 --- a/configure.in +++ b/configure.in @@ -263,13 +263,13 @@ AC_ARG_ENABLE(rawip, [ --disable-rawip disable raw IP support], [AC_DEFINE(WITH_RAWIP) AC_MSG_RESULT(yes)]) AC_MSG_CHECKING(whether to include generic socket support) -AC_ARG_ENABLE(rawsocket, [ --disable-genericsocket disable generic socket support], +AC_ARG_ENABLE(genericsocket, [ --disable-genericsocket disable generic socket support], [case "$enableval" in no) AC_MSG_RESULT(no);; *) AC_DEFINE(WITH_GENERICSOCKET) AC_MSG_RESULT(yes);; esac], [AC_DEFINE(WITH_GENERICSOCKET) AC_MSG_RESULT(yes)]) -AC_MSG_CHECKING(whether to include raw network interface support) +AC_MSG_CHECKING(whether to include generic network interface support) AC_ARG_ENABLE(interface, [ --disable-interface disable network interface support], [case "$enableval" in no) AC_MSG_RESULT(no); WITH_INTERFACE= ;;