Before xcompile merge
This commit is contained in:
parent
1a4fcc2689
commit
4cf9ad289f
3 changed files with 49 additions and 14 deletions
18
.gitignore
vendored
18
.gitignore
vendored
|
|
@ -1,13 +1,9 @@
|
||||||
/firefox-*
|
/firefox-*
|
||||||
librewolf-*
|
/librewolf-*
|
||||||
megabar.patch
|
/librewolf
|
||||||
remove_addons.patch
|
|
||||||
unity-menubar.patch
|
|
||||||
context-menu.patch
|
|
||||||
mozilla-vpn-ad.patch
|
|
||||||
mozconfig
|
|
||||||
librewolf
|
|
||||||
tmp.nsi
|
|
||||||
tmp-permissive.nsi
|
|
||||||
/mozilla-unified
|
/mozilla-unified
|
||||||
bootstrap.py
|
/tor-browser
|
||||||
|
/bootstrap.py
|
||||||
|
/mozconfig
|
||||||
|
/tmp.nsi
|
||||||
|
/tmp-permissive.nsi
|
||||||
|
|
|
||||||
30
build.sh
30
build.sh
|
|
@ -386,18 +386,42 @@ reset_mozilla_unified() {
|
||||||
}
|
}
|
||||||
# tor.. experimental
|
# tor.. experimental
|
||||||
init_tor_browser() {
|
init_tor_browser() {
|
||||||
git clone https://git.torproject.org/tor-browser.git
|
git clone --no-checkout https://git.torproject.org/tor-browser.git
|
||||||
|
|
||||||
cd tor-browser
|
cd tor-browser
|
||||||
git checkout tor-browser-78.8.0esr-10.0-1
|
git checkout tor-browser-78.8.0esr-10.0-1
|
||||||
|
git submodule update --recursive
|
||||||
|
patch -p1 -i ../patches/tb-mozconfig-win10.patch
|
||||||
cd ..
|
cd ..
|
||||||
}
|
}
|
||||||
set_tor_browser() {
|
set_tor_browser() {
|
||||||
srcdir=tor-browser
|
srcdir=tor-browser
|
||||||
}
|
}
|
||||||
reset_tor_browser() {
|
reset_tor_browser() {
|
||||||
echo "(todo)"
|
echo "reset_tor_browser: begin."
|
||||||
|
if [ ! -d tor-browser ]; then
|
||||||
|
echo "Error: tor-browser folder not found. use init_tor_browser() to create one"
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
cd tor-browser
|
||||||
|
|
||||||
|
echo "Resetting tor-browser..."
|
||||||
|
git reset --hard
|
||||||
|
|
||||||
|
cd ..
|
||||||
|
echo "reset_tor_browser: done."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# process commandline arguments and do something
|
# process commandline arguments and do something
|
||||||
#
|
#
|
||||||
|
|
|
||||||
15
patches/tb-mozconfig-win10.patch
Normal file
15
patches/tb-mozconfig-win10.patch
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
diff --git a/.mozconfig b/.mozconfig
|
||||||
|
index d71c858844e3..2d295de7df72 100755
|
||||||
|
--- a/.mozconfig
|
||||||
|
+++ b/.mozconfig
|
||||||
|
@@ -16,8 +16,8 @@ export MOZILLA_OFFICIAL=1
|
||||||
|
ac_add_options --enable-optimize
|
||||||
|
ac_add_options --enable-official-branding
|
||||||
|
|
||||||
|
-# Let's support GTK3 for ESR60
|
||||||
|
-ac_add_options --enable-default-toolkit=cairo-gtk3
|
||||||
|
+## Let's support GTK3 for ESR60
|
||||||
|
+#ac_add_options --enable-default-toolkit=cairo-gtk3
|
||||||
|
|
||||||
|
ac_add_options --disable-strip
|
||||||
|
ac_add_options --disable-install-strip
|
||||||
Loading…
Add table
Reference in a new issue