summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmanuele Torre <torreemanuele6@gmail.com>2023-12-13 13:08:57 +0100
committerGitHub <noreply@github.com>2023-12-13 13:08:57 +0100
commit7298972551d43b44dd33a079927e06f2d15151f8 (patch)
treedcc5b9c68b676ba45ae403597b1229fea18d9132
parent19453a60cff5862c87a0f178f1ee60eff86e3d70 (diff)
Makefile.am: don't use -lshlwapi to build jq on WIN32
It does not need it, only libjq needs this.
-rw-r--r--Makefile.am4
1 files changed, 0 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index f7bdfc24..76e35df8 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -129,10 +129,6 @@ jq_SOURCES = src/main.c src/version.h
jq_LDFLAGS = -static-libtool-libs
jq_LDADD = libjq.la -lm
-if WIN32
-jq_LDADD += -lshlwapi
-endif
-
if ENABLE_ALL_STATIC
jq_LDFLAGS += -all-static
endif