Skip to content

Commit 5ea00dd

Browse files
committed
Adjusted mingw libxml2 build to exclude libiconv
In libxml2 2.13.6 and previous the configure script would allow no iconv to be found. With 2.14.1 the configure script was changed to default to looking for iconv if no explicit --without-iconv was specified. We have been building libxml2 on mingw platform without iconv "always" as far as I can tell so this is not a functional change, only a build-time change. Ticket: ENT-12744 Changelog: none
1 parent 028e32a commit 5ea00dd

File tree

1 file changed

+2
-1
lines changed
  • deps-packaging/libxml2/mingw/debian

1 file changed

+2
-1
lines changed

deps-packaging/libxml2/mingw/debian/rules

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ build: build-stamp
1212
build-stamp:
1313
dh_testdir
1414

15-
./configure --host=$(DEB_HOST_GNU_TYPE) --prefix=$(PREFIX) --without-python
15+
# ENT-12744 note: --without-iconv is needed on ubuntu-16 build host, we can use win-iconv-mingw-w64-dev on ubuntu-20+ when we get there.
16+
./configure --host=$(DEB_HOST_GNU_TYPE) --prefix=$(PREFIX) --without-python --without-iconv
1617
make
1718

1819
touch build-stamp

0 commit comments

Comments
 (0)