Commit 3d7c4dc4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Win32: libintl (gettext-runtime) should not need libiconv

Our PO files are all encoded in UTF-8, and VLC always binds its text
domain as UTF-8. There is no need to convert localized strings. So
libintl does not need to use iconv.
parent 9cc4fe4d
...@@ -380,9 +380,9 @@ ifdef HAVE_DARWIN_OS ...@@ -380,9 +380,9 @@ ifdef HAVE_DARWIN_OS
patch -p0 < Patches/gettext-macosx.patch patch -p0 < Patches/gettext-macosx.patch
endif endif
.intl: gettext .iconv .intl: gettext
ifdef HAVE_WIN32 ifdef HAVE_WIN32
( cd $< && $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-relocatable --with-iconv-prefix=$(PREFIX) --disable-java --disable-native-java) ( cd $< && $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-relocatable --disable-java --disable-native-java)
else else
( cd $< && $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-java --disable-native-java --without-emacs) ( cd $< && $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) --disable-java --disable-native-java --without-emacs)
endif endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment