To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=95552
                 Issue #|95552
                 Summary|OOO is uncompilable on machines with KDE4 installed in
                        | /usr/lib, even if kdelibs-3.5 are present
               Component|gsl
                 Version|OOO300m9
                Platform|PC
                     URL|
              OS/Version|Linux
                  Status|UNCONFIRMED
       Status whiteboard|
                Keywords|
              Resolution|
              Issue type|DEFECT
                Priority|P3
            Subcomponent|code
             Assigned to|pl
             Reported by|stharward





------- Additional comments from [EMAIL PROTECTED] Tue Oct 28 14:59:44 +0000 
2008 -------
There's an open issue on the Gentoo bugtracker about compile failures with
OOO-3.0m9 when KDE4.1 is installed on the system:
http://bugs.gentoo.org/show_bug.cgi?id=238539 .  Gentoo can now install the kde
libraries in /usr/lib instead of in /usr/kde/4.1/lib.  This causes problems with
the OOO build process because OOO looks for libraries in /usr/lib before it
looks for libraries in /usr/kde/3.5/lib .  It finds the KDE4 version of
libkdecore and libkdeui before it finds the KDE3.5 versions, and then it tries
to link against these wrong versions and of course fails.

The solution is to reorder the lib directory search parameters passed to GCC. 
Instead of:

gcc ... -L/usr/lib -L/usr/kde/3.5/lib ...

you need to do

gcc ... -L/usr/kde/3.5/lib -L/usr/lib ...

This will find the proper versions of the KDE libraries.

---------------------------------------------------------------------
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]

Reply via email to