Browse Source

fix compilation error for linux builds due to missing iconv support

This is required since 3ac41fae4b962ae0bbeacad74a4ccb9a6012d0b2 as the text
codecs are built on Unix-like environments only if iconv support is enabled.
Ashish Kulkarni 11 years ago
parent
commit
5fdf1684c3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      scripts/build.py

+ 2 - 2
scripts/build.py

@@ -79,12 +79,12 @@ QT_CONFIG = {
         '-silent',                  # perform a silent build
         '-xrender',                 # xrender support is required
         '-largefile',
-        '-no-rpath',
+        '-iconv',                   # iconv support is required for text codecs
         '-openssl',                 # load OpenSSL binaries at runtime
+        '-no-rpath',
         '-no-dbus',
         '-no-nis',
         '-no-cups',
-        '-no-iconv',
         '-no-pch',
         '-no-gtkstyle',
         '-no-nas-sound',