From 5c7a14857a89265c0e311a1438c94375abe18cbe Mon Sep 17 00:00:00 2001 From: Andrey Borzenkov Date: Fri, 8 Sep 2000 12:51:10 +0000 Subject: [PATCH] 12779: remove sinix special case. Too lazy to add prototype check for gettimeofday as it is not needed with currently supported versions of ReliantUNIX --- ChangeLog | 8 ++++++++ Src/system.h | 6 ++++++ 2 files changed, 14 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4d83ab0c2..29eb17fe8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2000-09-08 Andrej Borsenkow + + * 12779: Src/system.h: Comment out #define _XPG_IV for sinix. + It was not correct to set it here, and is not needed with + currently supported versions. If anybody happens to run really + outdated SINIX, we should add check for gettimeofday prototype + instead. + 2000-09-07 Bart Schaefer * 12773: Doc/Zsh/contrib.yo, Functions/Zle/smart-insert-last-word: diff --git a/Src/system.h b/Src/system.h index a48ee9075..93e82a728 100644 --- a/Src/system.h +++ b/Src/system.h @@ -27,9 +27,15 @@ * */ +#if 0 +/* + * Setting _XPG_IV here is actually wrong and is not needed + * with currently supported versions (5.43C20 and above) + */ #ifdef sinix # define _XPG_IV 1 #endif +#endif /* NeXT has half-implemented POSIX support * * which currently fools configure */