diff -Naur a/src/qt-test.cpp b/src/qt-test.cpp --- a/src/qt-test.cpp 2011-06-28 17:40:00.595001052 +0300 +++ b/src/qt-test.cpp 2011-06-28 17:39:15.425001032 +0300 @@ -2,6 +2,7 @@ /* See doc/index.html for further information. */ #include +#include #include "ui_qt-test.h" #ifdef Q_OS_AIX @@ -144,6 +145,11 @@ #error "Q_WS_WIN is not defined" #endif +Q_IMPORT_PLUGIN(qcncodecs) +Q_IMPORT_PLUGIN(qjpcodecs) +Q_IMPORT_PLUGIN(qtwcodecs) +Q_IMPORT_PLUGIN(qkrcodecs) + int main(int argc, char *argv[]) { QApplication a(argc, argv); diff -Naur a/src/qt-test.pro b/src/qt-test.pro --- a/src/qt-test.pro 2011-06-28 17:40:00.595001052 +0300 +++ b/src/qt-test.pro 2011-06-28 17:38:39.723001024 +0300 @@ -4,3 +4,4 @@ TARGET = test-qt SOURCES += qt-test.cpp FORMS += qt-test.ui +QTPLUGIN += qcncodecs qjpcodecs qtwcodecs qkrcodecs diff -Naur a/src/qt.mk b/src/qt.mk --- a/src/qt.mk 2011-06-28 17:42:31.167001117 +0300 +++ b/src/qt.mk 2011-06-28 17:55:36.378001458 +0300 @@ -10,7 +10,7 @@ $(PKG)_FILE := $(PKG)-everywhere-opensource-src-$($(PKG)_VERSION).tar.gz $(PKG)_WEBSITE := http://qt.nokia.com/ $(PKG)_URL := http://get.qt.nokia.com/qt/source/$($(PKG)_FILE) -$(PKG)_DEPS := gcc libodbc++ postgresql freetds openssl zlib libpng jpeg libmng tiff sqlite libiconv dbus +$(PKG)_DEPS := gcc libodbc++ postgresql freetds openssl zlib libpng jpeg libmng tiff sqlite dbus define $(PKG)_UPDATE wget -q -O- 'http://qt.gitorious.org/qt/qt/commits' | \ @@ -28,7 +28,7 @@ cd '$(1)' && \ OPENSSL_LIBS="`'$(TARGET)-pkg-config' --libs-only-l openssl`" \ PSQL_LIBS="-lpq -lsecur32 `'$(TARGET)-pkg-config' --libs-only-l openssl` -lws2_32" \ - SYBASE_LIBS="-lsybdb -liconv -lws2_32" \ + SYBASE_LIBS="-lsybdb -lws2_32" \ ./configure \ -opensource \ -confirm-license \ @@ -41,6 +41,7 @@ -prefix '$(PREFIX)/$(TARGET)' \ -prefix-install \ -script \ + -no-iconv \ -opengl desktop \ -webkit \ -no-glib \