Re: [Fink-devel] Weird test failure in coreutils

2007-04-16 Thread Alexey Zakhlestin
Do you have the same filesystem type on all of your machines?

On 4/16/07, Martin Costabel <[EMAIL PROTECTED]> wrote:
> Building the new coreutils fails on two of my machines in the test phase:
>
> PASS: printf-hex
> pwd-long: at depth 29: No space left on device
> FAIL: pwd-long
>
> The error message is bogus: Both machines have several GB free on the
> partition. Also the inode usage is at less than 60%.
>
> I can repeat the failure with the following extract from the test
> program. This perl script creates nested subdirectories (256 deep with
> 31 char dir names). On two other machines (one ppc and one intel) where
> I tried this, there was no problem - except for getting rid of the
> directory afterwards ;-)
>
> On the two machines where I see the failure, I get
>
> % ./pwd-long-fail
> mkdir: at depth 30: No space left on device
>
> Here is the "pwd-long-fail" script if anyone wants to try:
>
> --
> #!/usr/bin/perl
> my $z = 'z' x 31;
> my $n = 256;
> my $i = 0;
> do
>{
>  mkdir $z, 0700
>or die "mkdir: at depth $i: $!\n";
>  chdir $z;
>}
> until (++$i == $n);
> 
>
> Has anyone seen such a failure before? Or should I file a bug with Apple?
>
> --
> Martin
>
>
>
> -
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> ___
> Fink-devel mailing list
> Fink-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/fink-devel
>


-- 
Alexey Zakhlestin
http://blog.milkfarmsoft.com/

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] Weird test failure in coreutils

2007-04-16 Thread Hanspeter Niederstrasser
Alexander Hansen wrote:
> On 4/16/07, Martin Costabel <[EMAIL PROTECTED]> wrote:
>> Building the new coreutils fails on two of my machines in the test phase:
>>
>> PASS: printf-hex
>> pwd-long: at depth 29: No space left on device
>> FAIL: pwd-long
>>
>> The error message is bogus: Both machines have several GB free on the
>> partition. Also the inode usage is at less than 60%.
>>
>> I can repeat the failure with the following extract from the test
>> program. This perl script creates nested subdirectories (256 deep with
>> 31 char dir names). On two other machines (one ppc and one intel) where
>> I tried this, there was no problem - except for getting rid of the
>> directory afterwards ;-)
>>
>> On the two machines where I see the failure, I get
>>
>> % ./pwd-long-fail
>> mkdir: at depth 30: No space left on device
>>
>> Here is the "pwd-long-fail" script if anyone wants to try:
>>
>> --
>> #!/usr/bin/perl
>> my $z = 'z' x 31;
>> my $n = 256;
>> my $i = 0;
>> do
>>{
>>  mkdir $z, 0700
>>or die "mkdir: at depth $i: $!\n";
>>  chdir $z;
>>}
>> until (++$i == $n);
>> 
>>
>> Has anyone seen such a failure before? Or should I file a bug with Apple?
>>
>> --
>> Martin


> I didn't get such a failure on my system (single-processor G4/800
> running 10.4.9).

WFM on 1.6GHz iMac G5 with 10.3.9

Hanspeter

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] Weird test failure in coreutils

2007-04-16 Thread Alexander Hansen
On 4/16/07, Martin Costabel <[EMAIL PROTECTED]> wrote:
> Building the new coreutils fails on two of my machines in the test phase:
>
> PASS: printf-hex
> pwd-long: at depth 29: No space left on device
> FAIL: pwd-long
>
> The error message is bogus: Both machines have several GB free on the
> partition. Also the inode usage is at less than 60%.
>
> I can repeat the failure with the following extract from the test
> program. This perl script creates nested subdirectories (256 deep with
> 31 char dir names). On two other machines (one ppc and one intel) where
> I tried this, there was no problem - except for getting rid of the
> directory afterwards ;-)
>
> On the two machines where I see the failure, I get
>
> % ./pwd-long-fail
> mkdir: at depth 30: No space left on device
>
> Here is the "pwd-long-fail" script if anyone wants to try:
>
> --
> #!/usr/bin/perl
> my $z = 'z' x 31;
> my $n = 256;
> my $i = 0;
> do
>{
>  mkdir $z, 0700
>or die "mkdir: at depth $i: $!\n";
>  chdir $z;
>}
> until (++$i == $n);
> 
>
> Has anyone seen such a failure before? Or should I file a bug with Apple?
>
> --
> Martin
>
>
>
I didn't get such a failure on my system (single-processor G4/800
running 10.4.9).

