Add electric fence option to configure process
authorRyan <ry@tinyclouds.org>
Tue, 16 Jun 2009 13:47:57 +0000 (15:47 +0200)
committerRyan <ry@tinyclouds.org>
Tue, 16 Jun 2009 13:47:57 +0000 (15:47 +0200)
wscript

diff --git a/wscript b/wscript
index 05bff78..2b40f64 100644 (file)
--- a/wscript
+++ b/wscript
@@ -24,6 +24,12 @@ def set_options(opt):
                 , help='Build debug variant [Default: False]'
                 , dest='debug'
                 )
+  opt.add_option( '--efence'
+                , action='store_true'
+                , default=False
+                , help='Build with -lefence for debugging [Default: False]'
+                , dest='efence'
+                )
 
 def configure(conf):
   conf.check_tool('compiler_cxx')
@@ -31,19 +37,19 @@ def configure(conf):
 
   conf.env["USE_DEBUG"] = Options.options.debug
 
-  conf.check(lib='profiler', uselib_store='PROFILER')
+  if Options.options.debug:
+    conf.check(lib='profiler', uselib_store='PROFILER')
+
+  if Options.options.efence:
+    conf.check(lib='efence', libpath=['/usr/lib', '/usr/local/lib'], uselib_store='EFENCE')
 
   if sys.platform.startswith("freebsd"):
     if not conf.check(lib="execinfo", libpath=['/usr/lib', '/usr/local/lib'], uselib_store="EXECINFO"):
-      fatal("install the libexecinfo port. devel/libexecinfo")
+      fatal("Install the libexecinfo port from /usr/ports/devel/libexecinfo.")
 
   conf.sub_config('deps/libeio')
   conf.sub_config('deps/libev')
 
-  # liboi config
-  print "--- liboi ---"
-
-
   # Not using TLS yet
   # if conf.check_cfg(package='gnutls', args='--cflags --libs', uselib_store="GNUTLS"):
   #   conf.define("HAVE_GNUTLS", 1)
@@ -163,7 +169,7 @@ def build(bld):
     deps/http_parser
   """
   node.uselib_local = "oi ev eio http_parser"
-  node.uselib = "V8 EXECINFO PROFILER"
+  node.uselib = "V8 EXECINFO PROFILER EFENCE"
   node.install_path = '${PREFIX}/bin'
   node.chmod = 0755