summaryrefslogtreecommitdiffstats
path: root/moz.configure
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:14:29 +0000
commitfbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 (patch)
tree4c1ccaf5486d4f2009f9a338a98a83e886e29c97 /moz.configure
parentReleasing progress-linux version 124.0.1-1~progress7.99u1. (diff)
downloadfirefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.tar.xz
firefox-fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'moz.configure')
-rwxr-xr-xmoz.configure15
1 files changed, 2 insertions, 13 deletions
diff --git a/moz.configure b/moz.configure
index 79d5c269a4..fc6563d075 100755
--- a/moz.configure
+++ b/moz.configure
@@ -208,11 +208,13 @@ include("build/moz.configure/toolchain.configure", when="--enable-compile-enviro
include("build/moz.configure/pkg.configure")
include("build/moz.configure/memory.configure", when="--enable-compile-environment")
include("build/moz.configure/headers.configure", when="--enable-compile-environment")
+include("build/moz.configure/libraries.configure", when="--enable-compile-environment")
include("build/moz.configure/warnings.configure", when="--enable-compile-environment")
include("build/moz.configure/flags.configure", when="--enable-compile-environment")
include("build/moz.configure/lto-pgo.configure", when="--enable-compile-environment")
# rust.configure is included by js/moz.configure.
+
option("--enable-valgrind", help="Enable Valgrind integration hooks")
valgrind_h = check_header("valgrind/valgrind.h", when="--enable-valgrind")
@@ -786,19 +788,6 @@ check_prog(
paths=clang_search_path,
)
-option("--enable-dtrace", help="Build with dtrace support")
-
-dtrace = check_header(
- "sys/sdt.h",
- when="--enable-dtrace",
- onerror=lambda: die("dtrace enabled but sys/sdt.h not found"),
-)
-
-set_config("HAVE_DTRACE", True, when=dtrace)
-set_define("INCLUDE_MOZILLA_DTRACE", True, when=dtrace)
-add_old_configure_assignment("enable_dtrace", "yes", when=dtrace)
-
-
option("--disable-icf", help="Disable Identical Code Folding")
add_old_configure_assignment(