git: b78b4a05619b - main - security/shibboleth-sp: Unbreak memcached support
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 13 Nov 2024 14:48:42 UTC
The branch main has been updated by girgen: URL: https://cgit.FreeBSD.org/ports/commit/?id=b78b4a05619b14093195b6df0a02cb9be19d60bc commit b78b4a05619b14093195b6df0a02cb9be19d60bc Author: Palle Girgensohn <girgen@FreeBSD.org> AuthorDate: 2024-11-13 14:47:11 +0000 Commit: Palle Girgensohn <girgen@FreeBSD.org> CommitDate: 2024-11-13 14:48:39 +0000 security/shibboleth-sp: Unbreak memcached support It was apparently fixed upstreams. PR: 264044 --- security/shibboleth-sp/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/security/shibboleth-sp/Makefile b/security/shibboleth-sp/Makefile index e13c86f0c748..90ab22217d7c 100644 --- a/security/shibboleth-sp/Makefile +++ b/security/shibboleth-sp/Makefile @@ -39,14 +39,14 @@ OPTIONS_GROUP= CONNECT SESSION OPTIONS_GROUP_CONNECT=FASTCGI APACHE CONNECT_DESC= Webserver modules -OPTIONS_GROUP_SESSION=ODBC # broken MEMCACHED +OPTIONS_GROUP_SESSION=ODBC MEMCACHED SESSION_DESC= Optional session storage OPTIONS_DEFAULT=ODBC APACHE # Descriptions ODBC_DESC= ODBC database backend - store sessions in a database -# broken MEMCACHED_DESC= Store sessions in memcached +MEMCACHED_DESC= Store sessions in memcached FASTCGI_DESC= FastCGI protocol support, e.g. for NGINX APACHE_DESC= Build Apache module @@ -58,8 +58,8 @@ ODBC_LIB_DEPENDS= libodbc.so:databases/unixODBC FASTCGI_CONFIGURE_WITH= fastcgi=${LOCALBASE} FASTCGI_LIB_DEPENDS= libfcgi++.so:www/fcgi -#MEMCACHED_CONFIGURE_WITH= memcached=${LOCALBASE} -#MEMCACHED_LIB_DEPENDS= libmemcached.so:databases/libmemcached +MEMCACHED_CONFIGURE_WITH= memcached=${LOCALBASE} +MEMCACHED_LIB_DEPENDS= libmemcached.so:databases/libmemcached OPTIONS_SUB= yes