diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-10-02 11:35:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-10-02 11:35:59 +0100 |
| commit | 2a91e6e1432835b437748baa1c5c92de63156631 (patch) | |
| tree | c136a1b146361d727df3c005b3002bd569ff066b /wscript | |
| parent | 61086c44009c4acd04eb5f3925373fc011696c38 (diff) | |
libzip uses pkg-config.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -137,15 +137,7 @@ def configure(conf): conf.check_cfg(package= '', path=conf.options.magickpp_config, args='--cppflags --cxxflags --libs', uselib_store='MAGICK', mandatory=True) conf.check_cfg(package='libxml++-2.6', args='--cflags --libs', uselib_store='XML++', mandatory=True) conf.check_cfg(package='libcurl', args='--cflags --libs', uselib_store='CURL', mandatory=True) - - conf.check_cxx(fragment=""" - #include <zip.h> - int main(void) { zip_open ("foo", 0, 0); } - """, - mandatory=True, - msg='Checking for libzip', - lib='zip', - uselib_store='ZIP') + conf.check_cfg(package='libzip', args='--cflags --libs', uselib_store='ZIP', mandatory=True) conf.check_cxx(fragment=""" #include <boost/version.hpp>\n |
