pkgsrc-wip/bacula/patches/patch-aa
Sergey Svishchev 6b0e791932 Update to latest release, 1.34.6 (too many changes since 1.32f to list here).
pkgsrc-specific changes:
  Use sqlite backend for now.  Provide rc.d scripts.

Builds and runs on FreeBSD 5.2.1, Red Hat Linux AS 2.1, 3.0.
2004-09-12 23:45:53 +00:00

19 lines
912 B
Text

$NetBSD: patch-aa,v 1.1 2004/09/12 23:45:54 shattered Exp $
--- autoconf/aclocal.m4.orig 2003-10-15 16:28:56.000000000 +0400
+++ autoconf/aclocal.m4
@@ -512,10 +512,10 @@ Which DBMS do you want to use (please se
AC_MSG_ERROR(Unable to find sqlite.h in standard locations)
fi
else
- if test -f $withval/sqlite.h; then
- SQLITE_INCDIR=$withval
- SQLITE_LIBDIR=$withval
- SQLITE_BINDIR=$withval
+ if test -f $withval/include/sqlite.h; then
+ SQLITE_INCDIR=$withval/include
+ SQLITE_LIBDIR=$withval/lib
+ SQLITE_BINDIR=$withval/bin
else
AC_MSG_RESULT(no)
AC_MSG_ERROR(Invalid SQLite directory $withval - unable to find sqlite.h under $withval)