Re: pointyhat is building for 5.5 but claiming 8.0

2008-01-09 Thread Boris Samorodov
On Wed, 09 Jan 2008 00:28:45 +0100 Kris Kennaway wrote: > Pav Lucistnik wrote: > > Boris Samorodov píše v st 09. 01. 2008 v 02:16 +0300: > >> On Tue, 08 Jan 2008 23:10:45 +0100 Pav Lucistnik wrote: > >> > > No, the port is using sysctl(2) to query the OS version which cannot > > be wrapped

[patch] glib20, UTF-8 and string collation

2008-01-09 Thread Alexandre "Sunny" Kovalenko
I have seen recent commit WRT string collation in devel/glib20 by marcus, so I have decided to check if there is an interest to fix SEGV in g_utf8_collate when it is given 8-bit non-UTF-8 string(s) to collate. Good (but by no means only) example of this would be using Evolution to open mailbox wit

Re: [patch] glib20, UTF-8 and string collation

2008-01-09 Thread Joe Marcus Clarke
On Wed, 2008-01-09 at 10:53 -0500, Alexandre "Sunny" Kovalenko wrote: > I have seen recent commit WRT string collation in devel/glib20 by > marcus, so I have decided to check if there is an interest to fix SEGV > in g_utf8_collate when it is given 8-bit non-UTF-8 string(s) to collate. Any commits

Re: pointyhat is building for 5.5 but claiming 8.0

2008-01-09 Thread Kris Kennaway
Boris Samorodov wrote: On Wed, 09 Jan 2008 00:28:45 +0100 Kris Kennaway wrote: Pav Lucistnik wrote: Boris Samorodov píše v st 09. 01. 2008 v 02:16 +0300: On Tue, 08 Jan 2008 23:10:45 +0100 Pav Lucistnik wrote: No, the port is using sysctl(2) to query the OS version which cannot be wrapped.

Re: pointyhat is building for 5.5 but claiming 8.0

2008-01-09 Thread Boris Samorodov
On Wed, 09 Jan 2008 19:52:20 +0100 Kris Kennaway wrote: > Boris Samorodov wrote: > > On Wed, 09 Jan 2008 00:28:45 +0100 Kris Kennaway wrote: > > > >> Pav Lucistnik wrote: > >>> Boris Samorodov píše v st 09. 01. 2008 v 02:16 +0300: > On Tue, 08 Jan 2008 23:10:45 +0100 Pav Lucistnik wrote: > >>>

noip startup script

2008-01-09 Thread Andrea Venturoli
Hello. I installed the latest version of this port and it won't start automatically, after the script was converted to the new rc system some days ago. I put noip_enable="YES" in /etc/rc.conf and this seems to get through: # /usr/local/etc/rc.d/noip rcvar # noip $noip_enable=YES However the

Re: [PATCH] devel/jtag fails to build if Shockwave Flash is installed

2008-01-09 Thread Stanislav Sedov
On Fri, Jan 04, 2008 at 04:48:32PM + Bruce M Simpson mentioned: > Include paths get mixed up by the build -- it will always look in > /usr/local/include first, this is explicit, and it incorrectly sees the > Shockwave Flash includes. > Fixed! Thanks for info. -- Stanislav Sedov ST4096-RI

Re: [patch] glib20, UTF-8 and string collation

2008-01-09 Thread Alexandre "Sunny" Kovalenko
On Wed, 2008-01-09 at 12:35 -0500, Joe Marcus Clarke wrote: > On Wed, 2008-01-09 at 10:53 -0500, Alexandre "Sunny" Kovalenko wrote: > > I have seen recent commit WRT string collation in devel/glib20 by > > marcus, so I have decided to check if there is an interest to fix SEGV > > in g_utf8_collat

Re: [patch] glib20, UTF-8 and string collation

2008-01-09 Thread Joe Marcus Clarke
On Wed, 2008-01-09 at 19:40 -0500, Alexandre "Sunny" Kovalenko wrote: > On Wed, 2008-01-09 at 12:35 -0500, Joe Marcus Clarke wrote: > > On Wed, 2008-01-09 at 10:53 -0500, Alexandre "Sunny" Kovalenko wrote: > > > I have seen recent commit WRT string collation in devel/glib20 by > > > marcus, so I

Re: [patch] glib20, UTF-8 and string collation

2008-01-09 Thread Alexandre "Sunny" Kovalenko
On Wed, 2008-01-09 at 20:16 -0500, Joe Marcus Clarke wrote: > On Wed, 2008-01-09 at 19:40 -0500, Alexandre "Sunny" Kovalenko wrote: > > On Wed, 2008-01-09 at 12:35 -0500, Joe Marcus Clarke wrote: > > > On Wed, 2008-01-09 at 10:53 -0500, Alexandre "Sunny" Kovalenko wrote: > > > > I have seen rece

Portmaster 2.0-beta2 with SU_CMD available for testing

2008-01-09 Thread Doug Barton
Ok, the SU_CMD stuff is finally done! This turned out to be a little tougher than I thought, for reasons I'll explain below. First a bug report. Doug Barton wrote: > This is a long message, so if you want to jump into using the new > version that's fine, but before you do anything else, please do

Re: Portmaster 2.0-beta2 with SU_CMD available for testing

2008-01-09 Thread Doug Barton
... and of course I forgot the URL, sorry. http://dougbarton.us/portmaster Doug -- This .signature sanitized for your protection ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, s

Re: noip startup script

2008-01-09 Thread Scot Hetzel
On 1/9/08, Andrea Venturoli <[EMAIL PROTECTED]> wrote: > Hello. > I installed the latest version of this port and it won't start > automatically, after the script was converted to the new rc system some > days ago. > > I put noip_enable="YES" in /etc/rc.conf and this seems to get through: > > # /us

Re: [patch] glib20, UTF-8 and string collation

2008-01-09 Thread Alexander Nedotsukov
Alexandre, The problem you exposed have its roots in Evo code. g_utf8_* stuff defined to work on *utf-8* strings only and have undefined behaviour on MBCS strings. It may sound stupid but crashes are allowed in this case :-) Even we apply your latest patch the true problem solution will be on

Re: [patch] glib20, UTF-8 and string collation

2008-01-09 Thread Alexandre "Sunny" Kovalenko
On Thu, 2008-01-10 at 13:18 +0900, Alexander Nedotsukov wrote: > Alexandre, > > The problem you exposed have its roots in Evo code. g_utf8_* stuff > defined to work on *utf-8* strings only and have undefined behaviour on > MBCS strings. It may sound stupid but crashes are allowed in this case

Re: [patch] glib20, UTF-8 and string collation

2008-01-09 Thread Alexander Nedotsukov
Alexandre "Sunny" Kovalenko wrote: On Thu, 2008-01-10 at 13:18 +0900, Alexander Nedotsukov wrote: Alexandre, The problem you exposed have its roots in Evo code. g_utf8_* stuff defined to work on *utf-8* strings only and have undefined behaviour on MBCS strings. It may sound stupid but cras

bsdpan packages

2008-01-09 Thread Piotr
hi I have so many [B]bsdan[/B] packages installed on my freeBSD 6.2-RELEASE-p9 where come these packages from ? # ls -l /var/db/pkg total 22556 drwxr-xr-x 2 root wheel 512 Jan 10 00:52 apr-gdbm-db42-1.2.8_2 drwxr-xr-x 2 root wheel 512 Jan 9 20:45 bsdpan-Class-ErrorHandler-0.01 d

INDEX build failed for 5.x

2008-01-09 Thread Erwin Lansing
INDEX build failed with errors: Generating INDEX-5 - please wait..pkg_info: not found pkg_info: not found pkg_info: not found Done. make_index: gnucash-2.2.2: no entry for /usr/ports/devel/goffice04 make_index: gnucash-2.2.2: no entry for /usr/ports/devel/goffice04 make_index: gchemutils-0.8.5_1: