svn commit: r541485 - head/audio/adplay

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


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

Log:
  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'
  
  MFH:		2020Q3 (fix build blanket)

Modified:
  head/audio/adplay/Makefile

Modified: head/audio/adplay/Makefile
==============================================================================
--- head/audio/adplay/Makefile	Wed Jul  8 10:40:39 2020	(r541484)
+++ head/audio/adplay/Makefile	Wed Jul  8 10:50:02 2020	(r541485)
@@ -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