From xemacs-m  Sat Jan 11 20:27:49 1997
Received: from mharnois.workgroup.net (pm1-061.sbt.net [206.153.211.61])
          by xemacs.org (8.8.4/8.8.4) with ESMTP
	  id UAA29082 for <xemacs-beta@xemacs.org>; Sat, 11 Jan 1997 20:27:14 -0600 (CST)
Received: from mharnois.workgroup.net (mharnois@localhost [127.0.0.1])
          by mharnois.workgroup.net (8.8.4/8.8.4) with ESMTP
	  id UAA10614 for <xemacs-beta@xemacs.org>; Sat, 11 Jan 1997 20:26:29 -0600
Message-Id: <199701120226.UAA10614@mharnois.workgroup.net>
To: xemacs-beta@xemacs.org
Subject: berkeley db
Date: Sat, 11 Jan 1997 20:26:28 -0600
From: Michael Harnois <mharnois@sbt.net>

Debian puts the include files for Berkeley db in /usr/include/db. I don't know
if this is the case with other systems or not, but on mine it causes the
compile of database.c to fail. The solution, of course, is so simple that
even I can figure it out ...

*** database.c  Sat Jan 11 20:15:45 1997
--- database.c.orig     Wed Dec 18 16:44:10 1996
***************
*** 30,34 ****
  #include <database.h>         /* Our include file     */
  #ifdef HAVE_BERKELEY_DB
! #include <db/db.h>                       /* Berkeley db access   */
  #endif
  #ifdef HAVE_DBM
--- 30,34 ----
  #include <database.h>         /* Our include file     */
  #ifdef HAVE_BERKELEY_DB
! #include <db.h>                       /* Berkeley db access   */
  #endif
  #ifdef HAVE_DBM

