diff options
author | Frederic Culot <calcurse@culot.org> | 2009-01-23 21:09:21 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2009-01-23 21:09:21 +0000 |
commit | 9abf70b4a66171904cf8040c0808ee788ccd47f9 (patch) | |
tree | 80ecc6e3221c3db8de3b508fe636edb2a1949a06 /src/vars.h | |
parent | 08aaf496fce35c4335dab19a4426442153592840 (diff) | |
download | calcurse-9abf70b4a66171904cf8040c0808ee788ccd47f9.tar.gz calcurse-9abf70b4a66171904cf8040c0808ee788ccd47f9.zip |
ability to link against ncursesw if ncurses is not found
Diffstat (limited to 'src/vars.h')
-rwxr-xr-x | src/vars.h | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: vars.h,v 1.30 2009/01/05 20:12:08 culot Exp $ */ +/* $calcurse: vars.h,v 1.31 2009/01/23 21:09:21 culot Exp $ */ /* * Calcurse - text-based organizer @@ -27,7 +27,20 @@ #ifndef CALCURSE_VARS_H #define CALCURSE_VARS_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 + #include <pthread.h> #include <stdbool.h> |