about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-11-04 16:34:54 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-11-04 16:34:54 +0000
commitdfbeee55551550bb336d6e534b947dcb3e28d7fd (patch)
treeeb778b1a822e85a8e55f45b32ad28becdc1bdb69
parent49169f98a57838033be45e2b1fd4bbbe013cefa1 (diff)
downloadzsh-dfbeee55551550bb336d6e534b947dcb3e28d7fd.tar.gz
zsh-dfbeee55551550bb336d6e534b947dcb3e28d7fd.tar.xz
zsh-dfbeee55551550bb336d6e534b947dcb3e28d7fd.zip
manual/8541
-rw-r--r--Completion/Base/.distfiles2
-rw-r--r--Completion/Builtins/.distfiles2
-rw-r--r--Completion/Core/.distfiles2
-rw-r--r--Completion/Debian/.distfiles3
-rw-r--r--configure.in7
5 files changed, 8 insertions, 8 deletions
diff --git a/Completion/Base/.distfiles b/Completion/Base/.distfiles
index 0743367c7..0495aea0d 100644
--- a/Completion/Base/.distfiles
+++ b/Completion/Base/.distfiles
@@ -1,7 +1,7 @@
 DISTFILES_SRC='
     .distfiles 
     _arg_compile _arguments _brace_parameter _combination _command_names
-    _condition _default _describe _equal _first _job _math _parameter
+    _condition _default _describe _equal _first _jobs _math _parameter
     _precommand _redirect _regex_arguments _subscript _tilde _value
     _values _vars
 '
diff --git a/Completion/Builtins/.distfiles b/Completion/Builtins/.distfiles
index 7af78417a..66f79a132 100644
--- a/Completion/Builtins/.distfiles
+++ b/Completion/Builtins/.distfiles
@@ -1,7 +1,7 @@
 DISTFILES_SRC='
     .distfiles
     _aliases _arrays _autoload _bg_jobs _bindkey _builtin _cd _command
-    _compdef _disable _echotc _enable _fc _functions _hash _jobs _kill
+    _compdef _disable _echotc _enable _fc _functions _hash _kill
     _limits _nothing _popd _sched _set _setopt _source _stat _trap _unhash
     _unsetopt _vars_eq _wait _which _zftp _zle _zmodload
 '
diff --git a/Completion/Core/.distfiles b/Completion/Core/.distfiles
index 8c69871d7..63592dfaf 100644
--- a/Completion/Core/.distfiles
+++ b/Completion/Core/.distfiles
@@ -1,6 +1,6 @@
 DISTFILES_SRC='
     .distfiles
-    _approximate _compalso _complete _correct _description _display _expand
+    _approximate _compalso _complete _correct _description _expand
     _files _list _main_complete _match _menu _multi_parts
     _message _normal _oldlist _options _parameters _path_files
     _sep_parts _set_options _unset_options
diff --git a/Completion/Debian/.distfiles b/Completion/Debian/.distfiles
index fd37cf014..8a1a8f3d4 100644
--- a/Completion/Debian/.distfiles
+++ b/Completion/Debian/.distfiles
@@ -1,5 +1,4 @@
 DISTFILES_SRC='
     .distfiles
-    _apt _deb_packages
+    _apt _deb_packages _dpkg _dpkg-source
 '
-
diff --git a/configure.in b/configure.in
index aa93bf95e..7dffb2a61 100644
--- a/configure.in
+++ b/configure.in
@@ -398,7 +398,7 @@ AC_PROG_MAKE_SET            dnl Does make define $MAKE
 AC_PROG_INSTALL             dnl Check for BSD compatible `install'
 AC_PROG_AWK                 dnl Check for mawk,gawk,nawk, then awk.
 AC_PROG_LN                  dnl Check for working ln, for "make install"
-AC_CHECK_PROGS([YODL], [yodl], [:])
+AC_CHECK_PROGS([YODL], [yodl], [exit 0; yodl])
 
 dnl ------------------
 dnl CHECK HEADER FILES
@@ -1273,12 +1273,13 @@ if test $ac_cv_func_getpwnam=yes; then
 #include <pwd.h>
 main() {
     struct passwd *pw1, *pw2;
-    char buf[1024];
+    char buf[1024], name[1024];
     sprintf(buf, "%d:%d", getpid(), rand());
     pw1=getpwnam(buf);
+    if (pw1) strcpy(name, pw1->pw_name);
     sprintf(buf, "%d:%d", rand(), getpid());
     pw2=getpwnam(buf);
-    exit(pw1!=0 && pw2!=0 && !strcmp(pw1->pw_name, pw2->pw_name));
+    exit(pw1!=0 && pw2!=0 && !strcmp(name, pw2->pw_name));
 }
 ],
       zsh_cv_sys_getpwnam_faked=no,