>From eebdfe2555d6e50d1decd3de99209c607f7da364 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Wed, 24 Feb 2021 03:32:47 +0100 Subject: [PATCH] Fix compilation error on NetBSD 9. * gui/Makefile.am (poke_gui_CPPFLAGS): Add -I option, to find the gnulib-generated .h files. --- gui/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui/Makefile.am b/gui/Makefile.am index a5d4b64..2d0ea1c 100644 --- a/gui/Makefile.am +++ b/gui/Makefile.am @@ -30,7 +30,8 @@ bin_PROGRAMS = poke-gui poke_gui_SOURCES = poke-gui.c -poke_gui_CPPFLAGS = -I$(top_builddir)/common -I$(top_srcdir)/gl-gui \ +poke_gui_CPPFLAGS = -I$(top_builddir)/common \ + -I$(top_builddir)/gl-gui -I$(top_srcdir)/gl-gui \ $(TCL_INCLUDE_SPEC) $(TK_INCLUDE_SPEC) \ -DPOKEGUIDIR=\"$(guifilesdir)\" \ -DLOCALEDIR=\"$(localedir)\" -- 2.7.4