I've got a solaris 7 and solaris 8 machine.  On PHP4 version 4.0.2 and 
earlier releases when I would "./configure" php it would detect that I have 
ndbm support and then the code that in my php would work.   Since version 
4.0.3 (till now, 4.0.4pl1) I can't get it to detect any dbm stuff and when 
I run my php programs they obviously fail.

I've attached the code that I do, and the configure output from both 
versions.   I've tried to force ndbm support but I can't get it to go.

Any help would be appreciated.

-- Shawn

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

$dbm = dbmopen("/www/lists/gredat", "r");
foreach ($listem as $key=>$val) {
        $temp = split(":",dbmfetch($dbm,$val));
        $listemC[$key] = sprintf("%09d", $temp[0]);
}
dbmclose ($dbm);

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

4.0.2 and eariler

Configuring extensions
checking for ASPELL support... no
checking whether to enable bc style precision math functions... no
checking whether to enable calendar conversion support... no
checking CCVS Support... no
checking whether to include cpdflib support... no
checking for CURL support... no
checking for CyberCash support... no
checking whether to enable DAV support through mod_dav... no
checking for db1/ndbm.h... (cached) no
checking for gdbm_open in -lgdbm... (cached) no
checking for dbm_open in -ldb... (cached) no
checking for dbm_open in -lc... (cached) yes
checking preferred dbm library... ndbm chosen

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

4.0.3 and later

Configuring extensions
checking for ASPELL support... no
checking for bc style precision math functions... no
checking for BZip2 support... no
checking whether to enable calendar conversion support... no
checking CCVS Support... no
checking whether to include cpdflib support... no
checking whether to enable ctype support... no
checking for CURL support... no
checking for CyberCash support... no
checking whether to enable DAV support through mod_dav... no
checking whether to include old xDBM support... no
checking whether to enable DBA... no
checking for GDBM support... no
checking for NDBM support... no
checking for Berkeley DB2 support... no
checking for Berkeley DB3 support... no
checking for DBM support... no
checking for CDB support... no


-- 
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to