Date: Thu, 16 Apr 2015 15:39:43 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384116 - head/lang/phantomjs Message-ID: <201504161539.t3GFdhe9023246@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Thu Apr 16 15:39:43 2015 New Revision: 384116 URL: https://svnweb.freebsd.org/changeset/ports/384116 Log: Fix build with GCC on recent head kernel by disabling PCH for GCC With hat: portmgr Modified: head/lang/phantomjs/Makefile Modified: head/lang/phantomjs/Makefile ============================================================================== --- head/lang/phantomjs/Makefile Thu Apr 16 15:28:37 2015 (r384115) +++ head/lang/phantomjs/Makefile Thu Apr 16 15:39:43 2015 (r384116) @@ -25,7 +25,8 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVER PLIST_FILES= bin/phantomjs do-build: - cd ${WRKSRC} && ${SETENV} CC=${CC} CXX=${CXX} OSTYPE=freebsd MAKEFLAGS= PATH=${PATH} bash -x build.sh --jobs ${MAKE_JOBS_NUMBER} --confirm + cd ${WRKSRC} && ${SETENV} CC=${CC} CXX=${CXX} OSTYPE=freebsd MAKEFLAGS= PATH=${PATH} bash -x build.sh --jobs ${MAKE_JOBS_NUMBER} --confirm \ + --qt-config '-no-pch' do-install: cd ${WRKSRC} && ${INSTALL_PROGRAM} bin/phantomjs ${STAGEDIR}${PREFIX}/bin/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504161539.t3GFdhe9023246>