This seems to be the relevant section:
configure:1338: minix/config.h: No such file or directory
configure: failed program was:
#line 1337 "configure"
#include "confdefs.h"
#include <minix/config.h>
configure:1383: checking for gdbm_open in -lgdbm
configure:1402: gcc -o conftest -g -O2 conftest.c -lgdbm 1>&5
ld: -lgdbm: no match
collect2: ld returned 1 exit status
configure: failed program was:
#line 1391 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char gdbm_open();
int main() {
gdbm_open()
; return 0; }
configure:1424: checking for gdbm_open
configure:1452: gcc -o conftest -g -O2 conftest.c 1>&5
configure:1446: Undefined symbol `_gdbm_open' referenced from text segment
collect2: ld returned 1 exit status
configure: failed program was:
#line 1429 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char gdbm_open(); below. */
#include <assert.h>
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
builtin and then its argument prototype would still apply. */
char gdbm_open();
int main() {
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined (__stub_gdbm_open) || defined (__stub___gdbm_open)
choke me
#else
gdbm_open();
#endif
I had to generate this by excluding the "--with-db=gdbm" otherwise there was
no config.log.
Sarton