Date: Fri, 13 Jan 2017 03:22:05 +0000 (UTC) From: "Carlos J. Puga Medina" <cpm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r431340 - branches/2017Q1/www/chromium Message-ID: <201701130322.v0D3M5Lf022410@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cpm Date: Fri Jan 13 03:22:05 2017 New Revision: 431340 URL: https://svnweb.freebsd.org/changeset/ports/431340 Log: MFH: r431339 - Wrap the entire block with OPSYS check Reported by: marino Approved by: ports-secteam (blanket) Modified: branches/2017Q1/www/chromium/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/www/chromium/Makefile ============================================================================== --- branches/2017Q1/www/chromium/Makefile Fri Jan 13 03:18:05 2017 (r431339) +++ branches/2017Q1/www/chromium/Makefile Fri Jan 13 03:22:05 2017 (r431340) @@ -187,15 +187,17 @@ GN_ARGS+= is_clang=true EXTRA_PATCHES+= ${FILESDIR}/extra-patch-clang .endif -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100508 +.if ${OPSYS} == FreeBSD +.if ${OSVERSION} < 1100508 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libc++-old .else EXTRA_PATCHES+= ${FILESDIR}/extra-patch-libc++-new .endif -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 +.if ${OSVERSION} < 1100000 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-10 .endif +.endif .if ! ${PORT_OPTIONS:MKERBEROS} GN_ARGS+= use_kerberos=true
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701130322.v0D3M5Lf022410>