On Sat, Dec 6, 2008 at 2:59 PM, Henricus J. Holtman
you can find that in the SConstruct file in your SC_64 dir:
if env['X11']:
if type(env['X11']) != types.StringType:
if os.path.exists('/usr/X11R6'):
env['X11'] = '/usr/X11R6'
else: env['X11'] = '/usr'
x11Env = Environment(
CPPPATH = [os.path.join(env['X11'], 'include')],
LIBPATH = [os.path.join(env['X11'], 'lib')])
x11Conf = Configure(x11Env)
features['x11'] = x11Conf.CheckCHeader('X11/Intrinsic.h') \
and x11Conf.CheckLib('X11', 'XQueryPointer')
libraries['x11'] = x11Conf.Finish()
else:
features['x11'] = False