Date: Sat, 4 Jan 2020 14:08:19 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r522037 - branches/2020Q1/audio/asterisk-espeak Message-ID: <202001041408.004E8Jvc041931@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pkubaj Date: Sat Jan 4 14:08:18 2020 New Revision: 522037 URL: https://svnweb.freebsd.org/changeset/ports/522037 Log: MFH: r522036 audio/asterisk-espeak: fix build on GCC architectures C11 compiler is required: /usr/local/include/asterisk/lock.h: In function 'ast_atomic_fetchadd_int': /usr/local/include/asterisk/lock.h:752: error: '__ATOMIC_RELAXED' undeclared (first use in this function) /usr/local/include/asterisk/lock.h:752: error: (Each undeclared identifier is reported only once /usr/local/include/asterisk/lock.h:752: error: for each function it appears in.) /usr/local/include/asterisk/lock.h: In function 'ast_atomic_dec_and_test': /usr/local/include/asterisk/lock.h:762: error: '__ATOMIC_RELAXED' undeclared (first use in this function) Approved by: portmgr (build fix blanket) Modified: branches/2020Q1/audio/asterisk-espeak/Makefile Directory Properties: branches/2020Q1/ (props changed) Modified: branches/2020Q1/audio/asterisk-espeak/Makefile ============================================================================== --- branches/2020Q1/audio/asterisk-espeak/Makefile Sat Jan 4 14:07:26 2020 (r522036) +++ branches/2020Q1/audio/asterisk-espeak/Makefile Sat Jan 4 14:08:18 2020 (r522037) @@ -27,7 +27,7 @@ asterisk16_CONFLICTS_INSTALL= asterisk13-espeak asterisk16_BUILD_DEPENDS= asterisk:net/asterisk16 asterisk16_RUN_DEPENDS= asterisk:net/asterisk16 -USES= compiler gmake localbase +USES= compiler:c11 gmake localbase INSTALL_TARGET= install samples USE_GITHUB= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001041408.004E8Jvc041931>