From e121e49643a86c4e7fb34dd75ed1542759aa16c9 Mon Sep 17 00:00:00 2001 From: Glenn Burkhardt Date: Sun, 22 Jun 2003 23:59:16 +0000 Subject: [PATCH] allow gdbm/ndbm.h in addition to db1/ndbm.h; needs corresponding change in configure.in --- uip/slocal.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/uip/slocal.c b/uip/slocal.c index 74f1b57..b176008 100644 --- a/uip/slocal.c +++ b/uip/slocal.c @@ -52,8 +52,12 @@ extern int initgroups(char*, int); #ifdef HAVE_DB1_NDBM_H #include #else +#ifdef HAVE_GDBM_NDBM_H +#include +#else #include #endif +#endif #include -- 1.7.10.4