diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2015-02-13 13:08:54 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2015-05-02 21:36:44 +0200 |
commit | f286661035f4f6b01cef7d80c510140c2518f25b (patch) | |
tree | 5894cdb2b48087eee9023562faba48c00a503e00 /wscript | |
parent | 1ca79e948aa4bf923b92757ea68a98b7bcd0767d (diff) | |
download | pucket-f286661035f4f6b01cef7d80c510140c2518f25b.tar.gz pucket-f286661035f4f6b01cef7d80c510140c2518f25b.tar.bz2 pucket-f286661035f4f6b01cef7d80c510140c2518f25b.zip |
Drop Windows/Mac support, require pthreads
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ def configure(conf): conf.check_cfg (path='xml2-config', args='--cflags --libs', package='', uselib_store='xml2') conf.check_cc (lib='xml2', header_name='libxml/parser.h', function_name='xmlParseFile', use='xml2') - conf.check_cc (lib='pthread', uselib_store='pthread', define_name='HAVE_LIBPTHREAD') + conf.check_cc (lib='pthread', uselib_store='pthread') conf.check_cc (lib='jpeg', uselib_store='jpeg') conf.check_cfg (package='libpng', uselib_store='png', args=['--cflags', '--libs'], msg='Checking for library png') conf.check_cc (lib='amdlibm', header_name='amdlibm.h', mandatory=False, define_name='HAVE_AMDLIBM', uselib_store='amdlibm') |