adding placeholder file - soon to be used

This commit is contained in:
jband%netscape.com 1999-07-15 02:59:43 +00:00
Родитель 67ff67b6ef
Коммит 25a274eb5b
3 изменённых файлов: 30 добавлений и 0 удалений

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

@ -72,6 +72,13 @@ ifeq ($(OS_ARCH),AIX)
IS_COMPONENT = 1
endif
# OpenVMS (Alpha only at this point)
ifeq ($(OS_ARCH),OpenVMS)
ifeq ($(CPU_ARCH),Alpha)
IS_COMPONENT = 1
endif
endif
DEFINES += -DJSFILE -DJS_THREADSAFE
CPPSRCS= \
@ -84,6 +91,7 @@ CPPSRCS= \
xpclog.cpp \
xpcmaps.cpp \
xpcmodule.cpp \
xpcstack.cpp \
xpcthreadcontext.cpp \
xpcthrower.cpp \
xpcwrappedjs.cpp \

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

@ -39,6 +39,7 @@ OBJS= \
.\$(OBJDIR)\xpclog.obj \
.\$(OBJDIR)\xpcmaps.obj \
.\$(OBJDIR)\xpcmodule.obj \
.\$(OBJDIR)\xpcstack.obj \
.\$(OBJDIR)\xpcthreadcontext.obj \
.\$(OBJDIR)\xpcthrower.obj \
.\$(OBJDIR)\xpcwrappedjs.obj \

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

@ -0,0 +1,21 @@
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* 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) 1999 Netscape Communications Corporation. All Rights
* Reserved.
*/
/* Placeholder to get projects and makefiles happy */
#include "xpcprivate.h"