Hello !

Building BLFS svn-20050922, Kernel 2.6.12.5, gcc-4.0.1. Some feedback :

1. libgnome-2.10.0 fails to compile :
Reported error : "gnome-gconf.c:33: error: array type has incomplete element type"
Can be corrected with (see http://bugzilla.gnome.org/show_bug.cgi?id=302071) :
<patch>
diff -Naur libgnome-2.10.0.orig/libgnome/gnome-gconf.c libgnome-2.10.0/libgnome/gnome-gconf.c --- libgnome-2.10.0.orig/libgnome/gnome-gconf.c 2004-10-10 17:04:30.000000000 +0200
+++ libgnome-2.10.0/libgnome/gnome-gconf.c      2005-09-24 10:18:07.000000000 
+0200
@@ -30,6 +30,7 @@
 #define GCONF_ENABLE_INTERNALS
 #include <gconf/gconf.h>
 #include <gconf/gconf-client.h>
+#include <popt.h>
 extern struct poptOption gconf_options[];

 #include "gnome-i18nP.h"
</patch>

2. udftools-1.0.0b3 fails to compile :
Reported error : "wrudf.c:248: error: invalid lvalue in assignment"
Can be corrected with (correction found in http://debian.icpc.fukui-u.ac.jp/debian/pool/main/u/udftools/udftools_1.0.0b3-9.diff.gz) :
<patch>
diff -Naur udftools-1.0.0b3.orig/wrudf/wrudf.c udftools-1.0.0b3/wrudf/wrudf.c
--- udftools-1.0.0b3.orig/wrudf/wrudf.c 2002-11-26 08:18:51.000000000 +0100
+++ udftools-1.0.0b3/wrudf/wrudf.c      2005-09-24 10:31:06.000000000 +0200
@@ -245,7 +245,7 @@
} else if( strncmp( spm->partIdent.ident, UDF_ID_VIRTUAL, strlen(UDF_ID_VIRTUAL)) == 0 )
                virtualPartitionNum = i;
        }
-       (char*)spm += spm->partitionMapLength;
+       spm = (char*)spm + spm->partitionMapLength;
     }

     if( medium == CDR ) {
</patch>

3. gucharmap-1.4.4 requires gnome-doc-utils >= 0.3.2

4. Typo in LAME-3.96.1 / Command Explanations :
s/-enable-mp3x/--enable-mp3x/

5. Noticed an oddity (maybe ?) in /usr/lib/pkgconfig/pangoxft.pc :
Line 11 : "Cflags: -I${includedir}/pango-1.0 -I/usr/X11R6/include -I/usr/include/freetype2 -I/usr/include/freetype2/config"
But there is no /usr/include/freetype2/config directory on my system
There is a /usr/include/freetype2/freetype/config instead

6. Cairo-1.0.0 test suite produces lots of fails (20 of 56 tests failed) :
XFAIL: a8-mask
FAIL: caps-sub-paths
FAIL: clip-nesting
FAIL: clip-operator
FAIL: clip-twice
FAIL: dash-offset-negative
FAIL: fill-and-stroke
FAIL: fill-rule
XFAIL: filter-nearest-offset
FAIL: leaky-polygon
FAIL: line-width
FAIL: mask
FAIL: operator-source
FAIL: path-data
XFAIL: pixman-rotate
FAIL: self-copy
XFAIL: self-intersecting
FAIL: show-text-current-point
FAIL: text-antialias-gray
FAIL: text-antialias-subpixel
XFAIL: text-rotate
FAIL: transforms
FAIL: trap-clip
FAIL: unantialiased-shapes
FAIL: rel-path
Has anybody noticed something like this ?

Regards.
--
N. Peguiron / 050924
np [at] logma [dot] ch

--
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to