svn commit: r485735 - head/audio/osalp

Mark Linimon linimon at FreeBSD.org
Sat Nov 24 08:58:52 UTC 2018


Author: linimon
Date: Sat Nov 24 08:58:51 2018
New Revision: 485735
URL: https://svnweb.freebsd.org/changeset/ports/485735

Log:
  -Wno-c++11-narrowing is not supported by base GCC; using
  USE_CXXSTD=c++98 makes the port build with both base clang and gcc.
  
  PR:		233308
  Submitted by:	Piotr Kubaj

Modified:
  head/audio/osalp/Makefile

Modified: head/audio/osalp/Makefile
==============================================================================
--- head/audio/osalp/Makefile	Sat Nov 24 08:55:07 2018	(r485734)
+++ head/audio/osalp/Makefile	Sat Nov 24 08:58:51 2018	(r485735)
@@ -15,11 +15,11 @@ LIB_DEPENDS=	libmp3lame.so:audio/lame \
 		libvorbis.so:audio/libvorbis
 
 USES=		libtool localbase:ldflags
+USE_CXXSTD=	c++98
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--enable-all
 
 CFLAGS+=	-fPIC -DPIC
-CXXFLAGS+=	-Wno-c++11-narrowing
 
 USE_LDCONFIG=	yes
 


More information about the svn-ports-all mailing list