-- 
Alexander K. Hansen
(akh)
Fink User Liaison and Documenter

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


[Fink-devel] Weird test failure in coreutils

2007-04-16 Thread Martin Costabel
Building the new coreutils fails on two of my machines in the test phase:

PASS: printf-hex
pwd-long: at depth 29: No space left on device
FAIL: pwd-long

The error message is bogus: Both machines have several GB free on the 
partition. Also the inode usage is at less than 60%.

I can repeat the failure with the following extract from the test 
program. This perl script creates nested subdirectories (256 deep with 
31 char dir names). On two other machines (one ppc and one intel) where 
I tried this, there was no problem - except for getting rid of the 
directory afterwards ;-)

On the two machines where I see the failure, I get

% ./pwd-long-fail
mkdir: at depth 30: No space left on device

Here is the "pwd-long-fail" script if anyone wants to try:

--
#!/usr/bin/perl
my $z = 'z' x 31;
my $n = 256;
my $i = 0;
do
   {
 mkdir $z, 0700
   or die "mkdir: at depth $i: $!\n";
 chdir $z;
   }
until (++$i == $n);


Has anyone seen such a failure before? Or should I file a bug with Apple?

-- 
Martin



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] xmolwt-0.7-12

2007-04-16 Thread Martin Costabel
Marc Roussel wrote:
[]
> Seeing this now I feel a bit silly. I should have noticed that gmolwt was
> installed. I didn't realize that different names were used for the
> executable in different environments. I can of course use gmolwt, but it
> would seem sensible to create a symbolic link to xmolwt in this package to
> avoid problems with users like me looking for xmolwt.

Since there is no maintainer for this package any more, he can't defend 
himself, but I suppose that the original packager had the same dream 
that all packagers have, namely that users actually do read some of the 
information that comes with the package :-)

In this case, "fink info xmolwt" says the following:

" Usage Notes:
   Type at the command prompt 'gmolwt' for the gtk-gui version or 
'molwt' for
  the command line version."

And the home page of the program, 
http://www.st.hirosaki-u.ac.jp/~rmiya/xmolwt/xmolwt-e.html
contains this information:

" 3. How to use this program ?

3-1 X11 version

When you type, for Motif version,

 % xmolwt
or, for GTK+ version,
 % gmolwt
to run the program, calculator's window with GUI is appeared."

-- 
Martin







-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] xmolwt-0.7-12

2007-04-16 Thread Marc Roussel
On 4/16/07 7:33 AM, Alexander Hansen wrote:

> On 4/13/07, Marc Roussel <[EMAIL PROTECTED]> wrote:
>> 
>> 
>> --
>> Package manager version: 0.25.3
>> Distribution version: 0.8.1.cvs
>> i386
>> Mac OS X version: 10.4.9
>> Xcode version: 2.4
>> gcc version: 4.0.1 (Apple
>> Computer, Inc. build 5363)
>> make version: 3.80
>> Feedback Courtesy of
>> FinkCommander
>> 
>> 
>> As far as I can tell, all I get when I try to install xmolwt in Fink
>> commander is the documentation. The binary never gets installed. (I'm not
>> sure it even gets built.) Thanks in advance for looking into this.
>> 
> Please verify what actually gets installed via running
> 
> dpkg -L xmolwt

/.
/sw
/sw/bin
/sw/bin/gmolwt
/sw/share
/sw/share/doc
/sw/share/doc/xmolwt
/sw/share/doc/xmolwt/Readme
/sw/bin/molwt

