Skip to content

Commit 8786b2f

Browse files
author
Sebastiano Merlino
committed
Enable fastopen only after 3.7 (server and client) rather than 3.6 (just client)
1 parent a730551 commit 8786b2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ LDFLAGS="$LIBMICROHTTPD_LIBS $REGEX_LIBS $LD_FLAGS"
115115

116116
if test x"$is_windows" = x"no"; then
117117
if test `uname -r |cut -d. -f1` -ge 3; then
118-
if test `uname -r |cut -d. -f2` -ge 6; then
118+
if test `uname -r |cut -d. -f2` -ge 7; then
119119
CXXFLAGS="-DUSE_FASTOPEN $CXXFLAGS"
120120
fi
121121
fi

0 commit comments

Comments
 (0)