To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=66064 Issue #:|66064 Summary:|FreeBSD porting : DLOPEN_MODE of |vcl/unx/source/gdi/salprnpsp.cxx Component:|porting Version:|680m164 Platform:|All URL:| OS/Version:|FreeBSD Status:|NEW Status whiteboard:| Keywords:| Resolution:| Issue type:|DEFECT Priority:|P3 Subcomponent:|code Assigned to:|mh Reported by:|maho
------- Additional comments from [EMAIL PROTECTED] Fri Jun 2 15:44:17 -0700 2006 ------- DLOPEN_MODE of vcl/unx/source/gdi/salprnpsp.cxx should be (RTLD_NOW | RTLD_GLOBAL) Index: unx/source/gdi/salprnpsp.cxx =================================================================== RCS file: /cvs/gsl/vcl/unx/source/gdi/salprnpsp.cxx,v retrieving revision 1.40 diff -u -r1.40 salprnpsp.cxx --- vcl/unx/source/gdi/salprnpsp.cxx 22 Mar 2006 09:46:43 -0000 1.40 +++ vcl/unx/source/gdi/salprnpsp.cxx 27 May 2006 00:31:26 -0000 @@ -101,6 +101,8 @@ // NETBSD has no RTLD_GLOBAL #ifndef RTLD_GLOBAL #define DLOPEN_MODE (RTLD_LAZY) +#elif defined(FREEBSD) +#define DLOPEN_MODE (RTLD_NOW | RTLD_GLOBAL) #else #define DLOPEN_MODE (RTLD_GLOBAL | RTLD_LAZY) #endif --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
