From: Johannes Schindelin Date: Mon, 29 Jul 2019 20:08:10 +0000 (-0700) Subject: contrib/buildsystems: also handle -lexpat X-Git-Tag: v2.23.0-rc1~2^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6e500217f99ee6c3a314cb15766aa5dce99f55ca;p=thirdparty%2Fgit.git contrib/buildsystems: also handle -lexpat This is a dependency required for the non-smart HTTP backend. Signed-off-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/contrib/buildsystems/engine.pl b/contrib/buildsystems/engine.pl index c35844a0c7..9bde7ae15b 100755 --- a/contrib/buildsystems/engine.pl +++ b/contrib/buildsystems/engine.pl @@ -347,6 +347,8 @@ sub handleLinkLine push(@libs, "ssleay32.lib"); } elsif ("$part" eq "-lcurl") { push(@libs, "libcurl.lib"); + } elsif ("$part" eq "-lexpat") { + push(@libs, "expat.lib"); } elsif ("$part" eq "-liconv") { push(@libs, "libiconv.lib"); } elsif ($part =~ /^-/) {