From 807068ce8467c35df4daeb2fcb0a5388435bff62 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Tue, 19 Jan 2021 21:29:13 +0000
Subject: [PATCH] comment out libdl.dll requirement as it no longer ships with
 msys2

Not sure what this was used for. Could have been a remnant from ancient
Pd-extended builds where libdl was required to dynamically load at all,
but that's a shot in the dark.

Anyway, if we get reports in a future release of some external randomly
refusing to load under Windows, we may want to test whether this change
is the culprit.
---
 packages/win32_inno/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile
index a198acb64..12b2f93c0 100755
--- a/packages/win32_inno/Makefile
+++ b/packages/win32_inno/Makefile
@@ -117,7 +117,7 @@ ifneq ($(LIGHT),yes)
 	# For other external libs
 	install -p $(bin_src)/lua53.dll          $(DESTDIR)$(bindir)/
 	#install -p $(bin_src)/pthreadGC2.dll     $(DESTDIR)$(bindir)/
-	install -p $(bin_src)/libdl.dll     $(DESTDIR)$(bindir)/
+	#install -p $(bin_src)/libdl.dll     $(DESTDIR)$(bindir)/
 	install -p $(bin_src)/libportaudio-2.dll     $(DESTDIR)$(bindir)/
 	install -p $(bin_src)/libFLAC-8.dll     $(DESTDIR)$(bindir)/
 	install -p $(bin_src)/libspeex-1.dll     $(DESTDIR)$(bindir)/
-- 
GitLab