diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2008-08-04 17:44:35 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-08-04 17:44:35 +0000 |
commit | f1433d5f8bdd9ff6789566f5514293d786a714af (patch) | |
tree | 32df5f17dea2dd1be2c5f14390c8bd3edec5a499 | |
parent | 4fc027edf0bec7890a6171e45b6e28cbffbf6f0a (diff) | |
download | zsh-f1433d5f8bdd9ff6789566f5514293d786a714af.tar.gz zsh-f1433d5f8bdd9ff6789566f5514293d786a714af.tar.xz zsh-f1433d5f8bdd9ff6789566f5514293d786a714af.zip |
users/13095: no _XOPEN_SOURCE_EXTENDED on AIX
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 049c60243..b292f5404 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2008-08-04 Peter Stephenson <pws@csr.com> + * users/13095: configure.ac: we don't want that + _XOPEN_SOURCE_EXTENDED stuff on AIX, apparently. + * 25384: Src/init.c: fix problem with autoload of zsh/zle for warning message at boot. diff --git a/configure.ac b/configure.ac index c8ccee518..36f42d31c 100644 --- a/configure.ac +++ b/configure.ac @@ -679,7 +679,7 @@ AH_TEMPLATE([ZSH_NO_XOPEN], AC_CACHE_CHECK(if _XOPEN_SOURCE_EXTENDED should not be defined, zsh_cv_no_xopen, [[case "$host_os" in - *openbsd*|*freebsd5*|*freebsd6.[012]*) + *openbsd*|*freebsd5*|*freebsd6.[012]*|*aix*) zsh_cv_no_xopen=yes ;; *) |