pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/firefox



Module Name:    pkgsrc
Committed By:   tnn
Date:           Tue Aug  4 14:00:03 UTC 2020

Modified Files:
        pkgsrc/www/firefox: options.mk

Log Message:
firefox: bomb early if dbus is disabled on Linux

It cannot be disabled because it is unconditionally depended on
by third-party/rust/audio-thread-priority (and maybe other components?)


To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 pkgsrc/www/firefox/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/firefox/options.mk
diff -u pkgsrc/www/firefox/options.mk:1.56 pkgsrc/www/firefox/options.mk:1.57
--- pkgsrc/www/firefox/options.mk:1.56  Thu Jul 16 19:51:48 2020
+++ pkgsrc/www/firefox/options.mk       Tue Aug  4 14:00:03 2020
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.56 2020/07/16 19:51:48 riastradh Exp $
+# $NetBSD: options.mk,v 1.57 2020/08/04 14:00:03 tnn Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.firefox
 
@@ -65,6 +65,9 @@ CONFIGURE_ARGS+=      --disable-pulseaudio
 CONFIGURE_ARGS+=       --enable-dbus
 .else
 CONFIGURE_ARGS+=       --disable-dbus
+.  if ${OPSYS} == "Linux"
+PKG_FAIL_REASON+=      "The dbus PKG_OPTION cannot be disabled on Linux."
+.  endif
 .endif
 
 #PLIST_VARS+=          branding nobranding



Home | Main Index | Thread Index | Old Index