зеркало из https://github.com/mozilla/pjs.git
Cleaned up a bunch of old (unused?) crap.
This commit is contained in:
Родитель
f53d41d180
Коммит
92d57ab101
|
@ -1,4 +1,3 @@
|
|||
#!gmake
|
||||
#
|
||||
# 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
|
||||
|
@ -14,14 +13,14 @@
|
|||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
||||
# Reserved.
|
||||
#
|
||||
|
||||
DEPTH = ../..
|
||||
DEPTH = ../..
|
||||
topsrcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
srcdir = @srcdir@
|
||||
|
||||
DIRS = jri include
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
DIRS = jri include src
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#!gmake
|
||||
#
|
||||
# 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
|
||||
|
@ -14,14 +13,36 @@
|
|||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
||||
# Reserved.
|
||||
#
|
||||
|
||||
topsrcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
srcdir = @srcdir@
|
||||
USE_AUTOCONF = 1
|
||||
DEPTH = ../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
srcdir = @srcdir@
|
||||
|
||||
include $(srcdir)/manifest.mn
|
||||
MODULE = java
|
||||
|
||||
EXPORTS = bool.h \
|
||||
interpreter.h \
|
||||
javaString.h \
|
||||
javaThreads.h \
|
||||
jmc.h \
|
||||
jni.h \
|
||||
jni_md.h \
|
||||
jri.h \
|
||||
jri_md.h \
|
||||
jriext.h \
|
||||
jritypes.h \
|
||||
nspr_md.h \
|
||||
oobj.h \
|
||||
sysmacros_md.h \
|
||||
tree.h \
|
||||
typedefs.h \
|
||||
typedefs_md.h \
|
||||
zip.h \
|
||||
$(NULL)
|
||||
|
||||
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
|
|
@ -46,9 +46,11 @@ typedef uint32 uint32_t;
|
|||
|
||||
typedef prword_t uintVP_t; /* unsigned that is same size as a void pointer */
|
||||
|
||||
#if !defined(BSDI) && !defined(IRIX6_2) && !defined(IRIX6_3) && !defined(LINUX) && !defined(SOLARIS2_6) && !defined(HPUX10_20) && !defined(HPUX10_30) && !defined(HPUX11) && !defined(RHAPSODY) && !defined(NETBSD) && !defined(AIX) && !defined(HPUX)
|
||||
#if defined(HAVE_INT64) && !defined(HAVE_INT64_T)
|
||||
typedef int64 int64_t;
|
||||
#else
|
||||
#endif
|
||||
|
||||
#if !defined(HAVE_INT64) && defined(HAVE_INT64_T)
|
||||
/*
|
||||
** On BSDI, for some reason, they define long long's for these types
|
||||
** even though they aren't actually 64 bits wide!
|
||||
|
@ -56,9 +58,10 @@ typedef int64 int64_t;
|
|||
#define int64_t int64
|
||||
#endif
|
||||
|
||||
#if defined(XP_PC) || (defined(__sun) && !defined(SVR4)) || defined(HPUX) || defined(LINUX) || defined(BSDI) /* || defined(XP_MAC) */
|
||||
#ifndef HAVE_UINT_T
|
||||
#ifndef XP_MAC
|
||||
typedef unsigned int uint_t;
|
||||
#elif defined(XP_MAC)
|
||||
#else
|
||||
/* we have to push/pop to avoid breaking existing projects that
|
||||
** have "treat warnings as errors" on. This is two, two, TWO hacks in one! (pinkerton)
|
||||
*/
|
||||
|
@ -70,6 +73,7 @@ typedef unsigned long uint_t; /* this is already declared in OpenTransport.h, bu
|
|||
#endif /* __OPENTRANSPORT__ */
|
||||
#pragma warning_errors reset
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(XP_PC) && !defined(XP_OS2)
|
||||
typedef long int32_t;
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#!gmake
|
||||
#
|
||||
# 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
|
||||
|
@ -14,14 +13,17 @@
|
|||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
||||
# Reserved.
|
||||
#
|
||||
|
||||
DEPTH = ../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
srcdir = @srcdir@
|
||||
USE_AUTOCONF = 1
|
||||
|
||||
include $(srcdir)/manifest.mn
|
||||
MODULE = java
|
||||
|
||||
EXPORTS = java_lang_String.h jdk_java_lang_String.h
|
||||
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#!gmake
|
||||
#
|
||||
# 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
|
||||
|
@ -14,17 +13,21 @@
|
|||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
||||
# Reserved.
|
||||
#
|
||||
|
||||
topsrcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
srcdir = @srcdir@
|
||||
USE_AUTOCONF = 1
|
||||
DEPTH = ../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
srcdir = @srcdir@
|
||||
|
||||
include $(srcdir)/manifest.mn
|
||||
LIBRARY_NAME = stubsj
|
||||
MODULE = java
|
||||
|
||||
DEFINES =
|
||||
REQUIRES = java
|
||||
|
||||
CSRCS = stubsj.c
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
INCLUDES += -I$(DEPTH)/dist/public/img -I$(DEPTH)/dist/public/util -I$(DEPTH)/dist/public/layer
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче