bridge part should work in the original form. Bump portrevision for openoffice.org-2 and -3 ports.
24 lines
1,021 B
Text
24 lines
1,021 B
Text
http://www.openoffice.org/issues/show_bug.cgi?id=98781
|
|
http://www.openoffice.org/issues/show_bug.cgi?id=82690
|
|
http://www.freebsd.org/cgi/query-pr.cgi?pr=127946
|
|
|
|
--- bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx 2009-06-14 07:53:52.000000000 +0900
|
|
+++ bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx 2009-06-14 07:56:37.000000000 +0900
|
|
@@ -126,7 +126,7 @@
|
|
};
|
|
//__________________________________________________________________________________________________
|
|
RTTI::RTTI() SAL_THROW( () )
|
|
-#if __FreeBSD_version < 602103
|
|
+#if __FreeBSD_version < 702104 /* #i22253# */
|
|
: m_hApp( dlopen( 0, RTLD_NOW | RTLD_GLOBAL ) )
|
|
#else
|
|
: m_hApp( dlopen( 0, RTLD_LAZY ) )
|
|
@@ -165,7 +165,7 @@
|
|
buf.append( 'E' );
|
|
|
|
OString symName( buf.makeStringAndClear() );
|
|
-#if __FreeBSD_version < 602103 /* #i22253# */
|
|
+#if __FreeBSD_version < 702104 /* #i22253# */
|
|
rtti = (type_info *)dlsym( RTLD_DEFAULT, symName.getStr() );
|
|
#else
|
|
rtti = (type_info *)dlsym( m_hApp, symName.getStr() );
|