|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2004-12-08 22:14 UTC] meuk at zwaremetalen dot com
Description: ------------ When doing a configure I get the following error: checking for XSLT Sablotron backend... /usr checking for libexpat dir for Sablotron XSL support... /usr checking for iconv dir for Sablotron XSL support... no checking for JavaScript for Sablotron XSL support... no checking for sablot-config... found checking for Sablotron version... configure: error: Sablotron version 0.96 or greater required. My configure statement: ./configure --with-mysql=/opt/mysql41 --enable-track-vars --disable-debug --with-apache=../apache_1.3.33 --with-openssl=/usr --with-xml --with-ldap --with-ttf --with-gd=/opt/libgd2 --enable-gd-imgstrttf --with-mcrypt=/usr --with-mhash=/usr --enable-ftp --with-dom --with-expat-dir=/usr --with-xslt-sablot=/usr --enable-xslt --with-freetype-dir=/usr --enable-gd-native-ttf --with-curl=/usr --with-zlib --with-zlib-dir=/usr --with-imap=/usr --with-imap-ssl=/usr --with-gettext --with-bz2 --enable-javascript --with-jpeg-dir=/usr --with-png-dir=/usr --with-dom-xslt=/usr --with-dom-exslt=/usr --enable-xslt --with-iconv --with-ming=/usr --with-java=/opt/j2sdk1.4.2 But my Sablotron version is 1.0. Check here: iridium php-4.3.10RC2 # /usr/bin/sablot-config --version 1.0 Expected result: ---------------- I expect configure to accept my sablotron version. 1.0 is greater than 0.96 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 13 06:00:01 2025 UTC |
My problem was in missing libjvm.so. I use blackdown-jre on my Gentoo and I have setup for LDPATH only for /opt/blackdown-jdk-1.4.2.01/jre/lib/i386/{,native_threads,classic}. But the libjvm.so is in /opt/blackdown-jdk-1.4.2.01/jre/lib/i386/{client,server} directories. And while configuring php-cgi, it links with some library, which requires libjvm.so. And I had a problem that there was neither lib/i386/client nor lib/i386/server in /etc/ld.so.conf. I have updated my system, now I have these paths in ld.so.conf and configure script works. Problem was while compilation C program to get version of Sabltron (see end of config.log). Try to copy this C program to some file, delete #include "conftest.h" and try to compile using the last gcc command in config.log and than try to run the result of compilation. It should say what library it is missing. I hope it will help.