Adding preliminary msg send stuff

This commit is contained in:
spider%netscape.com 1998-10-29 18:20:20 +00:00
Родитель 82e3dddcc8
Коммит 7684a1ced2
4 изменённых файлов: 108 добавлений и 1 удалений

Просмотреть файл

@ -10,7 +10,7 @@
GDEPTH = ..
DEPTH = ..
DIRS = core canvas command dialog layout network observer util parser chrome shell toolkit widget user model
DIRS = core msg canvas command dialog layout network observer util parser chrome shell toolkit widget user model
LIBRARY_NAME = xpfc

54
xpfc/msg/Makefile Normal file
Просмотреть файл

@ -0,0 +1,54 @@
#! gmake
#
# CONFIDENTIAL AND PROPRIETARY SOURCE CODE OF
# NETSCAPE COMMUNICATIONS CORPORATION
# Copyright © 1996, 1997 Netscape Communications Corporation. All Rights
# Reserved. Use of this Source Code is subject to the terms of the
# applicable license agreement from Netscape Communications Corporation.
# The copyright notice(s) in this Source Code does not indicate actual or
# intended publication of this Source Code.
#
#######################################################################
# (1) Include initial platform-independent assignments (MANDATORY). #
#######################################################################
include manifest.mn
#######################################################################
# (2) Include "global" configuration information. (OPTIONAL) #
#######################################################################
include $(GDEPTH)/gconfig/config.mk
#######################################################################
# (3) Include "component" configuration information. (OPTIONAL) #
#######################################################################
#######################################################################
# (4) Include "local" platform-dependent assignments (OPTIONAL). #
#######################################################################
#######################################################################
# (5) Execute "global" rules. (OPTIONAL) #
#######################################################################
include $(GDEPTH)/gconfig/rules.mk
#######################################################################
# (6) Execute "component" rules. (OPTIONAL) #
#######################################################################
#######################################################################
# (7) Execute "local" rules. (OPTIONAL). #
#######################################################################
include rules.mk

15
xpfc/msg/manifest.mn Normal file
Просмотреть файл

@ -0,0 +1,15 @@
#
# CONFIDENTIAL AND PROPRIETARY SOURCE CODE OF
# NETSCAPE COMMUNICATIONS CORPORATION
# Copyright (C) 1996 Netscape Communications Corporation. All Rights
# Reserved. Use of this Source Code is subject to the terms of the
# applicable license agreement from Netscape Communications Corporation.
# The copyright notice(s) in this Source Code does not indicate actual or
# intended publication of this Source Code.
#
GDEPTH = ../..
DEPTH = ../..
#DIRS_EXPORT = public inc
#DIRS_LIBS = src

38
xpfc/msg/rules.mk Normal file
Просмотреть файл

@ -0,0 +1,38 @@
# The contents of this file are subject to the Netscape Public License
# Version 1.0 (the "NPL"); you may not use this file except in
# compliance with the NPL. You may obtain a copy of the NPL at
# http://www.mozilla.org/NPL/
#
# Software distributed under the NPL is distributed on an "AS IS" basis,
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
# for the specific language governing rights and limitations under the
# NPL.
#
# The Initial Developer of this code under the NPL is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
# Reserved.
#
# This rule 'imports' the msgsdk headers and libs for our use
#
export::
$(INSTALL) -m 555 $(GDEPTH)/msgsdk/C/include/*.h $(SOURCE_XP_DIR)/public/msgsdk/
$(INSTALL) -m 555 $(GDEPTH)/msgsdk/C/protocol/Smtp/include/*.h $(SOURCE_XP_DIR)/public/msgsdk/
$(INSTALL) -m 555 $(GDEPTH)/msgsdk/C/protocol/Imap4/include/*.h $(SOURCE_XP_DIR)/public/msgsdk/
$(INSTALL) -m 555 $(GDEPTH)/msgsdk/C/protocol/Mime/include/*.h $(SOURCE_XP_DIR)/public/msgsdk/
$(INSTALL) -m 555 $(GDEPTH)/msgsdk/C/protocol/Pop3/include/*.h $(SOURCE_XP_DIR)/public/msgsdk/
$(INSTALL) -m 555 $(GDEPTH)/msgsdk/C/built/$(OS_ARCH)-export-full-sdk/lib/*.lib $(SOURCE_XP_DIR)/$(OBJDIR)/lib/
ifeq ($(OS_ARCH),WINNT)
$(INSTALL) -m 555 $(GDEPTH)/msgsdk/C/built/$(OS_ARCH)-export-full-sdk/lib/*.dll $(SOURCE_XP_DIR)/$(OBJDIR)/bin/
else
$(INSTALL) -m 555 $(GDEPTH)/msgsdk/C/built/$(OS_ARCH)-export-full-sdk/lib/*.so $(SOURCE_XP_DIR)/$(OBJDIR)/bin/
endif