Browse Source

note about why execinfo detection fails on Darwin even though it exists

v0.7.4-release
Rasmus Andersson 15 years ago
committed by Ryan Dahl
parent
commit
6eb8bbc640
  1. 2
      wscript

2
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.")

Loading…
Cancel
Save