svn commit: r503047 - head/devel/libosmocore

Piotr Kubaj pkubaj at FreeBSD.org
Thu May 30 07:40:20 UTC 2019


Author: pkubaj
Date: Thu May 30 07:40:19 2019
New Revision: 503047
URL: https://svnweb.freebsd.org/changeset/ports/503047

Log:
  devel/libosmocore: fix build with GCC-based architectures
  
  Two more files now require removing #pragma GCC diagnostic to fix build with base GCC.
  
  PR:		238163
  Approved by:	koue at chaosophia.net (maintainer), linimon (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20436

Modified:
  head/devel/libosmocore/Makefile

Modified: head/devel/libosmocore/Makefile
==============================================================================
--- head/devel/libosmocore/Makefile	Thu May 30 07:39:23 2019	(r503046)
+++ head/devel/libosmocore/Makefile	Thu May 30 07:40:19 2019	(r503047)
@@ -37,7 +37,9 @@ DOXYGEN_CONFIGURE_ENV_OFF=	ac_cv_path_DOXYGEN=false
 post-patch:
 	${ECHO_CMD} ${PORTVERSION} > ${WRKSRC}/.tarball-version
 	@${REINPLACE_CMD} -e '/#pragma GCC diagnostic/d' \
-		${WRKSRC}/src/application.c
+		${WRKSRC}/src/application.c \
+		${WRKSRC}/src/gb/gprs_bssgp.c \
+		${WRKSRC}/src/gb/gprs_bssgp_bss.c
 	@${REINPLACE_CMD} -e 's/python2/${PYTHON_VERSION}/' \
 		-e 's,(AM_V_GEN)python ,(AM_V_GEN)${PYTHON_VERSION} ,' \
 		${WRKSRC}/include/Makefile.am \


More information about the svn-ports-all mailing list