ability to link against ncursesw if ncurses is not found
This commit is contained in:
14
src/keys.h
14
src/keys.h
@@ -1,4 +1,4 @@
|
||||
/* $calcurse: keys.h,v 1.9 2009/01/03 21:32:11 culot Exp $ */
|
||||
/* $calcurse: keys.h,v 1.10 2009/01/23 21:09:21 culot Exp $ */
|
||||
|
||||
/*
|
||||
* Calcurse - text-based organizer
|
||||
@@ -27,7 +27,19 @@
|
||||
#ifndef CALCURSE_KEYS_H
|
||||
#define CALCURSE_KEYS_H
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include "config.h"
|
||||
#endif /* HAVE_CONFIG_H */
|
||||
|
||||
#ifdef HAVE_NCURSES_H
|
||||
#include <ncurses.h>
|
||||
#elif defined HAVE_NCURSES_NCURSES_H
|
||||
#include <ncurses/ncurses.h>
|
||||
#elif defined HAVE_NCURSESW_NCURSES_H
|
||||
#include <ncursesw/ncurses.h>
|
||||
#else
|
||||
#error "Missing ncurses header. Aborting..."
|
||||
#endif
|
||||
|
||||
#define CTRLVAL 0x1F
|
||||
#define CTRL(x) ((x) & CTRLVAL)
|
||||
|
||||
Reference in New Issue
Block a user