diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2022-01-09 18:47:40 +0000 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2022-01-11 16:21:19 -0800 |
commit | 1de56f8990f07696fbf74692cf782db784075f67 (patch) | |
tree | 0560931520d39d078cc2859415da65406a788097 /net/radsecproxy/Makefile | |
parent | d8d91931d079adb727aea85e67197419d39ffb91 (diff) |
radsecproxy: Fix compile with glibc 2.34
This backports a patch from upstream radsecproxy to fix compilation with glibc 2.34.
It fixes the following build problem:
radsecproxy.h:35:5: error: missing binary operator before token "("
35 | #if PTHREAD_STACK_MIN > PTHREAD_STACK_SIZE
| ^~~~~~~~~~~~~~~~~
make[5]: *** [Makefile:623: dtls.o] Error 1
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'net/radsecproxy/Makefile')
-rw-r--r-- | net/radsecproxy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/radsecproxy/Makefile b/net/radsecproxy/Makefile index 263b5d48b..5207e5719 100644 --- a/net/radsecproxy/Makefile +++ b/net/radsecproxy/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=radsecproxy PKG_VERSION:=1.9.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/radsecproxy/radsecproxy/releases/download/$(PKG_VERSION)/ |