dillo-3.0.3 release is ready for download!
Hi there, The final dillo-3.0.3.tar.bz2 is ready for download [1]. :) Please notice that it has not been announced yet and the web site still needs the last touches before making it public. The idea is for you to download and compile/run test it. It's the same rc2 with the release date updated. Just that! If positive feedback comes along the way (it compoiles and runs) it may be announced tomorrow "urbi et orbi". [1] http://www.dillo.org/download/ -- Cheers Jorge.-
On Wed, Apr 17, corvid wrote:
As an aside, I note that unicode-test is just looping endlessly.
"make -j 4 && test/unicode-test | head -100 | less" shows that the last part fails: testing fl_utf8fwd with strings which are not 0-terminated. I do not remember whether this was my purpose, but this is never used in the rest of the code; instead, FltkPlatform::nextGlyph calls strlen. So, this is confusing but harmless. (But should probably be fixed.) Sebastian
Hi, On Wed, Apr 17, 2013 at 11:48:17AM -0300, Jorge Arellano Cid wrote:
The final dillo-3.0.3.tar.bz2 is ready for download [1]. :) [...] If positive feedback comes along the way (it compoiles and runs) it may be announced tomorrow "urbi et orbi".
Debian package is in the works. Compiled fine already multiple times. :-) Kind regards, Axel -- /~\ Plain Text Ribbon Campaign | Axel Beckert \ / Say No to HTML in E-Mail and News | abe at deuxchevaux.org (Mail) X See http://www.asciiribbon.org/ | abe at noone.org (Mail+Jabber) / \ I love long mails: http://email.is-not-s.ms/ | http://noone.org/abe/ (Web)
Hi, On Wed, Apr 17, 2013 at 06:09:35PM +0200, Axel Beckert wrote:
On Wed, Apr 17, 2013 at 11:48:17AM -0300, Jorge Arellano Cid wrote:
The final dillo-3.0.3.tar.bz2 is ready for download [1]. :) [...] If positive feedback comes along the way (it compoiles and runs) it may be announced tomorrow "urbi et orbi".
Debian package is in the works. Compiled fine already multiple times. :-)
It failed to build on Debian GNU/Hurd since PATH_MAX seems only optional in POSIX and not defined on Hurd. (See also http://www.gnu.org/software/hurd/hurd/porting/guidelines.html) Full build log at https://buildd.debian.org/status/fetch.php?pkg=dillo&arch=hurd-i386&ver=3.0.3-1&stamp=1366249372 3.0.2?compiled fine about 11 months ago: https://buildd.debian.org/status/fetch.php?pkg=dillo&arch=hurd-i386&ver=3.0.2-2%2Bb1&stamp=1337860880 The following patch by Pino Toscano fixes this issue. I've applied it to the Debian package for now, but would be happy if it (or a similar patch) would be incorporated into Dillo officially. http://patch-tracker.debian.org/patch/series/view/dillo/3.0.3-2/FTBFS-on-hur... Otherwise Dillo 3.0.3 works fine as expected. :-) Kind regards, Axel -- /~\ Plain Text Ribbon Campaign | Axel Beckert \ / Say No to HTML in E-Mail and News | abe at deuxchevaux.org (Mail) X See http://www.asciiribbon.org/ | abe at noone.org (Mail+Jabber) / \ I love long mails: http://email.is-not-s.ms/ | http://noone.org/abe/ (Web)
On Mon, Apr 22, Axel Beckert wrote:
On Wed, Apr 17, 2013 at 06:09:35PM +0200, Axel Beckert wrote:
Debian package is in the works. Compiled fine already multiple times. :-)
It failed to build on Debian GNU/Hurd since PATH_MAX seems only optional in POSIX and not defined on Hurd. (See also http://www.gnu.org/software/hurd/hurd/porting/guidelines.html)
Full build log at https://buildd.debian.org/status/fetch.php?pkg=dillo&arch=hurd-i386&ver=3.0.3-1&stamp=1366249372
3.0.2?compiled fine about 11 months ago: https://buildd.debian.org/status/fetch.php?pkg=dillo&arch=hurd-i386&ver=3.0.2-2%2Bb1&stamp=1337860880
The following patch by Pino Toscano fixes this issue. I've applied it to the Debian package for now, but would be happy if it (or a similar patch) would be incorporated into Dillo officially.
http://patch-tracker.debian.org/patch/series/view/dillo/3.0.3-2/FTBFS-on-hur...
Has been applied.
Otherwise Dillo 3.0.3 works fine as expected. :-)
Good! Sebastian
On Wed, Apr 17, 2013 at 11:48:17AM -0300, Jorge Arellano Cid wrote:
Hi there,
The final dillo-3.0.3.tar.bz2 is ready for download [1]. :)
Please notice that it has not been announced yet and the web site still needs the last touches before making it public. The idea is for you to download and compile/run test it. It's the same rc2 with the release date updated. Just that!
If positive feedback comes along the way (it compoiles and runs) it may be announced tomorrow "urbi et orbi".
Works well here on DragonFly BSD! Johannes
On Wed, Apr 17, Jorge Arellano Cid wrote:
Hi there,
The final dillo-3.0.3.tar.bz2 is ready for download [1]. :)
Please notice that it has not been announced yet and the web site still needs the last touches before making it public. The idea is for you to download and compile/run test it. It's the same rc2 with the release date updated. Just that!
If positive feedback comes along the way (it compoiles and runs) it may be announced tomorrow "urbi et orbi".
Had no problems on Debian GNU/Linux wheezy, also not with different prefixes. Well, there is one glitch. If you compile dillo, call configure again with another prefix, and call "make" again, dillo is not compiled again: $ ./configure --prefix ~/foo $ make $ make install $ ./configure --prefix ~/bar $ make $ make install Both versions, ~/foo/bin/dillo and ~/bar/bin/dillo, will (e. g.) read hyphenation patterns from ~/foo/lib/dillo/hyphenation. Rather exotic case, though, and "make clean" at the right point will fix this. Sebastian
On Wed, Apr 17, 2013 at 09:29:50PM +0200, Sebastian Geerken wrote:
On Wed, Apr 17, Jorge Arellano Cid wrote:
Hi there,
The final dillo-3.0.3.tar.bz2 is ready for download [1]. :)
Please notice that it has not been announced yet and the web site still needs the last touches before making it public. The idea is for you to download and compile/run test it. It's the same rc2 with the release date updated. Just that!
If positive feedback comes along the way (it compoiles and runs) it may be announced tomorrow "urbi et orbi".
Had no problems on Debian GNU/Linux wheezy, also not with different prefixes.
Well, there is one glitch. If you compile dillo, call configure again with another prefix, and call "make" again, dillo is not compiled again:
$ ./configure --prefix ~/foo $ make $ make install $ ./configure --prefix ~/bar $ make $ make install
Both versions, ~/foo/bin/dillo and ~/bar/bin/dillo, will (e. g.) read hyphenation patterns from ~/foo/lib/dillo/hyphenation.
Rather exotic case, though, and "make clean" at the right point will fix this.
OK, I think this is not a show stopper. With the unicode problem I'm not sure what you mean. i.e. Do we need to fix it and prepare rc3? -- Cheers Jorge.-
On Wed, Apr 17, Jorge Arellano Cid wrote:
On Wed, Apr 17, 2013 at 09:29:50PM +0200, Sebastian Geerken wrote:
[...]
Rather exotic case, though, and "make clean" at the right point will fix this.
OK, I think this is not a show stopper.
That's also my opinion.
With the unicode problem I'm not sure what you mean. i.e. Do we need to fix it and prepare rc3?
This is only a test, which is not working; dillo itself has no problems. I'd leave this for 3.0.4. Sebastian
Hi there, OK, the Freecode (former freshmeat) announcement was submitted. I reviewed the website updating things here and there. Core devs may freely review/improve the site contents. The actual announcement will most probably be upon display tomorrow. Good! -- Cheers Jorge.-
participants (7)
-
abe@deuxchevaux.org
-
corvid@lavabit.com
-
Hole.destructor@gmx.de
-
jcid@dillo.org
-
Johannes.Hofmann@gmx.de
-
me@v4hn.de
-
sgeerken@dillo.org