summaryrefslogtreecommitdiffstats
path: root/ui/ncurses/nc-boot-editor.h
diff options
context:
space:
mode:
authorGeoff Levand <geoff@infradead.org>2013-07-19 17:07:31 -0700
committerGeoff Levand <geoff@infradead.org>2013-07-23 10:39:08 -0700
commitf1599796efed1eb67759cf42f47fe4bf6a9bf93c (patch)
tree5cf13ffb598e62a45ed9830f76a74958785b2a44 /ui/ncurses/nc-boot-editor.h
parentf2747434dcdfe71c3a4d1b841070f4c9d8dc4965 (diff)
downloadtalos-petitboot-f1599796efed1eb67759cf42f47fe4bf6a9bf93c.tar.gz
talos-petitboot-f1599796efed1eb67759cf42f47fe4bf6a9bf93c.zip
configure: Update to use AX_WITH_CURSES
For a more portable build system convert to using the autoconf-archive AX_WITH_CURSES macros. Allows building on openSUSE, which has a different header file layout than other distros, and fixes menu entries with UTF-8 characters; this causes fedora installs (codename "Schrödinger´s cat") to break the UI. Signed-off-by: Geoff Levand <geoff@infradead.org>
Diffstat (limited to 'ui/ncurses/nc-boot-editor.h')
-rw-r--r--ui/ncurses/nc-boot-editor.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/ui/ncurses/nc-boot-editor.h b/ui/ncurses/nc-boot-editor.h
index bdcc560..a509f75 100644
--- a/ui/ncurses/nc-boot-editor.h
+++ b/ui/ncurses/nc-boot-editor.h
@@ -19,9 +19,16 @@
#if !defined(_PB_NC_KED_H)
#define _PB_NC_KED_H
-#include <assert.h>
#include <linux/input.h> /* This must be included before ncurses.h */
-#include <form.h>
+#if defined HAVE_NCURSESW_FORM_H
+# include <ncursesw/form.h>
+#elif defined HAVE_NCURSES_FORM_H
+# include <ncurses/form.h>
+#elif defined HAVE_FORM_H
+# include <form.h>
+#else
+# error "Curses form.h not found."
+#endif
#include "types/types.h"
#include "ui/common/ui-system.h"
OpenPOWER on IntegriCloud