summaryrefslogtreecommitdiff
path: root/db1-ast/include/compat.h
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-01-04 18:53:14 +0000
committerMark Spencer <markster@digium.com>2003-01-04 18:53:14 +0000
commitaeb89d9744f30cdf1f674ac9399cb8111e8af451 (patch)
treec5ad8b7080744ed0037c1cce4a7bb9365b6d9428 /db1-ast/include/compat.h
parentef91635ecce855f196d6b08b6d9e2d30ed474666 (diff)
Version 0.3.0 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@578 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'db1-ast/include/compat.h')
-rwxr-xr-xdb1-ast/include/compat.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/db1-ast/include/compat.h b/db1-ast/include/compat.h
new file mode 100755
index 000000000..706e58265
--- /dev/null
+++ b/db1-ast/include/compat.h
@@ -0,0 +1,49 @@
+/* Values for building 4.4 BSD db routines in the GNU C library. */
+
+#ifndef _compat_h_
+#define _compat_h_
+
+#include <fcntl.h>
+
+/*
+ * If you can't provide lock values in the open(2) call. Note, this
+ * allows races to happen.
+ */
+#ifndef O_EXLOCK /* 4.4BSD extension. */
+#define O_EXLOCK 0
+#endif
+
+#ifndef O_SHLOCK /* 4.4BSD extension. */
+#define O_SHLOCK 0
+#endif
+
+#include <errno.h>
+
+#ifndef EFTYPE
+#define EFTYPE EINVAL /* POSIX 1003.1 format errno. */
+#endif
+
+#include <unistd.h>
+#include <limits.h>
+
+#ifndef _POSIX_VDISABLE /* POSIX 1003.1 disabling char. */
+#define _POSIX_VDISABLE 0 /* Some systems used 0. */
+#endif
+
+#include <termios.h>
+
+#ifndef TCSASOFT /* 4.4BSD extension. */
+#define TCSASOFT 0
+#endif
+
+#include <sys/param.h>
+
+#ifndef MAX /* Usually found in <sys/param.h>. */
+#define MAX(_a,_b) ((_a)<(_b)?(_b):(_a))
+#endif
+#ifndef MIN /* Usually found in <sys/param.h>. */
+#define MIN(_a,_b) ((_a)<(_b)?(_a):(_b))
+#endif
+
+
+#endif /* compat.h */