Seeing this now I feel a bit silly. I should have noticed that gmolwt was
installed. I didn't realize that different names were used for the
executable in different environments. I can of course use gmolwt, but it
would seem sensible to create a symbolic link to xmolwt in this package to
avoid problems with users like me looking for xmolwt.

Marc R. Roussel, Professor home page:
people.uleth.ca/~roussel
Department of Chemistry and Biochemistry   email: [EMAIL PROTECTED]
University of Lethbridge   phone: +1 403 329 2326
Lethbridge, Alberta, Canada, T1K 3M4   fax: +1 403 329 2057



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] xmolwt-0.7-12

2007-04-16 Thread Alexander Hansen
On 4/13/07, Marc Roussel <[EMAIL PROTECTED]> wrote:
>
>
> --
> Package manager version: 0.25.3
> Distribution version: 0.8.1.cvs
> i386
> Mac OS X version: 10.4.9
> Xcode version: 2.4
> gcc version: 4.0.1 (Apple
> Computer, Inc. build 5363)
> make version: 3.80
> Feedback Courtesy of
> FinkCommander
>
>
> As far as I can tell, all I get when I try to install xmolwt in Fink
> commander is the documentation. The binary never gets installed. (I'm not
> sure it even gets built.) Thanks in advance for looking into this.
>
>
> Marc R. Roussel, Professor home page:
> people.uleth.ca/~roussel
> Department of Chemistry and Biochemistry   email: [EMAIL PROTECTED]
> University of Lethbridge   phone: +1 403 329 2326
> Lethbridge, Alberta, Canada, T1K 3M4   fax: +1 403 329 2057
>
>
>

Please verify what actually gets installed via running

dpkg -L xmolwt

and post the results back to the list.

-- 
Alexander K. Hansen
(akh)
Fink User Liaison and Documenter

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


Re: [Fink-devel] abiword-2.2.7-1003

