aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/apropos_db.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-12-02 00:21:56 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-12-02 00:21:56 +0000
commitb505ecce3956d6be1ab0554257d7ce9ead09ff89 (patch)
treef3fb355188472d17ff0826c27fc73d4b50e523ba /apropos_db.c
parentba6b743ba088a1ee889f6315c05711d3e4505d61 (diff)
downloadmandoc-b505ecce3956d6be1ab0554257d7ce9ead09ff89.tar.gz
mandoc-b505ecce3956d6be1ab0554257d7ce9ead09ff89.tar.zst
mandoc-b505ecce3956d6be1ab0554257d7ce9ead09ff89.zip
This is a little gross: Linux and Apple need lots some cajoling to work
with byte-swapping. Tested on Mac. Any Linux machines somebody can test on? Anybody? While here, note the correct byte-size in mandocdb(8) and also note field widths and endianness. The btree is now endian-neutral.
Diffstat (limited to 'apropos_db.c')
-rw-r--r--apropos_db.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/apropos_db.c b/apropos_db.c
index 4a305e59..856bde34 100644
--- a/apropos_db.c
+++ b/apropos_db.c
@@ -1,4 +1,4 @@
-/* $Id: apropos_db.c,v 1.18 2011/12/01 23:55:58 kristaps Exp $ */
+/* $Id: apropos_db.c,v 1.19 2011/12/02 00:21:56 kristaps Exp $ */
/*
* Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -15,6 +15,10 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
#include <assert.h>
#include <fcntl.h>
#include <regex.h>
@@ -24,8 +28,12 @@
#include <string.h>
#include <unistd.h>
-#ifdef __linux__
+#if defined(__linux__)
+# include <endian.h>
# include <db_185.h>
+#elif defined(__APPLE__)
+# include <libkern/OSByteOrder.h>
+# include <db.h>
#else
# include <db.h>
#endif