diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-12 20:06:33 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-12 20:06:33 +0100 |
commit | a1fa8929395351f03c56f50ca6e891d825123c0f (patch) | |
tree | 8c3b65a6534d242e13ff9d12316960cccc82acd8 /src/os_unixx.h | |
parent | 1d669c233c97486555a34f7d3f069068d9ebdb63 (diff) | |
download | vim-git-a1fa8929395351f03c56f50ca6e891d825123c0f.tar.gz |
patch 8.0.0173: build fails with EBCDIC definedv8.0.0173
Problem: When compiling with EBCDIC defined the build fails. (Yaroslav
Kuzmin)
Solution: Move sortFunctions() to the right file. Avoid warning for
redefining __SUSV3.
Diffstat (limited to 'src/os_unixx.h')
-rw-r--r-- | src/os_unixx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unixx.h b/src/os_unixx.h index f1aad2c50..c83ea31e4 100644 --- a/src/os_unixx.h +++ b/src/os_unixx.h @@ -113,7 +113,7 @@ /* shared library access */ #if defined(HAVE_DLFCN_H) && defined(USE_DLOPEN) -# ifdef __MVS__ +# if defined(__MVS__) && !defined (__SUSV3) /* needed to define RTLD_LAZY (Anthony Giorgio) */ # define __SUSV3 # endif |