firefox: add an option to build with debugging enabled.
This commit is contained in:
parent
90f9726fa7
commit
b0d4b8bcaa
|
@ -4,6 +4,7 @@
|
||||||
, yasm, mesa, sqlite, unzip, makeWrapper, pysqlite
|
, yasm, mesa, sqlite, unzip, makeWrapper, pysqlite
|
||||||
, hunspell, libevent, libstartup_notification, libvpx
|
, hunspell, libevent, libstartup_notification, libvpx
|
||||||
, cairo, gstreamer, gst_plugins_base
|
, cairo, gstreamer, gst_plugins_base
|
||||||
|
, debugBuild ? false
|
||||||
, # If you want the resulting program to call itself "Firefox" instead
|
, # If you want the resulting program to call itself "Firefox" instead
|
||||||
# of "Shiretoko" or whatever, enable this option. However, those
|
# of "Shiretoko" or whatever, enable this option. However, those
|
||||||
# binaries may not be distributed without permission from the
|
# binaries may not be distributed without permission from the
|
||||||
|
@ -35,7 +36,7 @@ in rec {
|
||||||
commonConfigureFlags =
|
commonConfigureFlags =
|
||||||
[ "--enable-optimize"
|
[ "--enable-optimize"
|
||||||
#"--enable-profiling"
|
#"--enable-profiling"
|
||||||
"--disable-debug"
|
(if debugBuild then "--enable-debug" else "--disable-debug")
|
||||||
"--enable-strip"
|
"--enable-strip"
|
||||||
"--with-system-jpeg"
|
"--with-system-jpeg"
|
||||||
"--with-system-zlib"
|
"--with-system-zlib"
|
||||||
|
|
Loading…
Reference in New Issue