svn commit: r519121 - head/audio/alure

Piotr Kubaj pkubaj at FreeBSD.org
Fri Dec 6 08:59:48 UTC 2019


Author: pkubaj
Date: Fri Dec  6 08:59:47 2019
New Revision: 519121
URL: https://svnweb.freebsd.org/changeset/ports/519121

Log:
  audio/alure: fix build on GCC architectures
  
  C++11 compiler is necessary:
  /usr/local/lib/libopenal.so: undefined reference to `std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >::_M_mutate(unsigned long, unsigned long, char const*, unsigned long)@GLIBCXX_3.4.21'
  
  Approved by:	mentors (implicit approval)

Modified:
  head/audio/alure/Makefile

Modified: head/audio/alure/Makefile
==============================================================================
--- head/audio/alure/Makefile	Fri Dec  6 06:42:30 2019	(r519120)
+++ head/audio/alure/Makefile	Fri Dec  6 08:59:47 2019	(r519121)
@@ -13,7 +13,7 @@ COMMENT=	Utility library to help manage common tasks w
 LICENSE=	MIT
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		cmake openal:soft pkgconfig
+USES=		cmake compiler:c++11-lang openal:soft pkgconfig
 USE_LDCONFIG=	yes
 LLD_UNSAFE=	yes	# lld disallows preemption of protected visibility syms
 CMAKE_OFF=	BUILD_DOCS BUILD_STATIC


More information about the svn-ports-all mailing list