From 6eb8bbc64002842d5c42d4e95ed3610551ec3827 Mon Sep 17 00:00:00 2001 From: Rasmus Andersson Date: Tue, 15 Dec 2009 23:37:49 +0100 Subject: [PATCH] note about why execinfo detection fails on Darwin even though it exists --- wscript | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wscript b/wscript index 7e2bd0a7b7a..bc918bbfc2d 100644 --- 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.")