diff options
| author | Richard M. Stallman | 1993-06-02 20:15:43 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-06-02 20:15:43 +0000 |
| commit | 6233db358f19a93d728907e913a8a5dcde6e9178 (patch) | |
| tree | 67553d0d27c73848faf4ca7a9e77e2c18eafcf28 | |
| parent | 52037992472f97051ee104f53f03a5a780afcbfc (diff) | |
| download | emacs-6233db358f19a93d728907e913a8a5dcde6e9178.tar.gz emacs-6233db358f19a93d728907e913a8a5dcde6e9178.zip | |
Test XOS_NEEDS_TIME_H, not HPUX, for including time.hj.
| -rw-r--r-- | src/xfaces.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index e7aff5826c6..fc56bb4a8a7 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -34,8 +34,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 34 | #include "blockinput.h" | 34 | #include "blockinput.h" |
| 35 | #include "window.h" | 35 | #include "window.h" |
| 36 | 36 | ||
| 37 | /* Compensate for bug in Xos.h on hpux. */ | 37 | /* Compensate for bug in Xos.h on some systems. */ |
| 38 | #ifdef HPUX | 38 | #ifdef XOS_NEEDS_TIME_H |
| 39 | #include <time.h> | 39 | #include <time.h> |
| 40 | #define __TIMEVAL__ | 40 | #define __TIMEVAL__ |
| 41 | #endif | 41 | #endif |