Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BLD: fix a number of Bento build warnings. #4205

Merged
merged 1 commit into from Nov 28, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -183,6 +183,7 @@ scipy/sparse/sparsetools/sparsetools_impl.h
scipy/spatial/ckdtree.c
scipy/spatial/qhull.c
scipy/special/_ellip_harm_2.c
scipy/special/_ellip_harm_2.h
scipy/special/_logit.c
scipy/special/_ufuncs.c
scipy/special/_ufuncs.h
Expand Down
4 changes: 2 additions & 2 deletions scipy/special/bscript
Expand Up @@ -18,10 +18,10 @@ def pre_build(context):
context.tweak_extension("_ufuncs_cxx", features="cxx cxxshlib pyext bento",
use="NPYMATH")

context.waf_context.env.INCLUDES.append("c_misc")
context.tweak_extension("_ufuncs",
use="sc_amos sc_c_misc sc_cephes sc_mach sc_cdf "\
"sc_specfun NPYMATH CLIB LAPACK")
"sc_specfun NPYMATH CLIB LAPACK",
includes=["c_misc"])

context.tweak_extension("_ellip_harm_2",
use="sc_amos sc_c_misc sc_cephes sc_mach sc_cdf "\
Expand Down