diff options
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -277,10 +277,6 @@ iconv support use --disable-iconv.", 'func': check_statement('sys/vfs.h', 'struct statfs fs; fstatfs(0, &fs); fs.f_namelen') }, { - 'name': '--libguess', - 'desc': 'libguess support', - 'func': check_pkg_config('libguess', '>= 1.0'), - }, { 'name': '--libsmbclient', 'desc': 'Samba support', 'deps': [ 'libdl' ], @@ -339,8 +335,19 @@ iconv support use --disable-iconv.", }, { 'name': '--enca', 'desc': 'ENCA support', + 'deps': [ 'iconv' ], 'func': check_statement('enca.h', 'enca_get_languages(NULL)', lib='enca'), }, { + 'name': '--libguess', + 'desc': 'libguess support', + 'deps': [ 'iconv' ], + 'func': check_pkg_config('libguess', '>= 1.0'), + }, { + 'name': '--uchardet', + 'desc': 'uchardet support', + 'deps': [ 'iconv' ], + 'func': check_pkg_config('uchardet'), + }, { 'name': '--ladspa', 'desc': 'LADSPA plugin support', 'func': check_statement('ladspa.h', 'LADSPA_Descriptor ld = {0}'), |