summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Johannes Schindelin <johannes.schindelin@gmx.de>2019-07-29 13:08:10 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2019-07-29 14:51:43 -0700
commit6e500217f99ee6c3a314cb15766aa5dce99f55ca (patch)
tree98ab48793d7a14dbb9fd38fb8a6c6eafb92dd5fa
parentcontrib/buildsystems: handle libiconv, too (diff)
downloadtgif-6e500217f99ee6c3a314cb15766aa5dce99f55ca.tar.xz
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>
-rwxr-xr-xcontrib/buildsystems/engine.pl2
1 files changed, 2 insertions, 0 deletions
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 =~ /^-/) {