From d55d524a131ad550bb353b5d5df4b66b1a1c3cbd Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Wed, 13 Jul 2022 08:15:11 -0700 Subject: [PATCH] add missing -I flags to point to perl files MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This applies a patch NetBSD has been carrying downstream for some time. Gitlab: fixes #2262, #1576 Reported-by: Michael Bäuerle --- CHANGELOG.md | 1 + tclpkg/gv/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63c5d145d..6e67b334c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - -Tx11: Assertion `xev.xbutton.button >= 1 && xev.xbutton.button <= 5 && "Xlib returned invalid button event"` failed #2256 +- missing Perl includes patch #2262 ## [5.0.0] – 2022-07-07 diff --git a/tclpkg/gv/Makefile.am b/tclpkg/gv/Makefile.am index 2120ed054..5b79c265f 100644 --- a/tclpkg/gv/Makefile.am +++ b/tclpkg/gv/Makefile.am @@ -180,7 +180,7 @@ nodist_libgv_perl_la_SOURCES = gv_perl.cpp $(PERL_data) libgv_perl_la_SOURCES = $(BASESOURCES) gv_dummy_init.c libgv_perl_la_LIBADD = $(BASELIBS) $(PERL_LIBS) libgv_perl_la_LDFLAGS = -module -avoid-version $(PERL_LD) -libgv_perl_la_CPPFLAGS = $(BASECPPFLAGS) $(PERL_CC) +libgv_perl_la_CPPFLAGS = $(BASECPPFLAGS) $(PERL_INCLUDES) $(PERL_CC) $(PERL_data): gv_perl.cpp gv_perl.cpp: gv.i $(SWIG) -c++ $(SWIG_PERL_OPT) -o $@ $(srcdir)/gv.i -- 2.40.0