aboutsummaryrefslogtreecommitdiffstats
path: root/db1-ast
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-28 20:10:28 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-06-28 20:10:28 +0000
commit62414649cb95489a7d4a1aa7ddb80f839d216dab (patch)
tree68e35e870e04a117796cc68b7aa3987cb2c0341c /db1-ast
parent42b9d7dc97283f01960ec8411120db90513b0010 (diff)
Merge OSX compatibility patch (bug #1940)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@3331 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'db1-ast')
-rwxr-xr-xdb1-ast/btree/bt_debug.c2
-rwxr-xr-xdb1-ast/mpool/mpool.c4
2 files changed, 5 insertions, 1 deletions
diff --git a/db1-ast/btree/bt_debug.c b/db1-ast/btree/bt_debug.c
index 3aefbe762..443f2bf99 100755
--- a/db1-ast/btree/bt_debug.c
+++ b/db1-ast/btree/bt_debug.c
@@ -38,6 +38,7 @@
static char sccsid[] = "@(#)bt_debug.c 8.5 (Berkeley) 8/17/94";
#endif /* LIBC_SCCS and not lint */
+#ifdef DEBUG
#include <sys/param.h>
#include <stdio.h>
@@ -47,7 +48,6 @@ static char sccsid[] = "@(#)bt_debug.c 8.5 (Berkeley) 8/17/94";
#include <db.h>
#include "btree.h"
-#ifdef DEBUG
/*
* BT_DUMP -- Dump the tree
*
diff --git a/db1-ast/mpool/mpool.c b/db1-ast/mpool/mpool.c
index 6773e4e23..eca24e518 100755
--- a/db1-ast/mpool/mpool.c
+++ b/db1-ast/mpool/mpool.c
@@ -50,6 +50,8 @@ static char sccsid[] = "@(#)mpool.c 8.5 (Berkeley) 7/26/94";
#define __MPOOLINTERFACE_PRIVATE
#include <mpool.h>
+#undef __APPLE__
+
#ifndef __APPLE__
#define mpool_open __mpool_open
#define mpool_filter __mpool_filter
@@ -311,6 +313,8 @@ mpool_sync(mp)
return (fsync(mp->fd) ? RET_ERROR : RET_SUCCESS);
}
+#define __APPLE__
+
#ifndef __APPLE__
#undef mpool_open
#undef mpool_filter