From da617bdefd0258ecd1c947fd92bf9210013be08d Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Thu, 10 Dec 2009 21:53:43 +0100 Subject: [PATCH] Only use signal.h when not building on or for Win32 The signal API is available but not practically usable. --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 8547d1e1..a7a81ac0 100644 --- a/wscript +++ b/wscript @@ -237,7 +237,6 @@ def configure (conf): conf.env['docs'] = option_enabled ('docs') conf.check (header_name='unistd.h') - conf.check (header_name='signal.h') if not conf.env['HAVE_UNIQUE']: if Options.platform == 'win32': conf.check (lib='ws2_32') @@ -251,6 +250,8 @@ def configure (conf): conf.define ('HAVE_OSX', int(sys.platform == 'darwin')) if Options.platform == 'win32': conf.env.append_value ('LINKFLAGS', '-mwindows') + else: + conf.check (header_name='signal.h') conf.define ('PACKAGE_VERSION', VERSION) conf.define ('PACKAGE_NAME', APPNAME)