diff options
author | Steve Chaplin <> | 2012-08-13 17:45:09 +0800 |
---|---|---|
committer | Steve Chaplin <> | 2012-08-13 17:45:09 +0800 |
commit | 68314398b2e3ee1b8d62e171c80ccfe54d713abf (patch) | |
tree | 596895e0be07392658c9d6668759307ada1533d1 /wscript | |
parent | c55e63970befc87120ceacae5fc9ffba0881d33d (diff) |
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.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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': |