svn commit: r541486 - branches/2020Q3/audio/adplay

Piotr Kubaj pkubaj at FreeBSD.org
Wed Jul 8 10:50:58 UTC 2020


Author: pkubaj
Date: Wed Jul  8 10:50:57 2020
New Revision: 541486
URL: https://svnweb.freebsd.org/changeset/ports/541486

Log:
  MFH: r541485
  
  audio/adplay: fix build on GCC architectures
  
  Use C++11 compiler:
  /usr/local/lib/libadplug.so: undefined reference to `std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::append(char const*)@GLIBCXX_3.4.21'
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q3/audio/adplay/Makefile
Directory Properties:
  branches/2020Q3/   (props changed)

Modified: branches/2020Q3/audio/adplay/Makefile
==============================================================================
--- branches/2020Q3/audio/adplay/Makefile	Wed Jul  8 10:50:02 2020	(r541485)
+++ branches/2020Q3/audio/adplay/Makefile	Wed Jul  8 10:50:57 2020	(r541486)
@@ -16,7 +16,7 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 LIB_DEPENDS=	libadplug.so:audio/libadplug \
 		libbinio.so:devel/libbinio
 
-USES=		autoreconf libtool pkgconfig
+USES=		autoreconf compiler:c++11-lang libtool pkgconfig
 USE_GITHUB=	yes
 
 GH_ACCOUNT=	adplug


More information about the svn-ports-all mailing list