To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70539
------- Additional comments from [EMAIL PROTECTED] Mon Oct 30 08:13:17 -0800
2006 -------
Yes, was a clean build.
> But you can't possibly build the systray stuff without gtk+ - so, I'm not
> clear
> what's going on.
Every dachshund is a dog, but that doesn't make every dog a dachshund.
If you enable systray this means GTK is enabled as well.
If you enable GTK, this doesn't automatically imply you have the systry thing
enabled.
in gtkquickstart2, the systray stuff is disabled by default (this is fine), but
gtk is still enabled (this is fine as well).
However, in scp2, the files for the quickstarter are not conditionalized
properly. (in scp2/source/ooo/file_library_ooo.scp)
#ifdef UNX
#ifdef ENABLE_GTK
File gid_File_Lib_Egg_Tray
TXT_FILE_BODY;
Styles = (PACKED);
Dir = gid_Dir_Program;
Name = STRING(CONCAT4(libeggtray,OFFICEUPD,DLLPOSTFIX,UNXSUFFIX));
End
#ifdef ENABLE_SYSTRAY_GTK
File gid_File_Lib_QStart_Gtk
Name = LIBNAME(qstart_gtk);
TXT_FILE_BODY;
Styles = (PACKED,PATCH);
Dir = gid_Dir_Program;
End
#endif
#endif
#endif
Only qatart_gtk is conditionalized with systray, but libeggeggtray should as
well instead of only depending on GTK
Making it read:
#ifdef UNX
#ifdef ENABLE_SYSTRAY_GTK
File gid_File_Lib_Egg_Tray
TXT_FILE_BODY;
Styles = (PACKED);
Dir = gid_Dir_Program;
Name = STRING(CONCAT4(libeggtray,OFFICEUPD,DLLPOSTFIX,UNXSUFFIX));
End
File gid_File_Lib_QStart_Gtk
Name = LIBNAME(qstart_gtk);
TXT_FILE_BODY;
Styles = (PACKED,PATCH);
Dir = gid_Dir_Program;
End
#endif
#endif
solves the problem. You probably can get rid of the ifdef UNX as well (probaly
won't be built with GTK on windows and anyway no GTK, not Systray...)
---------------------------------------------------------------------
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]