Date: Sat, 7 Jan 2017 17:43:57 +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: r430817 - head/devel/nasm Message-ID: <201701071743.v07HhvPi008270@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Sat Jan 7 17:43:56 2017 New Revision: 430817 URL: https://svnweb.freebsd.org/changeset/ports/430817 Log: devel/nasm: unbreak with clang 4.0 checking for strspn... no configure: error: NASM requires ANSI C (specifically, "strspn") [...] conftest.c:56:13: error: this function declaration is not a prototype [-Werror,-Wstrict-prototypes] char strspn (); ^ void Regressed by: https://github.com/llvm-mirror/clang/commit/162749f9c543 Approved by: portmgr blanket Modified: head/devel/nasm/Makefile (contents, props changed) Modified: head/devel/nasm/Makefile ============================================================================== --- head/devel/nasm/Makefile Sat Jan 7 17:04:18 2017 (r430816) +++ head/devel/nasm/Makefile Sat Jan 7 17:43:56 2017 (r430817) @@ -14,6 +14,7 @@ COMMENT= General-purpose multi-platform LICENSE= BSD2CLAUSE GNU_CONFIGURE= yes +CONFIGURE_ENV= ac_cv_func_strspn=yes USES= tar:xz gmake MAKE_ARGS+= INSTALLROOT=${STAGEDIR} INSTALL_TARGET= install #needed for RDOFF_INSTALL_TARGET
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701071743.v07HhvPi008270>