mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-01-12 08:41:16 +01:00
12779: remove sinix special case. Too lazy to add prototype check for
gettimeofday as it is not needed with currently supported versions of ReliantUNIX
This commit is contained in:
parent
75d4d74093
commit
5c7a14857a
2 changed files with 14 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
2000-09-08 Andrej Borsenkow <Andrej.Borsenkow@mow.siemens.ru>
|
||||
|
||||
* 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 <schaefer@zsh.org>
|
||||
|
||||
* 12773: Doc/Zsh/contrib.yo, Functions/Zle/smart-insert-last-word:
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue