Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 360307 | Differences between
and this patch

Collapse All | Expand All

(-)extensions/pref/Makefile.in (-1 / +1 lines)
Lines 45-51 Link Here
45
45
46
DIRS             = autoconfig
46
DIRS             = autoconfig
47
47
48
ifdef MOZ_ENABLE_GTK2
48
ifdef MOZ_ENABLE_GCONF
49
DIRS		+= system-pref
49
DIRS		+= system-pref
50
endif
50
endif
51
51
(-)toolkit/library/libxul-config.mk (+2 lines)
Lines 284-292 Link Here
284
ifdef MOZ_ENABLE_GTK2
284
ifdef MOZ_ENABLE_GTK2
285
COMPONENT_LIBS += widget_gtk2
285
COMPONENT_LIBS += widget_gtk2
286
ifdef MOZ_PREF_EXTENSIONS
286
ifdef MOZ_PREF_EXTENSIONS
287
ifdef MOZ_ENABLE_GCONF
287
COMPONENT_LIBS += system-pref
288
COMPONENT_LIBS += system-pref
288
endif
289
endif
289
endif
290
endif
291
endif
290
292
291
ifdef MOZ_ENABLE_GTK2
293
ifdef MOZ_ENABLE_GTK2
292
ifdef MOZ_X11
294
ifdef MOZ_X11
(-)toolkit/library/nsStaticXULComponents.cpp.old (-1 / +1 lines)
Lines 118-124 Link Here
118
#endif
118
#endif
119
119
120
#ifdef MOZ_PREF_EXTENSIONS
120
#ifdef MOZ_PREF_EXTENSIONS
121
#ifdef MOZ_ENABLE_GTK2
121
#ifdef MOZ_ENABLE_GCONF
122
#define SYSTEMPREF_MODULES \
122
#define SYSTEMPREF_MODULES \
123
    MODULE(nsSystemPrefModule) \
123
    MODULE(nsSystemPrefModule) \
124
    MODULE(nsAutoConfigModule)
124
    MODULE(nsAutoConfigModule)
(-)a/widget/src/gtk2/nsWindow.cpp (-1 / +3 lines)
Lines 4217-4222 Link Here
4217
        Resize(mBounds.x, mBounds.y, mBounds.width, mBounds.height, PR_FALSE);
4217
        Resize(mBounds.x, mBounds.y, mBounds.width, mBounds.height, PR_FALSE);
4218
4218
4219
#ifdef ACCESSIBILITY
4219
#ifdef ACCESSIBILITY
4220
#ifdef MOZ_ENABLE_GCONF
4220
    nsresult rv;
4221
    nsresult rv;
4221
    if (!sAccessibilityChecked) {
4222
    if (!sAccessibilityChecked) {
4222
        sAccessibilityChecked = PR_TRUE;
4223
        sAccessibilityChecked = PR_TRUE;
Lines 4238-4246 Link Here
4238
                sysPrefService->GetBoolPref(sAccessibilityKey,
4239
                sysPrefService->GetBoolPref(sAccessibilityKey,
4239
                                            &sAccessibilityEnabled);
4240
                                            &sAccessibilityEnabled);
4240
            }
4241
            }
4241
4242
        }
4242
        }
4243
    }
4243
    }
4244
#endif
4245
4244
    if (sAccessibilityEnabled) {
4246
    if (sAccessibilityEnabled) {
4245
        LOG(("nsWindow:: Create Toplevel Accessibility\n"));
4247
        LOG(("nsWindow:: Create Toplevel Accessibility\n"));
4246
        CreateRootAccessible();
4248
        CreateRootAccessible();

Return to bug 360307