net/radsecproxy: Update to 1.8.1, remove merged patches

PR:		241040
Submitted by:	Jørn Åne de Jong <jornane@icloud.com>
Approved by:	m.tsatsenko@gmail.com (maintainer)
This commit is contained in:
swills
2019-10-07 15:27:17 +00:00
parent 28f5403e31
commit ec65d149cf
5 changed files with 6 additions and 33 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= radsecproxy
PORTVERSION= 1.8.0
PORTVERSION= 1.8.1
CATEGORIES= net
MASTER_SITES= GH
+3 -3
View File
@@ -1,3 +1,3 @@
TIMESTAMP = 1567862289
SHA256 (radsecproxy-radsecproxy-1.8.0_GH0.tar.gz) = 6b0316055b76001743c8f2c94e878979c76aea4c9327199f26ba74abba354d37
SIZE (radsecproxy-radsecproxy-1.8.0_GH0.tar.gz) = 109914
TIMESTAMP = 1570117206
SHA256 (radsecproxy-radsecproxy-1.8.1_GH0.tar.gz) = c2bb5cf674770162551394cb2913c0984c72c5e41fd26d79761be6c7a877a01a
SIZE (radsecproxy-radsecproxy-1.8.1_GH0.tar.gz) = 110264
-11
View File
@@ -1,11 +0,0 @@
--- dtls.c.orig 2019-07-04 06:42:58 UTC
+++ dtls.c
@@ -491,7 +491,7 @@ void *dtlslistener(void *arg) {
BIO_set_fd(SSL_get_rbio(conf->tlsconf->dtlssslprep), s, BIO_NOCLOSE);
}
-#if OPENSSL_VERSION_NUMBER < 0x10100000
+#if (OPENSSL_VERSION_NUMBER < 0x10100000) || defined(LIBRESSL_VERSION_NUMBER)
if(DTLSv1_listen(conf->tlsconf->dtlssslprep, &from) > 0) {
#else
if(DTLSv1_listen(conf->tlsconf->dtlssslprep, (BIO_ADDR *)&from) > 0) {
@@ -1,12 +1,6 @@
--- radsecproxy.conf-example.orig 2019-07-04 06:42:58 UTC
--- radsecproxy.conf-example.orig 2019-09-30 14:32:08 UTC
+++ radsecproxy.conf-example
@@ -1,4 +1,4 @@
-# Master config file, must be in /usr/local/etc/radsecproxy or specified with -c option
+# Master config file, /usr/local/etc/radsecproxy.conf or specified with -c option
# All possible config options are listed below
# First you may define any global options, these are:
@@ -91,12 +91,12 @@
@@ -90,12 +90,12 @@
tls default {
# You must specify at least one of CACertificateFile or CACertificatePath
# for TLS to work. We always verify peer certificate (client and server)
-10
View File
@@ -1,10 +0,0 @@
--- rewrite.c.orig 2019-07-04 06:42:58 UTC
+++ rewrite.c
@@ -5,6 +5,7 @@
#include <stdlib.h>
#include <string.h>
#include <regex.h>
+#include <arpa/inet.h>
#include "debug.h"
#include "gconfig.h"
#include "hash.h"