From 30a466d567b059df7589dd9345af321ccfdb51be Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Wed, 19 Dec 2012 21:09:41 -0500 Subject: [PATCH] #1 - include for malloc this is not required on OSX but is needed for some linux systems, also, version bump to 0.1.5 --- package.json | 2 +- src/utils.cc | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index eba55f2..cfab6de 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nodelua", - "version": "0.1.4", + "version": "0.1.5", "description": "Lua Bindings For Node.JS", "keywords": [ "lua" diff --git a/src/utils.cc b/src/utils.cc index 675e268..a7e2e5d 100644 --- a/src/utils.cc +++ b/src/utils.cc @@ -1,3 +1,4 @@ +#include #include "utils.h" char * get_str(v8::Local val){