Error Buddy
Do you have an error message from your application? Then find the answer with Error Buddy. You can search over 40000 source code files and troubleshooting documents using our beta lucene/nutch search interface or if you prefer, search as normal using google. With LXR technology you can drill right down into the line of source code where it came from with full cross-referencing.
If after searching you didn't get your ideal answer, or you are still unclear what the error means, you can choose to post that question to the community forums following the link included in the search results.
[1.6]001 Extracted from the documentation: 002 http://xmlsoft.org/FAQ.html#Compilatio 003 004 Compilation 005 006 1.What is the process to compile libxml ? 007 008 As most UNIX libraries libxml follows the "standard": 009 010 gunzip -c xxx.tar.gz | tar xvf - 011 012 cd libxml-xxxx 013 014 ./configure --help 015 016 to see the options, then the compilation/installation proper 017 018 ./configure [possible options] 019 020 make 021 022 make install 023 024 At that point you may have to rerun ldconfig or similar utility to 025 update your list of installed shared libs. 026 027 At this point you can check that the library is properly functionning 028 by running 029 030 make tests 031 032 2.What other libraries are needed to compile/install libxml ? 033 034 Libxml does not requires any other library, the normal C ANSI API 035 should be sufficient (please report any violation to this rule you 036 may find). 037 038 However if found at configuration time libxml will detect and use 039 the following libs: 040 041 libz: a highly portable and available widely compression library 042 http://www.info-zip.org/pub/infozip/zlib/ 043 iconv: a powerful character encoding conversion library. It's 044 included by default on recent glibc libraries, so it doesn't 045 need to be installed specifically on linux. It seems it's 046 now part of the official UNIX specification. Here is one 047 implementation of the library which source can be found here. 048 http://clisp.cons.org/~haible/packages-libiconv.html 049 ftp://ftp.ilog.fr/pub/Users/haible/gnu/ 050 051 3.libxml does not compile with HP-UX's optional ANSI-C compiler 052 053 this is due to macro limitations. Try to add " -Wp,-H16800 -Ae" 054 to the CFLAGS 055 056 you can also install and use gcc instead or use a precompiled version 057 of libxml, both available from the HP-UX Porting and Archive Centre 058 059 4.make tests fails on some platforms 060 061 Sometime the regression tests results don't completely match the 062 value produced by the parser, and the makefile uses diff to print 063 the delta. On some platforms the diff return breaks the compilation 064 process, if the diff is small this is probably not a serious problem 065 066 Daniel 067 veillard@redhat.com 068 069 $Id: INSTALL,v 1.3 2001/06/17 10:32:52 veillard Exp $
Testing
