X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f From: Juan Manuel Guerrero Newsgroups: comp.os.msdos.djgpp Subject: Re: Using libxml2 with DJGPP Date: 13 May 2007 17:55:44 -0700 Organization: http://groups.google.com Lines: 34 Message-ID: <1179104144.200967.316520@n59g2000hsh.googlegroups.com> References: <46476A40 DOT 2040707 AT schluessler DOT org> NNTP-Posting-Host: 88.68.62.42 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Trace: posting.google.com 1179104144 2252 127.0.0.1 (14 May 2007 00:55:44 GMT) X-Complaints-To: groups-abuse AT google DOT com NNTP-Posting-Date: Mon, 14 May 2007 00:55:44 +0000 (UTC) In-Reply-To: <46476A40.2040707@schluessler.org> User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (compatible; Konqueror/3.4; Linux) KHTML/3.4.2 (like Gecko),gzip(gfe),gzip(gfe) Complaints-To: groups-abuse AT google DOT com Injection-Info: n59g2000hsh.googlegroups.com; posting-host=88.68.62.42; posting-account=EverNQ0AAABHhJwiVPYTqviNE3wBG46C To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by delorie.com id l4E104MT007402 Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk Timo Schlüßler schrieb: > I compiled the libxml2 now from source (is it right that i have to do > this via linux???), but now i need the iconv.h . Do i have to install > the complete iconv lib or what should i do now? > > > All the best Of corse, you have configured and compiled without disableling character set conversion via libiconv. Every time you compile something you will have to link your application adding to the compiler command a sequence like this: -L/dev/env/DJDIR/lib -lxml2 -lz -liconv -lm or linkage phase will fail due to unresolved externals or something like that. If you are sure that your application does not need iconv support at all then reconfigure and recompile every thing from scratch adding to the file: libxml2.build the following option: conf_opt='--without-http --without-ftp --without-iconv' Please note the last entry: --without-iconv If the library still will do what you intended is unclear. Anyway, the best is that you run the command: sh ./configure --help and take a look of the options available. Regards, Juan M. Guerrero