lxml - The Python XML Toolkit
Threads by month
- ----- 2025 -----
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
September 2015
- 8 participants
- 11 discussions
Hi all,
I added the lxml project to launchpad, the Ubuntu Bug-Tracker. It also has a
FAQ engine and a couple of other goodies.
https://launchpad.net/lxml
It's easy to sign up for launchpad, BTW, no 90%-footnotes-contract.
Have fun,
Stefan
9
9
![](https://secure.gravatar.com/avatar/b1fb15533bb295be3df204e906d08741.jpg?s=120&d=mm&r=g)
April 10, 2023
Hi,
What's the best way to check whether a given node is a comment or an
element? For the former, I'm currently using isinstance(node,
etree._Comment), which is rather obviously sub-optimal.
--
Geoffrey Sneddon
<http://gsnedders.com/>
6
6
I have a doc A and a doc B, I'd like to put a node extracted from A in
the document B but I always get a ValueError:
ValueError: Element is not a child of this node.
I didn't find any "setparent" in the API.
How can I do this?
--
Lawrence, oluyede.org - neropercaso.it
"It is difficult to get a man to understand
something when his salary depends on not
understanding it" - Upton Sinclair
3
2
Hi all,
lxml 2.0.5 is on PyPI. This is a bug-fix-only release of the stable 2.0 series.
Have fun,
Stefan
2.0.5 (2008-05-01)
Bugs fixed
* Resolving to a filename in custom resolvers didn't work.
* lxml did not honour libxslt's second error state "STOPPED", which let
some XSLT errors pass silently.
* Memory leak in Schematron with libxml2 >= 2.6.31.
3
4
Hi,
I've tried to build lxml from trunk today, on Win32. Got the following error:
src\lxml\etree.c(880) : error C2059: syntax error : ')'
src\lxml\etree.c(881) : error C2059: syntax error : ')'
src\lxml\etree.c(882) : error C2059: syntax error : ')'
src\lxml\etree.c(883) : error C2059: syntax error : ')'
Any clue? Smells like a Pyrex issue?
--
Sidnei da Silva
Enfold Systems http://enfoldsystems.com
Fax +1 832 201 8856 Office +1 713 942 2377 Ext 214
4
4
![](https://secure.gravatar.com/avatar/54d44258067e7eb3077f82bb76b8927c.jpg?s=120&d=mm&r=g)
Sept. 30, 2015
I have a simple test that fails using lxml 3.4.4 running under PyPy 2.6.1.
It succeeds as expected under CPython from Python 2.7.10.
Both of the sample xml blocks are similar except for the inclusion of a
numeric character reference (  or en space) in the failing sample.
I include samples and the test at the bottom of this email. The
sample2_etree will parse successfully, but sample_etree will not assign a
bar value.
Is there any testing of these characters in the lxml test …
[View More]suite or
suggested work arounds? The problem I encounter is that any use of
element.xpath(".//text()") on xml that contains an NCR will generate a
stackOverflow :
Thanks.
- Jeff Doran
-------
TEST
-------
sample="""<name xmlns="http://www.epo.org/exchange" xmlns:ops="
http://ops.epo.org" xmlns:xlink="http://www.w3.org/1999/xlink">NEXT
COMPUTER INC [US]</name>
"""
sample2="""<name xmlns="http://www.epo.org/exchange" xmlns:ops="
http://ops.epo.org" xmlns:xlink="http://www.w3.org/1999/xlink">NEXT
COMPUTER INC [US]</name>
"""
def simple_xpath_test():
import lxml
sample2_etree = lxml.etree.fromstring(sample2)
print "____full sample2 %r", sample2
bar = sample2_etree.xpath('.//text()')
print "____bar = %r", bar
assert (bar is not None)
sample_etree = lxml.etree.fromstring(sample)
print "____full sample %r", sample
bar = sample_etree.xpath('.//text()')
print "____bar = %r", bar
assert (bar is not None)
======================================================================
ERROR: bias.tests.epo.test_epo_patent.simple_xpath_test
----------------------------------------------------------------------
Traceback (most recent call last):
File
"/home/jeff/lexmachina/deus_lex/.tox/pypy/site-packages/nose/case.py", line
197, in runTest
self.test(*self.arg)
File
"/home/jeff/lexmachina/deus_lex/bias/bias/tests/epo/test_epo_patent.py",
line 45, in simple_xpath_test
bar = sample_etree.xpath('.//text()')
File "lxml.etree.pyx", line 1507, in lxml.etree._Element.xpath
(src/lxml/lxml.etree.c:52198)
File "xpath.pxi", line 307, in lxml.etree.XPathElementEvaluator.__call__
(src/lxml/lxml.etree.c:152124)
SystemError: <StackOverflow object at 0x7fbc2f3167b0>
-------------------- >> begin captured stdout << ---------------------
____full sample2 %r <name xmlns="http://www.epo.org/exchange" xmlns:ops="
http://ops.epo.org" xmlns:xlink="http://www.w3.org/1999/xlink">NEXT
COMPUTER INC [US]</name>
____bar = %r ['NEXT COMPUTER INC [US]']
____full sample %r <name xmlns="http://www.epo.org/exchange" xmlns:ops="
http://ops.epo.org" xmlns:xlink="http://www.w3.org/1999/xlink">NEXT
COMPUTER INC [US]</name>
--------------------- >> end captured stdout << ----------------------
[View Less]
2
1
![](https://secure.gravatar.com/avatar/54d44258067e7eb3077f82bb76b8927c.jpg?s=120&d=mm&r=g)
Sept. 30, 2015
Some missing data from my first report:
Python : (major=2, minor=7, micro=10, releaselevel='final',
serial=42)
lxml.etree : (3, 4, 4, 0)
libxml used : (2, 8, 0)
libxml compiled : (2, 8, 0)
libxslt used : (1, 1, 26)
libxslt compiled : (1, 1, 26)
I also noticed that the NCR code is being swallowed somewhere between
composing my email and it being displayed in the lxml archive so for the
record, this is representation of the problematic code in sample …
[View More]with extra
'\\' added: ...NEXT COMPUTER INC\\&\\#8194\\;[US]...
[View Less]
1
0
Hi all,
I just released the first beta version of the upcoming lxml 3.5. This is a
feature release with many small and large improvements all over the place.
Please give it some testing against your code.
The documentation is here: http://lxml.de/
Download: http://lxml.de/files/lxml-3.5.0b1.tgz
Signature: http://lxml.de/files/lxml-3.5.0b1.tgz.asc
Changelog: http://lxml.de/3.5/changes-3.5.0b1.html
Github:
https://github.com/lxml/lxml/commit/717942131fe47584c45800970758d9b46ee077ff
…
[View More]This release was built using Cython 0.23.2.
If you are interested in commercial support or customisations for the lxml
package, please contact me directly.
Have fun,
Stefan
3.5.0b1 (2015-09-18)
====================
Features added
--------------
* ``cleanup_namespaces()`` accepts a new argument ``keep_ns_prefixes``
that does not remove definitions of the provided prefix-namespace
mapping from the tree.
* ``cleanup_namespaces()`` accepts a new argument ``top_nsmap`` that
moves definitions of the provided prefix-namespace mapping to the
top of the tree.
* LP#1490451: ``Element`` objects gained a ``cssselect()`` method as
known from ``lxml.html``. Patch by Simon Sapin.
* API functions and methods behave and look more like Python functions,
which allows introspection on them etc. One side effect to be aware of
is that the functions now bind as methods when assigned to a class
variable. A quick fix is to wrap them in ``staticmethod()`` (as for
normal Python functions).
* ISO-Schematron support gained an option ``error_finder`` that allows
passing a filter function for picking validation errors from reports.
* LP#1243600: Elements in ``lxml.html`` gained a ``classes`` property
that provides a set-like interface to the ``class`` attribute.
Original patch by masklinn.
* LP#1341964: The soupparser now handles DOCTYPE declarations, comments
and processing instructions outside of the root element.
Patch by Olli Pottonen.
* LP#1421512: The ``docinfo`` of a tree was made editable to allow
setting and removing the public ID and system ID of the DOCTYPE.
Patch by Olli Pottonen.
* LP#1442427: More work-arounds for quirks and bugs in pypy and pypy3.
* ``lxml.html.soupparser`` now uses BeautifulSoup version 4 instead
of version 3 if available.
Bugs fixed
----------
* Memory errors that occur during tree adaptations (e.g. moving subtrees
to foreign documents) could leave the tree in a crash prone state.
* Calling ``process_children()`` in an XSLT extension element without
an ``output_parent`` argument failed with a ``TypeError``.
Fix by Jens Tröger.
* GH#162: Image data in HTML ``data`` URLs is considered safe and
no longer removed by ``lxml.html.clean`` JavaScript cleaner.
* GH#166: Static build could link libraries in wrong order.
* GH#172: Rely a bit more on libxml2 for encoding detection rather than
rolling our own in some cases. Patch by Olli Pottonen.
* GH#159: Validity checks for names and string content were tightened
to detect the use of illegal characters early. Patch by Olli Pottonen.
* LP#1421921: Comments/PIs before the DOCTYPE declaration were not
serialised. Patch by Olli Pottonen.
* LP#659367: Some HTML DOCTYPE declarations were not serialised.
Patch by Olli Pottonen.
* LP#1238503: lxml.doctestcompare is now consistent with stdlib's doctest
in how it uses ``+`` and ``-`` to refer to unexpected and missing output.
* Empty prefixes are explicitly rejected when a namespace mapping is used
with ElementPath to avoid hiding bugs in user code.
* Several problems with PyPy were fixed by switching to Cython 0.23.
[View Less]
2
5
Dear all!
I built the library from source because I experienced a segfault
without any reason:
this happend with the version from pip install (3.4) and also with the
version in the repo:
I installed 3.5 (latest) from git on Centos 6.5 (cluster)
with
python setup.py install --static-deps
I used static deps because before it used versions from the cluster
which also gave the segfault... (so i though better to use the
downloaded ones)
I executed the following:
from lxml …
[View More]import etree as ET
tree = ET.parse("./config/SceneFile.xml
which returned
*Segmentation fault*
And nothing else...? ( the sole import statement works! from lxml import
etree as ET)
Does anybody have any clue where the problem lies? (lxml installed on
ubuntu with pip in virtual env worked with no problem)
Thanks a lot for the help!
*Here is the test report**:
*
make test ; python test.py
Skipping tests in lxml.cssselect - external cssselect package is not
installed
Comparing with ElementTree 1.3.0
TESTED VERSION: 3.5.0.beta1
Python: sys.version_info(major=3, minor=4, micro=3,
releaselevel='final', serial=0)
lxml.etree: (3, 5, 0, -99)
libxml used: (2, 7, 6)
libxml compiled: (2, 7, 6)
libxslt used: (1, 1, 26)
libxslt compiled: (1, 1, 26)
Segmentation fault
*Here is the install protocol:
*
$
Building lxml version 3.5.0.beta1.
Latest version of libiconv is 1.14
Using existing libiconv downloaded into libs/libiconv-1.14.tar.gz
(delete this file if you want to re-download the package)
Unpacking libiconv-1.14.tar.gz into build/tmp
Latest version of libxml2 is 2.9.2
Using existing libxml2 downloaded into libs/libxml2-2.9.2.tar.gz (delete
this file if you want to re-download the package)
Unpacking libxml2-2.9.2.tar.gz into build/tmp
Latest version of libxslt is 1.1.28
Using existing libxslt downloaded into libs/libxslt-1.1.28.tar.gz
(delete this file if you want to re-download the package)
Unpacking libxslt-1.1.28.tar.gz into build/tmp
Starting build in build/tmp/libiconv-1.14
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make sets $(MAKE)... (cached) yes
checking for gcc... /cluster/apps/gcc/4.8.2/bin/gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /cluster/apps/gcc/4.8.2/bin/gcc accepts -g... yes
checking for /cluster/apps/gcc/4.8.2/bin/gcc option to accept ISO C89...
none needed
checking for style of include used by make... GNU
checking dependency style of /cluster/apps/gcc/4.8.2/bin/gcc... none
checking how to run the C preprocessor... /cluster/apps/gcc/4.8.2/bin/cpp
checking for strip... /usr/bin/strip
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ranlib... ranlib
checking whether /cluster/apps/gcc/4.8.2/bin/gcc and cc understand -c
and -o together... yes
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for shared library path variable... LD_LIBRARY_PATH
checking whether to activate relocatable installation... no
checking how to copy files... cp -p
checking how to make hard links... ln
checking whether ln -s works... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by /cluster/apps/gcc/4.8.2/bin/gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 1966080
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to
x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain
format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... /usr/bin/strip
checking for ranlib... (cached) ranlib
checking command to parse /usr/bin/nm -B output from
/cluster/apps/gcc/4.8.2/bin/gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -fno-rtti
-fno-exceptions... no
checking for /cluster/apps/gcc/4.8.2/bin/gcc option to produce PIC...
-fPIC -DPIC
checking if /cluster/apps/gcc/4.8.2/bin/gcc PIC flag -fPIC -DPIC
works... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc static flag -static works... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -c -o file.o... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -c -o file.o...
(cached) yes
checking whether the /cluster/apps/gcc/4.8.2/bin/gcc linker (/usr/bin/ld
-m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for windres... no
checking whether the -Werror option is usable... yes
checking for simple visibility declarations... yes
checking for shared library run path origin... done
checking for iconv... yes
checking for working iconv... yes
checking for iconv declaration...
extern size_t iconv (iconv_t cd, char * *inbuf, size_t
*inbytesleft, char * *outbuf, size_t *outbytesleft);
checking whether NLS is requested... yes
checking for msgfmt... /usr/bin/msgfmt
checking for gmsgfmt... /usr/bin/msgfmt
checking for xgettext... /usr/bin/xgettext
checking for msgmerge... /usr/bin/msgmerge
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... yes
checking whether to use NLS... yes
checking where the gettext function comes from... libc
checking for mbstate_t... yes
checking for wchar_t... yes
checking for getc_unlocked... yes
checking for mbrtowc... yes
checking for wcrtomb... yes
checking for mbsinit... yes
checking for setlocale... yes
checking whether <wchar.h> is standalone... yes
checking for memmove... yes
checking for nl_langinfo and CODESET... yes
checking for working fcntl.h... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for EILSEQ... yes
checking byte ordering... little endian
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for sys/param.h... yes
checking for unistd.h... (cached) yes
checking for wchar.h... (cached) yes
checking for stdint.h... (cached) yes
checking for sys/socket.h... yes
checking for sys/stat.h... (cached) yes
checking for sys/time.h... yes
checking for canonicalize_file_name... yes
checking for getcwd... yes
checking for readlink... yes
checking for realpath... yes
checking for readlinkat... yes
checking for lstat... yes
checking for setenv... yes
checking whether // is distinct from /... no
checking whether realpath works... yes
checking if environ is properly declared... yes
checking whether the preprocessor supports include_next... yes
checking whether system header files limit the line length... no
checking for complete errno.h... yes
checking whether strerror_r is declared... yes
checking for strerror_r... yes
checking whether strerror_r returns char *... yes
checking for inline... inline
checking whether lstat correctly handles trailing slash... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for unsigned long long int... yes
checking for long long int... yes
checking whether setenv is declared... yes
checking for ssize_t... yes
checking for sigset_t... yes
checking for uid_t in sys/types.h... yes
checking for SIGPIPE... yes
checking whether C symbols are prefixed with underscore at the linker
level... no
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking whether stdint.h conforms to C99... yes
checking whether strerror(0) succeeds... yes
checking for C/C++ restrict keyword... __restrict
checking whether ffsl is declared without a macro... yes
checking whether ffsll is declared without a macro... yes
checking whether memmem is declared without a macro... yes
checking whether mempcpy is declared without a macro... yes
checking whether memrchr is declared without a macro... yes
checking whether rawmemchr is declared without a macro... yes
checking whether stpcpy is declared without a macro... yes
checking whether stpncpy is declared without a macro... yes
checking whether strchrnul is declared without a macro... yes
checking whether strdup is declared without a macro... yes
checking whether strncat is declared without a macro... yes
checking whether strndup is declared without a macro... yes
checking whether strnlen is declared without a macro... yes
checking whether strpbrk is declared without a macro... yes
checking whether strsep is declared without a macro... yes
checking whether strcasestr is declared without a macro... yes
checking whether strtok_r is declared without a macro... yes
checking whether strerror_r is declared without a macro... yes
checking whether strsignal is declared without a macro... yes
checking whether strverscmp is declared without a macro... yes
checking whether stat file-mode macros are broken... no
checking for struct timespec in <time.h>... yes
checking whether clearerr_unlocked is declared... yes
checking whether feof_unlocked is declared... yes
checking whether ferror_unlocked is declared... yes
checking whether fflush_unlocked is declared... yes
checking whether fgets_unlocked is declared... yes
checking whether fputc_unlocked is declared... yes
checking whether fputs_unlocked is declared... yes
checking whether fread_unlocked is declared... yes
checking whether fwrite_unlocked is declared... yes
checking whether getc_unlocked is declared... yes
checking whether getchar_unlocked is declared... yes
checking whether putc_unlocked is declared... yes
checking whether putchar_unlocked is declared... yes
checking whether // is distinct from /... (cached) no
checking for error_at_line... yes
checking whether fcntl is declared without a macro... yes
checking whether openat is declared without a macro... yes
checking for mbstate_t... (cached) yes
checking for memmove... (cached) yes
checking whether program_invocation_name is declared... yes
checking whether program_invocation_short_name is declared... yes
checking whether readlink signature is correct... yes
checking whether readlink handles trailing slash correctly... yes
checking search.h usability... yes
checking search.h presence... yes
checking for search.h... yes
checking for tsearch... yes
checking for volatile sig_atomic_t... yes
checking for sighandler_t... yes
checking whether pthread_sigmask is declared without a macro... yes
checking whether sigaction is declared without a macro... yes
checking whether sigaddset is declared without a macro... yes
checking whether sigdelset is declared without a macro... yes
checking whether sigemptyset is declared without a macro... yes
checking whether sigfillset is declared without a macro... yes
checking whether sigismember is declared without a macro... yes
checking whether sigpending is declared without a macro... yes
checking whether sigprocmask is declared without a macro... yes
checking for sigprocmask... yes
checking for ssize_t... (cached) yes
checking whether stat handles trailing slashes on directories... yes
checking whether stat handles trailing slashes on files... yes
checking whether NULL can be used in arbitrary expressions... yes
checking whether dprintf is declared without a macro... yes
checking whether fpurge is declared without a macro... no
checking whether fseeko is declared without a macro... yes
checking whether ftello is declared without a macro... yes
checking whether getdelim is declared without a macro... yes
checking whether getline is declared without a macro... yes
checking whether popen is declared without a macro... yes
checking whether renameat is declared without a macro... yes
checking whether snprintf is declared without a macro... yes
checking whether tmpfile is declared without a macro... yes
checking whether vdprintf is declared without a macro... yes
checking whether vsnprintf is declared without a macro... yes
checking whether _Exit is declared without a macro... yes
checking whether atoll is declared without a macro... yes
checking whether canonicalize_file_name is declared without a macro... yes
checking whether getloadavg is declared without a macro... yes
checking whether getsubopt is declared without a macro... yes
checking whether grantpt is declared without a macro... yes
checking whether mkdtemp is declared without a macro... yes
checking whether mkostemp is declared without a macro... yes
checking whether mkostemps is declared without a macro... yes
checking whether mkstemp is declared without a macro... yes
checking whether mkstemps is declared without a macro... yes
checking whether ptsname is declared without a macro... yes
checking whether random_r is declared without a macro... yes
checking whether initstat_r is declared without a macro... no
checking whether srandom_r is declared without a macro... yes
checking whether setstate_r is declared without a macro... yes
checking whether realpath is declared without a macro... yes
checking whether rpmatch is declared without a macro... yes
checking whether setenv is declared without a macro... yes
checking whether strtod is declared without a macro... yes
checking whether strtoll is declared without a macro... yes
checking whether strtoull is declared without a macro... yes
checking whether unlockpt is declared without a macro... yes
checking whether unsetenv is declared without a macro... yes
checking for working strerror function... yes
checking for nlink_t... yes
checking whether fchmodat is declared without a macro... yes
checking whether fstatat is declared without a macro... yes
checking whether futimens is declared without a macro... yes
checking whether lchmod is declared without a macro... yes
checking whether lstat is declared without a macro... yes
checking whether mkdirat is declared without a macro... yes
checking whether mkfifo is declared without a macro... yes
checking whether mkfifoat is declared without a macro... yes
checking whether mknod is declared without a macro... yes
checking whether mknodat is declared without a macro... yes
checking whether stat is declared without a macro... yes
checking whether utimensat is declared without a macro... yes
checking whether chown is declared without a macro... yes
checking whether dup2 is declared without a macro... yes
checking whether dup3 is declared without a macro... yes
checking whether environ is declared without a macro... yes
checking whether euidaccess is declared without a macro... yes
checking whether faccessat is declared without a macro... yes
checking whether fchdir is declared without a macro... yes
checking whether fchownat is declared without a macro... yes
checking whether fsync is declared without a macro... yes
checking whether ftruncate is declared without a macro... yes
checking whether getcwd is declared without a macro... yes
checking whether getdomainname is declared without a macro... yes
checking whether getdtablesize is declared without a macro... yes
checking whether getgroups is declared without a macro... yes
checking whether gethostname is declared without a macro... yes
checking whether getlogin is declared without a macro... yes
checking whether getlogin_r is declared without a macro... yes
checking whether getpagesize is declared without a macro... yes
checking whether getusershell is declared without a macro... yes
checking whether setusershell is declared without a macro... yes
checking whether endusershell is declared without a macro... yes
checking whether group_member is declared without a macro... yes
checking whether lchown is declared without a macro... yes
checking whether link is declared without a macro... yes
checking whether linkat is declared without a macro... yes
checking whether lseek is declared without a macro... yes
checking whether pipe is declared without a macro... yes
checking whether pipe2 is declared without a macro... yes
checking whether pread is declared without a macro... yes
checking whether pwrite is declared without a macro... yes
checking whether readlink is declared without a macro... yes
checking whether readlinkat is declared without a macro... yes
checking whether rmdir is declared without a macro... yes
checking whether sleep is declared without a macro... yes
checking whether symlink is declared without a macro... yes
checking whether symlinkat is declared without a macro... yes
checking whether ttyname_r is declared without a macro... yes
checking whether unlink is declared without a macro... yes
checking whether unlinkat is declared without a macro... yes
checking whether usleep is declared without a macro... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating lib/Makefile
config.status: creating srclib/Makefile
config.status: creating src/Makefile
config.status: creating po/Makefile.in
config.status: creating man/Makefile
config.status: creating tests/Makefile
config.status: creating include/iconv.h
config.status: creating include/iconv.h.inst
config.status: creating config.h
config.status: config.h is unchanged
config.status: creating lib/config.h
config.status: lib/config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
=== configuring in libcharset
(/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/libcharset)
configure: running /bin/sh ./configure --disable-option-checking
'--prefix=/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
'--disable-dependency-tracking' '--disable-shared'
'CC=/cluster/apps/gcc/4.8.2/bin/gcc'
'CPP=/cluster/apps/gcc/4.8.2/bin/cpp' --cache-file=/dev/null --srcdir=.
checking whether make sets $(MAKE)... yes
checking for gcc... /cluster/apps/gcc/4.8.2/bin/gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /cluster/apps/gcc/4.8.2/bin/gcc accepts -g... yes
checking for /cluster/apps/gcc/4.8.2/bin/gcc option to accept ISO C89...
none needed
checking how to run the C preprocessor... /cluster/apps/gcc/4.8.2/bin/cpp
checking for a BSD-compatible install... /usr/bin/install -c
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking whether to activate relocatable installation... no
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by /cluster/apps/gcc/4.8.2/bin/gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1966080
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to
x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain
format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking for gawk... gawk
checking command to parse /usr/bin/nm -B output from
/cluster/apps/gcc/4.8.2/bin/gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -fno-rtti
-fno-exceptions... no
checking for /cluster/apps/gcc/4.8.2/bin/gcc option to produce PIC...
-fPIC -DPIC
checking if /cluster/apps/gcc/4.8.2/bin/gcc PIC flag -fPIC -DPIC
works... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc static flag -static works... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -c -o file.o... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -c -o file.o...
(cached) yes
checking whether the /cluster/apps/gcc/4.8.2/bin/gcc linker (/usr/bin/ld
-m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for simple visibility declarations... yes
checking for nl_langinfo and CODESET... yes
checking for working fcntl.h... yes
checking whether we are using the GNU C Library 2.1 or newer... yes
checking for setlocale... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating lib/Makefile
config.status: creating include/localcharset.h
config.status: creating include/localcharset.h.inst
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing libtool commands
=== configuring in preload
(/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/preload)
configure: running /bin/sh ./configure --disable-option-checking
'--prefix=/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
'--disable-dependency-tracking' '--disable-shared'
'CC=/cluster/apps/gcc/4.8.2/bin/gcc'
'CPP=/cluster/apps/gcc/4.8.2/bin/cpp' --cache-file=/dev/null --srcdir=.
checking whether make sets $(MAKE)... yes
checking for gcc... /cluster/apps/gcc/4.8.2/bin/gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /cluster/apps/gcc/4.8.2/bin/gcc accepts -g... yes
checking for /cluster/apps/gcc/4.8.2/bin/gcc option to accept ISO C89...
none needed
checking how to run the C preprocessor... /cluster/apps/gcc/4.8.2/bin/cpp
checking for a BSD-compatible install... /usr/bin/install -c
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking whether to activate relocatable installation... no
checking whether ln -s works... yes
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by /cluster/apps/gcc/4.8.2/bin/gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 1966080
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to
x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain
format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking for gawk... gawk
checking command to parse /usr/bin/nm -B output from
/cluster/apps/gcc/4.8.2/bin/gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -fno-rtti
-fno-exceptions... no
checking for /cluster/apps/gcc/4.8.2/bin/gcc option to produce PIC...
-fPIC -DPIC
checking if /cluster/apps/gcc/4.8.2/bin/gcc PIC flag -fPIC -DPIC
works... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc static flag -static works... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -c -o file.o... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -c -o file.o...
(cached) yes
checking whether the /cluster/apps/gcc/4.8.2/bin/gcc linker (/usr/bin/ld
-m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking whether the -Werror option is usable... yes
checking for simple visibility declarations... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: executing libtool commands
cd lib && make all
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/lib'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/lib'
cd preload && make all
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/preload'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/preload'
cd srclib && make all
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/srclib'
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14'
make[2]: Nothing to be done for `am--refresh'.
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14'
rm -f alloca.h-t alloca.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
cat ./alloca.in.h; \
} > alloca.h-t && \
mv -f alloca.h-t alloca.h
rm -f fcntl.h-t fcntl.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
sed -e 's|@''GUARD_PREFIX''@|GL|g' \
-e 's|@''INCLUDE_NEXT''@|include_next|g' \
-e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC
system_header|g' \
-e 's|@''PRAGMA_COLUMNS''@||g' \
-e 's|@''NEXT_FCNTL_H''@|<fcntl.h>|g' \
-e 's/@''GNULIB_FCNTL''@/0/g' \
-e 's/@''GNULIB_NONBLOCKING''@/0/g' \
-e 's/@''GNULIB_OPEN''@/0/g' \
-e 's/@''GNULIB_OPENAT''@/0/g' \
-e 's|@''HAVE_FCNTL''@|1|g' \
-e 's|@''HAVE_OPENAT''@|1|g' \
-e 's|@''REPLACE_FCNTL''@|0|g' \
-e 's|@''REPLACE_OPEN''@|0|g' \
-e 's|@''REPLACE_OPENAT''@|0|g' \
-e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
-e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
< ./fcntl.in.h; \
} > fcntl.h-t && \
mv fcntl.h-t fcntl.h
rm -f signal.h-t signal.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
sed -e 's|@''GUARD_PREFIX''@|GL|g' \
-e 's|@''INCLUDE_NEXT''@|include_next|g' \
-e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC
system_header|g' \
-e 's|@''PRAGMA_COLUMNS''@||g' \
-e 's|@''NEXT_SIGNAL_H''@|<signal.h>|g' \
-e 's|@''GNULIB_PTHREAD_SIGMASK''@|0|g' \
-e 's/@''GNULIB_SIGNAL_H_SIGPIPE''@/1/g' \
-e 's/@''GNULIB_SIGPROCMASK''@/1/g' \
-e 's/@''GNULIB_SIGACTION''@/0/g' \
-e 's|@''HAVE_POSIX_SIGNALBLOCKING''@|1|g' \
-e 's|@''HAVE_PTHREAD_SIGMASK''@|1|g' \
-e 's|@''HAVE_SIGSET_T''@|1|g' \
-e 's|@''HAVE_SIGINFO_T''@|1|g' \
-e 's|@''HAVE_SIGACTION''@|1|g' \
-e 's|@''HAVE_STRUCT_SIGACTION_SA_SIGACTION''@|1|g' \
-e 's|@''HAVE_TYPE_VOLATILE_SIG_ATOMIC_T''@|1|g' \
-e 's|@''HAVE_SIGHANDLER_T''@|1|g' \
-e 's|@''REPLACE_PTHREAD_SIGMASK''@|0|g' \
-e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
-e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
< ./signal.in.h; \
} > signal.h-t && \
mv signal.h-t signal.h
rm -f stdio.h-t stdio.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
sed -e 's|@''GUARD_PREFIX''@|GL|g' \
-e 's|@''INCLUDE_NEXT''@|include_next|g' \
-e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC
system_header|g' \
-e 's|@''PRAGMA_COLUMNS''@||g' \
-e 's|@''NEXT_STDIO_H''@|<stdio.h>|g' \
-e 's/@''GNULIB_DPRINTF''@/0/g' \
-e 's/@''GNULIB_FCLOSE''@/0/g' \
-e 's/@''GNULIB_FFLUSH''@/0/g' \
-e 's/@''GNULIB_FGETC''@/1/g' \
-e 's/@''GNULIB_FGETS''@/1/g' \
-e 's/@''GNULIB_FOPEN''@/0/g' \
-e 's/@''GNULIB_FPRINTF''@/1/g' \
-e 's/@''GNULIB_FPRINTF_POSIX''@/0/g' \
-e 's/@''GNULIB_FPURGE''@/0/g' \
-e 's/@''GNULIB_FPUTC''@/1/g' \
-e 's/@''GNULIB_FPUTS''@/1/g' \
-e 's/@''GNULIB_FREAD''@/1/g' \
-e 's/@''GNULIB_FREOPEN''@/0/g' \
-e 's/@''GNULIB_FSCANF''@/1/g' \
-e 's/@''GNULIB_FSEEK''@/0/g' \
-e 's/@''GNULIB_FSEEKO''@/0/g' \
-e 's/@''GNULIB_FTELL''@/0/g' \
-e 's/@''GNULIB_FTELLO''@/0/g' \
-e 's/@''GNULIB_FWRITE''@/1/g' \
-e 's/@''GNULIB_GETC''@/1/g' \
-e 's/@''GNULIB_GETCHAR''@/1/g' \
-e 's/@''GNULIB_GETDELIM''@/0/g' \
-e 's/@''GNULIB_GETLINE''@/0/g' \
-e 's/@''GNULIB_GETS''@/1/g' \
-e 's/@''GNULIB_OBSTACK_PRINTF''@/0/g' \
-e 's/@''GNULIB_OBSTACK_PRINTF_POSIX''@/0/g' \
-e 's/@''GNULIB_PERROR''@/0/g' \
-e 's/@''GNULIB_POPEN''@/0/g' \
-e 's/@''GNULIB_PRINTF''@/1/g' \
-e 's/@''GNULIB_PRINTF_POSIX''@/0/g' \
-e 's/@''GNULIB_PUTC''@/1/g' \
-e 's/@''GNULIB_PUTCHAR''@/1/g' \
-e 's/@''GNULIB_PUTS''@/1/g' \
-e 's/@''GNULIB_REMOVE''@/0/g' \
-e 's/@''GNULIB_RENAME''@/0/g' \
-e 's/@''GNULIB_RENAMEAT''@/0/g' \
-e 's/@''GNULIB_SCANF''@/1/g' \
-e 's/@''GNULIB_SNPRINTF''@/0/g' \
-e 's/@''GNULIB_SPRINTF_POSIX''@/0/g' \
-e 's/@''GNULIB_STDIO_H_NONBLOCKING''@/0/g' \
-e 's/@''GNULIB_STDIO_H_SIGPIPE''@/1/g' \
-e 's/@''GNULIB_TMPFILE''@/0/g' \
-e 's/@''GNULIB_VASPRINTF''@/0/g' \
-e 's/@''GNULIB_VDPRINTF''@/0/g' \
-e 's/@''GNULIB_VFPRINTF''@/1/g' \
-e 's/@''GNULIB_VFPRINTF_POSIX''@/0/g' \
-e 's/@''GNULIB_VFSCANF''@/0/g' \
-e 's/@''GNULIB_VSCANF''@/0/g' \
-e 's/@''GNULIB_VPRINTF''@/1/g' \
-e 's/@''GNULIB_VPRINTF_POSIX''@/0/g' \
-e 's/@''GNULIB_VSNPRINTF''@/0/g' \
-e 's/@''GNULIB_VSPRINTF_POSIX''@/0/g' \
< ./stdio.in.h | \
sed -e 's|@''HAVE_DECL_FPURGE''@|1|g' \
-e 's|@''HAVE_DECL_FSEEKO''@|1|g' \
-e 's|@''HAVE_DECL_FTELLO''@|1|g' \
-e 's|@''HAVE_DECL_GETDELIM''@|1|g' \
-e 's|@''HAVE_DECL_GETLINE''@|1|g' \
-e 's|@''HAVE_DECL_OBSTACK_PRINTF''@|1|g' \
-e 's|@''HAVE_DECL_SNPRINTF''@|1|g' \
-e 's|@''HAVE_DECL_VSNPRINTF''@|1|g' \
-e 's|@''HAVE_DPRINTF''@|1|g' \
-e 's|@''HAVE_FSEEKO''@|1|g' \
-e 's|@''HAVE_FTELLO''@|1|g' \
-e 's|@''HAVE_RENAMEAT''@|1|g' \
-e 's|@''HAVE_VASPRINTF''@|1|g' \
-e 's|@''HAVE_VDPRINTF''@|1|g' \
-e 's|@''REPLACE_DPRINTF''@|0|g' \
-e 's|@''REPLACE_FCLOSE''@|0|g' \
-e 's|@''REPLACE_FFLUSH''@|0|g' \
-e 's|@''REPLACE_FOPEN''@|0|g' \
-e 's|@''REPLACE_FPRINTF''@|0|g' \
-e 's|@''REPLACE_FPURGE''@|0|g' \
-e 's|@''REPLACE_FREOPEN''@|0|g' \
-e 's|@''REPLACE_FSEEK''@|0|g' \
-e 's|@''REPLACE_FSEEKO''@|0|g' \
-e 's|@''REPLACE_FTELL''@|0|g' \
-e 's|@''REPLACE_FTELLO''@|0|g' \
-e 's|@''REPLACE_GETDELIM''@|0|g' \
-e 's|@''REPLACE_GETLINE''@|0|g' \
-e 's|@''REPLACE_OBSTACK_PRINTF''@|0|g' \
-e 's|@''REPLACE_PERROR''@|0|g' \
-e 's|@''REPLACE_POPEN''@|0|g' \
-e 's|@''REPLACE_PRINTF''@|0|g' \
-e 's|@''REPLACE_REMOVE''@|0|g' \
-e 's|@''REPLACE_RENAME''@|0|g' \
-e 's|@''REPLACE_RENAMEAT''@|0|g' \
-e 's|@''REPLACE_SNPRINTF''@|0|g' \
-e 's|@''REPLACE_SPRINTF''@|0|g' \
-e 's|@''REPLACE_STDIO_READ_FUNCS''@|0|g' \
-e 's|@''REPLACE_STDIO_WRITE_FUNCS''@|0|g' \
-e 's|@''REPLACE_TMPFILE''@|0|g' \
-e 's|@''REPLACE_VASPRINTF''@|0|g' \
-e 's|@''REPLACE_VDPRINTF''@|0|g' \
-e 's|@''REPLACE_VFPRINTF''@|0|g' \
-e 's|@''REPLACE_VPRINTF''@|0|g' \
-e 's|@''REPLACE_VSNPRINTF''@|0|g' \
-e 's|@''REPLACE_VSPRINTF''@|0|g' \
-e 's|@''ASM_SYMBOL_PREFIX''@|""|g' \
-e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
-e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
} > stdio.h-t && \
mv stdio.h-t stdio.h
rm -f stdlib.h-t stdlib.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
sed -e 's|@''GUARD_PREFIX''@|GL|g' \
-e 's|@''INCLUDE_NEXT''@|include_next|g' \
-e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC
system_header|g' \
-e 's|@''PRAGMA_COLUMNS''@||g' \
-e 's|@''NEXT_STDLIB_H''@|<stdlib.h>|g' \
-e 's/@''GNULIB__EXIT''@/0/g' \
-e 's/@''GNULIB_ATOLL''@/0/g' \
-e 's/@''GNULIB_CALLOC_POSIX''@/0/g' \
-e 's/@''GNULIB_CANONICALIZE_FILE_NAME''@/1/g' \
-e 's/@''GNULIB_GETLOADAVG''@/0/g' \
-e 's/@''GNULIB_GETSUBOPT''@/0/g' \
-e 's/@''GNULIB_GRANTPT''@/0/g' \
-e 's/@''GNULIB_MALLOC_POSIX''@/0/g' \
-e 's/@''GNULIB_MBTOWC''@/0/g' \
-e 's/@''GNULIB_MKDTEMP''@/0/g' \
-e 's/@''GNULIB_MKOSTEMP''@/0/g' \
-e 's/@''GNULIB_MKOSTEMPS''@/0/g' \
-e 's/@''GNULIB_MKSTEMP''@/0/g' \
-e 's/@''GNULIB_MKSTEMPS''@/0/g' \
-e 's/@''GNULIB_PTSNAME''@/0/g' \
-e 's/@''GNULIB_PUTENV''@/0/g' \
-e 's/@''GNULIB_RANDOM_R''@/0/g' \
-e 's/@''GNULIB_REALLOC_POSIX''@/0/g' \
-e 's/@''GNULIB_REALPATH''@/1/g' \
-e 's/@''GNULIB_RPMATCH''@/0/g' \
-e 's/@''GNULIB_SETENV''@/0/g' \
-e 's/@''GNULIB_STRTOD''@/0/g' \
-e 's/@''GNULIB_STRTOLL''@/0/g' \
-e 's/@''GNULIB_STRTOULL''@/0/g' \
-e 's/@''GNULIB_SYSTEM_POSIX''@/0/g' \
-e 's/@''GNULIB_UNLOCKPT''@/0/g' \
-e 's/@''GNULIB_UNSETENV''@/0/g' \
-e 's/@''GNULIB_WCTOMB''@/0/g' \
< ./stdlib.in.h | \
sed -e 's|@''HAVE__EXIT''@|1|g' \
-e 's|@''HAVE_ATOLL''@|1|g' \
-e 's|@''HAVE_CANONICALIZE_FILE_NAME''@|1|g' \
-e 's|@''HAVE_DECL_GETLOADAVG''@|1|g' \
-e 's|@''HAVE_GETSUBOPT''@|1|g' \
-e 's|@''HAVE_GRANTPT''@|1|g' \
-e 's|@''HAVE_MKDTEMP''@|1|g' \
-e 's|@''HAVE_MKOSTEMP''@|1|g' \
-e 's|@''HAVE_MKOSTEMPS''@|1|g' \
-e 's|@''HAVE_MKSTEMP''@|1|g' \
-e 's|@''HAVE_MKSTEMPS''@|1|g' \
-e 's|@''HAVE_PTSNAME''@|1|g' \
-e 's|@''HAVE_RANDOM_H''@|1|g' \
-e 's|@''HAVE_RANDOM_R''@|1|g' \
-e 's|@''HAVE_REALPATH''@|1|g' \
-e 's|@''HAVE_RPMATCH''@|1|g' \
-e 's|@''HAVE_DECL_SETENV''@|1|g' \
-e 's|@''HAVE_STRTOD''@|1|g' \
-e 's|@''HAVE_STRTOLL''@|1|g' \
-e 's|@''HAVE_STRTOULL''@|1|g' \
-e 's|@''HAVE_STRUCT_RANDOM_DATA''@|1|g' \
-e 's|@''HAVE_SYS_LOADAVG_H''@|0|g' \
-e 's|@''HAVE_UNLOCKPT''@|1|g' \
-e 's|@''HAVE_DECL_UNSETENV''@|1|g' \
-e 's|@''REPLACE_CALLOC''@|0|g' \
-e 's|@''REPLACE_CANONICALIZE_FILE_NAME''@|0|g' \
-e 's|@''REPLACE_MALLOC''@|0|g' \
-e 's|@''REPLACE_MBTOWC''@|0|g' \
-e 's|@''REPLACE_MKSTEMP''@|0|g' \
-e 's|@''REPLACE_PUTENV''@|0|g' \
-e 's|@''REPLACE_REALLOC''@|0|g' \
-e 's|@''REPLACE_REALPATH''@|0|g' \
-e 's|@''REPLACE_SETENV''@|0|g' \
-e 's|@''REPLACE_STRTOD''@|0|g' \
-e 's|@''REPLACE_UNSETENV''@|0|g' \
-e 's|@''REPLACE_WCTOMB''@|0|g' \
-e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-e '/definition of _Noreturn/r
../build-aux/snippet/_Noreturn.h' \
-e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
-e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
} > stdlib.h-t && \
mv stdlib.h-t stdlib.h
rm -f string.h-t string.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
sed -e 's|@''GUARD_PREFIX''@|GL|g' \
-e 's|@''INCLUDE_NEXT''@|include_next|g' \
-e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC
system_header|g' \
-e 's|@''PRAGMA_COLUMNS''@||g' \
-e 's|@''NEXT_STRING_H''@|<string.h>|g' \
-e 's/@''GNULIB_FFSL''@/0/g' \
-e 's/@''GNULIB_FFSLL''@/0/g' \
-e 's/@''GNULIB_MBSLEN''@/0/g' \
-e 's/@''GNULIB_MBSNLEN''@/0/g' \
-e 's/@''GNULIB_MBSCHR''@/0/g' \
-e 's/@''GNULIB_MBSRCHR''@/0/g' \
-e 's/@''GNULIB_MBSSTR''@/0/g' \
-e 's/@''GNULIB_MBSCASECMP''@/0/g' \
-e 's/@''GNULIB_MBSNCASECMP''@/0/g' \
-e 's/@''GNULIB_MBSPCASECMP''@/0/g' \
-e 's/@''GNULIB_MBSCASESTR''@/0/g' \
-e 's/@''GNULIB_MBSCSPN''@/0/g' \
-e 's/@''GNULIB_MBSPBRK''@/0/g' \
-e 's/@''GNULIB_MBSSPN''@/0/g' \
-e 's/@''GNULIB_MBSSEP''@/0/g' \
-e 's/@''GNULIB_MBSTOK_R''@/0/g' \
-e 's/@''GNULIB_MEMCHR''@/0/g' \
-e 's/@''GNULIB_MEMMEM''@/0/g' \
-e 's/@''GNULIB_MEMPCPY''@/0/g' \
-e 's/@''GNULIB_MEMRCHR''@/0/g' \
-e 's/@''GNULIB_RAWMEMCHR''@/0/g' \
-e 's/@''GNULIB_STPCPY''@/0/g' \
-e 's/@''GNULIB_STPNCPY''@/0/g' \
-e 's/@''GNULIB_STRCHRNUL''@/0/g' \
-e 's/@''GNULIB_STRDUP''@/0/g' \
-e 's/@''GNULIB_STRNCAT''@/0/g' \
-e 's/@''GNULIB_STRNDUP''@/0/g' \
-e 's/@''GNULIB_STRNLEN''@/0/g' \
-e 's/@''GNULIB_STRPBRK''@/0/g' \
-e 's/@''GNULIB_STRSEP''@/0/g' \
-e 's/@''GNULIB_STRSTR''@/0/g' \
-e 's/@''GNULIB_STRCASESTR''@/0/g' \
-e 's/@''GNULIB_STRTOK_R''@/0/g' \
-e 's/@''GNULIB_STRERROR''@/1/g' \
-e 's/@''GNULIB_STRERROR_R''@/0/g' \
-e 's/@''GNULIB_STRSIGNAL''@/0/g' \
-e 's/@''GNULIB_STRVERSCMP''@/0/g' \
< ./string.in.h | \
sed -e 's|@''HAVE_FFSL''@|1|g' \
-e 's|@''HAVE_FFSLL''@|1|g' \
-e 's|@''HAVE_MBSLEN''@|0|g' \
-e 's|@''HAVE_MEMCHR''@|1|g' \
-e 's|@''HAVE_DECL_MEMMEM''@|1|g' \
-e 's|@''HAVE_MEMPCPY''@|1|g' \
-e 's|@''HAVE_DECL_MEMRCHR''@|1|g' \
-e 's|@''HAVE_RAWMEMCHR''@|1|g' \
-e 's|@''HAVE_STPCPY''@|1|g' \
-e 's|@''HAVE_STPNCPY''@|1|g' \
-e 's|@''HAVE_STRCHRNUL''@|1|g' \
-e 's|@''HAVE_DECL_STRDUP''@|1|g' \
-e 's|@''HAVE_DECL_STRNDUP''@|1|g' \
-e 's|@''HAVE_DECL_STRNLEN''@|1|g' \
-e 's|@''HAVE_STRPBRK''@|1|g' \
-e 's|@''HAVE_STRSEP''@|1|g' \
-e 's|@''HAVE_STRCASESTR''@|1|g' \
-e 's|@''HAVE_DECL_STRTOK_R''@|1|g' \
-e 's|@''HAVE_DECL_STRERROR_R''@|1|g' \
-e 's|@''HAVE_DECL_STRSIGNAL''@|1|g' \
-e 's|@''HAVE_STRVERSCMP''@|1|g' \
-e 's|@''REPLACE_STPNCPY''@|0|g' \
-e 's|@''REPLACE_MEMCHR''@|0|g' \
-e 's|@''REPLACE_MEMMEM''@|0|g' \
-e 's|@''REPLACE_STRCASESTR''@|0|g' \
-e 's|@''REPLACE_STRCHRNUL''@|0|g' \
-e 's|@''REPLACE_STRDUP''@|0|g' \
-e 's|@''REPLACE_STRSTR''@|0|g' \
-e 's|@''REPLACE_STRERROR''@|0|g' \
-e 's|@''REPLACE_STRERROR_R''@|0|g' \
-e 's|@''REPLACE_STRNCAT''@|0|g' \
-e 's|@''REPLACE_STRNDUP''@|0|g' \
-e 's|@''REPLACE_STRNLEN''@|0|g' \
-e 's|@''REPLACE_STRSIGNAL''@|0|g' \
-e 's|@''REPLACE_STRTOK_R''@|0|g' \
-e 's|@''UNDEFINE_STRTOK_R''@|0|g' \
-e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
-e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
< ./string.in.h; \
} > string.h-t && \
mv string.h-t string.h
/bin/mkdir -p sys
rm -f time.h-t time.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
sed -e 's|@''GUARD_PREFIX''@|GL|g' \
-e 's|@''INCLUDE_NEXT''@|include_next|g' \
-e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC
system_header|g' \
-e 's|@''PRAGMA_COLUMNS''@||g' \
-e 's|@''NEXT_TIME_H''@|<time.h>|g' \
-e 's/@''GNULIB_MKTIME''@/0/g' \
-e 's/@''GNULIB_NANOSLEEP''@/0/g' \
-e 's/@''GNULIB_STRPTIME''@/0/g' \
-e 's/@''GNULIB_TIMEGM''@/0/g' \
-e 's/@''GNULIB_TIME_R''@/0/g' \
-e 's|@''HAVE_DECL_LOCALTIME_R''@|1|g' \
-e 's|@''HAVE_NANOSLEEP''@|1|g' \
-e 's|@''HAVE_STRPTIME''@|1|g' \
-e 's|@''HAVE_TIMEGM''@|1|g' \
-e 's|@''REPLACE_LOCALTIME_R''@|GNULIB_PORTCHECK|g' \
-e 's|@''REPLACE_MKTIME''@|GNULIB_PORTCHECK|g' \
-e 's|@''REPLACE_NANOSLEEP''@|GNULIB_PORTCHECK|g' \
-e 's|@''REPLACE_TIMEGM''@|GNULIB_PORTCHECK|g' \
-e 's|@''PTHREAD_H_DEFINES_STRUCT_TIMESPEC''@|0|g' \
-e 's|@''SYS_TIME_H_DEFINES_STRUCT_TIMESPEC''@|0|g' \
-e 's|@''TIME_H_DEFINES_STRUCT_TIMESPEC''@|1|g' \
-e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
-e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
< ./time.in.h; \
} > time.h-t && \
mv time.h-t time.h
rm -f unistd.h-t unistd.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
sed -e 's|@''GUARD_PREFIX''@|GL|g' \
-e 's|@''HAVE_UNISTD_H''@|1|g' \
-e 's|@''INCLUDE_NEXT''@|include_next|g' \
-e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC
system_header|g' \
-e 's|@''PRAGMA_COLUMNS''@||g' \
-e 's|@''NEXT_UNISTD_H''@|<unistd.h>|g' \
-e 's/@''GNULIB_CHOWN''@/0/g' \
-e 's/@''GNULIB_CLOSE''@/0/g' \
-e 's/@''GNULIB_DUP2''@/0/g' \
-e 's/@''GNULIB_DUP3''@/0/g' \
-e 's/@''GNULIB_ENVIRON''@/1/g' \
-e 's/@''GNULIB_EUIDACCESS''@/0/g' \
-e 's/@''GNULIB_FACCESSAT''@/0/g' \
-e 's/@''GNULIB_FCHDIR''@/0/g' \
-e 's/@''GNULIB_FCHOWNAT''@/0/g' \
-e 's/@''GNULIB_FSYNC''@/0/g' \
-e 's/@''GNULIB_FTRUNCATE''@/0/g' \
-e 's/@''GNULIB_GETCWD''@/0/g' \
-e 's/@''GNULIB_GETDOMAINNAME''@/0/g' \
-e 's/@''GNULIB_GETDTABLESIZE''@/0/g' \
-e 's/@''GNULIB_GETGROUPS''@/0/g' \
-e 's/@''GNULIB_GETHOSTNAME''@/0/g' \
-e 's/@''GNULIB_GETLOGIN''@/0/g' \
-e 's/@''GNULIB_GETLOGIN_R''@/0/g' \
-e 's/@''GNULIB_GETPAGESIZE''@/0/g' \
-e 's/@''GNULIB_GETUSERSHELL''@/0/g' \
-e 's/@''GNULIB_GROUP_MEMBER''@/0/g' \
-e 's/@''GNULIB_LCHOWN''@/0/g' \
-e 's/@''GNULIB_LINK''@/0/g' \
-e 's/@''GNULIB_LINKAT''@/0/g' \
-e 's/@''GNULIB_LSEEK''@/0/g' \
-e 's/@''GNULIB_PIPE''@/0/g' \
-e 's/@''GNULIB_PIPE2''@/0/g' \
-e 's/@''GNULIB_PREAD''@/0/g' \
-e 's/@''GNULIB_PWRITE''@/0/g' \
-e 's/@''GNULIB_READ''@/1/g' \
-e 's/@''GNULIB_READLINK''@/1/g' \
-e 's/@''GNULIB_READLINKAT''@/0/g' \
-e 's/@''GNULIB_RMDIR''@/0/g' \
-e 's/@''GNULIB_SLEEP''@/0/g' \
-e 's/@''GNULIB_SYMLINK''@/0/g' \
-e 's/@''GNULIB_SYMLINKAT''@/0/g' \
-e 's/@''GNULIB_TTYNAME_R''@/0/g' \
-e 's/@''GNULIB_UNISTD_H_GETOPT''@/0/g' \
-e 's/@''GNULIB_UNISTD_H_NONBLOCKING''@/0/g' \
-e 's/@''GNULIB_UNISTD_H_SIGPIPE''@/1/g' \
-e 's/@''GNULIB_UNLINK''@/0/g' \
-e 's/@''GNULIB_UNLINKAT''@/0/g' \
-e 's/@''GNULIB_USLEEP''@/0/g' \
-e 's/@''GNULIB_WRITE''@/0/g' \
< ./unistd.in.h | \
sed -e 's|@''HAVE_CHOWN''@|1|g' \
-e 's|@''HAVE_DUP2''@|1|g' \
-e 's|@''HAVE_DUP3''@|1|g' \
-e 's|@''HAVE_EUIDACCESS''@|1|g' \
-e 's|@''HAVE_FACCESSAT''@|1|g' \
-e 's|@''HAVE_FCHDIR''@|1|g' \
-e 's|@''HAVE_FCHOWNAT''@|1|g' \
-e 's|@''HAVE_FSYNC''@|1|g' \
-e 's|@''HAVE_FTRUNCATE''@|1|g' \
-e 's|@''HAVE_GETDTABLESIZE''@|1|g' \
-e 's|@''HAVE_GETGROUPS''@|1|g' \
-e 's|@''HAVE_GETHOSTNAME''@|1|g' \
-e 's|@''HAVE_GETLOGIN''@|1|g' \
-e 's|@''HAVE_GETPAGESIZE''@|1|g' \
-e 's|@''HAVE_GROUP_MEMBER''@|1|g' \
-e 's|@''HAVE_LCHOWN''@|1|g' \
-e 's|@''HAVE_LINK''@|1|g' \
-e 's|@''HAVE_LINKAT''@|1|g' \
-e 's|@''HAVE_PIPE''@|1|g' \
-e 's|@''HAVE_PIPE2''@|1|g' \
-e 's|@''HAVE_PREAD''@|1|g' \
-e 's|@''HAVE_PWRITE''@|1|g' \
-e 's|@''HAVE_READLINK''@|1|g' \
-e 's|@''HAVE_READLINKAT''@|1|g' \
-e 's|@''HAVE_SLEEP''@|1|g' \
-e 's|@''HAVE_SYMLINK''@|1|g' \
-e 's|@''HAVE_SYMLINKAT''@|1|g' \
-e 's|@''HAVE_UNLINKAT''@|1|g' \
-e 's|@''HAVE_USLEEP''@|1|g' \
-e 's|@''HAVE_DECL_ENVIRON''@|1|g' \
-e 's|@''HAVE_DECL_FCHDIR''@|1|g' \
-e 's|@''HAVE_DECL_GETDOMAINNAME''@|1|g' \
-e 's|@''HAVE_DECL_GETLOGIN_R''@|1|g' \
-e 's|@''HAVE_DECL_GETPAGESIZE''@|1|g' \
-e 's|@''HAVE_DECL_GETUSERSHELL''@|1|g' \
-e 's|@''HAVE_DECL_TTYNAME_R''@|1|g' \
-e 's|@''HAVE_OS_H''@|0|g' \
-e 's|@''HAVE_SYS_PARAM_H''@|0|g' \
| \
sed -e 's|@''REPLACE_CHOWN''@|0|g' \
-e 's|@''REPLACE_CLOSE''@|0|g' \
-e 's|@''REPLACE_DUP''@|0|g' \
-e 's|@''REPLACE_DUP2''@|0|g' \
-e 's|@''REPLACE_FCHOWNAT''@|0|g' \
-e 's|@''REPLACE_GETCWD''@|0|g' \
-e 's|@''REPLACE_GETDOMAINNAME''@|0|g' \
-e 's|@''REPLACE_GETLOGIN_R''@|0|g' \
-e 's|@''REPLACE_GETGROUPS''@|0|g' \
-e 's|@''REPLACE_GETPAGESIZE''@|0|g' \
-e 's|@''REPLACE_LCHOWN''@|0|g' \
-e 's|@''REPLACE_LINK''@|0|g' \
-e 's|@''REPLACE_LINKAT''@|0|g' \
-e 's|@''REPLACE_LSEEK''@|0|g' \
-e 's|@''REPLACE_PREAD''@|0|g' \
-e 's|@''REPLACE_PWRITE''@|0|g' \
-e 's|@''REPLACE_READ''@|0|g' \
-e 's|@''REPLACE_READLINK''@|0|g' \
-e 's|@''REPLACE_RMDIR''@|0|g' \
-e 's|@''REPLACE_SLEEP''@|0|g' \
-e 's|@''REPLACE_SYMLINK''@|0|g' \
-e 's|@''REPLACE_TTYNAME_R''@|0|g' \
-e 's|@''REPLACE_UNLINK''@|0|g' \
-e 's|@''REPLACE_UNLINKAT''@|0|g' \
-e 's|@''REPLACE_USLEEP''@|0|g' \
-e 's|@''REPLACE_WRITE''@|0|g' \
-e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|0|g' \
-e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|0|g' \
-e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
-e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
} > unistd.h-t && \
mv unistd.h-t unistd.h
rm -f sys/stat.h-t sys/stat.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
sed -e 's|@''GUARD_PREFIX''@|GL|g' \
-e 's|@''INCLUDE_NEXT''@|include_next|g' \
-e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC
system_header|g' \
-e 's|@''PRAGMA_COLUMNS''@||g' \
-e 's|@''NEXT_SYS_STAT_H''@|<sys/stat.h>|g' \
-e 's/@''GNULIB_FCHMODAT''@/0/g' \
-e 's/@''GNULIB_FSTATAT''@/0/g' \
-e 's/@''GNULIB_FUTIMENS''@/0/g' \
-e 's/@''GNULIB_LCHMOD''@/0/g' \
-e 's/@''GNULIB_LSTAT''@/1/g' \
-e 's/@''GNULIB_MKDIRAT''@/0/g' \
-e 's/@''GNULIB_MKFIFO''@/0/g' \
-e 's/@''GNULIB_MKFIFOAT''@/0/g' \
-e 's/@''GNULIB_MKNOD''@/0/g' \
-e 's/@''GNULIB_MKNODAT''@/0/g' \
-e 's/@''GNULIB_STAT''@/1/g' \
-e 's/@''GNULIB_UTIMENSAT''@/0/g' \
-e 's|@''HAVE_FCHMODAT''@|1|g' \
-e 's|@''HAVE_FSTATAT''@|1|g' \
-e 's|@''HAVE_FUTIMENS''@|1|g' \
-e 's|@''HAVE_LCHMOD''@|1|g' \
-e 's|@''HAVE_LSTAT''@|1|g' \
-e 's|@''HAVE_MKDIRAT''@|1|g' \
-e 's|@''HAVE_MKFIFO''@|1|g' \
-e 's|@''HAVE_MKFIFOAT''@|1|g' \
-e 's|@''HAVE_MKNOD''@|1|g' \
-e 's|@''HAVE_MKNODAT''@|1|g' \
-e 's|@''HAVE_UTIMENSAT''@|1|g' \
-e 's|@''REPLACE_FSTAT''@|0|g' \
-e 's|@''REPLACE_FSTATAT''@|0|g' \
-e 's|@''REPLACE_FUTIMENS''@|0|g' \
-e 's|@''REPLACE_LSTAT''@|0|g' \
-e 's|@''REPLACE_MKDIR''@|0|g' \
-e 's|@''REPLACE_MKFIFO''@|0|g' \
-e 's|@''REPLACE_MKNOD''@|0|g' \
-e 's|@''REPLACE_STAT''@|0|g' \
-e 's|@''REPLACE_UTIMENSAT''@|0|g' \
-e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
-e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
-e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
< ./sys_stat.in.h; \
} > sys/stat.h-t && \
mv sys/stat.h-t sys/stat.h
make all-am
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/srclib'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14'
make[3]: Nothing to be done for `am--refresh'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14'
make[2]: Nothing to be done for `all-am'.
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/srclib'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/srclib'
cd src && make all
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/src'
test `ls -ld . | sed -e 's/^d\(.........\).*/\1/'` = rwxrwxrwx || chmod
777 .
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/src'
cd po && make all
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/po'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/po'
cd man && make all
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/man'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/man'
if test -d tests; then cd tests && make all; fi
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/tests'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/tests'
cd libcharset && make install
prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
exec_prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
libdir='/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/libcharset'
cd lib && make install
prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
exec_prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
libdir='/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/libcharset/lib'
if test yes = no; then \
case 'linux-gnu' in \
darwin[56]*) \
need_charset_alias=true ;; \
darwin* | cygwin* | mingw* | pw32* | cegcc*) \
need_charset_alias=false ;; \
*) \
need_charset_alias=true ;; \
esac ; \
else \
need_charset_alias=false ; \
fi ; \
/bin/sh ../build-aux/mkinstalldirs
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib ; \
/bin/sh ../libtool --mode=install /usr/bin/install -c -m 644
libcharset.la
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libcharset.la
libtool: install: /usr/bin/install -c -m 644 .libs/libcharset.lai
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libcharset.la
libtool: install: /usr/bin/install -c -m 644 .libs/libcharset.a
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libcharset.a
libtool: install: chmod 644
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libcharset.a
libtool: install: ranlib
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libcharset.a
libtool: finish:
PATH="/cluster/home/nuetzig/python/python3.4Env/bin:/cluster/apps/python/3.3.3/x86_64/bin:/cluster/apps/texlive/2009/x86_64/share/texmf/bin:/cluster/apps/git/1.9.0/x86_64/bin:/cluster/home/nuetzig/opt/HDF_Group/HDF5/1.8.15/bin:/cluster/apps/fftw/3.3.3/x86_64/gcc_4.8.2/openmpi_1.6.5/bin:/cluster/apps/blcr/0.8.4/x86_64/bin:/cluster/apps/openmpi/1.6.5/x86_64/gcc_4.8.2/bin:/cluster/home/nuetzig/bin:/cluster/home/nuetzig/cmake/cmake-3.3.0/bin:/cluster/home/nuetzig/opt/bin/:/cluster/home/nuetzig/perl5/bin:/cluster/apps/modules/bin:/cluster/apps/lsf/9.1/linux2.6-glibc2.3-x86_64/etc:/cluster/apps/lsf/9.1/linux2.6-glibc2.3-x86_64/bin:/cluster/apps/gcc/4.8.2/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/sbin"
ldconfig -n /cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib
----------------------------------------------------------------------
Libraries have been installed in:
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
if test -f
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/charset.alias;
then \
sed -f ref-add.sed
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/charset.alias >
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/t-charset.alias; \
/usr/bin/install -c -m 644
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/t-charset.alias
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/charset.alias; \
rm -f
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/t-charset.alias; \
else \
if $need_charset_alias; then \
sed -f ref-add.sed charset.alias >
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/t-charset.alias; \
/usr/bin/install -c -m 644
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/t-charset.alias
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/charset.alias; \
rm -f
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/t-charset.alias; \
fi ; \
fi
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/libcharset/lib'
/bin/sh ./build-aux/mkinstalldirs
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include
/usr/bin/install -c -m 644 include/libcharset.h
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libcharset.h
/usr/bin/install -c -m 644 include/localcharset.h.inst
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/localcharset.h
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/libcharset'
cd lib && make install
prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
exec_prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
libdir='/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/lib'
if [ ! -d /cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib ] ;
then /bin/sh ../build-aux/mkinstalldirs
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib ; fi
/bin/sh ../libtool --mode=install /usr/bin/install -c -m 644 libiconv.la
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libiconv.la
libtool: install: /usr/bin/install -c -m 644 .libs/libiconv.lai
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libiconv.la
libtool: install: /usr/bin/install -c -m 644 .libs/libiconv.a
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libiconv.a
libtool: install: chmod 644
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libiconv.a
libtool: install: ranlib
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libiconv.a
libtool: finish:
PATH="/cluster/home/nuetzig/python/python3.4Env/bin:/cluster/apps/python/3.3.3/x86_64/bin:/cluster/apps/texlive/2009/x86_64/share/texmf/bin:/cluster/apps/git/1.9.0/x86_64/bin:/cluster/home/nuetzig/opt/HDF_Group/HDF5/1.8.15/bin:/cluster/apps/fftw/3.3.3/x86_64/gcc_4.8.2/openmpi_1.6.5/bin:/cluster/apps/blcr/0.8.4/x86_64/bin:/cluster/apps/openmpi/1.6.5/x86_64/gcc_4.8.2/bin:/cluster/home/nuetzig/bin:/cluster/home/nuetzig/cmake/cmake-3.3.0/bin:/cluster/home/nuetzig/opt/bin/:/cluster/home/nuetzig/perl5/bin:/cluster/apps/modules/bin:/cluster/apps/lsf/9.1/linux2.6-glibc2.3-x86_64/etc:/cluster/apps/lsf/9.1/linux2.6-glibc2.3-x86_64/bin:/cluster/apps/gcc/4.8.2/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/sbin"
ldconfig -n /cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib
----------------------------------------------------------------------
Libraries have been installed in:
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
case "linux-gnu" in \
aix*) (cd
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib && \
objects=`ar t libiconv.a`" "`ar t /lib/libiconv.a` && \
ar x libiconv.a && ar x /lib/libiconv.a && \
ar q libiconv.new.a $objects && \
rm -f $objects && \
mv -f libiconv.new.a libiconv.a) ;; \
esac
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/lib'
cd preload && make install
prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
exec_prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
libdir='/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/preload'
if [ ! -d /cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib ] ;
then /bin/sh ./build-aux/mkinstalldirs
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib ; fi
if test -n "preloadable_libiconv.so"; then /usr/bin/install -c -m 644
preloadable_libiconv.so
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/preloadable_libiconv.so.new
&& mv
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/preloadable_libiconv.so.new
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/preloadable_libiconv.so
; fi
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/preload'
cd srclib && make install
prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
exec_prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
libdir='/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/srclib'
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14'
make[2]: Nothing to be done for `am--refresh'.
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14'
make install-am
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/srclib'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14'
make[3]: Nothing to be done for `am--refresh'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/srclib'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14'
make[4]: Nothing to be done for `am--refresh'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/srclib'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/srclib'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/srclib'
cd src && make install
prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
exec_prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
libdir='/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/src'
test `ls -ld . | sed -e 's/^d\(.........\).*/\1/'` = rwxrwxrwx || chmod
777 .
if [ ! -d /cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin ] ;
then /bin/sh ../build-aux/mkinstalldirs
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin ; fi
case "linux-gnu" in \
hpux*) /cluster/apps/gcc/4.8.2/bin/gcc -g -O2 `if test -n
''; then /cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin; fi`
iconv.o ../srclib/libicrt.a
-L/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib -liconv `if
test -n ''; then echo " -Wl,+b
-Wl,/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib"; fi` -o
iconv;; \
*) /bin/sh ../libtool --mode=link
/cluster/apps/gcc/4.8.2/bin/gcc -g -O2 `if test -n ''; then
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin; fi` iconv.o
../srclib/libicrt.a
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libiconv.la -o
iconv;; \
esac
libtool: link: /cluster/apps/gcc/4.8.2/bin/gcc -g -O2 iconv.o -o iconv
../srclib/libicrt.a
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libiconv.a
/bin/sh ../libtool --mode=install /usr/bin/install -c iconv
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin/iconv
libtool: install: /usr/bin/install -c iconv
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin/iconv
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/src'
if [ ! -d /cluster/home/nuetzig/installLXML/build/tmp/libxml2/include ]
; then /bin/sh ./build-aux/mkinstalldirs
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include ; fi
/usr/bin/install -c -m 644 include/iconv.h.inst
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/iconv.h
cd po && make install
prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
exec_prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
datarootdir='/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share'
datadir='/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share'
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/po'
installing af.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/af/LC_MESSAGES/libiconv.mo
installing bg.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/bg/LC_MESSAGES/libiconv.mo
installing ca.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/ca/LC_MESSAGES/libiconv.mo
installing cs.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/cs/LC_MESSAGES/libiconv.mo
installing da.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/da/LC_MESSAGES/libiconv.mo
installing de.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/de/LC_MESSAGES/libiconv.mo
installing el.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/el/LC_MESSAGES/libiconv.mo
installing eo.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/eo/LC_MESSAGES/libiconv.mo
installing es.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/es/LC_MESSAGES/libiconv.mo
installing et.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/et/LC_MESSAGES/libiconv.mo
installing fi.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/fi/LC_MESSAGES/libiconv.mo
installing fr.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/fr/LC_MESSAGES/libiconv.mo
installing ga.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/ga/LC_MESSAGES/libiconv.mo
installing gl.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/gl/LC_MESSAGES/libiconv.mo
installing hr.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/hr/LC_MESSAGES/libiconv.mo
installing hu.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/hu/LC_MESSAGES/libiconv.mo
installing id.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/id/LC_MESSAGES/libiconv.mo
installing it.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/it/LC_MESSAGES/libiconv.mo
installing ja.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/ja/LC_MESSAGES/libiconv.mo
installing nl.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/nl/LC_MESSAGES/libiconv.mo
installing pl.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/pl/LC_MESSAGES/libiconv.mo
installing pt_BR.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/pt_BR/LC_MESSAGES/libiconv.mo
installing rm.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/rm/LC_MESSAGES/libiconv.mo
installing ro.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/ro/LC_MESSAGES/libiconv.mo
installing ru.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/ru/LC_MESSAGES/libiconv.mo
installing sk.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/sk/LC_MESSAGES/libiconv.mo
installing sl.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/sl/LC_MESSAGES/libiconv.mo
installing sq.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/sq/LC_MESSAGES/libiconv.mo
installing sr.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/sr/LC_MESSAGES/libiconv.mo
installing sv.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/sv/LC_MESSAGES/libiconv.mo
installing tr.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/tr/LC_MESSAGES/libiconv.mo
installing uk.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/uk/LC_MESSAGES/libiconv.mo
installing vi.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/vi/LC_MESSAGES/libiconv.mo
installing wa.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/wa/LC_MESSAGES/libiconv.mo
installing zh_CN.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/zh_CN/LC_MESSAGES/libiconv.mo
installing zh_TW.gmo as
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/locale/zh_TW/LC_MESSAGES/libiconv.mo
if test "libiconv" = "gettext-tools"; then \
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/gettext/po; \
for file in Makefile.in.in remove-potcdate.sin quot.sed
boldquot.sed en(a)quot.header en(a)boldquot.header insert-header.sin
Rules-quot Makevars.template; do \
/usr/bin/install -c -m 644 ./$file \
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/gettext/po/$file;
\
done; \
for file in Makevars; do \
rm -f
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/gettext/po/$file;
\
done; \
else \
: ; \
fi
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/po'
cd man && make install
prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
exec_prefix='/cluster/home/nuetzig/installLXML/build/tmp/libxml2'
datarootdir='/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share'
datadir='/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share'
mandir='/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man'
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/man'
if [ ! -d
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man1 ] ;
then /bin/sh ../build-aux/mkinstalldirs
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man1 ; fi
builddir="`pwd`"; cd . && for f in *.1 ; do (cd "$builddir"; echo
/usr/bin/install -c -m 644 ./$f
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man1/$f ;
/usr/bin/install -c -m 644 ./$f
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man1/$f) ;
done
/usr/bin/install -c -m 644 ./iconv.1
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man1/iconv.1
if [ ! -d
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3 ] ;
then /bin/sh ../build-aux/mkinstalldirs
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3 ; fi
builddir="`pwd`"; cd . && for f in *.3 ; do (cd "$builddir"; echo
/usr/bin/install -c -m 644 ./$f
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3/$f ;
/usr/bin/install -c -m 644 ./$f
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3/$f) ;
done
/usr/bin/install -c -m 644 ./iconv.3
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3/iconv.3
/usr/bin/install -c -m 644 ./iconv_close.3
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3/iconv_close.3
/usr/bin/install -c -m 644 ./iconvctl.3
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3/iconvctl.3
/usr/bin/install -c -m 644 ./iconv_open.3
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3/iconv_open.3
/usr/bin/install -c -m 644 ./iconv_open_into.3
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3/iconv_open_into.3
if [ ! -d
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libiconv ]
; then /bin/sh ../build-aux/mkinstalldirs
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libiconv ; fi
builddir="`pwd`"; cd . && for f in *.html ; do (cd "$builddir"; echo
/usr/bin/install -c -m 644 ./$f
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libiconv/$f ;
/usr/bin/install -c -m 644 ./$f
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libiconv/$f)
; done
/usr/bin/install -c -m 644 ./iconv.1.html
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libiconv/iconv.1.html
/usr/bin/install -c -m 644 ./iconv.3.html
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libiconv/iconv.3.html
/usr/bin/install -c -m 644 ./iconv_close.3.html
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libiconv/iconv_close.3.html
/usr/bin/install -c -m 644 ./iconvctl.3.html
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libiconv/iconvctl.3.html
/usr/bin/install -c -m 644 ./iconv_open.3.html
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libiconv/iconv_open.3.html
/usr/bin/install -c -m 644 ./iconv_open_into.3.html
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libiconv/iconv_open_into.3.html
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libiconv-1.14/man'
Starting build in build/tmp/libxml2-2.9.2
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking for gcc... /cluster/apps/gcc/4.8.2/bin/gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /cluster/apps/gcc/4.8.2/bin/gcc accepts -g... yes
checking for /cluster/apps/gcc/4.8.2/bin/gcc option to accept ISO C89...
none needed
checking for style of include used by make... GNU
checking dependency style of /cluster/apps/gcc/4.8.2/bin/gcc... none
checking whether ln -s works... yes
checking how to run the C preprocessor... /cluster/apps/gcc/4.8.2/bin/cpp
checking for mv... /bin/mv
checking for tar... /bin/tar
checking for perl... /usr/bin/perl
checking for wget... /usr/bin/wget
checking for xmllint... /usr/bin/xmllint
checking for xsltproc... /usr/bin/xsltproc
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for fgrep... /bin/grep -F
checking for ld used by /cluster/apps/gcc/4.8.2/bin/gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 1966080
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to
x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain
format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from
/cluster/apps/gcc/4.8.2/bin/gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -fno-rtti
-fno-exceptions... no
checking for /cluster/apps/gcc/4.8.2/bin/gcc option to produce PIC...
-fPIC -DPIC
checking if /cluster/apps/gcc/4.8.2/bin/gcc PIC flag -fPIC -DPIC
works... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc static flag -static works... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -c -o file.o... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -c -o file.o...
(cached) yes
checking whether the /cluster/apps/gcc/4.8.2/bin/gcc linker (/usr/bin/ld
-m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
Checking zlib
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking for gzread in -lz... yes
Checking lzma
checking for LZMA... no
checking lzma.h usability... no
checking lzma.h presence... no
checking for lzma.h... no
Checking headers
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for ANSI C header files... (cached) yes
checking fcntl.h usability... yes
checking fcntl.h presence... yes
checking for fcntl.h... yes
checking for unistd.h... (cached) yes
checking ctype.h usability... yes
checking ctype.h presence... yes
checking for ctype.h... yes
checking dirent.h usability... yes
checking dirent.h presence... yes
checking for dirent.h... yes
checking errno.h usability... yes
checking errno.h presence... yes
checking for errno.h... yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking for sys/stat.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for stdint.h... (cached) yes
checking for inttypes.h... (cached) yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking ansidecl.h usability... yes
checking ansidecl.h presence... yes
checking for ansidecl.h... yes
checking ieeefp.h usability... no
checking ieeefp.h presence... no
checking for ieeefp.h... no
checking nan.h usability... no
checking nan.h presence... no
checking for nan.h... no
checking math.h usability... yes
checking math.h presence... yes
checking for math.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking fp_class.h usability... no
checking fp_class.h presence... no
checking for fp_class.h... no
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking for stdlib.h... (cached) yes
checking for sys/socket.h... yes
checking for netinet/in.h... yes
checking for arpa/inet.h... yes
checking netdb.h usability... yes
checking netdb.h presence... yes
checking for netdb.h... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking poll.h usability... yes
checking poll.h presence... yes
checking for poll.h... yes
checking sys/mman.h usability... yes
checking sys/mman.h presence... yes
checking for sys/mman.h... yes
checking sys/timeb.h usability... yes
checking sys/timeb.h presence... yes
checking for sys/timeb.h... yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking for arpa/nameser.h... yes
checking for resolv.h... yes
checking dl.h usability... no
checking dl.h presence... no
checking for dl.h... no
checking for dlfcn.h... (cached) yes
Checking types
checking for uint32_t... yes
Checking libraries
checking for strftime... yes
checking for strdup... yes
checking for strndup... yes
checking for strerror... yes
checking for finite... yes
checking for isnand... no
checking for fp_class... no
checking for class... no
checking for fpclass... no
checking for strftime... (cached) yes
checking for localtime... yes
checking for gettimeofday... yes
checking for ftime... yes
checking for stat... yes
checking for _stat... no
checking for signal... yes
checking for rand... yes
checking for rand_r... yes
checking for srand... yes
checking for time... yes
checking for isascii... yes
checking for mmap... yes
checking for munmap... yes
checking for putenv... yes
checking for va_copy... yes
checking whether va_list is an array type... yes
checking for library containing gethostent... none required
checking for library containing setsockopt... none required
checking for library containing connect... none required
checking for type of socket length (socklen_t)... socklen_t *
checking for const gethostbyname() argument... yes
checking for const send() second argument... yes
checking whether to enable IPv6... yes
checking struct sockaddr::ss_family... yes
checking for getaddrinfo... yes
checking for isnan... yes
checking for isinf... yes
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
Checking configuration requirements
Enabling multithreaded support
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for pthread_join in -lpthread... yes
Enabled Schematron support
checking iconv.h usability... yes
checking iconv.h presence... yes
checking for iconv.h... yes
checking for iconv... no
checking for iconv in -liconv... yes
checking for iconv declaration...
extern size_t iconv (iconv_t cd, char * *inbuf, size_t
*inbytesleft, char * *outbuf, size_t *outbytesleft);
Disabling ICU support
Enabled Schemas/Relax-NG support
checking for printf... yes
checking for sprintf... yes
checking for fprintf... yes
checking for snprintf... yes
checking for vfprintf... yes
checking for vsprintf... yes
checking for vsnprintf... yes
checking for sscanf... yes
Disabling code coverage for GCC
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating libxml2.spec
config.status: creating Makefile
config.status: creating include/Makefile
config.status: creating include/libxml/Makefile
config.status: creating doc/Makefile
config.status: creating doc/examples/Makefile
config.status: creating doc/devhelp/Makefile
config.status: creating example/Makefile
config.status: creating python/Makefile
config.status: creating python/tests/Makefile
config.status: creating xstc/Makefile
config.status: creating include/libxml/xmlversion.h
config.status: creating libxml-2.0.pc
config.status: creating libxml-2.0-uninstalled.pc
config.status: creating libxml2-config.cmake
config.status: creating python/setup.py
config.status: creating xml2-config
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
Done configuring
make all-recursive
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2'
Making all in include
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include'
Making all in libxml
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include/libxml'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include/libxml'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include'
Making all in .
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2'
sed -e
's?\@XML_LIBDIR\@?-L/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib?g'
\
-e
's?\@XML_INCLUDEDIR\@?-I/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2
-I/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include?g' \
-e 's?\@VERSION\@?2.9.2?g' \
-e 's?\@XML_LIBS\@?-lxml2 -lz
-L/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib -liconv -lm ?g' \
< ./xml2Conf.sh.in > xml2Conf.tmp \
&& mv xml2Conf.tmp xml2Conf.sh
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2'
Making all in doc
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc'
Making all in .
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc'
Making all in devhelp
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/devhelp'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/devhelp'
Making all in examples
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/examples'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/examples'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc'
Making all in example
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/example'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/example'
Making all in xstc
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/xstc'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/xstc'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2'
make install-recursive
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2'
Making install in include
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include'
Making install in libxml
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include/libxml'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include/libxml'
make[4]: Nothing to be done for `install-exec-am'.
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml'
/usr/bin/install -c -m 644 SAX.h entities.h encoding.h parser.h
parserInternals.h xmlerror.h HTMLparser.h HTMLtree.h debugXML.h tree.h
list.h hash.h xpath.h xpathInternals.h xpointer.h xinclude.h xmlIO.h
xmlmemory.h nanohttp.h nanoftp.h uri.h valid.h xlink.h xmlversion.h
DOCBparser.h catalog.h threads.h globals.h c14n.h xmlautomata.h
xmlregexp.h xmlmodule.h xmlschemas.h schemasInternals.h
xmlschemastypes.h xmlstring.h xmlunicode.h xmlreader.h relaxng.h dict.h
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml'
/usr/bin/install -c -m 644 SAX2.h xmlexports.h xmlwriter.h chvalid.h
pattern.h xmlsave.h schematron.h
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml'
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include/libxml'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include/libxml'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/include'
Making install in .
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2'
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/cmake/libxml2'
/bin/mkdir -p '/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
/bin/mkdir -p '/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/aclocal'
/bin/mkdir -p '/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin'
/usr/bin/install -c -m 0644 ./Copyright
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2
/bin/sh ./libtool --mode=install /usr/bin/install -c libxml2.la
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/examples
/usr/bin/install -c -m 0644 ./xmllint.c
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/examples
/usr/bin/install -c -m 644 libxml2-config.cmake
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/cmake/libxml2'
/usr/bin/install -c xml2-config
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin'
/usr/bin/install -c -m 644 xml2Conf.sh
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
/usr/bin/install -c -m 644 libxml.m4
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/aclocal'
libtool: install: /usr/bin/install -c .libs/libxml2.lai
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libxml2.la
/usr/bin/install -c -m 0644 ./testSAX.c
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/examples
libtool: install: /usr/bin/install -c .libs/libxml2.a
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libxml2.a
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man1'
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/pkgconfig'
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3'
libtool: install: chmod 644
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libxml2.a
/usr/bin/install -c -m 0644 ./testHTML.c
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/examples
libtool: install: ranlib
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libxml2.a
/usr/bin/install -c -m 644 libxml-2.0.pc
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/pkgconfig'
/usr/bin/install -c -m 0644 ./testXPath.c
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/examples
/usr/bin/install -c -m 644 xml2-config.1
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man1'
/usr/bin/install -c -m 644 libxml.3
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3'
libtool: finish:
PATH="/cluster/home/nuetzig/python/python3.4Env/bin:/cluster/apps/python/3.3.3/x86_64/bin:/cluster/apps/texlive/2009/x86_64/share/texmf/bin:/cluster/apps/git/1.9.0/x86_64/bin:/cluster/home/nuetzig/opt/HDF_Group/HDF5/1.8.15/bin:/cluster/apps/fftw/3.3.3/x86_64/gcc_4.8.2/openmpi_1.6.5/bin:/cluster/apps/blcr/0.8.4/x86_64/bin:/cluster/apps/openmpi/1.6.5/x86_64/gcc_4.8.2/bin:/cluster/home/nuetzig/bin:/cluster/home/nuetzig/cmake/cmake-3.3.0/bin:/cluster/home/nuetzig/opt/bin/:/cluster/home/nuetzig/perl5/bin:/cluster/apps/modules/bin:/cluster/apps/lsf/9.1/linux2.6-glibc2.3-x86_64/etc:/cluster/apps/lsf/9.1/linux2.6-glibc2.3-x86_64/bin:/cluster/apps/gcc/4.8.2/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/sbin"
ldconfig -n /cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib
----------------------------------------------------------------------
Libraries have been installed in:
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
/bin/mkdir -p '/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin'
/bin/sh ./libtool --mode=install /usr/bin/install -c xmllint
xmlcatalog '/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin'
libtool: install: /usr/bin/install -c xmllint
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin/xmllint
libtool: install: /usr/bin/install -c xmlcatalog
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin/xmlcatalog
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2'
Making install in doc
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc'
Making install in .
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc'
make[4]: Nothing to be done for `install-exec-am'.
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man1'
/usr/bin/install -c -m 0644 ./xml.html ./encoding.html ./FAQ.html
./structure.gif ./DOM.gif ./smallfootonly.gif ./redhat.gif ./libxml.gif
./w3c.png ./Libxml2-Logo-180x168.gif ./Libxml2-Logo-90x34.gif
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html
/usr/bin/install: cannot stat `./structure.gif': No such file or directory
/usr/bin/install: cannot stat `./DOM.gif': No such file or directory
/usr/bin/install: cannot stat `./smallfootonly.gif': No such file or
directory
/usr/bin/install: cannot stat `./redhat.gif': No such file or directory
/usr/bin/install: cannot stat `./libxml.gif': No such file or directory
/usr/bin/install: cannot stat `./Libxml2-Logo-180x168.gif': No such file
or directory
/usr/bin/install: cannot stat `./Libxml2-Logo-90x34.gif': No such file
or directory
make[4]: [install-data-local] Error 1 (ignored)
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html/html
/usr/bin/install -c -m 644 xmllint.1 xmlcatalog.1
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man1'
/usr/bin/install -c -m 0644 ./html/*.html
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html/html
/usr/bin/install -c -m 0644 ./html/*.png
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html/html
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html/tutorial
/usr/bin/install -c -m 0644 ./tutorial/*.* \
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html/tutorial
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html/tutorial/images
/usr/bin/install -c -m 0644 ./tutorial/images/*.* \
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html/tutorial/images
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html/tutorial/images/callouts
/usr/bin/install -c -m 0644 ./tutorial/images/callouts/*.* \
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html/tutorial/images/callouts
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc'
Making install in devhelp
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/devhelp'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/devhelp'
make[4]: Nothing to be done for `install-exec-am'.
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/gtk-doc/html/libxml2'
/usr/bin/install -c -m 644 libxml2.devhelp general.html index.html
libxml2-c14n.html libxml2-catalog.html libxml2-chvalid.html
libxml2-debugXML.html libxml2-dict.html libxml2-DOCBparser.html
libxml2-encoding.html libxml2-entities.html libxml2-globals.html
libxml2-hash.html libxml2-HTMLparser.html libxml2-HTMLtree.html
libxml2-list.html libxml2-nanoftp.html libxml2-nanohttp.html
libxml2-parser.html libxml2-parserInternals.html libxml2-pattern.html
libxml2-relaxng.html libxml2-SAX2.html libxml2-SAX.html
libxml2-schemasInternals.html libxml2-schematron.html
libxml2-threads.html libxml2-tree.html libxml2-uri.html
libxml2-valid.html libxml2-xinclude.html libxml2-xlink.html
libxml2-xmlautomata.html libxml2-xmlerror.html libxml2-xmlexports.html
libxml2-xmlIO.html libxml2-xmlmemory.html libxml2-xmlmodule.html
libxml2-xmlreader.html libxml2-xmlregexp.html
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/gtk-doc/html/libxml2'
/usr/bin/install -c -m 644 libxml2-xmlsave.html
libxml2-xmlschemas.html libxml2-xmlschemastypes.html
libxml2-xmlstring.html libxml2-xmlunicode.html libxml2-xmlversion.html
libxml2-xmlwriter.html libxml2-xpath.html libxml2-xpathInternals.html
libxml2-xpointer.html home.png left.png right.png up.png style.css
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/gtk-doc/html/libxml2'
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/devhelp'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/devhelp'
Making install in examples
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/examples'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/examples'
make[4]: Nothing to be done for `install-exec-am'.
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html
/usr/bin/install -c -m 0644 ./*.html ./*.c ./*.xml ./*.xsl ./*.res
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxml2-2.9.2/html
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/examples'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc/examples'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/doc'
Making install in example
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/example'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/example'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/example'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/example'
Making install in xstc
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/xstc'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/xstc'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/xstc'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2/xstc'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxml2-2.9.2'
Starting build in build/tmp/libxslt-1.1.28
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for gcc... /cluster/apps/gcc/4.8.2/bin/gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /cluster/apps/gcc/4.8.2/bin/gcc accepts -g... yes
checking for /cluster/apps/gcc/4.8.2/bin/gcc option to accept ISO C89...
none needed
checking how to run the C preprocessor... /cluster/apps/gcc/4.8.2/bin/cpp
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking dependency style of /cluster/apps/gcc/4.8.2/bin/gcc... none
checking whether make supports nested variables... yes
checking for gcc... (cached) /cluster/apps/gcc/4.8.2/bin/gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether /cluster/apps/gcc/4.8.2/bin/gcc accepts -g... (cached) yes
checking for /cluster/apps/gcc/4.8.2/bin/gcc option to accept ISO C89...
(cached) none needed
checking how to run the C preprocessor... /cluster/apps/gcc/4.8.2/bin/cpp
checking for rm... /bin/rm
checking for mv... /bin/mv
checking for tar... /bin/tar
checking for xmllint... /usr/bin/xmllint
checking for xsltproc... /usr/bin/xsltproc
checking for ANSI C header files... (cached) yes
checking how to print strings... printf
checking for a sed that does not truncate output... /bin/sed
checking for fgrep... /bin/grep -F
checking for ld used by /cluster/apps/gcc/4.8.2/bin/gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1966080
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert x86_64-unknown-linux-gnu file names to
x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain
format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from
/cluster/apps/gcc/4.8.2/bin/gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for objdir... .libs
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -fno-rtti
-fno-exceptions... no
checking for /cluster/apps/gcc/4.8.2/bin/gcc option to produce PIC...
-fPIC -DPIC
checking if /cluster/apps/gcc/4.8.2/bin/gcc PIC flag -fPIC -DPIC
works... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc static flag -static works... yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -c -o file.o...
/bin/rm: cannot remove `conftest*': No such file or directory
yes
checking if /cluster/apps/gcc/4.8.2/bin/gcc supports -c -o file.o...
(cached) yes
checking whether the /cluster/apps/gcc/4.8.2/bin/gcc linker (/usr/bin/ld
-m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for sys/types.h... (cached) yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for string.h... (cached) yes
checking how to pass version script to the linker (/usr/bin/ld -m
elf_x86_64)... -Wl,--version-script=
checking pthread.h usability... yes
checking pthread.h presence... yes
checking for pthread.h... yes
checking for pthread_join in -lpthread... yes
checking locale.h usability... yes
checking locale.h presence... yes
checking for locale.h... yes
checking xlocale.h usability... yes
checking xlocale.h presence... yes
checking for xlocale.h... yes
checking if xlocale program link... no
checking ieeefp.h usability... no
checking ieeefp.h presence... no
checking for ieeefp.h... no
checking nan.h usability... no
checking nan.h presence... no
checking for nan.h... no
checking math.h usability... yes
checking math.h presence... yes
checking for math.h... yes
checking fp_class.h usability... no
checking fp_class.h presence... no
checking for fp_class.h... no
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking ansidecl.h usability... yes
checking ansidecl.h presence... yes
checking for ansidecl.h... yes
checking sys/timeb.h usability... yes
checking sys/timeb.h presence... yes
checking for sys/timeb.h... yes
checking time.h usability... yes
checking time.h presence... yes
checking for time.h... yes
checking for sys/stat.h... (cached) yes
checking sys/select.h usability... yes
checking sys/select.h presence... yes
checking for sys/select.h... yes
checking stdarg.h usability... yes
checking stdarg.h presence... yes
checking for stdarg.h... yes
checking for stat... yes
checking for _stat... no
checking for pow... no
checking for pow in -lm... yes
checking for floor... no
checking for floor in -lm... yes
checking for fabs... no
checking for fabs in -lm... yes
checking for gettimeofday... yes
checking for mktime... yes
checking for localtime... yes
checking for localtime_r... yes
checking for asctime... yes
checking for time... yes
checking for gmtime... yes
checking for gmtime_r... yes
checking for ftime... yes
checking for printf... yes
checking for sprintf... yes
checking for fprintf... yes
checking for snprintf... yes
checking for vfprintf... yes
checking for vsprintf... yes
checking for vsnprintf... yes
checking for sscanf... yes
checking for clock_gettime... no
checking for clock_gettime in -lrt... yes
checking for perl... perl
checking for libgcrypt-config... /usr/bin/libgcrypt-config
Crypto extensions will be available.
Enabling debugger
checking for libxml libraries >= 2.6.27... 2.9.2 found
checking whether shared libraries will be built (required for plugins)... no
configure: WARNING: Disabling plugin support.
configure: WARNING: Plugins require that shared libraries be built.
configure: creating ./config.status
config.status: creating Makefile
config.status: creating libxslt.pc
config.status: creating libexslt.pc
config.status: creating libxslt/Makefile
config.status: creating libxslt/xsltconfig.h
config.status: creating libxslt/xsltwin32config.h
config.status: creating libexslt/Makefile
config.status: creating libexslt/exsltconfig.h
config.status: creating xsltproc/Makefile
config.status: creating python/Makefile
config.status: creating python/tests/Makefile
config.status: creating tests/Makefile
config.status: creating tests/docs/Makefile
config.status: creating tests/REC1/Makefile
config.status: creating tests/REC2/Makefile
config.status: creating tests/REC/Makefile
config.status: creating tests/general/Makefile
config.status: creating tests/reports/Makefile
config.status: creating tests/extensions/Makefile
config.status: creating tests/namespaces/Makefile
config.status: creating tests/keys/Makefile
config.status: creating tests/numbers/Makefile
config.status: creating tests/documents/Makefile
config.status: creating tests/xmlspec/Makefile
config.status: creating tests/multiple/Makefile
config.status: creating tests/xinclude/Makefile
config.status: creating tests/XSLTMark/Makefile
config.status: creating tests/docbook/Makefile
config.status: creating tests/exslt/Makefile
config.status: creating tests/exslt/common/Makefile
config.status: creating tests/exslt/functions/Makefile
config.status: creating tests/exslt/math/Makefile
config.status: creating tests/exslt/sets/Makefile
config.status: creating tests/exslt/strings/Makefile
config.status: creating tests/exslt/date/Makefile
config.status: creating tests/exslt/dynamic/Makefile
config.status: creating tests/plugins/Makefile
config.status: creating doc/Makefile
config.status: creating xslt-config
config.status: creating libxslt.spec
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
/bin/rm: cannot remove `libtoolT': No such file or directory
make all-recursive
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28'
Making all in libxslt
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libxslt'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libxslt'
Making all in libexslt
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libexslt'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libexslt'
Making all in xsltproc
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/xsltproc'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/xsltproc'
Making all in doc
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/doc'
make[2]: *** [xsltproc.1] Segmentation fault
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/doc'
Making all in tests
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests'
Making all in docs
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docs'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docs'
Making all in REC1
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC1'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC1'
Making all in REC2
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC2'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC2'
Making all in REC
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC'
Making all in general
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/general'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/general'
Making all in namespaces
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/namespaces'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/namespaces'
Making all in keys
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/keys'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/keys'
Making all in numbers
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/numbers'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/numbers'
Making all in documents
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/documents'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/documents'
Making all in extensions
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/extensions'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/extensions'
Making all in reports
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/reports'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/reports'
Making all in xmlspec
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xmlspec'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xmlspec'
Making all in multiple
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/multiple'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/multiple'
Making all in xinclude
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xinclude'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xinclude'
Making all in XSLTMark
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/XSLTMark'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/XSLTMark'
Making all in docbook
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docbook'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docbook'
Making all in exslt
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt'
Making all in common
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/common'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/common'
Making all in functions
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/functions'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/functions'
Making all in math
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/math'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/math'
Making all in sets
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/sets'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/sets'
Making all in strings
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/strings'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/strings'
Making all in dynamic
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/dynamic'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/dynamic'
Making all in date
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/date'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/date'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt'
Making all in plugins
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/plugins'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/plugins'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests'
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28'
sed -e
's?\@XSLT_LIBDIR\@?-L/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib?g'
\
-e
's?\@XSLT_INCLUDEDIR\@?-I/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include?g'
\
-e 's?\@VERSION\@?1.1.28?g' \
-e 's?\@XSLT_LIBS\@?-lxslt
-L/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib -lxml2 -lz
-L/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib -liconv -lm
-ldl -lm -lrt?g' \
< ./xsltConf.sh.in > xsltConf.tmp \
&& mv xsltConf.tmp xsltConf.sh
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28'
Making install in libxslt
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libxslt'
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libxslt'
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt'
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3'
/bin/mkdir -p '/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
/bin/sh ../libtool --mode=install /usr/bin/install -c libxslt.la
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
/usr/bin/install -c -m 644 xslt.h xsltutils.h pattern.h templates.h
variables.h keys.h numbersInternals.h extensions.h extra.h functions.h
namespaces.h imports.h attributes.h documents.h preproc.h transform.h
security.h xsltInternals.h xsltconfig.h xsltexports.h xsltlocale.h
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt'
libtool: install: /usr/bin/install -c .libs/libxslt.lai
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libxslt.la
/usr/bin/install -c -m 644 libxslt.3
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3'
libtool: install: /usr/bin/install -c .libs/libxslt.a
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libxslt.a
libtool: install: chmod 644
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libxslt.a
libtool: install: ranlib
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libxslt.a
libtool: finish:
PATH="/cluster/home/nuetzig/python/python3.4Env/bin:/cluster/apps/python/3.3.3/x86_64/bin:/cluster/apps/texlive/2009/x86_64/share/texmf/bin:/cluster/apps/git/1.9.0/x86_64/bin:/cluster/home/nuetzig/opt/HDF_Group/HDF5/1.8.15/bin:/cluster/apps/fftw/3.3.3/x86_64/gcc_4.8.2/openmpi_1.6.5/bin:/cluster/apps/blcr/0.8.4/x86_64/bin:/cluster/apps/openmpi/1.6.5/x86_64/gcc_4.8.2/bin:/cluster/home/nuetzig/bin:/cluster/home/nuetzig/cmake/cmake-3.3.0/bin:/cluster/home/nuetzig/opt/bin/:/cluster/home/nuetzig/perl5/bin:/cluster/apps/modules/bin:/cluster/apps/lsf/9.1/linux2.6-glibc2.3-x86_64/etc:/cluster/apps/lsf/9.1/linux2.6-glibc2.3-x86_64/bin:/cluster/apps/gcc/4.8.2/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/sbin"
ldconfig -n /cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib
----------------------------------------------------------------------
Libraries have been installed in:
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make install-exec-hook
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libxslt'
/bin/mkdir -p
"/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libxslt-plugins"
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libxslt'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libxslt'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libxslt'
Making install in libexslt
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libexslt'
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libexslt'
/bin/mkdir -p '/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libexslt'
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3'
/bin/sh ../libtool --mode=install /usr/bin/install -c libexslt.la
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
libtool: install: /usr/bin/install -c .libs/libexslt.lai
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libexslt.la
/usr/bin/install -c -m 644 exslt.h exsltconfig.h exsltexports.h
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libexslt'
/usr/bin/install -c -m 644 libexslt.3
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man3'
libtool: install: /usr/bin/install -c .libs/libexslt.a
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libexslt.a
libtool: install: chmod 644
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libexslt.a
libtool: install: ranlib
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/libexslt.a
libtool: finish:
PATH="/cluster/home/nuetzig/python/python3.4Env/bin:/cluster/apps/python/3.3.3/x86_64/bin:/cluster/apps/texlive/2009/x86_64/share/texmf/bin:/cluster/apps/git/1.9.0/x86_64/bin:/cluster/home/nuetzig/opt/HDF_Group/HDF5/1.8.15/bin:/cluster/apps/fftw/3.3.3/x86_64/gcc_4.8.2/openmpi_1.6.5/bin:/cluster/apps/blcr/0.8.4/x86_64/bin:/cluster/apps/openmpi/1.6.5/x86_64/gcc_4.8.2/bin:/cluster/home/nuetzig/bin:/cluster/home/nuetzig/cmake/cmake-3.3.0/bin:/cluster/home/nuetzig/opt/bin/:/cluster/home/nuetzig/perl5/bin:/cluster/apps/modules/bin:/cluster/apps/lsf/9.1/linux2.6-glibc2.3-x86_64/etc:/cluster/apps/lsf/9.1/linux2.6-glibc2.3-x86_64/bin:/cluster/apps/gcc/4.8.2/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/sbin"
ldconfig -n /cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib
----------------------------------------------------------------------
Libraries have been installed in:
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,-rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libexslt'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/libexslt'
Making install in xsltproc
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/xsltproc'
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/xsltproc'
make[2]: Nothing to be done for `install-data-am'.
/bin/mkdir -p '/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin'
/bin/sh ../libtool --mode=install /usr/bin/install -c xsltproc
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin'
libtool: install: /usr/bin/install -c xsltproc
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin/xsltproc
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/xsltproc'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/xsltproc'
Making install in doc
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/doc'
make[1]: *** [xsltproc.1] Segmentation fault
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/doc'
make[2]: Nothing to be done for `install-exec-am'.
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html
make[2]: *** [xsltproc.1] Segmentation fault
/usr/bin/install -c -m 0644 ./*.html
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man1'
/usr/bin/install -c -m 644 xsltproc.1
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/man/man1'
/usr/bin/install -c -m 0644 ./*.gif
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html
/usr/bin/install: cannot stat `./*.gif': No such file or directory
make[2]: [install-data-local] Error 1 (ignored)
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html/html
/usr/bin/install -c -m 0644 ./html/*.html
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html/html
/usr/bin/install -c -m 0644 ./html/*.png
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html/html
/usr/bin/install -c -m 0644 ./html/index.sgml
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html/html
/usr/bin/install: cannot stat `./html/index.sgml': No such file or directory
make[2]: [install-data-local] Error 1 (ignored)
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html/EXSLT
/usr/bin/install -c -m 0644 ./EXSLT/*.html
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html/EXSLT
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html/tutorial
/usr/bin/install -c -m 0644 ./tutorial/*
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html/tutorial
/bin/mkdir -p
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html/tutorial2
/usr/bin/install -c -m 0644 ./tutorial2/*
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/doc/libxslt-1.1.28/html/tutorial2
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/doc'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/doc'
Making install in tests
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests'
Making install in docs
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docs'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docs'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docs'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docs'
Making install in REC1
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC1'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC1'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC1'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC1'
Making install in REC2
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC2'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC2'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC2'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC2'
Making install in REC
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/REC'
Making install in general
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/general'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/general'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/general'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/general'
Making install in namespaces
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/namespaces'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/namespaces'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/namespaces'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/namespaces'
Making install in keys
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/keys'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/keys'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/keys'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/keys'
Making install in numbers
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/numbers'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/numbers'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/numbers'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/numbers'
Making install in documents
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/documents'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/documents'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/documents'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/documents'
Making install in extensions
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/extensions'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/extensions'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/extensions'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/extensions'
Making install in reports
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/reports'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/reports'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/reports'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/reports'
Making install in xmlspec
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xmlspec'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xmlspec'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xmlspec'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xmlspec'
Making install in multiple
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/multiple'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/multiple'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/multiple'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/multiple'
Making install in xinclude
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xinclude'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xinclude'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xinclude'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/xinclude'
Making install in XSLTMark
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/XSLTMark'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/XSLTMark'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/XSLTMark'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/XSLTMark'
Making install in docbook
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docbook'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docbook'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docbook'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/docbook'
Making install in exslt
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt'
Making install in common
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/common'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/common'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/common'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/common'
Making install in functions
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/functions'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/functions'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/functions'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/functions'
Making install in math
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/math'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/math'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/math'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/math'
Making install in sets
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/sets'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/sets'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/sets'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/sets'
Making install in strings
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/strings'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/strings'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/strings'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/strings'
Making install in dynamic
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/dynamic'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/dynamic'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/dynamic'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/dynamic'
Making install in date
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/date'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/date'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/date'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt/date'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt'
make[4]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt'
make[4]: Nothing to be done for `install-exec-am'.
make[4]: Nothing to be done for `install-data-am'.
make[4]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt'
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/exslt'
Making install in plugins
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/plugins'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/plugins'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/plugins'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests/plugins'
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests'
make[3]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28/tests'
make[1]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28'
make[2]: Entering directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28'
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/aclocal'
/bin/mkdir -p '/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
/bin/mkdir -p
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/pkgconfig'
/bin/mkdir -p '/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin'
/usr/bin/install -c -m 644 libxslt.pc libexslt.pc
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib/pkgconfig'
/usr/bin/install -c xslt-config
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/bin'
/usr/bin/install -c -m 644 xsltConf.sh
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/lib'
/usr/bin/install -c -m 644 libxslt.m4
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/share/aclocal'
make[2]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28'
make[1]: Leaving directory
`/cluster/home/nuetzig/installLXML/build/tmp/libxslt-1.1.28'
Building without Cython.
Using build configuration of libxml2 2.9.2 and libxslt 1.1.28
Building against libxml2/libxslt in the following directory:
build/tmp/libxml2/lib
/cluster/home/nuetzig/python/python3.4Env/lib/python3.4/site-packages/setuptools/dist.py:282:
UserWarning: Normalizing '3.5.0.beta1' to '3.5.0b1'
normalized_version,
running install
running bdist_egg
running egg_info
writing top-level names to src/lxml.egg-info/top_level.txt
writing dependency_links to src/lxml.egg-info/dependency_links.txt
writing requirements to src/lxml.egg-info/requires.txt
writing src/lxml.egg-info/PKG-INFO
package init file
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libexslt/__init__.py'
not found (or not a regular file)
package init file
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/__init__.py'
not found (or not a regular file)
package init file
'/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/__init__.py'
not found (or not a regular file)
reading manifest file 'src/lxml.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching '*.html' under directory 'doc'
writing manifest file 'src/lxml.egg-info/SOURCES.txt'
installing library code to build/bdist.linux-x86_64/egg
running install_lib
running build_py
copying src/lxml/includes/lxml-version.h ->
build/lib.linux-x86_64-3.4/lxml/includes
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libexslt/exslt.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libexslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libexslt/exsltconfig.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libexslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libexslt/exsltexports.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libexslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/SAX.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/entities.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/encoding.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/parser.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/parserInternals.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlerror.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/HTMLparser.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/HTMLtree.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/debugXML.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/tree.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/list.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/hash.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xpath.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xpathInternals.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xpointer.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xinclude.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlIO.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlmemory.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/nanohttp.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/nanoftp.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/uri.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/valid.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xlink.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlversion.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/DOCBparser.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/catalog.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/threads.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/globals.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/c14n.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlautomata.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlregexp.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlmodule.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlschemas.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/schemasInternals.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlschemastypes.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlstring.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlunicode.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlreader.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/relaxng.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/dict.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/SAX2.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlexports.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlwriter.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/chvalid.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/xmlsave.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxml2/libxml/schematron.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxml
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/xslt.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/xsltutils.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/pattern.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/templates.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/variables.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/keys.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/numbersInternals.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/extensions.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/extra.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/functions.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/namespaces.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/imports.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/attributes.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/documents.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/preproc.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/transform.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/security.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/xsltInternals.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/xsltconfig.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/xsltexports.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
copying
/cluster/home/nuetzig/installLXML/build/tmp/libxml2/include/libxslt/xsltlocale.h
-> build/lib.linux-x86_64-3.4/lxml/includes/libxslt
running build_ext
creating build/bdist.linux-x86_64/egg
creating build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/ElementInclude.py ->
build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/__init__.py ->
build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/_elementpath.py ->
build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/builder.py ->
build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/cssselect.py ->
build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/doctestcompare.py ->
build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/pyclasslookup.py ->
build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/sax.py ->
build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/usedoctest.py ->
build/bdist.linux-x86_64/egg/lxml
creating build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/__init__.py ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/c14n.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/config.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/dtdvalid.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/etreepublic.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/htmlparser.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/relaxng.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/schematron.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/tree.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/uri.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/xinclude.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/xmlerror.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/xmlparser.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/xmlschema.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/xpath.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/xslt.pxd ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/etree_defs.h ->
build/bdist.linux-x86_64/egg/lxml/includes
copying build/lib.linux-x86_64-3.4/lxml/includes/lxml-version.h ->
build/bdist.linux-x86_64/egg/lxml/includes
creating build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/xslt.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/xsltutils.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/pattern.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/templates.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/variables.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/keys.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying
build/lib.linux-x86_64-3.4/lxml/includes/libxslt/numbersInternals.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/extensions.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/extra.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/functions.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/namespaces.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/imports.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/attributes.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/documents.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/preproc.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/transform.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/security.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/xsltInternals.h
-> build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/xsltconfig.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/xsltexports.h
-> build/bdist.linux-x86_64/egg/lxml/includes/libxslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libxslt/xsltlocale.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxslt
creating build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/SAX.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/entities.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/encoding.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/parser.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying
build/lib.linux-x86_64-3.4/lxml/includes/libxml/parserInternals.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlerror.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/HTMLparser.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/HTMLtree.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/debugXML.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/tree.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/list.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/hash.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xpath.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xpathInternals.h
-> build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xpointer.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xinclude.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlIO.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlmemory.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/nanohttp.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/nanoftp.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/uri.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/valid.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xlink.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlversion.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/DOCBparser.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/catalog.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/threads.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/globals.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/c14n.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlautomata.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlregexp.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlmodule.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlschemas.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying
build/lib.linux-x86_64-3.4/lxml/includes/libxml/schemasInternals.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying
build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlschemastypes.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlstring.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlunicode.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlreader.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/relaxng.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/dict.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/SAX2.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlexports.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlwriter.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/chvalid.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/xmlsave.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
copying build/lib.linux-x86_64-3.4/lxml/includes/libxml/schematron.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libxml
creating build/bdist.linux-x86_64/egg/lxml/includes/libexslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libexslt/exslt.h ->
build/bdist.linux-x86_64/egg/lxml/includes/libexslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libexslt/exsltconfig.h
-> build/bdist.linux-x86_64/egg/lxml/includes/libexslt
copying build/lib.linux-x86_64-3.4/lxml/includes/libexslt/exsltexports.h
-> build/bdist.linux-x86_64/egg/lxml/includes/libexslt
creating build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/ElementSoup.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/__init__.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/_diffcommand.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/_html5builder.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/_setmixin.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/builder.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/clean.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/defs.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/diff.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/formfill.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/html5parser.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/soupparser.py ->
build/bdist.linux-x86_64/egg/lxml/html
copying build/lib.linux-x86_64-3.4/lxml/html/usedoctest.py ->
build/bdist.linux-x86_64/egg/lxml/html
creating build/bdist.linux-x86_64/egg/lxml/isoschematron
copying build/lib.linux-x86_64-3.4/lxml/isoschematron/__init__.py ->
build/bdist.linux-x86_64/egg/lxml/isoschematron
creating build/bdist.linux-x86_64/egg/lxml/isoschematron/resources
creating build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/rng
copying
build/lib.linux-x86_64-3.4/lxml/isoschematron/resources/rng/iso-schematron.rng
-> build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/rng
creating build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/xsl
copying
build/lib.linux-x86_64-3.4/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl
-> build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/xsl
copying
build/lib.linux-x86_64-3.4/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl
-> build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/xsl
creating
build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying
build/lib.linux-x86_64-3.4/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl
->
build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying
build/lib.linux-x86_64-3.4/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl
->
build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying
build/lib.linux-x86_64-3.4/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl
->
build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying
build/lib.linux-x86_64-3.4/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl
->
build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying
build/lib.linux-x86_64-3.4/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl
->
build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying
build/lib.linux-x86_64-3.4/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt
->
build/bdist.linux-x86_64/egg/lxml/isoschematron/resources/xsl/iso-schematron-xslt1
copying build/lib.linux-x86_64-3.4/lxml/lxml.etree.h ->
build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/lxml.etree_api.h ->
build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/etree.cpython-34m.so ->
build/bdist.linux-x86_64/egg/lxml
copying build/lib.linux-x86_64-3.4/lxml/objectify.cpython-34m.so ->
build/bdist.linux-x86_64/egg/lxml
byte-compiling build/bdist.linux-x86_64/egg/lxml/ElementInclude.py to
ElementInclude.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/__init__.py to
__init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/_elementpath.py to
_elementpath.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/builder.py to
builder.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/cssselect.py to
cssselect.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/doctestcompare.py to
doctestcompare.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/pyclasslookup.py to
pyclasslookup.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/sax.py to
sax.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/usedoctest.py to
usedoctest.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/includes/__init__.py to
__init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/ElementSoup.py to
ElementSoup.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/__init__.py to
__init__.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/_diffcommand.py to
_diffcommand.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/_html5builder.py
to _html5builder.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/_setmixin.py to
_setmixin.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/builder.py to
builder.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/clean.py to
clean.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/defs.py to
defs.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/diff.py to
diff.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/formfill.py to
formfill.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/html5parser.py to
html5parser.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/soupparser.py to
soupparser.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/html/usedoctest.py to
usedoctest.cpython-34.pyc
byte-compiling
build/bdist.linux-x86_64/egg/lxml/isoschematron/__init__.py to
__init__.cpython-34.pyc
creating stub loader for lxml/etree.cpython-34m.so
creating stub loader for lxml/objectify.cpython-34m.so
byte-compiling build/bdist.linux-x86_64/egg/lxml/etree.py to
etree.cpython-34.pyc
byte-compiling build/bdist.linux-x86_64/egg/lxml/objectify.py to
objectify.cpython-34.pyc
creating build/bdist.linux-x86_64/egg/EGG-INFO
copying src/lxml.egg-info/PKG-INFO -> build/bdist.linux-x86_64/egg/EGG-INFO
copying src/lxml.egg-info/SOURCES.txt ->
build/bdist.linux-x86_64/egg/EGG-INFO
copying src/lxml.egg-info/dependency_links.txt ->
build/bdist.linux-x86_64/egg/EGG-INFO
copying src/lxml.egg-info/not-zip-safe ->
build/bdist.linux-x86_64/egg/EGG-INFO
copying src/lxml.egg-info/requires.txt ->
build/bdist.linux-x86_64/egg/EGG-INFO
copying src/lxml.egg-info/top_level.txt ->
build/bdist.linux-x86_64/egg/EGG-INFO
writing build/bdist.linux-x86_64/egg/EGG-INFO/native_libs.txt
creating 'dist/lxml-3.5.0b1-py3.4-linux-x86_64.egg' and adding
'build/bdist.linux-x86_64/egg' to it
removing 'build/bdist.linux-x86_64/egg' (and everything under it)
Processing lxml-3.5.0b1-py3.4-linux-x86_64.egg
removing
'/cluster/home/nuetzig/python/python3.4Env/lib/python3.4/site-packages/lxml-3.5.0b1-py3.4-linux-x86_64.egg'
(and everything under it)
creating
/cluster/home/nuetzig/python/python3.4Env/lib/python3.4/site-packages/lxml-3.5.0b1-py3.4-linux-x86_64.egg
Extracting lxml-3.5.0b1-py3.4-linux-x86_64.egg to
/cluster/home/nuetzig/python/python3.4Env/lib/python3.4/site-packages
lxml 3.5.0b1 is already the active version in easy-install.pth
Installed
/cluster/home/nuetzig/python/python3.4Env/lib/python3.4/site-packages/lxml-3.5.0b1-py3.4-linux-x86_64.egg
Processing dependencies for lxml==3.5.0b1
Finished processing dependencies for lxml==3.5.0b1
[View Less]
1
0
Hello there.
I have an odd use case. I'm trying to generate a HTML input form to
capture data. The data is defined by a set of XMLSchema Files. I can
load these files and validate XML against them. So far so good.
What I want to be able to do is use an XSLT and convert the XSDs into a
HTML form using lxml. This is irregular but since XSDs are valid XML, it
should be possible. Indeed, it is trivial if one is using just one XML file.
However, I have at least 8 XSD files with lines like this:
…
[View More]<xs:import namespace="http://www.cdisc.org/ns/odm/v1.3"
schemaLocation="ODM1-3-1.xsd"/>
You can then have references such as
<xs:element ref="odm:Description" minOccurs="0" maxOccurs="1">
If you parse the XSD as an XML file, xs:import statements are not
followed, but if you run the etree.XMLSchema() method on your tree,
these import statements are followed.
I had an idea to create an intermediate xml file and use the xi:include
directive and the etree.XInclude() method in order to load the
referenced XSDs but the problem here is the attribute namespace
reference. Example:
<xs:group ref="sdm:CriterionElementPreExtension" minOccurs="0"
maxOccurs="1"/>
If I want to follow that ref, I need to look for an element with a name
"CriterionElementPreExtension". However, that element must occur in the
xml file included with the targetNamespace sdm. no way of doing this
with an xi:include fudge.
I think I need some kind of URL parser or addon class for lxml that,
when it sees the xs:import, does the business with namespaces properly.
Not sure how I can go about that.
Cheers
Ben Blundell
--
Research & Scientific Programmer
CB204, The Queens Building, Queen Mary University of London
+44 (0)20 7882 6373
http://keys.gnupg.net/pks/lookup?search=Benjamin+Blundell
[View Less]
2
1