Date: Sat, 7 May 2016 11:27:07 +0000 (UTC) From: Matthew Seaman <matthew@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414772 - head/www/squid-devel Message-ID: <201605071127.u47BR71U075924@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: matthew Date: Sat May 7 11:27:07 2016 New Revision: 414772 URL: https://svnweb.freebsd.org/changeset/ports/414772 Log: Switch to USES=compiler:c++11-lib rather than c++11-lang in an attempt to improve compilability on older OS versions. Even so, mark as broken on 9.x for now, until remaining compilation problems can be solved. PR: 209249 Submitted by: timp87@gmail.com (maintainer) Modified: head/www/squid-devel/Makefile Modified: head/www/squid-devel/Makefile ============================================================================== --- head/www/squid-devel/Makefile Sat May 7 11:20:11 2016 (r414771) +++ head/www/squid-devel/Makefile Sat May 7 11:27:07 2016 (r414772) @@ -28,7 +28,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING CONFLICTS= squid*-3.* -USES= compiler:c++11-lang cpe perl5 shebangfix tar:xz +USES= compiler:c++11-lib cpe perl5 shebangfix tar:xz CPE_VENDOR= squid-cache SHEBANG_FILES= scripts/*.pl contrib/*.pl tools/*.pl GNU_CONFIGURE= yes @@ -206,6 +206,10 @@ CONFIGURE_ARGS= --with-default-user=squi .include <bsd.port.options.mk> +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +IGNORE= Doesn't build, messes C++ headers and libs +.endif + # Authentication methods and modules: basic_auth= DB SMB_LM NCSA PAM POP3 RADIUS fake getpwnam
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605071127.u47BR71U075924>