summaryrefslogtreecommitdiff
path: root/kconfig
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2022-02-23 08:45:06 (GMT)
committerChris Packham <judge.packham@gmail.com>2022-02-28 07:59:14 (GMT)
commit8ee3089202dc5f053cef8f1e5244f3212401a667 (patch)
treec0a253cd3a5f189403b92d1894ec7409c3c2b2f9 /kconfig
parent76d9b8c15ce5136d21f8564a6d0bda3f1a1d69b8 (diff)
kconfig: Use ncurses location determined by ./configure
Prior to commit bbc4db13 ("kconfig: Sync with upstream v4.18") we used the macros CURSES_LOC and MENU_LOC to tell us where curses.h and menu.h were installed. Restore this behaviour so that we can deal with some of the odd places that the curses headers end up. Fixes #1403 Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'kconfig')
-rw-r--r--kconfig/lxdialog/dialog.h2
-rw-r--r--kconfig/nconf.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/kconfig/lxdialog/dialog.h b/kconfig/lxdialog/dialog.h
index 68b565e..a6f2b57 100644
--- a/kconfig/lxdialog/dialog.h
+++ b/kconfig/lxdialog/dialog.h
@@ -16,7 +16,7 @@
#ifdef __sun__
#define CURS_MACROS
#endif
-#include <ncurses.h>
+#include CURSES_LOC
/*
* Colors in ncurses 1.9.9e do not work properly since foreground and
diff --git a/kconfig/nconf.h b/kconfig/nconf.h
index fa5245e..d41ec44 100644
--- a/kconfig/nconf.h
+++ b/kconfig/nconf.h
@@ -13,8 +13,8 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
-#include <ncurses.h>
-#include <menu.h>
+#include CURSES_LOC
+#include MENU_LOC
#include <panel.h>
#include <form.h>