summaryrefslogtreecommitdiffstats
path: root/src/qt.mk
diff options
context:
space:
mode:
authorNikos Chantziaras <realnc@arcor.de>2011-06-28 19:16:19 (GMT)
committerNikos Chantziaras <realnc@arcor.de>2011-06-28 19:16:19 (GMT)
commit788de552d0b424024f0c4ba0b28ccf845428f799 (patch)
treee07987cab2dc73f6ca5ca97ba02f96126c5d5300 /src/qt.mk
parentb78b6fa5308d889209d34ba30d071f0002c669b9 (diff)
downloadmxe-788de552d0b424024f0c4ba0b28ccf845428f799.zip
mxe-788de552d0b424024f0c4ba0b28ccf845428f799.tar.gz
mxe-788de552d0b424024f0c4ba0b28ccf845428f799.tar.bz2
package qt: build with -no-iconv
mingw-cross-env should build Qt with "-no-iconv". That way, the programmer will get linker errors when trying to build his application. That way, he will know that he *must* include the text codec plugins.
Diffstat (limited to 'src/qt.mk')
-rw-r--r--src/qt.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/qt.mk b/src/qt.mk
index 2e3f57a..8ff21ab 100644
--- a/src/qt.mk
+++ b/src/qt.mk
@@ -10,7 +10,7 @@ $(PKG)_SUBDIR := $(PKG)-everywhere-opensource-src-$($(PKG)_VERSION)
$(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 @@ define $(PKG)_BUILD
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 @@ define $(PKG)_BUILD
-prefix '$(PREFIX)/$(TARGET)' \
-prefix-install \
-script \
+ -no-iconv \
-opengl desktop \
-webkit \
-no-glib \