2007-04-16 Thread Alexander Hansen
On 4/13/07, Luke Cotton <[EMAIL PROTECTED]> wrote:
> Dear Fink developer group,
>
> abiword crashes at the startup sequence for it. This is the startup
> messages for the package
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader
> module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or
> directory
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader
> module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or
> directory
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader
> module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or
> directory
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader
> module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or
> directory
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image
> loader: Image type 'xpm' is not supported
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:
> assertion `pixbuf != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:
> assertion `G_IS_OBJECT (object)' failed
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader
> module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or
> directory
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image
> loader: Image type 'xpm' is not supported
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:
> assertion `pixbuf != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:
> assertion `G_IS_OBJECT (object)' failed
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader
> module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or
> directory
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image
> loader: Image type 'xpm' is not supported
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:
> assertion `pixbuf != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:
> assertion `G_IS_OBJECT (object)' failed
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader
> module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or
> directory
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image
> loader: Image type 'xpm' is not supported
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:
> assertion `pixbuf != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:
> assertion `G_IS_OBJECT (object)' failed
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader
> module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or
> directory
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image
> loader: Image type 'xpm' is not supported
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:
> assertion `pixbuf != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:
> assertion `G_IS_OBJECT (object)' failed
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader
> module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or
> directory
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image
> loader: Image type 'xpm' is not supported
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:
> assertion `pixbuf != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion
> `icon_set != NULL' failed
>
> (AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:
> assertion `G_IS_OBJECT (object)' failed
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader
> module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or
> directory
>
> (AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image
> loader: Image type 'xpm' is not supported
>

Re: [Fink-devel] gnucash-1.8.11-21

2007-04-16 Thread Alexander Hansen
On 4/15/07, Dean Webber <[EMAIL PROTECTED]> wrote:
> Hi Guys
>
> I think there is a new version of Gnucash. But my current status in
> the fink commander is "current", when will the new version be available?
>
>

gnucash2 has been in the unstable tree for a few months.  However,
you're on the deprecated 10.4-transitional tree, according to your
Distribution version, and that tree isn't being updated anymore.

There's an "update script" link at http://fink.sf.net, below the
heading "2006-07-24: Reminder: "10.4-transitional" Tree Unsupported on
August 1st, 2006" to make the update less painful.

Note that due to changes in 10.4.9, you'll need to run the script with

sudo env PERL5LIB=$PERL5LIB ./update.pl

rather than just

./update.pl

as the README in the source bundle for the updater says.

> --
> Package manager version: 0.24.26
> Distribution version: 0.8.0.rsync powerpc
> Mac OS X version: 10.4.9
> Xcode version: 2.0
> gcc version: 4.0.0 20041026 (Apple Computer, Inc. build 4061)
> make version: 3.80
> Feedback Courtesy of FinkCommander
>


-- 
Alexander K. Hansen
(akh)
Fink User Liaison and Documenter

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


[Fink-devel] xmolwt-0.7-12

2007-04-16 Thread Marc Roussel


--
Package manager version: 0.25.3
Distribution version: 0.8.1.cvs
i386
Mac OS X version: 10.4.9
Xcode version: 2.4
gcc version: 4.0.1 (Apple
Computer, Inc. build 5363)
make version: 3.80
Feedback Courtesy of
FinkCommander


As far as I can tell, all I get when I try to install xmolwt in Fink
commander is the documentation. The binary never gets installed. (I'm not
sure it even gets built.) Thanks in advance for looking into this.


Marc R. Roussel, Professor home page:
people.uleth.ca/~roussel
Department of Chemistry and Biochemistry   email: [EMAIL PROTECTED]
University of Lethbridge   phone: +1 403 329 2326
Lethbridge, Alberta, Canada, T1K 3M4   fax: +1 403 329 2057



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel


[Fink-devel] abiword-2.2.7-1003

2007-04-16 Thread Luke Cotton
Dear Fink developer group,

abiword crashes at the startup sequence for it. This is the startup  
messages for the package

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader  
module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or  
directory

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader  
module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or  
directory

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader  
module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or  
directory

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader  
module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or  
directory

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image  
loader: Image type 'xpm' is not supported

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:  
assertion `pixbuf != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:  
assertion `G_IS_OBJECT (object)' failed

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader  
module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or  
directory

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image  
loader: Image type 'xpm' is not supported

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:  
assertion `pixbuf != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:  
assertion `G_IS_OBJECT (object)' failed

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader  
module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or  
directory

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image  
loader: Image type 'xpm' is not supported

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:  
assertion `pixbuf != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:  
assertion `G_IS_OBJECT (object)' failed

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader  
module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or  
directory

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image  
loader: Image type 'xpm' is not supported

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:  
assertion `pixbuf != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:  
assertion `G_IS_OBJECT (object)' failed

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader  
module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or  
directory

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image  
loader: Image type 'xpm' is not supported

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:  
assertion `pixbuf != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:  
assertion `G_IS_OBJECT (object)' failed

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader  
module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or  
directory

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image  
loader: Image type 'xpm' is not supported

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:  
assertion `pixbuf != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_unref: assertion  
`icon_set != NULL' failed

(AbiWord-2.2:4846): GLib-GObject-CRITICAL **: g_object_unref:  
assertion `G_IS_OBJECT (object)' failed

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Can not open pixbuf loader  
module file '/sw/etc/gtk-2.0/gdk-pixbuf.loaders': No such file or  
directory

(AbiWord-2.2:4846): GdkPixbuf-WARNING **: Error loading XPM image  
loader: Image type 'xpm' is not supported

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_set_new_from_pixbuf:  
assertion `pixbuf != NULL' failed

(AbiWord-2.2:4846): Gtk-CRITICAL **: gtk_icon_factory_add: assertion  
`icon

[Fink-devel] gnucash-1.8.11-21

2007-04-16 Thread Dean Webber
Hi Guys

I think there is a new version of Gnucash. But my current status in  
the fink commander is "current", when will the new version be available?


--
Package manager version: 0.24.26
Distribution version: 0.8.0.rsync powerpc
Mac OS X version: 10.4.9
Xcode version: 2.0
gcc version: 4.0.0 20041026 (Apple Computer, Inc. build 4061)
make version: 3.80
Feedback Courtesy of FinkCommander

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Fink-devel mailing list
Fink-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-devel