svn commit: r404614 - in head/net/openbsc: . files

Jason Unovitch junovitch at FreeBSD.org
Mon Dec 28 02:35:57 UTC 2015


Author: junovitch
Date: Mon Dec 28 02:35:55 2015
New Revision: 404614
URL: https://svnweb.freebsd.org/changeset/ports/404614

Log:
  net/openbsc: remove hard requirement on LibreSSL introduced in r402149
  
  PR:		205399
  Submitted by:	Nikola Kolev <koue at chaosophia.net> (maintainer)

Added:
  head/net/openbsc/files/patch-configure.ac   (contents, props changed)
Modified:
  head/net/openbsc/Makefile

Modified: head/net/openbsc/Makefile
==============================================================================
--- head/net/openbsc/Makefile	Mon Dec 28 00:55:47 2015	(r404613)
+++ head/net/openbsc/Makefile	Mon Dec 28 02:35:55 2015	(r404614)
@@ -2,6 +2,7 @@
 
 PORTNAME=	openbsc
 PORTVERSION=	0.15.0
+PORTREVISION=	1
 CATEGORIES=	net
 MASTER_SITES=	http://git.osmocom.org/${PORTNAME}/snapshot/ \
 		http://chaosophia.net/downloads/osmocom/${PORTNAME}/
@@ -21,9 +22,7 @@ WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVER
 
 USES=		autoreconf compiler:c11 gmake pkgconfig
 USE_OPENSSL=	yes
-WITH_OPENSSL_PORT=yes
-OPENSSL_PORT=	security/libressl
-GNU_CONFIGURE=yes
+GNU_CONFIGURE=	yes
 AUTOMAKE_ARGS=	--gnu --add-missing --copy
 CONFIGURE_ARGS+=	CFLAGS="-I${LOCALBASE}/include"
 

Added: head/net/openbsc/files/patch-configure.ac
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/openbsc/files/patch-configure.ac	Mon Dec 28 02:35:55 2015	(r404614)
@@ -0,0 +1,14 @@
+--- configure.ac.orig	2015-12-18 14:09:38 UTC
++++ configure.ac
+@@ -27,7 +27,10 @@ PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm
+ PKG_CHECK_MODULES(LIBOSMOABIS, libosmoabis >= 0.2.0)
+ PKG_CHECK_MODULES(LIBOSMOGB, libosmogb >= 0.6.4)
+ PKG_CHECK_MODULES(LIBOSMONETIF, libosmo-netif >= 0.0.1)
+-PKG_CHECK_MODULES(LIBCRYPTO, libcrypto >= 0.9.5)
++#PKG_CHECK_MODULES(LIBCRYPTO, libcrypto >= 0.9.5)
++AC_CHECK_LIB([crypto], [EVP_EncryptInit], [],
++             [AC_MSG_FAILURE([can't find openssl crypto lib])]
++	     [])
+ 
+ # Enabke/disable the NAT?
+ AC_ARG_ENABLE([nat], [AS_HELP_STRING([--enable-nat], [Build the BSC NAT. Requires SCCP])],


More information about the svn-ports-head mailing list