contrib/buildsystems: also handle -lexpat
This is a dependency required for the non-smart HTTP backend. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Johannes Schindelin committed
Jul 29, 2019 at 13:08 UTC
6e500217f99ee6c3a314cb15766aa5dce99f55ca
1 file changed
+2
contrib/buildsystems/engine.pl
+2
@@ -347,6 +347,8 @@ sub handleLinkLine
347
push(@libs, "ssleay32.lib");
348
} elsif ("$part" eq "-lcurl") {
349
push(@libs, "libcurl.lib");
350
+ } elsif ("$part" eq "-lexpat") {
351
+ push(@libs, "expat.lib");
352
} elsif ("$part" eq "-liconv") {
353
push(@libs, "libiconv.lib");
354
} elsif ($part =~ /^-/) {