liboil's Makefile defined USE_GCC=any, so not use clang. But there is clang test code, so no longer use. Fix: Please apply my patch. Patch attached with submission follows: How-To-Repeat: $ cd /usr/ports/devel/liboil $ env CC=clang make
Responsible Changed From-To: freebsd-ports-bugs->mm Over to maintainer (via the GNATS Auto Assign Tool)
Author: tijl Date: Sat Oct 19 11:07:36 2013 New Revision: 330858 URL: http://svnweb.freebsd.org/changeset/ports/330858 Log: - Remove -fheinous-gnu-extensions. No longer needed. [1] - Remove substitutions that have no effect. PR: ports/181504 [1] Submitted by: nork [1] Modified: head/devel/liboil/Makefile Modified: head/devel/liboil/Makefile ============================================================================== --- head/devel/liboil/Makefile Sat Oct 19 10:19:44 2013 (r330857) +++ head/devel/liboil/Makefile Sat Oct 19 11:07:36 2013 (r330858) @@ -13,7 +13,7 @@ COMMENT= Library of optimized inner loop LICENSE= BSD LICENSE_FILE= ${WRKSRC}/COPYING -USES= pathfix pkgconfig +USES= pkgconfig USE_GNOME= ltverhack USE_AUTOTOOLS= libtool USE_LDCONFIG= yes @@ -21,19 +21,8 @@ CONFIGURE_ARGS= --disable-gtk-doc \ --disable-glib CFLAGS:= ${CFLAGS:N-O*} -O2 -_COMPILER_VERSION!= ${CC} --version -.if ${_COMPILER_VERSION:Mclang} -CFLAGS+= -fheinous-gnu-extensions -.endif - -.include <bsd.port.pre.mk> - post-patch: @${REINPLACE_CMD} -e 's|\\$$(libdir)/pkgconfig|${PREFIX}/libdata/pkgconfig|' \ ${WRKSRC}/configure - @${REINPLACE_CMD} -e 's|<stdint\.h|<inttypes.h|g' \ - ${WRKSRC}/liboil/liboiltypes.h \ - ${WRKSRC}/liboil/liboilprofile.h \ - ${WRKSRC}/liboil/liboil.h -.include <bsd.port.post.mk> +.include <bsd.port.mk> _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed in r330858. USE_GCC has been removed but the flag doesn't seem to be necessary anyway.
Responsible Changed From-To: mm->tijl Committed in r330858. USE_GCC has been removed but the flag doesn't seem to be necessary anyway.