]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Because -rpath/-R may have been used, our settings of LD_LIBRARY_PATH
authorRichard Levitte <levitte@openssl.org>
Tue, 2 Nov 2004 01:13:04 +0000 (01:13 +0000)
committerRichard Levitte <levitte@openssl.org>
Tue, 2 Nov 2004 01:13:04 +0000 (01:13 +0000)
and friends may be entirely useless.  In such a case, LD_PRELOAD is
the answer, at least on platforms using LD_LIBRARY_PATH.  There might
be other variables to set on other platforms, please fill us in...

For now, we only do this with the tests, so they won't fail for silly
reasons like getting dynamically linked to older installed libraries
rather than the newly built ones...

PR: 960

test/Makefile.ssl

index b5c23a639f8e7ced6b31061feea323c0391af6aa..1dc1edf99797ceaf5b73b598229d471f8e006f97 100644 (file)
@@ -136,8 +136,9 @@ SET_SO_PATHS=OSSL_LIBPATH="`cd ..; pwd`"; \
                DYLD_LIBRARY_PATH="$$OSSL_LIBPATH:$$DYLD_LIBRARY_PATH"; \
                SHLIB_PATH="$$OSSL_LIBPATH:$$SHLIB_PATH"; \
                LIBPATH="$$OSSL_LIBPATH:$$LIBPATH"; \
+               LD_PRELOAD="$$OSSL_LIBPATH/libssl.so $$OSSL_LIBPATH/libcrypto.so"; \
                if [ "$(PLATFORM)" = "Cygwin" ]; then PATH="$${LIBPATH}:$$PATH"; fi; \
-               export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH PATH
+               export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH PATH LD_PRELOAD
 
 alltests: \
        test_des test_idea test_sha test_md4 test_md5 test_hmac \