initial pass at getting the outliner code to build on Linux.
mac changes coming next...psych. as if! I leave it to some poor mac zealot to worry about that platform. git-svn-id: svn://10.0.0.236/branches/MailNews_Performance_20010208_BRANCH@86873 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -266,6 +266,9 @@ layout/xul/Makefile
|
||||
layout/xul/base/Makefile
|
||||
layout/xul/base/public/Makefile
|
||||
layout/xul/base/src/Makefile
|
||||
layout/xul/base/src/outliner/Makefile
|
||||
layout/xul/base/src/outliner/src/Makefile
|
||||
layout/xul/base/src/outliner/public/Makefile
|
||||
layout/xul/content/Makefile
|
||||
layout/xul/content/src/Makefile
|
||||
layout/xbl/Makefile
|
||||
|
||||
@@ -60,6 +60,7 @@ SHARED_LIBRARY_LIBS = \
|
||||
$(DIST)/lib/libgkxsldoc_s.$(LIB_SUFFIX) \
|
||||
$(DIST)/lib/libgkxulcon_s.$(LIB_SUFFIX) \
|
||||
$(DIST)/lib/libgkxulbase_s.$(LIB_SUFFIX) \
|
||||
$(DIST)/lib/libgkxuloutliner_s.$(LIB_SUFFIX) \
|
||||
$(DIST)/lib/libgkxbl_s.$(LIB_SUFFIX) \
|
||||
$(DIST)/lib/libgkbase_s.$(LIB_SUFFIX) \
|
||||
$(NULL)
|
||||
|
||||
32
mozilla/layout/xul/base/src/outliner/Makefile.in
Normal file
32
mozilla/layout/xul/base/src/outliner/Makefile.in
Normal file
@@ -0,0 +1,32 @@
|
||||
#
|
||||
# The contents of this file are subject to the Netscape Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/NPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
DEPTH = ../../../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
DIRS = public src
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
62
mozilla/layout/xul/base/src/outliner/src/Makefile.in
Normal file
62
mozilla/layout/xul/base/src/outliner/src/Makefile.in
Normal file
@@ -0,0 +1,62 @@
|
||||
#
|
||||
# The contents of this file are subject to the Netscape Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/NPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
DEPTH = ../../../../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE=raptor
|
||||
LIBRARY_NAME=gkxuloutliner_s
|
||||
REQUIRES= xpcom dom locale js widget view caps timer docshell uriloader necko editor htmlparser webshell pref rdf intl
|
||||
|
||||
CPPSRCS = \
|
||||
nsOutlinerBodyFrame.cpp \
|
||||
nsOutlinerBoxObject.cpp \
|
||||
nsOutlinerColFrame.cpp \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS = \
|
||||
nsOutlinerBodyFrame.h \
|
||||
nsOutlinerColFrame.h \
|
||||
$(NULL)
|
||||
|
||||
DEFINES += -D_IMPL_NS_HTML
|
||||
|
||||
LOCAL_INCLUDES = \
|
||||
-I$(srcdir) \
|
||||
-I$(srcdir)/../../../../base/src \
|
||||
-I$(srcdir)/../../../../../html/style/src \
|
||||
-I$(srcdir)/../../../../../html/base/src \
|
||||
-I$(srcdir)/../../../../../html/forms/src \
|
||||
-I$(srcdir)/../../../../content/src \
|
||||
-I$(srcdir)/../../../../../xml/content/src \
|
||||
-I$(srcdir)/../../../../../base/public \
|
||||
-I$(srcdir)/../../../../../xul/base/src \
|
||||
$(NULL)
|
||||
|
||||
# we don't want the shared lib, but we want to force the creation of a static lib.
|
||||
override NO_SHARED_LIB=1
|
||||
override NO_STATIC_LIB=
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
@@ -834,4 +834,5 @@ NS_INTERFACE_MAP_BEGIN(nsOutlinerBodyFrame)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIOutlinerBoxObject)
|
||||
NS_INTERFACE_MAP_ENTRY(nsICSSPseudoComparator)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIScrollbarMediator)
|
||||
NS_INTERFACE_MAP_END_INHERITING(nsLeafFrame)
|
||||
NS_INTERFACE_MAP_END_INHERITING(nsLeafFrame)
|
||||
|
||||
|
||||
@@ -834,4 +834,5 @@ NS_INTERFACE_MAP_BEGIN(nsOutlinerBodyFrame)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIOutlinerBoxObject)
|
||||
NS_INTERFACE_MAP_ENTRY(nsICSSPseudoComparator)
|
||||
NS_INTERFACE_MAP_ENTRY(nsIScrollbarMediator)
|
||||
NS_INTERFACE_MAP_END_INHERITING(nsLeafFrame)
|
||||
NS_INTERFACE_MAP_END_INHERITING(nsLeafFrame)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user