summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wscript10
1 files changed, 6 insertions, 4 deletions
diff --git a/wscript b/wscript
index 3c2b6ed..cb55348 100644
--- a/wscript
+++ b/wscript
@@ -33,10 +33,12 @@ def configure(ctx):
atleast_version=cairo_version_required,
args='--cflags --libs')
- ctx.check_cfg(package='xpyb',
- atleast_version=xpyb_version_required,
- args='--cflags --libs',
- mandatory=False)
+# xpyb for Python 3 is not available yet.
+# the Python 3 version should probably have a different name than 'xpyb'
+# ctx.check_cfg(package='xpyb',
+# atleast_version=xpyb_version_required,
+# args='--cflags --libs',
+# mandatory=False)
# add gcc options
if env['CC_NAME'] == 'gcc':