From cbfa9afcf17d2ed486725a0e1d528b37e5bc21c9 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Thu, 21 Jul 2016 11:44:49 +0200 Subject: [PATCH] Treating OpenBSD like NetBSD. Thanks to SASANO Takayoshi. --- libisofs/aaip_0_2.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/libisofs/aaip_0_2.c b/libisofs/aaip_0_2.c index a9ec8c9..f4f8bcd 100644 --- a/libisofs/aaip_0_2.c +++ b/libisofs/aaip_0_2.c @@ -7,7 +7,7 @@ See libisofs/aaip_0_2.h 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" +#else +#ifdef __OpenBSD__ + +#include "aaip-os-freebsd.c" + #else #ifdef __linux @@ -2230,6 +2235,7 @@ ex:; #include "aaip-os-dummy.c" #endif /* ! __linux */ +#endif /* ! __OpenBSD__ */ #endif /* ! __NetBSD__ */ #endif /* ! __FreeBSD_kernel__ */ #endif /* ! __FreeBSD__ */