| Summary: | Don't check for ORBit when checking for GConf | ||
|---|---|---|---|
| Product: | LibreOffice | Reporter: | Ross Burton <ross> |
| Component: | LibreOffice | Assignee: | Not Assigned <libreoffice-bugs> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | damien.lespiau |
| Priority: | medium | ||
| Version: | Master old -3.6 | ||
| Hardware: | Other | ||
| OS: | All | ||
| Whiteboard: | |||
| Crash report or crash signature: | Regression By: | ||
| Attachments: |
Patch
More removal Revised patch Final patch |
||
|
Description
Ross Burton
2012-04-18 05:55:17 UTC
Created attachment 60248 [details]
Patch
Attachd a patch. This is untested, I don't know if this spurious ORBit dependency is actually required by some unrelated code.
Created attachment 60274 [details]
More removal
Also don't check for an ancient version of ORBit (released 2003) when loading GConf (which since 2011 doesn't use ORBit).
Comment on attachment 60274 [details] More removal Review of attachment 60274 [details]: ----------------------------------------------------------------- ::: shell/source/backends/gconfbe/gconfbackend.cxx @@ +164,4 @@ > rtl::OUString( > RTL_CONSTASCII_USTRINGPARAM("system.desktop-environment"))) >>= > desktop; > + enabled_ = desktop == "GNOME" missing ';' :) Created attachment 60275 [details]
Revised patch
Dude, are you reviewing in the pub?
I'd remove the check from configure too:
--- a/configure.in
+++ b/configure.in
@@ -8472,7 +8472,7 @@ AC_MSG_CHECKING([whether to enable GConf support])
if test "$_os" != "WINNT" -a "$_os" != "Darwin" -a "$enable_gconf" = "yes"; then
ENABLE_GCONF="TRUE"
AC_MSG_RESULT([yes])
- PKG_CHECK_MODULES( GCONF, gconf-2.0 ORBit-2.0 )
+ PKG_CHECK_MODULES( GCONF, gconf-2.0 )
else
AC_MSG_RESULT([no])
fi
Otherwise it compiles nicely in shell/ and looks much better - thanks ! :-)
Please can you post the patch to the list with a Subject: beginning [PATCH] - and we also need an explicit: MPL/LGPLv3+ license statement - preferably for all your contributions cf.
https://wiki.documentfoundation.org/Development/Developers#Companies
Thanks ! :-)
Created attachment 60304 [details]
Final patch
Revised patch, just the previous ones squashed.
this got pushed already I believe :-) thanks ! |