svn commit: r433280 - head/audio/csound

Jan Beich jbeich at FreeBSD.org
Sat Feb 4 06:00:43 UTC 2017


Author: jbeich
Date: Sat Feb  4 06:00:41 2017
New Revision: 433280
URL: https://svnweb.freebsd.org/changeset/ports/433280

Log:
  audio/csound: use libc++ and unbreak with gcc5 or later
  
  $ ldd $(which csound5gui) | fgrep c++
          libc++.so.1 => /usr/lib/libc++.so.1 (0x803309000)
          libstdc++.so.6 => /usr/local/lib/gcc49/libstdc++.so.6 (0x803a22000)
  
  libcsound64.so.5: undefined reference to `csp_dag_is_finished'
  libcsound64.so.5: undefined reference to `csp_set_count'
  libcsound64.so.5: undefined reference to `csp_set_get_num'
  collect2: error: ld returned 1 exit status
  
  PR:		216707
  Reported by:	antoine (via exp-run)

Modified:
  head/audio/csound/Makefile   (contents, props changed)

Modified: head/audio/csound/Makefile
==============================================================================
--- head/audio/csound/Makefile	Sat Feb  4 05:14:39 2017	(r433279)
+++ head/audio/csound/Makefile	Sat Feb  4 06:00:41 2017	(r433280)
@@ -3,7 +3,7 @@
 
 PORTNAME=	csound
 PORTVERSION=	5.19.01
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	audio lang
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}${PORTVERSION:R} \
 		SF/${PORTNAME}/${PORTNAME}5/${PORTNAME}${PORTVERSION:R}/manual:manual
@@ -27,7 +27,8 @@ CONFLICTS_INSTALL=	outguess-* csound6
 
 WRKSRC=		${WRKDIR}/${PORTNAME:S/c/C/}${PORTVERSION}
 
-USES=		bison cpe gettext scons compiler:openmp python
+USES=		bison cpe gettext scons compiler:gcc-c++11-lib python
+USE_CSTD=	gnu89
 # math/gmm++ requires c++11
 USE_CXXSTD=	c++11
 CPE_VENDOR=	csounds


More information about the svn-ports-all mailing list