notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
non port: Mk/bsd.gecko.mk

Number of commits found: 379 (showing only 100 on this page)

«  1 | 2 | 3 | 4  »  

Friday, 18 Sep 2020
15:56 jbeich search for other commits by this committer
gecko: drop ancient sparc64 workaround

FreeBSD 13.0 no longer supports sparc64. Firefox >= 53 requires Rust
but sparc64 is only supported by Linux, NetBSD, OpenBSD.

https://bugzilla.mozilla.org/show_bug.cgi?id=455393
Original commitRevision:548891 
15:56 jbeich search for other commits by this committer
gecko: drop python2 dependency after r548882
Original commitRevision:548890 
Monday, 7 Sep 2020
00:58 pkubaj search for other commits by this committer
Mk/bsd.gecko.mk: fix build with defined CPUTYPE on powerpc64 (and possibly
others)

In /etc/make.conf:
CPUTYPE?=power9

When trying to build www/firefox:
make: "/usr/ports/Mk/bsd.gecko.mk" line 265: Malformed conditional
(${ARCH:Maarch64} || ${MACHINE_CPU:Msse2})
make: Fatal errors encountered -- cannot continuemake:
"/usr/ports/Mk/bsd.gecko.mk" line 265: Malformed conditional (${ARCH:Maarch64}
|| ${MACHINE_CPU:Msse2})
make: "/usr/ports/Mk/bsd.port.mk" line 4517: warning: duplicate script for
target "/tmp/usr/ports/www/firefox/work-make" ignored
make: "/usr/ports/Mk/bsd.port.mk" line 3423: warning: using previous script for
"/tmp/usr/ports/www/firefox/work-make" defined here
make: "/usr/ports/Mk/bsd.port.mk" line 5203: warning: duplicate script for
target "/tmp/usr/ports/www/firefox/work-make" ignored
make: "/usr/ports/Mk/bsd.port.mk" line 3423: warning: using previous script for
"/tmp/usr/ports/www/firefox/work-make" defined here
make: "/usr/ports/Mk/bsd.port.mk" line 5364: warning: duplicate script for
target "/tmp/usr/ports/www/firefox/work-make" ignored
make: "/usr/ports/Mk/bsd.port.mk" line 3423: warning: using previous script for
"/tmp/usr/ports/www/firefox/work-make" defined here
make: "/usr/ports/Mk/bsd.port.mk" line 5364: warning: duplicate script for
target "/tmp/usr/ports/www/firefox/work-make" ignored
make: "/usr/ports/Mk/bsd.port.mk" line 3423: warning: using previous script for
"/tmp/usr/ports/www/firefox/work-make" defined here
make: "/usr/ports/Mk/bsd.port.mk" line 5364: warning: duplicate script for
target "/tmp/usr/ports/www/firefox/work-make" ignored
make: "/usr/ports/Mk/bsd.port.mk" line 3423: warning: using previous script for
"/tmp/usr/ports/www/firefox/work-make" defined here
make: "/usr/ports/Mk/bsd.port.mk" line 5364: warning: duplicate script for
target "/tmp/usr/ports/www/firefox/work-make" ignored
make: "/usr/ports/Mk/bsd.port.mk" line 3423: warning: using previous script for
"/tmp/usr/ports/www/firefox/work-make" defined here
make: "/usr/ports/Mk/bsd.port.mk" line 5364: warning: duplicate script for
target "/tmp/usr/ports/www/firefox/work-make" ignored
make: "/usr/ports/Mk/bsd.port.mk" line 3423: warning: using previous script for
"/tmp/usr/ports/www/firefox/work-make" defined here
make: "/usr/ports/Mk/bsd.port.mk" line 5364: warning: duplicate script for
target "/tmp/usr/ports/www/firefox/work-make" ignored
make: "/usr/ports/Mk/bsd.port.mk" line 3423: warning: using previous script for
"/tmp/usr/ports/www/firefox/work-make" defined here
make: "/usr/ports/Mk/bsd.port.mk" line 5364: warning: duplicate script for
target "/tmp/usr/ports/www/firefox/work-make" ignored
make: "/usr/ports/Mk/bsd.port.mk" line 3423: warning: using previous script for
"/tmp/usr/ports/www/firefox/work-make" defined here
make: Fatal errors encountered -- cannot continuemake:
"/usr/ports/Mk/bsd.gecko.mk" line 265: Malformed conditional (${ARCH:Maarch64}
|| ${MACHINE_CPU:Msse2})
make: Fatal errors encountered -- cannot continuemake:
"/usr/ports/Mk/bsd.gecko.mk" line 265: Malformed conditional (${ARCH:Maarch64}
|| ${MACHINE_CPU:Msse2})
make: Fatal errors encountered -- cannot continuemake:
"/usr/ports/Mk/bsd.gecko.mk" line 265: Malformed conditional (${ARCH:Maarch64}
|| ${MACHINE_CPU:Msse2})
make: Fatal errors encountered -- cannot continue

