Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Feb 2017 06:00:42 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r433280 - head/audio/csound
Message-ID:  <201702040600.v1460gZ2003217@repo.freebsd.org>

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



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