Skip to content

Commit

Permalink
define __STDC_LIMIT_MACROS to enable UINT8_MAX macro
Browse files Browse the repository at this point in the history
  • Loading branch information
Atsushi Takayama committed Apr 24, 2010
1 parent a92da75 commit 0ff9e80
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wscript
Expand Up @@ -13,5 +13,6 @@ def build(bld):
obj = bld.new_task_gen("cxx", "shlib", "node_addon") obj = bld.new_task_gen("cxx", "shlib", "node_addon")
obj.target = "tokyocabinet" obj.target = "tokyocabinet"
obj.source = "src/tokyocabinet.cc" obj.source = "src/tokyocabinet.cc"
obj.includes = [".", "/usr/local/include/node"] obj.includes = ["."]
obj.defines = "__STDC_LIMIT_MACROS"
obj.lib = ["tokyocabinet"] obj.lib = ["tokyocabinet"]

0 comments on commit 0ff9e80

Please sign in to comment.