mt.h (multitail-6.4.2.tgz) | : | mt.h (multitail-6.5.0.tgz) | ||
---|---|---|---|---|
skipping to change at line 62 | skipping to change at line 62 | |||
typedef enum { SCHEME_TYPE_EDIT = 0, SCHEME_TYPE_FILTER } filter_edit_scheme_t; | typedef enum { SCHEME_TYPE_EDIT = 0, SCHEME_TYPE_FILTER } filter_edit_scheme_t; | |||
#ifndef _BSD_SOURCE | #ifndef _BSD_SOURCE | |||
#define _BSD_SOURCE /* don't worry: it'll still work if you don't have a BSD system */ | #define _BSD_SOURCE /* don't worry: it'll still work if you don't have a BSD system */ | |||
#endif | #endif | |||
#ifndef __USE_BSD | #ifndef __USE_BSD | |||
#define __USE_BSD /* manpage says _BSD_SOURCE, stdlib.h says __USE_BSD */ | #define __USE_BSD /* manpage says _BSD_SOURCE, stdlib.h says __USE_BSD */ | |||
#endif | #endif | |||
#ifdef UTF8_SUPPORT | #if defined(UTF8_SUPPORT) && !defined(__APPLE__) | |||
#include <ncursesw/panel.h> | #include <ncursesw/panel.h> | |||
#include <ncursesw/ncurses.h> | #include <ncursesw/ncurses.h> | |||
#else | #else | |||
#if defined(sun) || defined(__sun) || defined(scoos) || defined(_HPUX_SOU | #if defined(__APPLE__) | |||
RCE) || defined(AIX) || defined(__CYGWIN__) | #include <ncurses.h> | |||
#include <panel.h> | ||||
#elif defined(sun) || defined(__sun) || defined(scoos) || defined(_HPUX_SOUR | ||||
CE) || defined(AIX) || defined(__CYGWIN__) | ||||
#include <ncurses/panel.h> | #include <ncurses/panel.h> | |||
#include <ncurses/ncurses.h> | #include <ncurses/ncurses.h> | |||
#else | #else | |||
#include <panel.h> | #include <panel.h> | |||
#include <ncurses.h> | #include <ncurses.h> | |||
#endif | #endif | |||
#endif | #endif | |||
/* it seems the default HP-UX c-compiler doesn't understand atoll and | /* it seems the default HP-UX c-compiler doesn't understand atoll and | |||
* strtoll while it does understand 'long long' | * strtoll while it does understand 'long long' | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 6 lines changed or added |