Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 May 2019 07:40:19 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r503047 - head/devel/libosmocore
Message-ID:  <201905300740.x4U7eJVH082314@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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 \



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