diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-03-16 15:13:45 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-03-16 15:13:45 +0100 |
commit | f3757f0c87bbd52c7989c85dcbd21511bffcbdd6 (patch) | |
tree | 498b5670475fcb798fb3a2a3231333192005f4f6 /src/config.h.in | |
parent | 0f39a82b07b285e0c54162e1038348b2988a715c (diff) | |
download | vim-git-f3757f0c87bbd52c7989c85dcbd21511bffcbdd6.tar.gz |
patch 8.0.0464: can't find executable name on Solaris and FreeBSDv8.0.0464
Problem: Can't find executable name on Solaris and FreeBSD.
Solution: Check for "/proc/self/path/a.out". (Danek Duvall) And for
"/proc/curproc/file".
Diffstat (limited to 'src/config.h.in')
-rw-r--r-- | src/config.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.h.in b/src/config.h.in index a9bcf1ef3..f8a23ed78 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -446,8 +446,8 @@ /* Define if fcntl()'s F_SETFD command knows about FD_CLOEXEC */ #undef HAVE_FD_CLOEXEC -/* Define if /proc/self/exe can be read */ -#undef HAVE_PROC_SELF_EXE +/* Define if /proc/self/exe or similar can be read */ +#undef PROC_EXE_LINK /* Define if you want Cygwin to use the WIN32 clipboard, not compatible with X11*/ #undef FEAT_CYGWIN_WIN32_CLIPBOARD |