aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--luasystem-0.1.1-0.rockspec (renamed from luasystem-0.1.0-0.rockspec)6
-rw-r--r--src/core.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/luasystem-0.1.0-0.rockspec b/luasystem-0.1.1-0.rockspec
index a1a322f..40c8b74 100644
--- a/luasystem-0.1.0-0.rockspec
+++ b/luasystem-0.1.1-0.rockspec
@@ -1,8 +1,8 @@
1package = 'luasystem' 1package = 'luasystem'
2version = '0.1.0-0' 2version = '0.1.1-0'
3source = { 3source = {
4 url = "https://github.com/o-lim/luasystem/archive/v0.1.0.tar.gz", 4 url = "https://github.com/o-lim/luasystem/archive/v0.1.1.tar.gz",
5 dir = "luasystem-0.1.0" 5 dir = "luasystem-0.1.1"
6} 6}
7description = { 7description = {
8 summary = 'Platform independent system calls for Lua.', 8 summary = 'Platform independent system calls for Lua.',
diff --git a/src/core.c b/src/core.c
index 31e768b..c35fba5 100644
--- a/src/core.c
+++ b/src/core.c
@@ -1,7 +1,7 @@
1#include <lua.h> 1#include <lua.h>
2#include <lauxlib.h> 2#include <lauxlib.h>
3 3
4#define LUASYSTEM_VERSION "LuaSystem 0.1.0" 4#define LUASYSTEM_VERSION "LuaSystem 0.1.1"
5 5
6#ifdef _WIN32 6#ifdef _WIN32
7#define LUAEXPORT __declspec(dllexport) 7#define LUAEXPORT __declspec(dllexport)