Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Nov 2018 08:58:51 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r485735 - head/audio/osalp
Message-ID:  <201811240858.wAO8wpeK034884@repo.freebsd.org>

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



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