diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2019-07-29 13:08:10 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-07-29 14:51:43 -0700 |
commit | 6e500217f99ee6c3a314cb15766aa5dce99f55ca (patch) | |
tree | 98ab48793d7a14dbb9fd38fb8a6c6eafb92dd5fa /contrib/buildsystems/engine.pl | |
parent | contrib/buildsystems: handle libiconv, too (diff) | |
download | tgif-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>
Diffstat (limited to 'contrib/buildsystems/engine.pl')
-rwxr-xr-x | contrib/buildsystems/engine.pl | 2 |
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 =~ /^-/) { |