MorphOS Port of NetSurf - licencing issue
by Rob Kendrick
I sent the following mail to ilkleht(a)isoveli.org and
aminet(a)aminet.net. I also attempted to CC the mailing list, but I
suck. So here it is again.
Hi,
I just noticed http://aminet.net/comm/www/netsurf-morphos.readme and am
happy to see that a port of NetSurf to another OS has been made.
However, the licence under which you received the sources (in the case
of Ilkka Lehtoranta <ilkleht(a)isoveli.org>) or the binaries (in the case
of aminet) requires you to also provide an offer of the sources for and
binaries you distribute.
I'd appreciate it if this offer was made. I'd especially be interested
in a copy of the sources so I might diff them to our trunk and
integrate any changes to enable the easier maintenance of this new port.
Thanks for your time,
B.
14 years, 2 months
Re: MorphOS Port of NetSurf - licencing issue
by Rob Kendrick
On Thu, 15 Jan 2009 07:40:11 +0200 (EET)
Ilkka Lehtoranta <ilkleht(a)isoveli.org> wrote:
> On Wed, 14 Jan 2009, Rob Kendrick wrote:
>
> > Hi,
> >
> > I just noticed http://aminet.net/comm/www/netsurf-morphos.readme
> > and am happy to see that a port of NetSurf to another OS has been
> > made.
> >
> > However, the licence under which you received the sources (in the
> > case of Ilkka Lehtoranta <ilkleht(a)isoveli.org>) or the binaries (in
> > the case of aminet) requires you to also provide an offer of the
> > sources for and binaries you distribute.
> >
> > I'd appreciate it if this offer was made. I'd especially be
> > interested in a copy of the sources so I might diff them to our
> > trunk and integrate any changes to enable the easier maintenance of
> > this new port.
>
> You are right. The archive should have contained COPYING file at
> least to note that it is GPL'd. I had intention to contact you
> NetSurf developers right after uploading my port to Aminet but I have
> been busy with my daytime job so here is the source archive:
>
> http://www.lehtoranta.net/netsurf-src.lha
Cool. Can I have this in .tar.gz? :)
> Anyway I will be on the #netsurf when I have time since I'd like to
> have write access to SVN also :)
Sure - we'll see what we can do.
B.
14 years, 2 months
Re: r5957 dynis - in /trunk/libnsgif: libnsgif.c libnsgif.h
by John Tytgat
In message <courier.495F0D38.00004765(a)atlanta.semichrome.net> you wrote:
> Author: dynis
> Date: Sat Jan 3 01:01:10 2009
> New Revision: 5957
>
> [...]
> + /* Check if the frame data runs off the end of the file
> + */
> + if ((int)(gif_bytes - block_size) < 0) {
Understanding the difference between signed vs unsigned overflow in C is
not always intuitive and obvious so I'm a bit puzzled why we wouldn't go
for the more obvious:
if (gif_bytes < (unsigned int)block_size) {
with gif_bytes being unsigned and block_size signed.
John.
--
John Tytgat
joty(a)netsurf-browser.org
14 years, 2 months