svn commit: r494772 - head/Mk

Jan Beich jbeich at FreeBSD.org
Wed Mar 6 04:07:51 UTC 2019


Author: jbeich
Date: Wed Mar  6 04:07:50 2019
New Revision: 494772
URL: https://svnweb.freebsd.org/changeset/ports/494772

Log:
  www/firefox: unbreak on non-x86
  
  checking for clock_gettime(CLOCK_MONOTONIC)... no
  [...]
  The error occurred while processing the following file:
  
      /wrkdirs/usr/ports/www/firefox/work/firefox-65.0.2/mozglue/misc/moz.build
  
  A moz.build file called the error() function.
  
  The error it encountered is:
  
      No TimeStamp implementation on this platform.  Build will not succeed
  
  Correct the error condition and try again.
  
  PR:		233707
  Reported by:	bob prohaska, pkg-fallout
  Submitted by:	tijl

Modified:
  head/Mk/bsd.gecko.mk   (contents, props changed)

Modified: head/Mk/bsd.gecko.mk
==============================================================================
--- head/Mk/bsd.gecko.mk	Wed Mar  6 04:03:23 2019	(r494771)
+++ head/Mk/bsd.gecko.mk	Wed Mar  6 04:07:50 2019	(r494772)
@@ -138,7 +138,8 @@ MOZ_PKGCONFIG_FILES?=	${MOZILLA}-gtkmozembed ${MOZILLA
 
 MOZ_EXPORT+=	${CONFIGURE_ENV} \
 				RUSTFLAGS="${RUSTFLAGS}" \
-				PERL="${PERL}"
+				PERL="${PERL}" \
+				ac_cv_clock_monotonic=
 MOZ_OPTIONS+=	--prefix="${PREFIX}"
 MOZ_MK_OPTIONS+=MOZ_OBJDIR="${BUILD_WRKSRC}"
 


More information about the svn-ports-all mailing list