From 68314398b2e3ee1b8d62e171c80ccfe54d713abf Mon Sep 17 00:00:00 2001 From: Steve Chaplin <> Date: Mon, 13 Aug 2012 17:45:09 +0800 Subject: 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. --- wscript | 10 ++++++---- 1 file 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': -- cgit v1.2.1