summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Chaplin <>2012-08-13 17:45:09 +0800
committerSteve Chaplin <>2012-08-13 17:45:09 +0800
commit68314398b2e3ee1b8d62e171c80ccfe54d713abf (patch)
tree596895e0be07392658c9d6668759307ada1533d1
parentc55e63970befc87120ceacae5fc9ffba0881d33d (diff)
downloadpycairo-68314398b2e3ee1b8d62e171c80ccfe54d713abf.tar.gz
Remove option to use xpyb since it does not currently support Python 3,
and the .pc file name conflicts with the Python 2 version. Fixes bug #50134.
-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':