Browse Source

#1 - include <stdlib.h> for malloc

this is not required on OSX but is needed for some linux systems,
also, version bump to 0.1.5
v0.1.x
Brett Langdon 13 years ago
parent
commit
30a466d567
2 changed files with 2 additions and 1 deletions
  1. +1
    -1
      package.json
  2. +1
    -0
      src/utils.cc

+ 1
- 1
package.json View File

@ -1,6 +1,6 @@
{
"name": "nodelua",
"version": "0.1.4",
"version": "0.1.5",
"description": "Lua Bindings For Node.JS",
"keywords": [
"lua"


+ 1
- 0
src/utils.cc View File

@ -1,3 +1,4 @@
#include <stdlib.h>
#include "utils.h"
char * get_str(v8::Local<v8::Value> val){


Loading…
Cancel
Save