1

Topic: Cannot build IceWeasel-UXP 2.9

If i try to build it with UXP 20200427, then build immediately stops with these messages: http://oscomp.hu/depot/iceweasel-uxp_2. … _build.log
If i try to build it with UXP 28.8.4, then build succeeds, but packaging fails with these messages: http://oscomp.hu/depot/iceweasel-uxp_2. … ackage.log

My .mozconfig:

mk_add_options AUTOCLOBBER=1
mk_add_options MOZ_MAKE_FLAGS="-j7"
ac_add_options --enable-application=iceweasel-uxp
ac_add_options --enable-default-toolkit=cairo-gtk2
ac_add_options --enable-alsa
ac_add_options --disable-pulseaudio
ac_add_options --enable-optimize=-O2
ac_add_options --enable-strip
ac_add_options --disable-debug
ac_add_options --enable-release
ac_add_options --disable-sync
ac_add_options --disable-verify-mar
ac_add_options --disable-updater
ac_add_options --disable-crashreporter
ac_add_options --disable-maintenance-service
ac_add_options --disable-tests
ac_add_options --disable-ipdl-tests

Any idea what goes wrong?

2

Re: Cannot build IceWeasel-UXP 2.9

tch wrote:

If i try to build it with UXP 20200427, then build immediately stops with these messages: http://oscomp.hu/depot/iceweasel-uxp_2. … _build.log
If i try to build it with UXP 28.8.4, then build succeeds, but packaging fails with these messages: http://oscomp.hu/depot/iceweasel-uxp_2. … ackage.log

My .mozconfig:

mk_add_options AUTOCLOBBER=1
mk_add_options MOZ_MAKE_FLAGS="-j7"
ac_add_options --enable-application=iceweasel-uxp
ac_add_options --enable-default-toolkit=cairo-gtk2
ac_add_options --enable-alsa
ac_add_options --disable-pulseaudio
ac_add_options --enable-optimize=-O2
ac_add_options --enable-strip
ac_add_options --disable-debug
ac_add_options --enable-release
ac_add_options --disable-sync
ac_add_options --disable-verify-mar
ac_add_options --disable-updater
ac_add_options --disable-crashreporter
ac_add_options --disable-maintenance-service
ac_add_options --disable-tests
ac_add_options --disable-ipdl-tests

Any idea what goes wrong?

I waited a bit to reply, but I am curious, what operating system you using? is it a bsd type?

HyperbolaBSD: The Future of Secure Libre Lightweight Operating Systems!

3

Re: Cannot build IceWeasel-UXP 2.9

Hi,

Try building it as follows. First, download the sources from here:

$ git clone https://github.com/gnuinos/iceweasel-uxp.git

Now, download the following patch:

$ wget https://www.gnuinos.org/iceweasel-uxp/patch.diff

Go to the git repository:

$ cd iceweasel-uxp

Apply the patch by typing:

$ patch build/moz.configure/init.configure < ../patch.diff

Create your .mozconfig file, and build the project afterwards:

./mach build

Good luck :)

4

Re: Cannot build IceWeasel-UXP 2.9

For the record: Official git repo for iceweasel-uxp is - https://git.hyperbola.info:50100/softwa … l-uxp.git/

And what you are experiencing is the upstream change that made applications build "comm-style", patch already exists here: https://git.hyperbola.info:50100/packag … weasel-uxp (init-configure-patch.patch)

5

Re: Cannot build IceWeasel-UXP 2.9

Ok, thanks for the links.