diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-08-20 13:20:36 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-08-20 13:20:36 +0000 |
commit | da95fe1aff6e21bddcbdf3fe2a43763efffc4c70 (patch) | |
tree | 95156a921931be5e1179d4d439036cf2b77f717e /dev-lang/yasm/files | |
parent | Whitespace. (diff) | |
download | historical-da95fe1aff6e21bddcbdf3fe2a43763efffc4c70.tar.gz historical-da95fe1aff6e21bddcbdf3fe2a43763efffc4c70.tar.bz2 historical-da95fe1aff6e21bddcbdf3fe2a43763efffc4c70.zip |
Version bump.
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'dev-lang/yasm/files')
-rw-r--r-- | dev-lang/yasm/files/yasm-1.1.0-skip_cython_check.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dev-lang/yasm/files/yasm-1.1.0-skip_cython_check.patch b/dev-lang/yasm/files/yasm-1.1.0-skip_cython_check.patch new file mode 100644 index 000000000000..c4e5b3687d22 --- /dev/null +++ b/dev-lang/yasm/files/yasm-1.1.0-skip_cython_check.patch @@ -0,0 +1,17 @@ +Skip semi-broken Cython version check because it barfs on 0.13_beta0. + +--- configure.ac ++++ configure.ac +@@ -285,11 +285,7 @@ + AC_MSG_NOTICE([Checking to see if we can build Python bindings]) + have_python_bindings=no + if test x$have_python = xyes; then +- AC_MSG_CHECKING([for Cython >= 0.11.3]) +- CYTHON_CHECK_VERSION(0.11.3, [AC_MSG_RESULT(yes) +- have_cython=yes], +- [AC_MSG_RESULT(no) +- have_cython=no]) ++ have_cython=yes + + AM_CHECK_PYTHON_HEADERS(have_python_headers=yes,have_python_headers=no) + |