diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2020-10-11 08:36:34 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2020-10-11 08:36:34 +0000 |
commit | e6d58352b0f40cbc52d47ec5415522cbf8a99ab3 (patch) | |
tree | fbd2be33e4b9b230896726dfd756a1e1e740d75f /net/ocserv/files/patch-configure.ac | |
parent | www/deno: Update to 1.4.6 (diff) |
net/ocserv: update 1.0.1 -> 1.1.1
- 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
Notes
Notes:
svn path=/head/; revision=552035
Diffstat (limited to 'net/ocserv/files/patch-configure.ac')
-rw-r--r-- | net/ocserv/files/patch-configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ocserv/files/patch-configure.ac b/net/ocserv/files/patch-configure.ac index d7a63c6cb88f..27f60419b701 100644 --- a/net/ocserv/files/patch-configure.ac +++ b/net/ocserv/files/patch-configure.ac @@ -1,15 +1,15 @@ ---- configure.ac.orig 2020-04-09 21:07:12 UTC +--- 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" ];then + 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, [:]) - AC_PATH_PROG(CSCOPE, cscope, [:]) -@@ -199,7 +199,7 @@ if test "$test_for_geoip" = yes && test "$have_maxmind +@@ -222,7 +222,7 @@ if test "$test_for_geoip" = yes && test "$have_maxmind fi have_readline=no |