mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 14:40:26 -06:00
Trying to fix build problems related to curses.
This commit is contained in:
@@ -1,7 +1,20 @@
|
||||
#ifdef __hpux
|
||||
#define _XOPEN_SOURCE_EXTENDED
|
||||
#define _BOOL_DEFINED
|
||||
#ifndef _XOPEN_SOURCE_EXTENDED
|
||||
#include <sys/time.h>
|
||||
#define _XOPEN_SOURCE_EXTENDED
|
||||
#include <curses.h>
|
||||
#include <form.h>
|
||||
#undef _XOPEN_SOURCE_EXTENDED
|
||||
#else
|
||||
#include <curses.h>
|
||||
#include <form.h>
|
||||
#endif
|
||||
#else /* __hpux */
|
||||
#include <curses.h>
|
||||
#include <form.h>
|
||||
#endif /* __hpux */
|
||||
|
||||
#include <curses.h>
|
||||
#include <form.h>
|
||||
#ifndef getmaxyx
|
||||
#define getmaxyx(w,y,x) ((y) = getmaxy(w), (x) = getmaxx(w))
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user