Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Dec 2019 08:59:47 +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: r519121 - head/audio/alure
Message-ID:  <201912060859.xB68xlgO070103@repo.freebsd.org>

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



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