PR:		248826
Approved by:	gecko (maintainer timeout)
Original commitRevision:547872 
Friday, 21 Aug 2020
16:32 jbeich search for other commits by this committer
gecko: add native OSS support, replacing ALSA as fallback

OSS is always built but during runtime only selected by default if
neither pulseaudio, jackit or sndio are installed. In particular,
Gnome and KDE users would still be offered PulseAudio by default due
to integration with multi-app volume widgets, current song bars,
screensharing with audio, etc. that prefer to talk over DBus.
Those can opt out via media.cubeb.backend=oss in about:config.

Submitted by:	Ka Ho Ng <khng300@gmail.com> (based on)
Original commitRevision:545611 
Tuesday, 18 Aug 2020
00:52 jbeich search for other commits by this committer
www/firefox: update to 80.0

Changes:	https://www.mozilla.org/firefox/80.0/releasenotes/
Original commitRevision:545203 
Tuesday, 23 Jun 2020
11:48 jbeich search for other commits by this committer
www/firefox: update to 78.0

Changes:	https://www.mozilla.org/firefox/78.0/releasenotes/
PR:		247329
Differential Revision:	https://reviews.freebsd.org/D25301
Original commitRevision:539972 
Thursday, 18 Jun 2020
20:34 pkubaj search for other commits by this committer
Mk/bsd.gecko.mk: add devel/binutils to BUILD_DEPENDS

Currently, Rust on powerpc64 elfv2 builds with GCC because of past issue with
LLVM. However, this issue seems to be resolved now and I can already build Rust
with Clang and then build with it other packages, like Firefox.

The problem is that, when using GCC, binutils is getting installed, but when
using LLVM, it's not and there is -fno-integrated-as getting passed on ppc64.

Since it's only for the build and users building from ports have binutils
installed anyway, add it for everyone.

PR:		247387
Approved by:	jbeich (maintainer)
Original commitRevision:539570 
Wednesday, 27 May 2020
20:03 jbeich search for other commits by this committer
gecko: add missing Wayland dependency with libglvnd

