aboutsummaryrefslogtreecommitdiffstats
path: root/src/calendar.h
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2009-01-23 21:09:21 +0000
committerFrederic Culot <calcurse@culot.org>2009-01-23 21:09:21 +0000
commit9abf70b4a66171904cf8040c0808ee788ccd47f9 (patch)
tree80ecc6e3221c3db8de3b508fe636edb2a1949a06 /src/calendar.h
parent08aaf496fce35c4335dab19a4426442153592840 (diff)
downloadcalcurse-9abf70b4a66171904cf8040c0808ee788ccd47f9.tar.gz
calcurse-9abf70b4a66171904cf8040c0808ee788ccd47f9.zip
ability to link against ncursesw if ncurses is not found
Diffstat (limited to 'src/calendar.h')
-rwxr-xr-xsrc/calendar.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/src/calendar.h b/src/calendar.h
index 30762fc..2bd81aa 100755
--- a/src/calendar.h
+++ b/src/calendar.h
@@ -1,8 +1,8 @@
-/* $calcurse: calendar.h,v 1.12 2008/08/10 09:24:46 culot Exp $ */
+/* $calcurse: calendar.h,v 1.13 2009/01/23 21:09:21 culot Exp $ */
/*
* Calcurse - text-based organizer
- * Copyright (c) 2004-2008 Frederic Culot
+ * Copyright (c) 2004-2009 Frederic Culot
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -27,7 +27,20 @@
#ifndef CALCURSE_CALENDAR_H
#define CALCURSE_CALENDAR_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 <stdbool.h>
#include <time.h>