summaryrefslogtreecommitdiff
path: root/libs/liblua/src/lprefix.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-01-02 13:52:38 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-01-02 13:52:38 +0000
commit0a79763db57ac830746fbb70f227ca2a0b758e49 (patch)
treee7285dd46041e3cfd9016758ec83e026669f254c /libs/liblua/src/lprefix.h
parent170bc1e725d52b2b5398527b32cca68579f8d891 (diff)
added liblua project
git-svn-id: http://svn.miranda-ng.org/main/trunk@15988 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'libs/liblua/src/lprefix.h')
-rw-r--r--libs/liblua/src/lprefix.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/libs/liblua/src/lprefix.h b/libs/liblua/src/lprefix.h
new file mode 100644
index 0000000000..02daa837f5
--- /dev/null
+++ b/libs/liblua/src/lprefix.h
@@ -0,0 +1,45 @@
+/*
+** $Id: lprefix.h,v 1.2 2014/12/29 16:54:13 roberto Exp $
+** Definitions for Lua code that must come before any other header file
+** See Copyright Notice in lua.h
+*/
+
+#ifndef lprefix_h
+#define lprefix_h
+
+
+/*
+** Allows POSIX/XSI stuff
+*/
+#if !defined(LUA_USE_C89) /* { */
+
+#if !defined(_XOPEN_SOURCE)
+#define _XOPEN_SOURCE 600
+#elif _XOPEN_SOURCE == 0
+#undef _XOPEN_SOURCE /* use -D_XOPEN_SOURCE=0 to undefine it */
+#endif
+
+/*
+** Allows manipulation of large files in gcc and some other compilers
+*/
+#if !defined(LUA_32BITS) && !defined(_FILE_OFFSET_BITS)
+#define _LARGEFILE_SOURCE 1
+#define _FILE_OFFSET_BITS 64
+#endif
+
+#endif /* } */
+
+
+/*
+** Windows stuff
+*/
+#if defined(_WIN32) /* { */
+
+#if !defined(_CRT_SECURE_NO_WARNINGS)
+#define _CRT_SECURE_NO_WARNINGS /* avoid warnings about ISO C functions */
+#endif
+
+#endif /* } */
+
+#endif
+