bde9cd176b
* Move gtk3 part to mozilla-common.mk * Add a option for Widevine CDM support Changelog: For Windows only.
107 lines
2.8 KiB
Makefile
107 lines
2.8 KiB
Makefile
# $NetBSD: options.mk,v 1.44 2017/12/10 00:45:09 ryoon Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.firefox
|
|
|
|
PKG_SUPPORTED_OPTIONS= official-mozilla-branding
|
|
PKG_SUPPORTED_OPTIONS+= debug debug-info mozilla-jemalloc webrtc
|
|
PKG_SUPPORTED_OPTIONS+= alsa oss pulseaudio dbus
|
|
PKG_SUPPORTED_OPTIONS+= widevinecdm
|
|
PLIST_VARS+= gnome jemalloc debug
|
|
|
|
.if ${OPSYS} == "Linux"
|
|
PKG_SUGGESTED_OPTIONS+= pulseaudio mozilla-jemalloc dbus
|
|
.else
|
|
PKG_SUGGESTED_OPTIONS+= oss dbus
|
|
.endif
|
|
|
|
PKG_SUGGESTED_OPTIONS.Linux+= webrtc
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Malsa)
|
|
CONFIGURE_ARGS+= --enable-alsa
|
|
.include "../../audio/alsa-lib/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-alsa
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Moss)
|
|
CONFIGURE_ARGS+= --with-oss
|
|
.include "../../mk/oss.buildlink3.mk"
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmozilla-jemalloc)
|
|
PLIST.jemalloc= yes
|
|
CONFIGURE_ARGS+= --enable-jemalloc
|
|
CONFIGURE_ARGS+= --enable-replace-malloc
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-jemalloc
|
|
.endif
|
|
|
|
.include "../../mk/compiler.mk"
|
|
.if !empty(PKGSRC_COMPILER:Mgcc)
|
|
.if ${CC_VERSION:S/gcc-//:S/.//g} >= 480
|
|
# Modern gcc does not run any "tracking" passes when compiling with -O0,
|
|
# which makes the generated debug info mostly useless. So explicitly
|
|
# request them.
|
|
O0TRACKING=-fvar-tracking-assignments -fvar-tracking
|
|
.endif
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdebug)
|
|
CONFIGURE_ARGS+= --enable-debug="-g -O0 ${O0TRACKING}"
|
|
CONFIGURE_ARGS+= --disable-optimize
|
|
CONFIGURE_ARGS+= --enable-debug-js-modules
|
|
CONFIGURE_ARGS+= --disable-install-strip
|
|
PLIST.debug= yes
|
|
.else
|
|
.if !empty(PKG_OPTIONS:Mdebug-info)
|
|
CONFIGURE_ARGS+= --enable-debug-symbols
|
|
CONFIGURE_ARGS+= --enable-optimize=-O0
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-debug-symbols
|
|
.endif
|
|
CONFIGURE_ARGS+= --disable-debug
|
|
CONFIGURE_ARGS+= --enable-optimize=-O2
|
|
CONFIGURE_ARGS+= --enable-install-strip
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mpulseaudio)
|
|
.include "../../audio/pulseaudio/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-pulseaudio
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-pulseaudio
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mdbus)
|
|
.include "../../sysutils/dbus-glib/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-dbus
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-dbus
|
|
.endif
|
|
|
|
PLIST_VARS+= branding nobranding
|
|
.if !empty(PKG_OPTIONS:Mofficial-mozilla-branding)
|
|
CONFIGURE_ARGS+= --enable-official-branding
|
|
LICENSE= mozilla-trademark-license
|
|
RESTRICTED= Trademark holder prohibits distribution of modified versions.
|
|
NO_BIN_ON_CDROM= ${RESTRICTED}
|
|
NO_BIN_ON_FTP= ${RESTRICTED}
|
|
PLIST.branding= yes
|
|
.else
|
|
PLIST.nobranding= yes
|
|
.endif
|
|
|
|
PLIST_VARS+= webrtc
|
|
.if !empty(PKG_OPTIONS:Mwebrtc)
|
|
.include "../../graphics/libv4l/buildlink3.mk"
|
|
CONFIGURE_ARGS+= --enable-webrtc
|
|
PLIST.webrtc= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-webrtc
|
|
.endif
|
|
|
|
# Enable Google widevine CDM. This requires external libwidevinecdm.so.
|
|
.if !empty(PKG_OPTIONS:Mwidevinecdm)
|
|
CONFIGURE_ARGS+= --enable-eme=widevine
|
|
.endif
|