Date: Mon, 8 Apr 2019 11:50:52 +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: r498362 - in head: Mk www/firefox/files Message-ID: <201904081150.x38BoqqP042165@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Mon Apr 8 11:50:52 2019 New Revision: 498362 URL: https://svnweb.freebsd.org/changeset/ports/498362 Log: www/firefox: switch to upstream fix for non-x86 PR: 233707 Added: head/www/firefox/files/patch-bug1513605 (contents, props changed) Modified: head/Mk/bsd.gecko.mk (contents, props changed) Modified: head/Mk/bsd.gecko.mk ============================================================================== --- head/Mk/bsd.gecko.mk Mon Apr 8 11:50:41 2019 (r498361) +++ head/Mk/bsd.gecko.mk Mon Apr 8 11:50:52 2019 (r498362) @@ -138,8 +138,7 @@ MOZ_PKGCONFIG_FILES?= ${MOZILLA}-gtkmozembed ${MOZILLA MOZ_EXPORT+= ${CONFIGURE_ENV} \ RUSTFLAGS="${RUSTFLAGS}" \ - PERL="${PERL}" \ - ac_cv_clock_monotonic= + PERL="${PERL}" MOZ_OPTIONS+= --prefix="${PREFIX}" MOZ_MK_OPTIONS+=MOZ_OBJDIR="${BUILD_WRKSRC}" Added: head/www/firefox/files/patch-bug1513605 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/firefox/files/patch-bug1513605 Mon Apr 8 11:50:52 2019 (r498362) @@ -0,0 +1,59 @@ +commit 7b5468921fef +Author: Mike Hommey <mh+mozilla@glandium.org> +Date: Tue Mar 12 14:14:43 2019 +0000 + + Bug 1513605 - Add PIC flags when running the clock_gettime(CLOCK_MONOTONIC) check. r=dmajor + + Differential Revision: https://phabricator.services.mozilla.com/D23091 + + --HG-- + extra : moz-landing-system : lando +--- + js/src/old-configure.in | 3 +++ + old-configure.in | 3 +++ + 2 files changed, 6 insertions(+) + +diff --git js/src/old-configure.in js/src/old-configure.in +index 64654df2230b..ce4458098a6c 100644 +--- js/src/old-configure.in ++++ js/src/old-configure.in +@@ -1015,7 +1015,9 @@ Darwin) + ac_cv_clock_monotonic, + [for libs in "" -lrt; do + _SAVE_LIBS="$LIBS" ++ _SAVE_CFLAGS="$CFLAGS" + LIBS="$LIBS $libs" ++ CFLAGS="$CFLAGS $DSO_PIC_CFLAGS" + AC_TRY_LINK([#include <time.h>], + [ struct timespec ts; + clock_gettime(CLOCK_MONOTONIC, &ts); ], +@@ -1024,6 +1026,7 @@ Darwin) + break, + ac_cv_clock_monotonic=no) + LIBS="$_SAVE_LIBS" ++ CFLAGS="$_SAVE_CFLAGS" + done]) + if test "$ac_cv_clock_monotonic" != "no"; then + HAVE_CLOCK_MONOTONIC=1 +diff --git old-configure.in old-configure.in +index d6a587d54b3b..1ed22938205e 100644 +--- old-configure.in ++++ old-configure.in +@@ -1303,7 +1303,9 @@ Darwin) + ac_cv_clock_monotonic, + [for libs in "" -lrt; do + _SAVE_LIBS="$LIBS" ++ _SAVE_CFLAGS="$CFLAGS" + LIBS="$LIBS $libs" ++ CFLAGS="$CFLAGS $DSO_PIC_CFLAGS" + AC_TRY_LINK([#include <time.h>], + [ struct timespec ts; + clock_gettime(CLOCK_MONOTONIC, &ts); ], +@@ -1312,6 +1314,7 @@ Darwin) + break, + ac_cv_clock_monotonic=no) + LIBS="$_SAVE_LIBS" ++ CFLAGS="$_SAVE_CFLAGS" + done]) + if test "$ac_cv_clock_monotonic" != "no"; then + HAVE_CLOCK_MONOTONIC=1
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904081150.x38BoqqP042165>