19 lines
441 B
Text
19 lines
441 B
Text
$NetBSD: patch-ae,v 1.1 2009/07/07 21:18:52 joerg Exp $
|
|
|
|
--- interface_elements.h.orig 2009-07-07 12:34:49.000000000 +0200
|
|
+++ interface_elements.h
|
|
@@ -1,7 +1,13 @@
|
|
#ifndef INTERFACE_ELEMENTS_H
|
|
#define INTERFACE_ELEMENTS_H
|
|
|
|
-#include <ncurses.h>
|
|
+#ifdef HAVE_NCURSESW_H
|
|
+# include <ncursesw/curses.h>
|
|
+#elif HAVE_NCURSES_H
|
|
+# include <ncurses.h>
|
|
+#elif HAVE_CURSES_H
|
|
+# include <curses.h>
|
|
+#endif
|
|
|
|
#include "files.h"
|
|
#include "keys.h"
|