[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: merge
> Yes, so I expect Dr Genius to do spreadsheets, and change its name to
> Dr Genieric.
> Anyhow, there are libxml2 and libxml2-devel rpms at the gnome ftp
> site, under /pub/GNOME/contrib/redhat/i386/Base
> I downloaded those rpms, and I still had the problem with libxml.
> Then I installed the rpms, and that seemed to help things a lot.
> However, the libxml-devel had the *.h files in /usr/include/gnome-xml,
> while the libxml2-devel has the *.h files in /usr/include/libxml.
This doesn't matter really because we use 'xml-config --cflads' to
determine the include path.
> So some of the sources (at least canvas.cc) have lines
> #include <gnome-xml/*.h>
> that have to be changed (for me, at least) to
> #include <libxml/*.h>
So this is bad, it's preferable <*.h> to use. The include path
are setup up at congigure time by 'xml-config --clfags'. On my station
it return it return:
-I/usr/local/include/libxml -I/usr/local/include
so #include <libxml/.*> will work and #include <*.h> also.
Hilaire
- Follow-Ups:
- Re: merge
- From: Hilaire Fernandes <hilaire@seul.org>
- References:
- merge
- From: Hilaire Fernandes <hilaire@seul.org>
- Re: merge
- From: Laurent Gauthier <Laurent.Gauthier@alcatel.fr>
- Re: merge
- From: Hilaire Fernandes <hilaire@seul.org>
- Re: merge
- From: Laurent Gauthier <Laurent.Gauthier@alcatel.fr>
- Re: merge
- From: Jay Belanger <belanger@truman.edu>