aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/pposix.c
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-09-03 00:20:28 +0100
committerMatthew Wild <mwild1@gmail.com>2013-09-03 00:20:28 +0100
commitc6bf0953e395f36b133e0c2e8cc2ef25e943df7f (patch)
tree830cfa780955b317d2dcfed69ec03eef9580d00b /util-src/pposix.c
parent2fa9d5e3837fd16af5de15761a10319008814301 (diff)
parentbeb2881c21aa0111cb9c57bf38f162af8222045b (diff)
downloadprosody-c6bf0953e395f36b133e0c2e8cc2ef25e943df7f.tar.gz
prosody-c6bf0953e395f36b133e0c2e8cc2ef25e943df7f.zip
Merge 0.9->trunk
Diffstat (limited to 'util-src/pposix.c')
-rw-r--r--util-src/pposix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c
index 2e1de971..8ad167b7 100644
--- a/util-src/pposix.c
+++ b/util-src/pposix.c
@@ -36,7 +36,7 @@
#include "lauxlib.h"
#include <fcntl.h>
-#if defined(_GNU_SOURCE)
+#if defined(__linux__) && defined(_GNU_SOURCE)
#include <linux/falloc.h>
#endif
@@ -680,7 +680,7 @@ int lc_fallocate(lua_State* L)
offset = luaL_checkinteger(L, 2);
len = luaL_checkinteger(L, 3);
-#if defined(_GNU_SOURCE)
+#if defined(__linux__) && defined(_GNU_SOURCE)
if(fallocate(fileno(f), FALLOC_FL_KEEP_SIZE, offset, len) == 0)
{
lua_pushboolean(L, 1);