Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-09-28 14:08:00 +0400
committerRyan Dahl <ry@tinyclouds.org>2010-09-28 14:11:33 +0400
commit3a64c22cc1bad10365d93389c538a9025e8df131 (patch)
tree0d98cce780ac0e8f688421d133e75b1d8ed9f97c /deps
parent069d973d74efdf8492512c58a71fd8f13e8c6696 (diff)
Disable a few more libev features
Diffstat (limited to 'deps')
-rw-r--r--deps/libev/wscript7
1 files changed, 4 insertions, 3 deletions
diff --git a/deps/libev/wscript b/deps/libev/wscript
index 19e7bb24979..24e30a1b840 100644
--- a/deps/libev/wscript
+++ b/deps/libev/wscript
@@ -66,9 +66,10 @@ def configure(conf):
conf.check_cc(lib="m", header_name="math.h", function_name="ceil")
conf.define("HAVE_CONFIG_H", 1)
-
- conf.env.append_value('CCFLAGS', ['-DEV_MULTIPLICITY=0'])
- conf.env.append_value('CXXFLAGS', ['-DEV_MULTIPLICITY=0'])
+ # Not using these.
+ conf.env.append_value('CPPFLAGS', ['-DEV_FORK_ENABLE=0',
+ '-DEV_EMBED_ENABLE=0',
+ '-DEV_MULTIPLICITY=0'])
def build(bld):
libev = bld.new_task_gen("cc")