diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-12-19 21:09:26 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-12-19 21:09:26 +0000 |
commit | 0725bdfc305881e74a2c6a7f240a7605009f5fc3 (patch) | |
tree | ba31ea3d8abe841eab857bdd0d02922793107b9b /bridges | |
parent | 84dc88a0d5316802998bbcccfdd0e5c87652bfed (diff) |
Kill check for ancient FreeBSD version
along the lines of ...
commit cee2655445319133095b0f6b19fc5b31d321099f
Author: Baptiste Daroussin <bapt@FreeBSD.org>
Date: Thu Dec 10 17:38:06 2015 +0100
Kill check for ancient FreeBSD version
which removed the other uses of this
Change-Id: I56a4448b27683ff8a86e4d760fec4f6bfc2d0bd6
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx b/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx index 20c402faaef4..1bc4a8e6caa0 100644 --- a/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_x86-64/rtti.cxx @@ -57,11 +57,7 @@ public: }; RTTI::RTTI() -#if defined(FREEBSD) && __FreeBSD_version < 702104 - : m_hApp( dlopen( 0, RTLD_NOW | RTLD_GLOBAL ) ) -#else : m_hApp( dlopen( nullptr, RTLD_LAZY ) ) -#endif { } |