build/unix/mozconfig.linux

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 if [ "x$IS_NIGHTLY" = "xyes" ]; then
michael@0 2 MOZ_AUTOMATION_UPLOAD_SYMBOLS=1
michael@0 3 MOZ_AUTOMATION_UPDATE_PACKAGING=1
michael@0 4 fi
michael@0 5
michael@0 6 . "$topsrcdir/build/mozconfig.common"
michael@0 7
michael@0 8 # some b2g desktop builds still happen on i686 machines, and the tooltool
michael@0 9 # toolchain is x86_64 only.
michael@0 10 # We also deal with valgrind builds here, they don't use tooltool manifests at
michael@0 11 # all yet.
michael@0 12 if [ -z "$no_tooltool" ]
michael@0 13 then
michael@0 14 CC="$topsrcdir/gcc/bin/gcc"
michael@0 15 CXX="$topsrcdir/gcc/bin/g++"
michael@0 16
michael@0 17 # We want to make sure we use binutils and other binaries in the tooltool
michael@0 18 # package.
michael@0 19 mk_add_options PATH="$topsrcdir/gcc/bin:$PATH"
michael@0 20 else
michael@0 21 CC="/tools/gcc-4.7.3-0moz1/bin/gcc"
michael@0 22 CXX="/tools/gcc-4.7.3-0moz1/bin/g++"
michael@0 23 fi
michael@0 24
michael@0 25 ac_add_options --enable-elf-hack
michael@0 26
michael@0 27 # Avoid dependency on libstdc++ 4.7
michael@0 28 ac_add_options --enable-stdcxx-compat

mercurial