Adding preliminary msg send stuff

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

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

@ -1,25 +0,0 @@
#
# 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 = core canvas command dialog layout network observer util parser chrome shell toolkit widget user model
LIBRARY_NAME = xpfc
EXPORTS = \
$(NULL)
PRIVATE_EXPORTS = \
$(NULL)
MODULE = xpfc
REQUIRES = xpcom raptor

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

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