Trying to fix build problems related to curses.

This commit is contained in:
Berk Geveci 2001-11-07 15:01:59 -05:00
parent 72d683e0ee
commit a3f6e2f9c4
1 changed files with 16 additions and 3 deletions

View File

@ -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