diff options
author | Rich Salz <rsalz@openssl.org> | 2018-03-26 20:10:57 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2018-03-26 20:10:57 +0200 |
commit | faec5c4a8aa3943d835bdad26800a103426b0eda (patch) | |
tree | d31f5d18125a459a3603d0306c5dc519e391ad03 /util/shlib_wrap.sh.in | |
parent | Configurations/README: mention Libs.private in ex_libs description. (diff) | |
download | openssl-faec5c4a8aa3943d835bdad26800a103426b0eda.tar.xz openssl-faec5c4a8aa3943d835bdad26800a103426b0eda.zip |
Remove QNX support
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5756)
Diffstat (limited to 'util/shlib_wrap.sh.in')
-rwxr-xr-x | util/shlib_wrap.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/shlib_wrap.sh.in b/util/shlib_wrap.sh.in index 6c115ba725..b9e3ddf874 100755 --- a/util/shlib_wrap.sh.in +++ b/util/shlib_wrap.sh.in @@ -110,7 +110,7 @@ if [ -f "$LIBCRYPTOSO" -a -z "$preload_var" ]; then # it into a script makes it possible to do so on multi-ABI # platforms. case "$SYSNAME" in - *BSD|QNX) LD_PRELOAD="$LIBCRYPTOSO:$LIBSSLSO" ;; # *BSD, QNX + *BSD) LD_PRELOAD="$LIBCRYPTOSO:$LIBSSLSO" ;; # *BSD *) LD_PRELOAD="$LIBCRYPTOSO $LIBSSLSO" ;; # SunOS, Linux, ELF HP-UX esac _RLD_LIST="$LIBCRYPTOSO:$LIBSSLSO:DEFAULT" # Tru64, o32 IRIX |