From 6784edef104be9bdd2a93eb29cfb21ba05dbf4e0 Mon Sep 17 00:00:00 2001 From: Luigi Scarso <luigi.scarso@gmail.com> Date: Mon, 13 Feb 2017 08:38:16 +0000 Subject: [PATCH] better condition for *bsd* for ffi (trunk & tags) [[Split portion of a mixed commit.]] --- source/texk/web2c/luatexdir/luaffi/ffi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/texk/web2c/luatexdir/luaffi/ffi.h b/source/texk/web2c/luatexdir/luaffi/ffi.h index 08f280940..75fe9c8a8 100644 --- a/source/texk/web2c/luatexdir/luaffi/ffi.h +++ b/source/texk/web2c/luatexdir/luaffi/ffi.h @@ -42,7 +42,7 @@ extern "C" { #include <sys/mman.h> #endif -#ifdef _WIN32 || __FreeBSD__ || __NetBSD__ || __bsdi__ || __DragonFly__ +#if ( defined( _WIN32) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__bsdi__) || defined(__DragonFly__)) /* We should include something equivalent to */ /* complex.h */ #else -- GitLab