checking for gtk+-wayland-3.0 >= 3.10 xkbcommon >= 0.4.1 libdrm >= 2.4... no
WARNING: Package libdrm was not found in the pkg-config search path.
WARNING: Perhaps you should add the directory containing `libdrm.pc'
WARNING: to the PKG_CONFIG_PATH environment variable
WARNING: Package 'libdrm', required by 'virtual:world', not found
Original commitRevision:536712 
Monday, 25 May 2020
23:05 jbeich search for other commits by this committer
www/firefox: update to 77.0

Changes:	https://www.mozilla.org/firefox/77.0/releasenotes/
Original commitRevision:536538 
Friday, 15 May 2020
04:59 jbeich search for other commits by this committer
gecko: drop x11/startup-notification dependency

https://bugzilla.mozilla.org/show_bug.cgi?id=726479
Original commitRevision:535269 
04:59 jbeich search for other commits by this committer
gecko: drop GCONF option after upstream

https://bugzilla.mozilla.org/show_bug.cgi?id=1433685
Original commitRevision:535268 
04:58 jbeich search for other commits by this committer
gecko: drop --with-system-bz2 after upstream

https://bugzilla.mozilla.org/show_bug.cgi?id=1418425
Original commitRevision:535267 
Tuesday, 31 Mar 2020
20:32 jbeich search for other commits by this committer
www/firefox: update to 75.0

Changes:	https://www.mozilla.org/firefox/75.0/releasenotes/
PR:		244793
Security:	98c69f9a-856b-4180-8f0b-11846626c6cc
Differential Revision:	https://reviews.freebsd.org/D24062
Original commitRevision:530013 
Thursday, 5 Mar 2020
02:03 jbeich search for other commits by this committer
www/firefox: update to 74.0

Changes:	https://www.mozilla.org/firefox/74.0/releasenotes/
PR:		244310
Security:	9f900456-0bfa-4da4-ad59-14b2933259a2
Differential Revision:	https://reviews.freebsd.org/D23646
Original commitRevision:527804 
Tuesday, 4 Feb 2020
00:39 jbeich search for other commits by this committer
www/firefox: update to 73.0

Changes:	https://www.mozilla.org/firefox/73.0/releasenotes/
PR:		243295
Security:	802e3138-b8af-4a89-a908-f103107e64b4
Differential Revision:	https://reviews.freebsd.org/D23146
Original commitRevision:525108 
Monday, 13 Jan 2020
18:36 tobik search for other commits by this committer
lang/rust: Add COMPAT_FREEBSD11 canary

This attempts to provide a nicer error message for the subset of
users who build their own kernels without COMPAT_FREEBSD11 and then
attempt to build lang/rust.  The Rust ecosystem currently uses
pre-ino64 syscalls, so building lang/rust without COMPAT_FREEBSD11
is not going to work.

The error message for this is non-obvious and there is a new bug
for this at least every 1-2 months.  Hopefully this will improve
the situation a little.

Cargo and Gecko ports are similarly affected, so add the pre-build
check to them too.

Reviewed by:	jbeich, mikael.urankar@gmail.com
Tested by:	madpilot (negative case)
Approved by:	gecko (jbeich)
Differential Revision:	https://reviews.freebsd.org/D23100
Original commitRevision:522968 
Tuesday, 31 Dec 2019
00:46 jbeich search for other commits by this committer
www/firefox: update to 72.0

Changes:	https://www.mozilla.org/firefox/72.0/releasenotes/
PR:		242605
Security:	a4d0f92b-2188-40aa-9aa3-005b0a89cc72
Differential Revision:	https://reviews.freebsd.org/D22781
Original commitRevision:521576 
Friday, 29 Nov 2019
15:02 pkubaj search for other commits by this committer
Mk/bsd.port.mk: detect powerpc64 abi

We'll have a new abi on ppc64 soon (ELFv2) which is incompatible with the ELFv1
abi. We need to detect the abi on which we build stuff.

Submitted by:	mikael_urankar@gmail.com
Approved by:	portmgr (earlier version)
Differential Revision:	https://reviews.freebsd.org/D22039
Original commitRevision:518658 
Tuesday, 26 Nov 2019
01:01 jbeich search for other commits by this committer
www/firefox: update to 71.0

Changes:	https://www.mozilla.org/firefox/71.0/releasenotes/
PR:		241840
Security:	13b6433c-7aaf-477b-b96b-164924a005bb
MFH:		2019Q4
Differential Revision:	https://reviews.freebsd.org/D22296
Original commitRevision:518439 
Sunday, 3 Nov 2019
15:52 jbeich search for other commits by this committer
gecko: drop unused system hunspell after r509969
Original commitRevision:516435 
Wednesday, 30 Oct 2019
18:29 jbeich search for other commits by this committer
www/firefox: update to 70.0.1

Changes:	https://www.mozilla.org/firefox/70.0.1/releasenotes/
PR:		240440
Original commitRevision:516092 
Tuesday, 15 Oct 2019
00:40 jbeich search for other commits by this committer
www/firefox: update to 70.0

Changes:	https://www.mozilla.org/firefox/70.0/releasenotes/
PR:		240440
Security:	e1c901e9-ed1e-415d-8272-f171bfc265bd
MFH:		2019Q4
Differential Revision:	https://reviews.freebsd.org/D21572
Original commitRevision:514482 
Thursday, 10 Oct 2019
00:44 jbeich search for other commits by this committer
gecko: drop LLVM_DEFAULT workaround for i386 after r514194

PR:		240918
Original commitRevision:514199 
Friday, 20 Sep 2019
19:58 jbeich search for other commits by this committer
Switch default devel/llvm* to 90

PR:		239682
Reviewed by:	tobik
Differential Revision:	https://reviews.freebsd.org/D21172
Original commitRevision:512440 
Saturday, 7 Sep 2019
20:53 jbeich search for other commits by this committer
gecko: enable SNDIO by default

To avoid runtime dependency switch to dlopen(3).

PR:		238096
Requested by:	many
Original commitRevision:511423 
Thursday, 5 Sep 2019
23:35 jbeich search for other commits by this committer
gecko: drop support for Firefox < 68 after r509969
Original commitRevision:511274 
23:35 jbeich search for other commits by this committer
gecko: drop remnants of WAYLAND option after r509969
Original commitRevision:511273 
11:25 jbeich search for other commits by this committer
gecko: don't require gconf on non-Gnome2 desktops

Take advantage of lazy bindings by not requiring runtime dependency.
DBus is required under Wayland (Gecko-specific) and for MIME handling
but GConf2 is useless outside of Gnome2. So, only use GConf2 if it's
already installed (similar to PulseAudio).

PR:		240323
Original commitRevision:511176 
10:39 jbeich search for other commits by this committer
www/firefox: bump required rust version after r509978
Original commitRevision:511172 
Tuesday, 27 Aug 2019
00:50 jbeich search for other commits by this committer
Revert unintentional change in r509973
Original commitRevision:509974 
00:48 jbeich search for other commits by this committer
multimedia/rav1e: update to s20190826

Changes:	https://github.com/xiph/rav1e/compare/dc34123f...1fc3a1c6
Original commitRevision:509973 
Thursday, 4 Jul 2019
11:40 jbeich search for other commits by this committer
gecko: drop MOZ_RPATH after r315713
Original commitRevision:505833 
11:40 jbeich search for other commits by this committer
gecko: drop nspr-related *FLAGS substitution

https://bugzilla.mozilla.org/show_bug.cgi?id=514211
Original commitRevision:505832 
11:40 jbeich search for other commits by this committer
gecko: drop staging remnants after r357413
Original commitRevision:505831 
11:40 jbeich search for other commits by this committer
 gecko: drop MOZ_* variables controlling defaults
Original commitRevision:505830 
11:40 jbeich search for other commits by this committer
gecko: drop PORT_MOZCONFIG, it wasn't flexible enough
Original commitRevision:505829 
11:40 jbeich search for other commits by this committer
gecko: drop pre/post-install scripts after r473092 and r497197
Original commitRevision:505828 
11:39 jbeich search for other commits by this committer
gecko: drop GTK2 and RUST options after r505740 and r505753
Original commitRevision:505827 
Monday, 1 Jul 2019
21:09 jbeich search for other commits by this committer
www/firefox: update to 68.0

Changes:	https://www.mozilla.org/firefox/68.0/releasenotes/
PR:		238087
Security:	0592f49f-b3b8-4260-b648-d1718762656c
MFH:		2019Q2
Differential Revision:	https://reviews.freebsd.org/D20391
Original commitRevision:505639 
Friday, 14 Jun 2019
06:55 jbeich search for other commits by this committer
www/firefox: switch to system aom/dav1d

Obtained from:	upstream (via Gentoo)
Original commitRevision:504160 
Saturday, 25 May 2019
16:11 jbeich search for other commits by this committer
www/firefox: bump required cbindgen after r501604

Reported by:	Mikael Urankar
Original commitRevision:502585 
11:51 jbeich search for other commits by this committer
www/firefox: require more recent icu/rust after r490910/r501604
Original commitRevision:502566 
Friday, 17 May 2019
12:02 jbeich search for other commits by this committer
www/firefox: restore SafeBrowsing v4 after r495403

Required for phishing protection. Not covered by uBlock Origin lists.
Looks like #Mozilla didn't announce the POLA-violating change anywhere
public despite backporting to ESR60.

https://bugzilla.mozilla.org/show_bug.cgi?id=1531176
Original commitRevision:501856 
Monday, 13 May 2019
23:55 jbeich search for other commits by this committer
www/firefox: update to 67.0

Changes:	https://www.mozilla.org/firefox/67.0/releasenotes/
PR:		236651
Security:	44b6dfbf-4ef7-4d52-ad52-2b1b05d81272
MFH:		2019Q2
Differential Revision:	https://reviews.freebsd.org/D19654
Original commitRevision:501604 
Wednesday, 24 Apr 2019
19:15 jbeich search for other commits by this committer
Switch to -fstack-protector-strong and enable on more architectures

PR:		237273
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Differential Revision:	https://reviews.freebsd.org/D19907
Original commitRevision:499897 
Monday, 8 Apr 2019
11:51 jbeich search for other commits by this committer
www/firefox: enable -fstack-protector-strong

aarch64 already used it, so switch x86 as well. Mk/bsd.ssp.mk doesn't
appear maintained, anyway.
Original commitRevision:498363 
11:50 jbeich search for other commits by this committer
www/firefox: switch to upstream fix for non-x86

PR:		233707
Original commitRevision:498362 
Tuesday, 12 Mar 2019
00:56 jbeich search for other commits by this committer
www/firefox: update to 66.0

Changes:	https://www.mozilla.org/firefox/66.0/releasenotes/
PR:		235300
Security:	05da6b56-3e66-4306-9ea3-89fafe939726
MFH:		2019Q1
Differential Revision:	https://reviews.freebsd.org/D19020
Original commitRevision:495403 
Wednesday, 6 Mar 2019
04:07 jbeich search for other commits by this committer
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
Original commitRevision:494772 
Thursday, 28 Feb 2019
18:51 jbeich search for other commits by this committer
lang/rust: update to 1.33.0

- www/firefox temporarily loses SIMD in charset conversion, see
  https://bugzilla.mozilla.org/show_bug.cgi?id=1521249
- Force rebuild all consumers to catch regressions early

Changes:	https://blog.rust-lang.org/2019/02/28/Rust-1.33.0.html
Tested by:	Mikael Urankar (aarch64, armv6, armv7, powerpc64), Piotr Kubaj
(powerpc64)
Approved by:	rust (tobik)
Differential Revision:	https://reviews.freebsd.org/D19354
Original commitRevision:494176 
Saturday, 2 Feb 2019
18:37 jbeich search for other commits by this committer
gecko: drop DTRACE option completely

--enable-dtrace is only tested on macOS where dtrace -G isn't used.
Let's stop wasting time on dtrace -G issues as the support disappeared
since Firefox 61, anyway.
Original commitRevision:491972 
Monday, 21 Jan 2019
23:03 jbeich search for other commits by this committer
www/firefox: update to 65.0

Backport a fix for WebRender on Wayland e.g.,

$ GDK_BACKEND=wayland MOZ_WEBRENDER=1 MOZ_ACCELERATED=1 firefox
https://example.com/

Changes:	https://www.mozilla.org/firefox/65.0/releasenotes/
PR:		233791
Security:	b1f7d52f-fc42-48e8-8403-87d4c9d26229
MFH:		2019Q1
Differential Revision:	https://reviews.freebsd.org/D18432
Original commitRevision:490910 
Friday, 18 Jan 2019
21:14 jbeich search for other commits by this committer
textproc/hunspell: update to 1.7.0

- Drop const optimization as v2 API moved to nuspell

Changes:	https://github.com/hunspell/hunspell/releases/tag/v1.7.0
Original commitRevision:490671 
Friday, 4 Jan 2019
04:00 jbeich search for other commits by this committer
Allow overriding rust dependency

Add DEFAULT_VERSIONS+=rust=rust-nightly to make.conf(5) if you want to
build consumers using lang/rust-nightly.

Approved by:	rust (tobik)
MFH:		2019Q1 (avoid merge conflicts during www/firefox updates)
Differential Revision:	https://reviews.freebsd.org/D18634
Original commitRevision:489241 
Saturday, 22 Dec 2018
20:57 jbeich search for other commits by this committer
www/firefox: chase rust version check after r486573

https://bugzilla.mozilla.org/show_bug.cgi?id=1490147
Original commitRevision:488128 
Tuesday, 4 Dec 2018
00:54 jbeich search for other commits by this committer
www/firefox: update to 64.0

Changes:	https://www.mozilla.org/firefox/64.0/releasenotes/
PR:		233028
Security:	d10b49b2-8d02-49e8-afde-0844626317af
MFH:		2018Q4
Differential Revision:	https://reviews.freebsd.org/D17871
Original commitRevision:486573 
Tuesday, 20 Nov 2018
20:31 jbeich search for other commits by this committer
gecko: inherit LLVM_DEFAULT after r485466
Original commitRevision:485482 
18:58 jbeich search for other commits by this committer
gecko: drop BUNDLED_CAIRO option
Original commitRevision:485463 
18:57 jbeich search for other commits by this committer
gecko: drop pre-52 support
Original commitRevision:485462 
18:57 jbeich search for other commits by this committer
www/firefox: don't load system dictionaries after r472727

Bundled Hunspell may not be compatible. If users still want system
dictionaries they can set spellchecker.dictionary_path in about:config.
Original commitRevision:485461 
18:55 jbeich search for other commits by this committer
gecko: drop system ogg/vorbis support

Too infrequently updated to justify maintenance burden.
Original commitRevision:485460 
18:55 jbeich search for other commits by this committer
gecko: drop JPEG_PORT=graphics/jpeg support

Completely untested for years.
Original commitRevision:485459 
Friday, 2 Nov 2018
13:32 rene search for other commits by this committer
Remove compatibility code for FreeBSD < 11.2 from all ports.

Simplify some ports where DragonFlyBSD no longer needs to be special-cased.
Submitted by:	rene
Reviewed by:	bapt, jbeich
Differential Revision:	https://reviews.freebsd.org/D17724
Original commitRevision:483807 
Monday, 29 Oct 2018
22:32 cmt search for other commits by this committer
gecko: silence USES warnings

PR:		231867
Approved by:	gecko (jbeich did not veto)
Original commitRevision:483435 
Saturday, 20 Oct 2018
21:39 jbeich search for other commits by this committer
gecko: expose Wayland support
Original commitRevision:482626 
Tuesday, 16 Oct 2018
00:01 jbeich search for other commits by this committer
www/firefox: update to 63.0

Changes:	https://www.mozilla.org/firefox/63.0/releasenotes/
PR:		229893
Security:	7c3a02b9-3273-4426-a0ba-f90fad2ff72e
MFH:		2018Q4
Differential Revision:	https://reviews.freebsd.org/D16356
Original commitRevision:482197 
Monday, 1 Oct 2018
21:37 jbeich search for other commits by this committer
gecko: switch to clang70

Standardizing on one Clang version makes stability more predictable
across supported FreeBSD versions. As a side effect performance may
suffer some improvement. This also makes it easier to enable LTO as
old LLD versions are more buggy.
Original commitRevision:481071 
21:36 jbeich search for other commits by this committer
gecko: switch to llvm70
Original commitRevision:481070 
21:36 jbeich search for other commits by this committer
gecko: docouple llvm version from mesa
Original commitRevision:481069 
19:51 jbeich search for other commits by this committer
gecko: drop 11.1 aarch64 support after EOL
Original commitRevision:481059 
Tuesday, 28 Aug 2018
00:01 jbeich search for other commits by this committer
www/firefox: update to 62.0

Changes:	https://www.mozilla.org/firefox/62.0/releasenotes/
PR:		229168
Security:	c96d416a-eae7-4d5d-bc84-40deca9329fb
MFH:		2018Q3
Differential Revision:	https://reviews.freebsd.org/D15913
Original commitRevision:478268 
Saturday, 28 Jul 2018
20:28 jbeich search for other commits by this committer
www/firefox: drop GCC < 6 support after r474545
Original commitRevision:475614 
Friday, 13 Jul 2018
03:08 jbeich search for other commits by this committer
www/firefox: switch 11.1 aarch64 to LLD after r474545
Original commitRevision:474546 
03:02 jbeich search for other commits by this committer
www/firefox: switch to Clang 6.0.1 on FreeBSD 11.1

Clang 6 is already used on 10.4, 11.2 and -CURRENT. No need to expose
users to Clang 4.0.0 regressions fixed in 4.0.1 or later versions.
Original commitRevision:474545 
Friday, 22 Jun 2018
22:21 rene search for other commits by this committer
bsd.gecko.mk / USES=gecko : remove expired libxul support.

Tested with "make index"
Original commitRevision:473091 
Tuesday, 19 Jun 2018
00:37 jbeich search for other commits by this committer
www/firefox: update to 61.0

- Drop DTRACE option, as it no longer builds
  https://bugzilla.mozilla.org/show_bug.cgi?id=1448659
  https://bugzilla.mozilla.org/show_bug.cgi?id=702179#c33
- Stop using system hunspell per
  https://bugzilla.mozilla.org/show_bug.cgi?id=1460600

Changes:	https://www.mozilla.org/firefox/61.0/releasenotes/
PR:		227850
Security:	cd81806c-26e7-4d4a-8425-02724a2f48af
MFH:		2018Q2
Differential Revision:	https://reviews.freebsd.org/D15227
Original commitRevision:472727 
Tuesday, 1 May 2018
00:51 jbeich search for other commits by this committer
www/firefox: update to 60.0

- Add U2F support, required by Web Authentication [1]
- Drop libv4l support to reduce maintenance

Changes:	https://www.mozilla.org/firefox/60.0/releasenotes/
PR:		226476
Tested by:	tobik, jrm, D. Ebdrup, lwhsu
Submitted by:	Greg V [1]
Security:	5aefc41e-d304-4ec8-8c82-824f84f08244
MFH:		2018Q2
Differential Revision:	https://reviews.freebsd.org/D15186
Original commitRevision:468751 
Friday, 27 Apr 2018
23:10 jbeich search for other commits by this committer
graphics/mesa-dri: switch to llvm60

PR:		227682
Original commitRevision:468501 
Monday, 19 Mar 2018
05:46 tobik search for other commits by this committer
Fix post-patch-SNDIO-on in preparation of updates to www/firefox 60.0
and to www/palemoon 27.8.1

Some patches no longer apply to them.  WebRTC has moved paths in
Firefox 60.0 and no longer needs to be patched.  Pale Moon removed
WebRTC completely in 27.8.0.

PR:		226476
Approved by:	gecko (jbeich)
Original commitRevision:464981 
Tuesday, 13 Mar 2018
13:48 jbeich search for other commits by this committer
gecko: drop MOZ_EXTENSIONS, it's no longer unused
Original commitRevision:464374 
Tuesday, 6 Mar 2018
00:56 jbeich search for other commits by this committer
www/firefox: update to 59.0

Changes:	https://www.mozilla.org/firefox/59.0/releasenotes/
Security:	c71cdc95-3c18-45b7-866a-af28b59aabb5
MFH:		2018Q1
Original commitRevision:463675 
Monday, 5 Mar 2018
09:37 jbeich search for other commits by this committer
www/waterfox: drop bindgen workaround
Original commitRevision:463637 
Sunday, 25 Feb 2018
06:39 jbeich search for other commits by this committer
gecko: convert to CONFIGURE_OUTSOURCE

client.mk is on its way out upstream, switching to it was a mistake.

$ MACH=1 gmake -f client.mk build
client.mk:40: /.mozconfig-client-mk: No such file or directory
gmake: *** No rule to make target '/.mozconfig-client-mk'.  Stop.

MFH:		2018Q1 (required by Firefox 59)
Original commitRevision:462941 
Monday, 15 Jan 2018
21:32 jbeich search for other commits by this committer
www/firefox: update to 58.0

Changes:	https://www.mozilla.org/firefox/58.0/releasenotes/
PR:		223425
Tested by:	Greg V, tobik
Security:	a891c5b4-3d7a-4de9-9c71-eef3fd698c77
MFH:		2018Q1 (piling up)
Original commitRevision:459118 
Wednesday, 3 Jan 2018
13:22 mat search for other commits by this committer
Cleanup Mk/Uses/gnome.mk.

- Remove the use of comp_DETECT.
- Remove all comp_DETECT variables.
- Remove a use of comp_DETECT outside of gnome.mk
- Remove py3gobject3.
- Have ports depending directly on devel/py-gobject3 use gnome to do it.

PR:		224618
Submitted by:	mat
Exp-run by:	antoine
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D13550
Original commitRevision:457964 
Monday, 1 Jan 2018
20:25 jbeich search for other commits by this committer
gecko, mesa-dri: shave unnecessary quoting for absolute path to LLD

Left side already unquoted and Mk/bsd.port.mk didn't quote.
Original commitRevision:457797 
Sunday, 31 Dec 2017
00:57 jbeich search for other commits by this committer
www/firefox: unbreak OPTIMIZED_CFLAGS=off build after r450707

x86_64-unknown-freebsd/release/libgkrust.a: could not read symbols: File format
not recognized

PR:		222641
Reported by:	many
Original commitRevision:457657 
Tuesday, 26 Dec 2017
00:59 jbeich search for other commits by this committer
www/firefox: switch to devel/llvm50 for Stylo
Original commitRevision:457267 
Wednesday, 29 Nov 2017
13:54 tobik search for other commits by this committer
bsd.gecko.mk: use ${ECHO_CMD} in post-patch-SNDIO-on

Currently ${ECHO} is used which is problematic when it's set to 'true'
e.g.  when using `make -s`.

PR:		223964
Approved by:	gecko (jbeich)
Original commitRevision:455111 
04:42 jbeich search for other commits by this committer
gecko: unbreak aarch64 build for non-empty CPUTYPE

As of Rust 1.22.1 the following CPUTYPEs are supported:
https://github.com/rust-lang/llvm/blob/c7a16bd57c2a/include/llvm/Support/AArch64TargetParser.def#L54-L77
Original commitRevision:455094 
Tuesday, 28 Nov 2017
12:57 jbeich search for other commits by this committer
gecko: respect CPUTYPE for Rust code

After r454995 build may fail if SSE2 is only enabled for C/C++ code as
simd crate expects SSE2 based on MACHINE_CPU.

PR:		223415 223300
Reported by:	vvd@unislabs.com
Original commitRevision:455039 
Monday, 27 Nov 2017
22:02 jbeich search for other commits by this committer
lang/rust: avoid LLVM targeting SSE2 on i386 by default

This may help ports like textproc/ripgrep to run on old hardware.
Rust itself still requires SSE2 until bootstrap is regenerated.

PR:		223415
Approved by:	rust (dumbbell)
Original commitRevision:454995 
Thursday, 23 Nov 2017
22:53 jbeich search for other commits by this committer
gecko: simplify WRKSRC handling

Requested by:	mat
Original commitRevision:454808 
Wednesday, 22 Nov 2017
06:28 jbeich search for other commits by this committer
Oops, back out r454668

BUNDLE_LIBS is used by every XUL app that cannot share libxul.so
Original commitRevision:454677 
06:25 jbeich search for other commits by this committer
gecko: drop GNOMEUI option
Original commitRevision:454670 
06:24 jbeich search for other commits by this committer
gecko: drop broken and unmaintained PGO option

Clang PGO isn't supported by the build system yet.
https://bugzilla.mozilla.org/show_bug.cgi?id=1064049

Reported by:	many
PR:		221451
Original commitRevision:454669 
06:24 jbeich search for other commits by this committer
gecko: move BUNDLE_LIBS to www/libxul
Original commitRevision:454668 
Thursday, 16 Nov 2017
23:04 jbeich search for other commits by this committer
gecko: allow lld as ld on FreeBSD 12.0

PR:		223680
Original commitRevision:454358 
Monday, 13 Nov 2017
22:21 jbeich search for other commits by this committer
gecko: configure is part of build since r373830
Original commitRevision:454152 
Saturday, 4 Nov 2017
11:33 jbeich search for other commits by this committer
www/firefox: always use specified libclang version

MFH:		2017Q4
Original commitRevision:453452 

Number of commits found: 379 (showing only 100 on this page)

«  1 | 2 | 3 | 4  »