mirror of
https://repo.or.cz/socat.git
synced 2024-12-23 07:52:32 +00:00
Revert gcc check to reenable cross compiling
This commit is contained in:
parent
5c822eb3ef
commit
56f3f40771
3 changed files with 8 additions and 4 deletions
6
CHANGES
6
CHANGES
|
@ -190,7 +190,7 @@ corrections:
|
||||||
Test: IGNOREEOF_REV
|
Test: IGNOREEOF_REV
|
||||||
Thanks to Franz Fasching for reporting this bug.
|
Thanks to Franz Fasching for reporting this bug.
|
||||||
|
|
||||||
Address SYSTEM, when terminating, shutted down its parent addresses,
|
Address SYSTEM, when terminating, shut down its parent addresses,
|
||||||
e.g. an SSL connection which the parent assumed to still be active.
|
e.g. an SSL connection which the parent assumed to still be active.
|
||||||
Test: SYSTEM_SHUTDOWN
|
Test: SYSTEM_SHUTDOWN
|
||||||
|
|
||||||
|
@ -305,6 +305,10 @@ porting:
|
||||||
Socat included <sys/poll.h> instead of POSIX <poll.h>
|
Socat included <sys/poll.h> instead of POSIX <poll.h>
|
||||||
Thanks to John Spencer for reporting this issue.
|
Thanks to John Spencer for reporting this issue.
|
||||||
|
|
||||||
|
Version 1.7.2.4 changed the check for gcc in configure.ac; this
|
||||||
|
broke cross compiling. The particular check gets reverted.
|
||||||
|
Thanks to Ross Burton and Danomi Manchego for reporting this issue.
|
||||||
|
|
||||||
new features:
|
new features:
|
||||||
added option max-children that limits the number of concurrent child
|
added option max-children that limits the number of concurrent child
|
||||||
processes. Thanks to Sam Liddicott for providing the patch.
|
processes. Thanks to Sam Liddicott for providing the patch.
|
||||||
|
|
|
@ -41,7 +41,7 @@ AC_CHECK_PROG(AR, ar, ar, gar)
|
||||||
# fail
|
# fail
|
||||||
AC_LANG_COMPILER_REQUIRE()
|
AC_LANG_COMPILER_REQUIRE()
|
||||||
|
|
||||||
if test "$CC" = "gcc"; then
|
if test "$GCC" = "yes"; then
|
||||||
CFLAGS="$CFLAGS -D_GNU_SOURCE -Wall -Wno-parentheses"
|
CFLAGS="$CFLAGS -D_GNU_SOURCE -Wall -Wno-parentheses"
|
||||||
ERRONWARN="-Werror -O0"
|
ERRONWARN="-Werror -O0"
|
||||||
elif test "$CC" = "clang"; then
|
elif test "$CC" = "clang"; then
|
||||||
|
|
4
test.sh
4
test.sh
|
@ -190,8 +190,8 @@ case "$UNAME" in
|
||||||
# ;;
|
# ;;
|
||||||
*)
|
*)
|
||||||
#PTYOPTS="echo=0,opost=0"
|
#PTYOPTS="echo=0,opost=0"
|
||||||
#PTYOPTS2="raw,echo=0"
|
PTYOPTS2="raw,echo=0"
|
||||||
PTYOPTS2="rawer"
|
#PTYOPTS2="rawer"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue