Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 14 Oct 2018 15:38:40 +0000 (UTC)
From:      Jochen Neumeister <joneum@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r482047 - in head/www/mod_auth_cas: . files
Message-ID:  <201810141538.w9EFcex6079877@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: joneum
Date: Sun Oct 14 15:38:40 2018
New Revision: 482047
URL: https://svnweb.freebsd.org/changeset/ports/482047

Log:
  Fix build with OpenSSL 1.1.x
  
  While here:
  - Pet Portlint
  
  PR:		232221
  Submitted by:	Nathan <ndowens@yahoo.com>
  Sponsored by:	Netzkommune GmbH

Added:
  head/www/mod_auth_cas/files/patch-configure   (contents, props changed)
Modified:
  head/www/mod_auth_cas/Makefile

Modified: head/www/mod_auth_cas/Makefile
==============================================================================
--- head/www/mod_auth_cas/Makefile	Sun Oct 14 15:38:33 2018	(r482046)
+++ head/www/mod_auth_cas/Makefile	Sun Oct 14 15:38:40 2018	(r482047)
@@ -4,6 +4,7 @@
 PORTNAME=	mod_auth_cas
 PORTVERSION=	1.1
 DISTVERSIONPREFIX=	v
+PORTREVISION=	1
 CATEGORIES=	www
 PKGNAMEPREFIX=	${APACHE_PKGNAMEPREFIX}
 
@@ -15,9 +16,10 @@ LICENSE=	APACHE20
 LIB_DEPENDS=	libcurl.so:ftp/curl \
 		libpcre.so:devel/pcre
 
+USES=		apache:2.4 ssl
+
 USE_GITHUB=	yes
 GH_ACCOUNT=	Jasig
-USES=		apache:2.2+ ssl
 
 HAS_CONFIGURE=	yes
 # configure requires LDFLAGS to find libpcre

Added: head/www/mod_auth_cas/files/patch-configure
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/mod_auth_cas/files/patch-configure	Sun Oct 14 15:38:40 2018	(r482047)
@@ -0,0 +1,50 @@
+--- configure.orig	2018-10-13 05:53:29 UTC
++++ configure
+@@ -13727,9 +13727,9 @@ else
+   as_fn_error $? "OpenSSL libraries required" "$LINENO" 5
+ fi
+ 
+-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL_library_init in -lssl" >&5
+-$as_echo_n "checking for SSL_library_init in -lssl... " >&6; }
+-if ${ac_cv_lib_ssl_SSL_library_init+:} false; then :
++{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for SSL_CTX_new in -lssl" >&5
++$as_echo_n "checking for SSL_CTX_new in -lssl... " >&6; }
++if ${ac_cv_lib_ssl_SSL_CTX_new+:} false; then :
+   $as_echo_n "(cached) " >&6
+ else
+   ac_check_lib_save_LIBS=$LIBS
+@@ -13743,27 +13743,27 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+ #ifdef __cplusplus
+ extern "C"
+ #endif
+-char SSL_library_init ();
++char SSL_CTX_new ();
+ int
+ main ()
+ {
+-return SSL_library_init ();
++return SSL_CTX_new ();
+   ;
+   return 0;
+ }
+ _ACEOF
+ if ac_fn_c_try_link "$LINENO"; then :
+-  ac_cv_lib_ssl_SSL_library_init=yes
++  ac_cv_lib_ssl_SSL_CTX_new=yes
+ else
+-  ac_cv_lib_ssl_SSL_library_init=no
++  ac_cv_lib_ssl_SSL_CTX_new=no
+ fi
+ rm -f core conftest.err conftest.$ac_objext \
+     conftest$ac_exeext conftest.$ac_ext
+ LIBS=$ac_check_lib_save_LIBS
+ fi
+-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssl_SSL_library_init" >&5
+-$as_echo "$ac_cv_lib_ssl_SSL_library_init" >&6; }
+-if test "x$ac_cv_lib_ssl_SSL_library_init" = xyes; then :
++{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ssl_SSL_CTX_new" >&5
++$as_echo "$ac_cv_lib_ssl_SSL_CTX_new" >&6; }
++if test "x$ac_cv_lib_ssl_SSL_CTX_new" = xyes; then :
+   cat >>confdefs.h <<_ACEOF
+ #define HAVE_LIBSSL 1
+ _ACEOF



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810141538.w9EFcex6079877>