On 18 Dec 1997 [EMAIL PROTECTED] wrote: > + case "$PLAT" in > + *-linux*) > + # many systems don't have -ldbm > + DBM_LIB="" > + if ./helpers/TestCompile lib dbm; then > + DBM_LIB="-ldbm" > + elif ./helpers/TestCompile lib ndbm; then > + DBM_LIB="-lndbm"
Any reason for not checking for gdbm? I find I have to add a elif ./helpers/TestCompile lib gdbm; then DBM_LIB="-lgdbm" after every new download of Apache 1.3. Am I the only person with a gdbm library on Linux? //pcs