Topic: Howto build iceweasel
Good day everybody,
after some searching, the most recent document I have found to guide on building Iceweasel on a generic GNU/Linux system is:
https://forums.hyperbola.info/viewtopic … 2354#p2354
However, it looks a bit outdated and not that detailed. I am trying to compile in my system without success. So far, I have this:
git clone https://github.com/RealityRipple/UXP.git
cd UXP && mkdir applications
cd applications
git clone https://git.hyperbola.info:50100/software/iceweasel-uxp.git
cd ..
echo 'ac_add_options --enable-application=iceweasel-uxp' >> .mozconfig
echo 'ac_add_options --disable-pulseaudio' >> .mozconfig
echo 'ac_add_options --disable-debug' >> .mozconfig
echo 'ac_add_options --enable-strip' >> .mozconfig
echo 'ac_add_options --disable-sync' >> .mozconfig
echo 'ac_add_options --disable-updater' >> .mozconfig
echo 'ac_add_options --disable-crashreporter' >> .mozconfig
echo 'ac_add_options --disable-maintenance-service' >> .mozconfig
echo 'ac_add_options --disable-tests' >> .mozconfig
echo 'ac_add_options --disable-ipdl-tests' >> .mozconfig
echo 'ac_add_options --disable-verify-mar' >> .mozconfig
./mach build
...
./mach run
Unfortunatelly, after some checks I get:
unknown project iceweasel-uxp
Of course, not hurry, just in case you have an idea about the missing steps.
Regards