From 5d8fdbf738e6dbae95617737f49839738f02e35b Mon Sep 17 00:00:00 2001 From: fanquake Date: Tue, 30 Jan 2018 07:48:30 +0800 Subject: [PATCH] [build] Add NETBSD leveldb target to configure.ac --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 07aac754f..f1ecce47d 100644 --- a/configure.ac +++ b/configure.ac @@ -489,6 +489,9 @@ case $host in *openbsd*) LEVELDB_TARGET_FLAGS="-DOS_OPENBSD" ;; + *netbsd*) + LEVELDB_TARGET_FLAGS="-DOS_NETBSD" + ;; *) OTHER_OS=`echo ${host_os} | awk '{print toupper($0)}'` AC_MSG_WARN([Guessing LevelDB OS as OS_${OTHER_OS}, please check whether this is correct, if not add an entry to configure.ac.])