note about why execinfo detection fails on Darwin even though it exists
authorRasmus Andersson <rasmus@notion.se>
Tue, 15 Dec 2009 22:37:49 +0000 (23:37 +0100)
committerRyan Dahl <ry@tinyclouds.org>
Fri, 18 Dec 2009 14:37:24 +0000 (15:37 +0100)
wscript

diff --git a/wscript b/wscript
index 7e2bd0a..bc918bb 100644 (file)
--- a/wscript
+++ b/wscript
@@ -116,6 +116,8 @@ def configure(conf):
   #  conf.check(lib='efence', libpath=['/usr/lib', '/usr/local/lib'], uselib_store='EFENCE')
 
   if not conf.check(lib="execinfo", libpath=['/usr/lib', '/usr/local/lib'], uselib_store="EXECINFO"):
+    # Note on Darwin/OS X: This will fail, but will still be used as the
+    # execinfo stuff are part of the standard library.
     if sys.platform.startswith("freebsd"):
       conf.fatal("Install the libexecinfo port from /usr/ports/devel/libexecinfo.")