Closed
Bug 515
Opened 26 years ago
Closed 26 years ago
MOZ_LITE build unresolved references
Categories
(SeaMonkey :: Build Config, defect, P3)
Tracking
(Not tracked)
People
(Reporter: dpax, Assigned: briano)
Details
Created by David Pax (dpax@wyse.com) on Friday, July 31, 1998 9:36:28 AM PDT
Additional Details :
For the MOZ_LITE build the following modifications need to
be made.
in the file - mozilla/lib/layout/Makefile
the following files need to be included when EDITOR is
undefined.
layfree.c
layimage.c
layout.c
laysel.c
laytable.c
laytag.c
laytext.c
layutil.c
So ifdef EDITOR needs to be moved to below these files since
they are needed for both when EDITOR is and is not defined.
Current file --------------------------------------
ifdef EDITOR
CSRCS += layedit.c \
layfree.c \
layimage.c \
layout.c \
laysel.c \
laytable.c \
laytag.c \
laytext.c \
layutil.c \
$(NULL)
suggested changes to Makefile
--------------------------------
CSRCS += layedit.c \
layfree.c \
layimage.c \
layout.c \
laysel.c \
laytable.c \
laytag.c \
laytext.c \
layutil.c \
$(NULL)
ifdef EDITOR
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → DUPLICATE
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•