Skip to content

Commit 7d1f883

Browse files
committed
contrib/buildsystems: handle libiconv, too
Git's test suite shows tons of breakages unless Git is compiled *without* NO_ICONV. That means, in turn, that we need to generate build definitions *with* libiconv, which in turn implies that we have to handle the -liconv option properly. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 9b8f810 commit 7d1f883

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

contrib/buildsystems/engine.pl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,8 @@ sub handleLinkLine
345345
push(@libs, "ssleay32.lib");
346346
} elsif ("$part" eq "-lcurl") {
347347
push(@libs, "libcurl.lib");
348+
} elsif ("$part" eq "-liconv") {
349+
push(@libs, "libiconv.lib");
348350
} elsif ($part =~ /^-/) {
349351
push(@lflags, $part);
350352
} elsif ($part =~ /\.(a|lib)$/) {

0 commit comments

Comments
 (0)