mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 16:50:29 -04:00
- Fixed compatibility with OpenBSD that lacks procfs - Improved rate-limit-ms and made it dependent on secmod backlog. This makes the server more resilient (and prevents connection failures) on multiple concurrent connections - Added namespace support for listen address by introducing the listen-netns option - Disable TLS1.3 when cisco client compatibility is enabled. New anyconnect clients seem to supporting TLS1.3 but are unable to handle a client with an RSA key - Enable a race free user disconnection via occtl - Added the config option of a pre-login-banner - Ocserv siwtched to using multiple ocserv-sm processes to improve scale, with the number of ocserv-sm process dependent on maximum clients and number of CPUs. Configuration option sec-mod-scale can be used to override the heuristics. - Fixed issue with group selection on radius servers sending multiple group class attribute. PR: 250225 Submitted by: Juraj Lutter <juraj@lutter.sk> Relnotes: https://gitlab.com/openconnect/ocserv/-/releases/1.1.1
20 lines
833 B
Text
20 lines
833 B
Text
--- configure.ac.orig 2020-10-09 11:32:59 UTC
|
|
+++ configure.ac
|
|
@@ -15,7 +15,7 @@ AM_PROG_AR
|
|
AM_PROG_CC_C_O
|
|
AC_PROG_SED
|
|
if test "$GCC" = "yes" && ! expr "$CC" : clang >/dev/null 2>&1;then
|
|
- CFLAGS="$CFLAGS -Wall -Wno-strict-aliasing -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers -Wno-implicit-fallthrough -Wno-stringop-truncation"
|
|
+ CFLAGS="$CFLAGS -Wall -Wno-strict-aliasing -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers"
|
|
fi
|
|
|
|
AC_PATH_PROG(CTAGS, ctags, [:])
|
|
@@ -222,7 +222,7 @@ if test "$test_for_geoip" = yes && test "$have_maxmind
|
|
fi
|
|
|
|
have_readline=no
|
|
-AC_LIB_HAVE_LINKFLAGS(readline,, [
|
|
+AC_LIB_HAVE_LINKFLAGS(readline,ncurses, [
|
|
#include <stdio.h>
|
|
#include <readline/readline.h>], [rl_replace_line(0,0);])
|
|
if test x$ac_cv_libreadline = xyes; then
|