Treating OpenBSD like NetBSD. Thanks to SASANO Takayoshi.

This commit is contained in:
Thomas Schmitt 2016-07-21 11:44:49 +02:00
parent cb519b3692
commit cbfa9afcf1
1 changed files with 7 additions and 1 deletions

View File

@ -7,7 +7,7 @@
See libisofs/aaip_0_2.h See libisofs/aaip_0_2.h
http://libburnia-project.org/wiki/AAIP http://libburnia-project.org/wiki/AAIP
Copyright (c) 2009 - 2015 Thomas Schmitt, libburnia project, GPLv2+ Copyright (c) 2009 - 2016 Thomas Schmitt, libburnia project, GPLv2+
*/ */
@ -2213,6 +2213,11 @@ ex:;
#include "aaip-os-freebsd.c" #include "aaip-os-freebsd.c"
#else
#ifdef __OpenBSD__
#include "aaip-os-freebsd.c"
#else #else
#ifdef __linux #ifdef __linux
@ -2230,6 +2235,7 @@ ex:;
#include "aaip-os-dummy.c" #include "aaip-os-dummy.c"
#endif /* ! __linux */ #endif /* ! __linux */
#endif /* ! __OpenBSD__ */
#endif /* ! __NetBSD__ */ #endif /* ! __NetBSD__ */
#endif /* ! __FreeBSD_kernel__ */ #endif /* ! __FreeBSD_kernel__ */
#endif /* ! __FreeBSD__ */ #endif /* ! __FreeBSD__ */