~ubuntu-branches/ubuntu/trusty/lifelines/trusty

« back to all changes in this revision

Viewing changes to src/hdrs/mycurses.h

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Augusto van de Wiel (faw)
  • Date: 2007-08-14 00:02:04 UTC
  • mfrom: (1.1.4 upstream) (3.1.4 gutsy)
  • Revision ID: james.westby@ubuntu.com-20070814000204-mpv5faygl0dgq3qi
Tags: 3.0.61-1
* New upstream release. (Closes: #387856).
* Fixing documentation build problems also fixes FTBFS if built twice in a
  row. (Closes: #424543).
* Adding lynx as a build dependency. This is necessary to generate txt files
  from html, discovered while fixing #424543.
* Upstream fix: charset for gedcom file in unicode. (Closes: #396206).
* Upstream fim: updating documentation about desc-tex2. (Closes: #405501).
* Bumping Standards-Version to 3.7.2 without package changes.
* Dropping local debian patches added upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#include "config.h"
6
6
 
7
7
#if defined(HAVE_LIBNCURSESW)
8
 
#include <ncursesw/curses.h>
9
 
#elif defined(HAVE_LIBNCURSES) || defined(HAVE_LIBCURSES)
 
8
    #if defined(HAVE_NCURSESW_CURSES_H)
 
9
    #include <ncursesw/curses.h>
 
10
    #elif defined(HAVE_NCURSES_CURSES_H)
 
11
    #include <ncurses/curses.h>
 
12
    #else
 
13
    #include <curses.h>
 
14
    #endif
 
15
#elif defined(HAVE_LIBNCURSES)
 
16
    #if defined(HAVE_NCURSES_CURSES_H)
 
17
    #include <ncurses/curses.h>
 
18
    #else
 
19
    #include <curses.h>
 
20
    #endif
 
21
#elif defined(HAVE_LIBCURSES)
10
22
#include <curses.h>
11
23
#elif defined(HAVE_WINDOWS_H)
12
24
#include "win32/curses.h"