Merge pull request #2765 from vobornik/master

recognize Debian kFreeBSD port by build_detect_platform script
This commit is contained in:
Pieter Wuille 2013-06-22 10:05:18 -07:00
commit 48628fd98c
1 changed files with 6 additions and 0 deletions

View File

@ -94,6 +94,12 @@ case "$TARGET_OS" in
PLATFORM_LIBS="-lpthread"
PORT_FILE=port/port_posix.cc
;;
GNU/kFreeBSD)
PLATFORM=OS_KFREEBSD
COMMON_FLAGS="$MEMCMP_FLAG -D_REENTRANT -DOS_KFREEBSD"
PLATFORM_LIBS="-lpthread"
PORT_FILE=port/port_posix.cc
;;
NetBSD)
PLATFORM=OS_NETBSD
COMMON_FLAGS="$MEMCMP_FLAG -D_REENTRANT -DOS_NETBSD"