blob: b63cebe59e31bb6dcba18859532e5852b33c87ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
. "$topsrcdir/build/unix/mozconfig.unix"
case "$PERFHERDER_EXTRA_OPTIONS" in
base-toolchains*)
# We don't build against wayland for base-toolchain builds.
;;
x11)
ac_add_options --enable-default-toolkit=cairo-gtk3
;;
*)
ac_add_options --enable-default-toolkit=cairo-gtk3-x11-wayland
;;
esac
export MOZ_NO_PIE_COMPAT=1
|