Closed
Bug 6650
Opened 26 years ago
Closed 26 years ago
patch for xpfe/bootstrap/Makefile.in to make apprunner load Photon libs.
Categories
(SeaMonkey :: Build Config, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: Jerry.Kirk, Assigned: briano)
Details
In order to get apprunner to load the Photon widget/gfx libs instead of
GTK I had to make this change to the Makefile.in It seems reasonable enough
to me considering its a patch layered on a hack (NS_SetRegistry_1, no offense intended)
Sorry I can't do attachments...
Index: Makefile.in
===================================================================
RCS file: /cvsroot/mozilla/xpfe/bootstrap/Makefile.in,v
retrieving revision 1.23
diff -u -r1.23 Makefile.in
--- Makefile.in 1999/04/30 18:25:50 1.23
+++ Makefile.in 1999/05/18 14:11:02
@@ -32,6 +32,12 @@
TOOLKIT_WIDGET_LIB = -lwidget$(MOZ_TOOLKIT)
TOOLKIT_BASE_LIB = -lgmbase$(MOZ_TOOLKIT)
+# Copied from webshell/tests/viewer/Makefile.in in order to
+# load the correct Photon libs instead of GTK ones
+TOOLKIT_CFLAGS := \
+ -DWIDGET_DLL=\"libwidget$(MOZ_TOOLKIT).$(DLL_SUFFIX)\" \
+ -DGFXWIN_DLL=\"libgfx$(MOZ_TOOLKIT).$(DLL_SUFFIX)\" \
+ $(TK_CFLAGS)
LIBS = \
-L$(DIST)/bin \
@@ -89,7 +95,7 @@
include $(topsrcdir)/config/config.mk
-CFLAGS += $(TOOLKIT_CFLAGS)
+CXXFLAGS += $(TOOLKIT_CFLAGS)
include $(topsrcdir)/config/rules.mk
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 1•26 years ago
|
||
This is now checked into the trunk, in a slightly modified
form.
No offense taken.
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•