Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 Jul 2020 10:50:03 +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: r541485 - head/audio/adplay
Message-ID:  <202007081050.068Ao3et053665@repo.freebsd.org>

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



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