RSS/Atom feed Twitter
Site is read-only, email is disabled

working Window$ XP environment?

This discussion is connected to the gimp-docs-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

2 of 2 messages available
Toggle history

Please log in to manage your subscriptions.

working Window$ XP environment? MichaelHoelzen@aol.com 22 Nov 08:30
  working Window$ XP environment? Roman Joost 22 Nov 09:11
MichaelHoelzen@aol.com
2005-11-22 08:30:04 UTC (over 18 years ago)

working Window$ XP environment?

Hi all,

can anybody help to get a working environment under Windows XP just to have the german xml converted to html?
i have had a look at _http://developer.gimp.org/HACKING_ (http://developer.gimp.org/HACKING) , _http://wiki.gimp.org/gimp/TipsForContributing_ (http://wiki.gimp.org/gimp/TipsForContributing) and some other sources to be succesful
i've got the following running:
msys 1.0.11-2004.04.30-1
msysDTK-1.0.1
mingw-2.0.0-3
libxml2-2.6.20.win32
libxslt-1.1.14.win32
docbook-xsl-1.69.1
docbookx.dtd of docbook 4.3

$ c++ --version
c++.exe (GCC) 3.2 (mingw special 20020817-1) Copyright (C) 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ perl --version
This is perl, v5.6.1 built for msys
Copyright 1987-2001, Larry Wall

$ autoconf --version
autoconf (GNU Autoconf) 2.59
Written by David J. MacKenzie and Akim Demaille.
$ automake --version
automake (GNU automake) 1.9.6
Written by Tom Tromey .

$ libtool --version
ltmain.sh (GNU libtool) 1.5.6 (1.1220.2.94 2004/04/10 16:27:27)
$ xsltproc --version
Using libxml 20620CVS2538, libxslt 10114CVS1011 and libexslt 812CVS1011 xsltproc was compiled against libxml 20619, libxslt 10114 and libexslt 812 libxslt 10114 was compiled against libxml 20619 libexslt 812 was compiled against libxml 20619

But i get a lot of errors trying to configure and make the: pkg-config-0.20
intltool-0.34.1
gtk-doc-1.4

(missing alloca.h, wait.h, setresuid...just to give a small example)

so the "./autogen" don't work correctly.
with:
ALL_LINGUAS=de
export ALL_LINGUAS

and:
./autogen.sh --without-gimp --with-xsl=D:/Archive/xml/docbook-xsl-1.69.1
i get the:
" Now type 'make' to compile gimp-help-2."
and i:
$ make
*** Creating directories ***
-- Profiling XML for de
I/O error : Attempt to load network entity _http://docbook.sourceforge.net/release/xsl/current/profiling/profile.xsl_ (http://docbook.sourceforge.net/release/xsl/current/profiling/profile.xsl) warning: failed to load external entity "_http://docbook.sourceforge.net/release/xsl/current/profiling/profile.xsl_ (http://docbook.sourceforge.net/release/xsl/current/profiling/profile.xsl) " compilation error: file ../stylesheets/profile.xsl line 5 element import xsl:import : unable to load
_http://docbook.sourceforge.net/release/xsl/current/profiling/profile.xsl_ (http://docbook.sourceforge.net/release/xsl/current/profiling/profile.xsl) -- Validating XML for de number of errors: 0 *** Validating profiled XML ***
Log files of the validation process have been generated in the xml directory. Please correct any errors before writing new content. *** Copying images ***
*** Copying stylesheets ***
-- Building HTML for de
../../xml/de.xml:1: parser error : Document is empty
^
../../xml/de.xml:1: parser error : Start tag expected, ' not found
^
unable to parse ../../xml/de.xml

So can anybody help or give a hint where to look? I think the problem is, to get the
pkg-config-0.20, intltool-0.34.1 and gtk-doc-1.4 configured and made.

Cheers

Michael
-------------- next part -------------- An HTML attachment was scrubbed...
URL: /lists/gimp-docs/attachments/20051122/17117883/attachment-0001.html

Roman Joost
2005-11-22 09:11:30 UTC (over 18 years ago)

working Window$ XP environment?

Hi Michael,

On Tue, Nov 22, 2005 at 11:29:57AM -0500, MichaelHoelzen@aol.com wrote:

can anybody help to get a working environment under Windows XP just to have the german xml converted to html?

[...] list of installed programs
$ make
*** Creating directories ***
-- Profiling XML for de
I/O error : Attempt to load network entity http://docbook.sourceforge.net/ release/xsl/current/profiling/profile.xsl warning: failed to load external entity "http://docbook.sourceforge.net/release /xsl/current/profiling/profile.xsl"
compilation error: file ../stylesheets/profile.xsl line 5 element import xsl:import : unable to load http://docbook.sourceforge.net/release/xsl/current/ profiling/profile.xsl

This looks very much like a non existing or broken XML catalog. The processor looks up the installed stylesheets on your harddisk by using the mapping in the catalog.

A catalog can look like this:

<!DOCTYPE catalog PUBLIC "-//OASIS//DTD XML Catalogs V1.0//EN" "file:///usr/share/xml/schema/xml-core/catalog.dtd">




This one delegates to other catalog files in the system to lookup the stylesheets. I can't explain every detail here, because this will probably fill a chapter in a book.

Unfortunately, I don't know how a correct XML catalog will look like on a MS Windows system. Maybe some others can help here?

Greetings,