bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Problems while installing fontutils-0.7


From: Robert Wirth
Subject: Problems while installing fontutils-0.7
Date: Fri, 05 Mar 2004 16:36:55 +0100

Hi!

I got some problems when installing fontutils 0.7.

My system is a Solaris 9, Xfree 4.3/X11-6.6, gcc-3.2.2.  Configured a follows

> rm -f config.cache ; ./configure --prefix=/opt/gnu --enable-static 
> --enable-shared --with-gnu-as --with-gnu-ld --x-includes=/opt/X11/include 
> --x-libraries=/opt/X11/lib --with-x

The installation failed due to 3 problems with the existing (rather actual)
Xfree system.  Obviously, some functions definitions of X components have
changed.

The problems (and possible solutions of mine) in detail:


widgets/Form.c, Line 240
------------------------
        (*((FormWidgetClass)w->core.widget_class)->form_class.layout)
            ( w, w->core.width, w->core.height );

doesn't match the function definition of Athena Widgets.  A fourth
argument is needed, a boolean flag.  Change to

            ( w, w->core.width, w->core.height, False );

compiled well. But don't know whether "False" is a logically correct value.



widgets/Viewport.c, Line 351
----------------------------
            (*((ViewportWidgetClass)w->core.widget_class)->form_class.layout)
                ( (FormWidget)w, w->core.width, w->core.height );

same problem as above. Change to

                ( (FormWidget)w, w->core.width, w->core.height, False );

compiled well. But don't know whether "False" is a logically correct value.



linking of xbfe/xbfe failed
---------------------------
        /opt/X11/lib/libXaw.so: undefined reference to `XpmReadFileToPixmap'

added -lXpm to X_sys_libraries in data/defs.make. Linked well.



Best regards,

        Robert Wirth

--------------------------------------------------------
++ German Research Center for Artificial Intelligence ++
++    I N F R A  -  S T R U C T U R E  -  G R O U P   ++
--------------------------------------------------------
DFKI GmbH, ISG, Stuhlsatzenhausweg 3, 66123 Saarbruecken
Tel.: +49-681-302-5572/-5514/-5078 Fax: +49-681-302-5341 
<URL>:  http://www.dfki.de/isg/    email: address@hidden
--------------------------------------------------------






reply via email to

[Prev in Thread] Current Thread [Next in Thread]