Index: ossp-pkg/js/src/README.html
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/README.html,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/Attic/README.html,v' | diff -u - /dev/null -L'ossp-pkg/js/src/README.html' 2>/dev/null
--- ossp-pkg/js/src/README.html
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,826 +0,0 @@
-
-
-
-
-
-
- JavaScript Reference Implementation (JSRef) README
-
-
-
-
-Table of Contents
-
-
-
-
-Introduction
-This is the README file for the JavaScript
-Reference (JSRef, now better known as SpiderMonkey) implementation.
-It consists of build conventions
-and instructions, source code conventions, a design walk-through, and a
-brief file-by-file description of the source.
-JSRef builds a library or DLL containing the
-JavaScript runtime (compiler, interpreter, decompiler, garbage collector,
-atom manager, standard classes). It then compiles a small "shell" program
-and links that with the library to make an interpreter that can be used
-interactively and with test .js files to run scripts. The code has
-no dependencies on the rest of the Mozilla codebase.
-
Quick start tip: skip to "Using the JS API" below, build the
-js shell, and play with the object named "it" (start by setting 'it.noisy
-= true').
-
-Build conventions (standalone JS engine and shell)
-(OUT OF DATE!)
-These build directions refer only to building the standalone JavaScript
-engine and shell. To build within the browser, refer to the build
-directions on the mozilla.org website.
-By default, all platforms build a version of the JS engine that is not
-threadsafe. If you require thread-safety, you must also populate
-the mozilla/dist directory with NSPR
-headers and libraries. (NSPR implements a portable threading library,
-among other things. The source is downloadable via CVS
-from mozilla/nsprpub.)
-Next, you must define JS_THREADSAFE when building the JS engine,
-either on the command-line (gmake/nmake) or in a universal header file.
-
-Windows
-
-
--
-Use MSVC 4.2 or 5.0.
-
--
-For building from the IDE use js/src/js.mdp. (js.mdp
-is an MSVC4.2 project file, but if you load it into MSVC5, it will be converted
-to the newer project file format.) NOTE: makefile.win
-is an nmake file used only for building the JS-engine in the Mozilla browser.
-Don't attempt to use it to build the standalone JS-engine.
-
--
-If you prefer to build from the command-line, use 'nmake -f js.mak'
-
--
-Executable shell js.exe and runtime library js32.dll
-are created in either js/src/Debug or js/src/Release.
-
-
-
-Macintosh
-
-
--
-Use CodeWarrior 3.x
-
--
-Load the project file js:src:macbuild:JSRef.mcp and select "Make"
-from the menu.
-
-
-
-Unix
-
-
--
-Use 'gmake -f Makefile.ref' to build. To compile optimized code,
-pass BUILD_OPT=1 on the gmake command line or preset it in the
-environment or Makefile.ref. NOTE:
-Do not attempt to use Makefile to build the standalone JavaScript engine.
-This file is used only for building the JS-engine in the Mozilla browser.
-
--
-Each platform on which JS is built must have a *.mk
-configuration file in the js/src/config directory. The configuration
-file specifies the compiler/linker to be used and allows for customization
-of command-line options. To date, the build system has been tested
-on Solaris, AIX, HP/UX, OSF, IRIX, x86 Linux and Windows NT.
-
--
-Most platforms will work with either the vendor compiler
-or
-gcc.
-(Except that HP builds only work using the native compiler. gcc won't
-link correctly with shared libraries on that platform. If someone
-knows a way to fix this, let us
-know.)
-
--
-If you define JS_LIVECONNECT, gmake will
-descend into the liveconnect directory and build
-LiveConnect
-after building the JS engine.
-
--
-To build a binary drop (a zip'ed up file of headers, libraries, binaries),
-check out mozilla/config and mozilla/nsprpub/config.
-Use 'gmake -f Makefile.ref nsinstall-target all export ship'
-
-
-
-Debugging notes
-
-
--
-To turn on GC instrumentation, define JS_GCMETER.
-
-
--
-To turn on GC mark-phase debugging, useful to find leaked objects by their
-address, and to dump the GC heap, define GC_MARK_DEBUG.
-See the code in jsgc.c around the declaration and use of
-js_LiveThingToFind.
-
--
-To turn on the arena package's instrumentation, define JS_ARENAMETER.
-
--
-To turn on the hash table package's metering, define JS_HASHMETER.
-
-
-
-Naming and coding conventions
-
-
--
-Public function names begin with JS_ followed by capitalized "intercaps",
-e.g. JS_NewObject.
-
--
-Extern but library-private function names use a js_ prefix and
-mixed case, e.g. js_SearchScope.
-
--
-Most static function names have unprefixed, mixed-case names: GetChar.
-
--
-But static native methods of JS objects have lowercase, underscore-separated
-or intercaps names, e.g., str_indexOf.
-
--
-And library-private and static data use underscores, not intercaps (but
-library-private data do use a js_ prefix).
-
--
-Scalar type names are lowercase and js-prefixed: jsdouble.
-
--
-Aggregate type names are JS-prefixed and mixed-case: JSObject.
-
--
-Macros are generally ALL_CAPS and underscored, to call out potential
-side effects, multiple uses of a formal argument, etc.
-
--
-Four spaces of indentation per statement nesting level.
-
--
-Tabs are taken to be eight spaces, and an Emacs magic comment at the top
-of each file tries to help. If you're using MSVC or similar, you'll want
-to set tab width to 8, and help convert these files to be space-filled.
-Do not add hard tabs to source files; do remove them
-whenever possible.
-
--
-DLL entry points have their return type expanded within a JS_PUBLIC_API()
-macro call, to get the right Windows secret type qualifiers in the right
-places for all build variants.
-
--
-Callback functions that might be called from a DLL are similarly macroized
-with JS_STATIC_DLL_CALLBACK (if the function otherwise would be
-static to hide its name) or JS_DLL_CALLBACK (this macro takes
-no type argument; it should be used after the return type and before the
-function name).
-
-
-
-Using the JS API
-
-
-Starting up
-
-
/*
- * Tune this to avoid wasting space for shallow stacks, while saving on
- * malloc overhead/fragmentation for deep or highly-variable stacks.
- */
- #define STACK_CHUNK_SIZE 8192
-
- JSRuntime *rt;
- JSContext *cx;
-
- /* You need a runtime and one or more contexts to do anything with JS. */
- rt = JS_NewRuntime(0x400000L);
- if (!rt)
- fail("can't create JavaScript runtime");
- cx = JS_NewContext(rt, STACK_CHUNK_SIZE);
- if (!cx)
- fail("can't create JavaScript context");
-
- /*
- * The context definitely wants a global object, in order to have standard
- * classes and functions like Date and parseInt. See below for details on
- * JS_NewObject.
- */
- JSObject *globalObj;
-
- globalObj = JS_NewObject(cx, &my_global_class, 0, 0);
- JS_InitStandardClasses(cx, globalObj);
-
-
-Defining objects and properties
-
- /* Statically initialize a class to make "one-off" objects. */
- JSClass my_class = {
- "MyClass",
-
- /* All of these can be replaced with the corresponding JS_*Stub
- function pointers. */
- my_addProperty, my_delProperty, my_getProperty, my_setProperty,
- my_enumerate, my_resolve, my_convert, my_finalize
- };
-
- JSObject *obj;
-
- /*
- * Define an object named in the global scope that can be enumerated by
- * for/in loops. The parent object is passed as the second argument, as
- * with all other API calls that take an object/name pair. The prototype
- * passed in is null, so the default object prototype will be used.
- */
- obj = JS_DefineObject(cx, globalObj, "myObject", &my_class, NULL,
- JSPROP_ENUMERATE);
-
- /*
- * Define a bunch of properties with a JSPropertySpec array statically
- * initialized and terminated with a null-name entry. Besides its name,
- * each property has a "tiny" identifier (MY_COLOR, e.g.) that can be used
- * in switch statements (in a common my_getProperty function, for example).
- */
- enum my_tinyid {
- MY_COLOR, MY_HEIGHT, MY_WIDTH, MY_FUNNY, MY_ARRAY, MY_RDONLY
- };
-
- static JSPropertySpec my_props[] = {
- {"color", MY_COLOR, JSPROP_ENUMERATE},
- {"height", MY_HEIGHT, JSPROP_ENUMERATE},
- {"width", MY_WIDTH, JSPROP_ENUMERATE},
- {"funny", MY_FUNNY, JSPROP_ENUMERATE},
- {"array", MY_ARRAY, JSPROP_ENUMERATE},
- {"rdonly", MY_RDONLY, JSPROP_READONLY},
- {0}
- };
-
- JS_DefineProperties(cx, obj, my_props);
-
- /*
- * Given the above definitions and call to JS_DefineProperties, obj will
- * need this sort of "getter" method in its class (my_class, above). See
- * the example for the "It" class in js.c.
- */
- static JSBool
- my_getProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp)
- {
- if (JSVAL_IS_INT(id)) {
- switch (JSVAL_TO_INT(id)) {
- case MY_COLOR: *vp = . . .; break;
- case MY_HEIGHT: *vp = . . .; break;
- case MY_WIDTH: *vp = . . .; break;
- case MY_FUNNY: *vp = . . .; break;
- case MY_ARRAY: *vp = . . .; break;
- case MY_RDONLY: *vp = . . .; break;
- }
- }
- return JS_TRUE;
- }
-
-
-Defining functions
-
- /* Define a bunch of native functions first: */
- static JSBool
- my_abs(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
- {
- jsdouble x, z;
-
- if (!JS_ValueToNumber(cx, argv[0], &x))
- return JS_FALSE;
- z = (x < 0) ? -x : x;
- return JS_NewDoubleValue(cx, z, rval);
- }
-
- . . .
-
- /*
- * Use a JSFunctionSpec array terminated with a null name to define a
- * bunch of native functions.
- */
- static JSFunctionSpec my_functions[] = {
- /* name native nargs */
- {"abs", my_abs, 1},
- {"acos", my_acos, 1},
- {"asin", my_asin, 1},
- . . .
- {0}
- };
-
- /*
- * Pass a particular object to define methods for it alone. If you pass
- * a prototype object, the methods will apply to all instances past and
- * future of the prototype's class (see below for classes).
- */
- JS_DefineFunctions(cx, globalObj, my_functions);
-
-
-Defining classes
-
- /*
- * This pulls together the above API elements by defining a constructor
- * function, a prototype object, and properties of the prototype and of
- * the constructor, all with one API call.
- *
- * Initialize a class by defining its constructor function, prototype, and
- * per-instance and per-class properties. The latter are called "static"
- * below by analogy to Java. They are defined in the constructor object's
- * scope, so that 'MyClass.myStaticProp' works along with 'new MyClass()'.
- *
- * JS_InitClass takes a lot of arguments, but you can pass null for any of
- * the last four if there are no such properties or methods.
- *
- * Note that you do not need to call JS_InitClass to make a new instance of
- * that class -- otherwise there would be a chicken-and-egg problem making
- * the global object -- but you should call JS_InitClass if you require a
- * constructor function for script authors to call via new, and/or a class
- * prototype object ('MyClass.prototype') for authors to extend with new
- * properties at run-time. In general, if you want to support multiple
- * instances that share behavior, use JS_InitClass.
- */
- protoObj = JS_InitClass(cx, globalObj, NULL, &my_class,
-
- /* native constructor function and min arg count */
- MyClass, 0,
-
- /* prototype object properties and methods -- these
- will be "inherited" by all instances through
- delegation up the instance's prototype link. */
- my_props, my_methods,
-
- /* class constructor properties and methods */
- my_static_props, my_static_methods);
-
-
-Running scripts
-
- /* These should indicate source location for diagnostics. */
- char *filename;
- uintN lineno;
-
- /*
- * The return value comes back here -- if it could be a GC thing, you must
- * add it to the GC's "root set" with JS_AddRoot(cx, &thing) where thing
- * is a JSString *, JSObject *, or jsdouble *, and remove the root before
- * rval goes out of scope, or when rval is no longer needed.
- */
- jsval rval;
- JSBool ok;
-
- /*
- * Some example source in a C string. Larger, non-null-terminated buffers
- * can be used, if you pass the buffer length to JS_EvaluateScript.
- */
- char *source = "x * f(y)";
-
- ok = JS_EvaluateScript(cx, globalObj, source, strlen(source),
- filename, lineno, &rval);
-
- if (ok) {
- /* Should get a number back from the example source. */
- jsdouble d;
-
- ok = JS_ValueToNumber(cx, rval, &d);
- . . .
- }
-
-
-Calling functions
-
- /* Call a global function named "foo" that takes no arguments. */
- ok = JS_CallFunctionName(cx, globalObj, "foo", 0, 0, &rval);
-
- jsval argv[2];
-
- /* Call a function in obj's scope named "method", passing two arguments. */
- argv[0] = . . .;
- argv[1] = . . .;
- ok = JS_CallFunctionName(cx, obj, "method", 2, argv, &rval);
-
-
-Shutting down
-
- /* For each context you've created: */
- JS_DestroyContext(cx);
-
- /* For each runtime: */
- JS_DestroyRuntime(rt);
-
- /* And finally: */
- JS_ShutDown();
-
-
-Debugging API
-See the trap, untrap, watch, unwatch, line2pc, and pc2line
-commands in js.c. Also the (scant) comments in jsdbgapi.h.
-
-Design walk-through
-This section must be brief for now -- it could easily turn into a book.
-
-JS "JavaScript Proper"
-JS modules declare and implement the JavaScript compiler, interpreter,
-decompiler, GC and atom manager, and standard classes.
-JavaScript uses untyped bytecode and runtime type tagging of data values.
-The jsval type is a signed machine word that contains either a
-signed integer value (if the low bit is set), or a type-tagged pointer
-or boolean value (if the low bit is clear). Tagged pointers all refer to
-8-byte-aligned things in the GC heap.
-
Objects consist of a possibly shared structural description, called
-the map or scope; and unshared property values in a vector, called the
-slots. Object properties are associated with nonnegative integers stored
-in jsval's, or with atoms (unique string descriptors) if named
-by an identifier or a non-integral index expression.
-
Scripts contain bytecode, source annotations, and a pool of string,
-number, and identifier literals. Functions are objects that extend scripts
-or native functions with formal parameters, a literal syntax, and a distinct
-primitive type ("function").
-
The compiler consists of a recursive-descent parser and a random-logic
-rather than table-driven lexical scanner. Semantic and lexical feedback
-are used to disambiguate hard cases such as missing semicolons, assignable
-expressions ("lvalues" in C parlance), etc. The parser generates bytecode
-as it parses, using fixup lists for downward branches and code buffering
-and rewriting for exceptional cases such as for loops. It attempts no error
-recovery. The interpreter executes the bytecode of top-level scripts, and
-calls itself indirectly to interpret function bodies (which are also scripts).
-All state associated with an interpreter instance is passed through formal
-parameters to the interpreter entry point; most implicit state is collected
-in a type named JSContext. Therefore, all API and almost all other functions
-in JSRef take a JSContext pointer as their first argument.
-
The decompiler translates postfix bytecode into infix source by consulting
-a separate byte-sized code, called source notes, to disambiguate bytecodes
-that result from more than one grammatical production.
-
The GC is a mark-and-sweep, non-conservative (exact) collector. It
-can allocate only fixed-sized things -- the current size is two machine
-words. It is used to hold JS object and string descriptors (but not property
-lists or string bytes), and double-precision floating point numbers. It
-runs automatically only when maxbytes (as passed to JS_NewRuntime())
-bytes of GC things have been allocated and another thing-allocation request
-is made. JS API users should call JS_GC() or JS_MaybeGC()
-between script executions or from the branch callback, as often as necessary.
-
An important point about the GC's "exactness": you must add roots for
-new objects created by your native methods if you store references to them
-into a non-JS structure in the malloc heap or in static data. Also, if
-you make a new object in a native method, but do not store it through the
-rval
-result parameter (see math_abs in the "Using the JS API" section above)
-so that it is in a known root, the object is guaranteed to survive only
-until another new object is created. Either lock the first new object when
-making two in a row, or store it in a root you've added, or store it via
-rval.
-See the GC tips
-document for more.
-
The atom manager consists of a hash table associating strings uniquely
-with scanner/parser information such as keyword type, index in script or
-function literal pool, etc. Atoms play three roles in JSRef: as literals
-referred to by unaligned 16-bit immediate bytecode operands, as unique
-string descriptors for efficient property name hashing, and as members
-of the root GC set for exact GC.
-
Native objects and methods for arrays, booleans, dates, functions, numbers,
-and strings are implemented using the JS API and certain internal interfaces
-used as "fast paths".
-
In general, errors are signaled by false or unoverloaded-null return
-values, and are reported using JS_ReportError() or one of its
-variants by the lowest level in order to provide the most detail. Client
-code can substitute its own error reporting function and suppress errors,
-or reflect them into Java or some other runtime system as exceptions, GUI
-dialogs, etc..
-
-File walk-through (OUT OF DATE!)
-
-
-jsapi.c, jsapi.h
-The public API to be used by almost all client code. If your client
-code can't make do with jsapi.h, and must reach into a friend
-or private js* file, please let us know so we can extend jsapi.h
-to include what you need in a fashion that we can support over the long
-run.
-
-jspubtd.h, jsprvtd.h
-These files exist to group struct and scalar typedefs so they can be used
-everywhere without dragging in struct definitions from N different files.
-The jspubtd.h file contains public typedefs, and is included by
-jsapi.h.
-The jsprvtd.h file contains private typedefs and is included by
-various .h files that need type names, but not type sizes or declarations.
-
-jsdbgapi.c, jsdbgapi.h
-The Debugging API, still very much under development. Provided so far:
-
--
-Traps, with which breakpoints, single-stepping, step over, step out, and
-so on can be implemented. The debugger will have to consult jsopcode.def
-on its own to figure out where to plant trap instructions to implement
-functions like step out, but a future jsdbgapi.h will provide convenience
-interfaces to do these things. At most one trap per bytecode can be set.
-When a script (JSScript) is destroyed, all traps set in its bytecode
-are cleared.
-
--
-Watchpoints, for intercepting set operations on properties and running
-a debugger-supplied function that receives the old value and a pointer
-to the new one, which it can use to modify the new value being set.
-
--
-Line number to PC and back mapping functions. The line-to-PC direction
-"rounds" toward the next bytecode generated from a line greater than or
-equal to the input line, and may return the PC of a for-loop update part,
-if given the line number of the loop body's closing brace. Any line after
-the last one in a script or function maps to a PC one byte beyond the last
-bytecode in the script. An example, from perfect.js:
-
-
14 function perfect(n)
-15 {
-16 print("The perfect numbers up to " + n + " are:");
-17
-18 // We build sumOfDivisors[i] to hold a string expression for
-19 // the sum of the divisors of i, excluding i itself.
-20 var sumOfDivisors = new ExprArray(n+1,1);
-21 for (var divisor = 2; divisor <= n; divisor++) {
-22 for (var j = divisor + divisor; j <= n; j += divisor) {
-23 sumOfDivisors[j] += " + " + divisor;
-24 }
-25 // At this point everything up to 'divisor' has its sumOfDivisors
-26 // expression calculated, so we can determine whether it's perfect
-27 // already by evaluating.
-28 if (eval(sumOfDivisors[divisor]) == divisor) {
-29 print("" + divisor + " = " + sumOfDivisors[divisor]);
-30 }
-31 }
-32 delete sumOfDivisors;
-33 print("That's all.");
-34 }
-The line number to PC and back mappings can be tested using the js program
-with the following script:
- load("perfect.js")
- print(perfect)
- dis(perfect)
-
- print()
- for (var ln = 0; ln <= 40; ln++) {
- var pc = line2pc(perfect,ln)
- var ln2 = pc2line(perfect,pc)
- print("\tline " + ln + " => pc " + pc + " => line " + ln2)
- }
-The result of the for loop over lines 0 to 40 inclusive is:
- line 0 => pc 0 => line 16
- line 1 => pc 0 => line 16
- line 2 => pc 0 => line 16
- line 3 => pc 0 => line 16
- line 4 => pc 0 => line 16
- line 5 => pc 0 => line 16
- line 6 => pc 0 => line 16
- line 7 => pc 0 => line 16
- line 8 => pc 0 => line 16
- line 9 => pc 0 => line 16
- line 10 => pc 0 => line 16
- line 11 => pc 0 => line 16
- line 12 => pc 0 => line 16
- line 13 => pc 0 => line 16
- line 14 => pc 0 => line 16
- line 15 => pc 0 => line 16
- line 16 => pc 0 => line 16
- line 17 => pc 19 => line 20
- line 18 => pc 19 => line 20
- line 19 => pc 19 => line 20
- line 20 => pc 19 => line 20
- line 21 => pc 36 => line 21
- line 22 => pc 53 => line 22
- line 23 => pc 74 => line 23
- line 24 => pc 92 => line 22
- line 25 => pc 106 => line 28
- line 26 => pc 106 => line 28
- line 27 => pc 106 => line 28
- line 28 => pc 106 => line 28
- line 29 => pc 127 => line 29
- line 30 => pc 154 => line 21
- line 31 => pc 154 => line 21
- line 32 => pc 161 => line 32
- line 33 => pc 172 => line 33
- line 34 => pc 172 => line 33
- line 35 => pc 172 => line 33
- line 36 => pc 172 => line 33
- line 37 => pc 172 => line 33
- line 38 => pc 172 => line 33
- line 39 => pc 172 => line 33
- line 40 => pc 172 => line 33
-
-
-
-jsconfig.h
-Various configuration macros defined as 0 or 1 depending on how JS_VERSION
-is defined (as 10 for JavaScript 1.0, 11 for JavaScript 1.1, etc.). Not
-all macros are tested around related code yet. In particular, JS 1.0 support
-is missing from JSRef. JS 1.2 support will appear in a future JSRef release.
-
-
-js.c
-The "JS shell", a simple interpreter program that uses the JS API and more
-than a few internal interfaces (some of these internal interfaces could
-be replaced by jsapi.h calls). The js program built from this
-source provides a test vehicle for evaluating scripts and calling functions,
-trying out new debugger primitives, etc.
-
-jsarray.*, jsbool.*, jdsdate.*, jsfun.*, jsmath.*, jsnum.*, jsstr.*
-These file pairs implement the standard classes and (where they exist)
-their underlying primitive types. They have similar structure, generally
-starting with class definitions and continuing with internal constructors,
-finalizers, and helper functions.
-
-jsobj.*, jsscope.*
-These two pairs declare and implement the JS object system. All of the
-following happen here:
-
--
-creating objects by class and prototype, and finalizing objects;
-
--
-defining, looking up, getting, setting, and deleting properties;
-
--
-creating and destroying properties and binding names to them.
-
-The details of a native object's map (scope) are mostly hidden in
-jsscope.[ch].
-
-jsatom.c, jsatom.h
-The atom manager. Contains well-known string constants, their atoms, the
-global atom hash table and related state, the js_Atomize() function that
-turns a counted string of bytes into an atom, and literal pool (JSAtomMap)
-methods.
-
-jsgc.c, jsgc.h
-[TBD]
-
-jsinterp.*, jscntxt.*
-The bytecode interpreter, and related functions such as Call and AllocStack,
-live in jsinterp.c. The JSContext constructor and destructor are
-factored out into jscntxt.c for minimal linking when the compiler
-part of JS is split from the interpreter part into a separate program.
-
-jsemit.*, jsopcode.tbl, jsopcode.*, jsparse.*, jsscan.*, jsscript.*
-Compiler and decompiler modules. The jsopcode.tbl file is a C preprocessor
-source that defines almost everything there is to know about JS bytecodes.
-See its major comment for how to use it. For now, a debugger will use it
-and its dependents such as jsopcode.h directly, but over time we
-intend to extend jsdbgapi.h to hide uninteresting details and provide
-conveniences. The code generator is split across paragraphs of code in
-jsparse.c,
-and the utility methods called on JSCodeGenerator appear in jsemit.c.
-Source notes generated by jsparse.c and
-jsemit.c are used
-in jsscript.c to map line number to program counter and back.
-
-jstypes.h, jslog2.c
-Fundamental representation types and utility macros. This file alone among
-all .h files in JSRef must be included first by .c files. It is not nested
-in .h files, as other prerequisite .h files generally are, since it is
-also a direct dependency of most .c files and would be over-included if
-nested in addition to being directly included. The one "not-quite-a-macro
-macro" is the JS_CeilingLog2() function in jslog2.c.
-
-jsarena.c, jsarena.h
-Last-In-First-Out allocation macros that amortize malloc costs and allow
-for en-masse freeing. See the paper mentioned in prarena.h's major comment.
-
-jsutil.c, jsutil.h
-The JS_ASSERT macro is used throughout JSRef source as a proof
-device to make invariants and preconditions clear to the reader, and to
-hold the line during maintenance and evolution against regressions or violations
-of assumptions that it would be too expensive to test unconditionally at
-run-time. Certain assertions are followed by run-time tests that cope with
-assertion failure, but only where I'm too smart or paranoid to believe
-the assertion will never fail...
-
-jsclist.h
-Doubly-linked circular list struct and macros.
-
-jscpucfg.c
-This standalone program generates jscpucfg.h, a header file containing
-bytes per word and other constants that depend on CPU architecture and
-C compiler type model. It tries to discover most of these constants by
-running its own experiments on the build host, so if you are cross-compiling,
-beware.
-
-prdtoa.c, prdtoa.h
-David Gay's portable double-precision floating point to string conversion
-code, with Permission To Use notice included.
-
-prhash.c, prhash.h
-Portable, extensible hash tables. These use multiplicative hash for strength
-reduction over division hash, yet with very good key distribution over
-power of two table sizes. Collisions resolve via chaining, so each entry
-burns a malloc and can fragment the heap.
-
-prlong.c, prlong.h
-64-bit integer emulation, and compatible macros that use C's long long
-type where it exists (my last company mapped long long to a 128-bit type,
-but no real architecture does 128-bit ints yet).
-
-jsosdep.h
-Annoying OS dependencies rationalized into a few "feature-test" macros
-such as JS_HAVE_LONG_LONG.
-
-jsprf.*
-Portable, buffer-overrun-resistant sprintf and friends. For no good reason
-save lack of time, the %e, %f, and %g formats cause your system's native
-sprintf, rather than JS_dtoa(), to be used. This bug doesn't affect
-JSRef, because it uses its own JS_dtoa() call in jsnum.c
-to convert from double to string, but it's a bug that we'll fix later,
-and one you should be aware of if you intend to use a JS_*printf()
-function with your own floating type arguments - various vendor sprintf's
-mishandle NaN, +/-Inf, and some even print normal floating values inaccurately.
-
-prmjtime.c, prmjtime.h
-Time functions. These interfaces are named in a way that makes local vs.
-universal time confusion likely. Caveat emptor, and we're working on it.
-To make matters worse, Java (and therefore JavaScript) uses "local" time
-numbers (offsets from the epoch) in its Date class.
-
-
-
-Additional Resources (links, API docs, and newsgroups)
-
-
-
-
-
-
Index: ossp-pkg/js/src/SpiderMonkey.rsp
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/SpiderMonkey.rsp,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/SpiderMonkey.rsp,v' | diff -u /dev/null - -L'ossp-pkg/js/src/SpiderMonkey.rsp' 2>/dev/null
--- ossp-pkg/js/src/SpiderMonkey.rsp
+++ - 2025-04-04 17:30:35.257909517 +0200
@@ -0,0 +1,12 @@
+mozilla/js/src/*
+mozilla/js/src/config/*
+mozilla/js/src/fdlibm/*
+mozilla/js/src/liveconnect/*
+mozilla/js/src/liveconnect/_jni/*
+mozilla/js/src/liveconnect/classes/*
+mozilla/js/src/liveconnect/classes/netscape/*
+mozilla/js/src/liveconnect/classes/netscape/javascript/*
+mozilla/js/src/liveconnect/config/*
+mozilla/js/src/liveconnect/macbuild/*
+mozilla/js/src/liveconnect/macbuild/JavaSession/*
+mozilla/js/src/macbuild/*
Index: ossp-pkg/js/src/config.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/config.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/Attic/config.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config.mk' 2>/dev/null
--- ossp-pkg/js/src/config.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,166 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998-1999
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either of the GNU General Public License Version 2 or later (the "GPL"),
-# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-ifdef JS_DIST
-DIST = $(JS_DIST)
-else
-DIST = $(DEPTH)/../../dist/$(OBJDIR)
-endif
-
-# Set os+release dependent make variables
-OS_ARCH := $(subst /,_,$(shell uname -s | sed /\ /s//_/))
-
-# Attempt to differentiate between SunOS 5.4 and x86 5.4
-OS_CPUARCH := $(shell uname -m)
-ifeq ($(OS_CPUARCH),i86pc)
-OS_RELEASE := $(shell uname -r)_$(OS_CPUARCH)
-else
-ifeq ($(OS_ARCH),AIX)
-OS_RELEASE := $(shell uname -v).$(shell uname -r)
-else
-OS_RELEASE := $(shell uname -r)
-endif
-endif
-ifeq ($(OS_ARCH),IRIX64)
-OS_ARCH := IRIX
-endif
-
-# Handle output from win32 unames other than Netscape's version
-ifeq (,$(filter-out Windows_95 Windows_98 CYGWIN_95-4.0 CYGWIN_98-4.10, $(OS_ARCH)))
- OS_ARCH := WIN95
-endif
-ifeq ($(OS_ARCH),WIN95)
- OS_ARCH := WINNT
- OS_RELEASE := 4.0
-endif
-ifeq ($(OS_ARCH), Windows_NT)
- OS_ARCH := WINNT
- OS_MINOR_RELEASE := $(shell uname -v)
- ifeq ($(OS_MINOR_RELEASE),00)
- OS_MINOR_RELEASE = 0
- endif
- OS_RELEASE := $(OS_RELEASE).$(OS_MINOR_RELEASE)
-endif
-ifeq (CYGWIN_NT,$(findstring CYGWIN_NT,$(OS_ARCH)))
- OS_RELEASE := $(patsubst CYGWIN_NT-%,%,$(OS_ARCH))
- OS_ARCH := WINNT
-endif
-ifeq ($(OS_ARCH), CYGWIN32_NT)
- OS_ARCH := WINNT
-endif
-
-# Virtually all Linux versions are identical.
-# Any distinctions are handled in linux.h
-ifeq ($(OS_ARCH),Linux)
-OS_CONFIG := Linux_All
-else
-ifeq ($(OS_ARCH),dgux)
-OS_CONFIG := dgux
-else
-ifeq ($(OS_ARCH),Darwin)
-OS_CONFIG := Darwin
-else
-OS_CONFIG := $(OS_ARCH)$(OS_OBJTYPE)$(OS_RELEASE)
-endif
-endif
-endif
-
-ASFLAGS =
-DEFINES =
-
-ifeq ($(OS_ARCH), WINNT)
-INSTALL = nsinstall
-CP = cp
-else
-INSTALL = $(DEPTH)/../../dist/$(OBJDIR)/bin/nsinstall
-CP = cp
-endif
-
-ifdef BUILD_OPT
-OPTIMIZER = -O
-DEFINES += -UDEBUG -DNDEBUG -UDEBUG_$(shell whoami)
-OBJDIR_TAG = _OPT
-else
-ifdef USE_MSVC
-OPTIMIZER = -Zi
-else
-OPTIMIZER = -g
-endif
-DEFINES += -DDEBUG -DDEBUG_$(shell whoami)
-OBJDIR_TAG = _DBG
-endif
-
-SO_SUFFIX = so
-
-NS_USE_NATIVE = 1
-
-# Java stuff
-CLASSDIR = $(DEPTH)/liveconnect/classes
-JAVA_CLASSES = $(patsubst %.java,%.class,$(JAVA_SRCS))
-TARGETS += $(addprefix $(CLASSDIR)/$(OBJDIR)/$(JARPATH)/, $(JAVA_CLASSES))
-JAVAC = $(JDK)/bin/javac
-JAVAC_FLAGS = -classpath "$(CLASSPATH)" -d $(CLASSDIR)/$(OBJDIR)
-ifeq ($(OS_ARCH), WINNT)
- SEP = ;
-else
- SEP = :
-endif
-CLASSPATH = $(JDK)/lib/classes.zip$(SEP)$(CLASSDIR)/$(OBJDIR)
-
-include $(DEPTH)/config/$(OS_CONFIG).mk
-
-# Name of the binary code directories
-ifdef BUILD_IDG
-OBJDIR = $(OS_CONFIG)$(OBJDIR_TAG).OBJD
-else
-OBJDIR = $(OS_CONFIG)$(OBJDIR_TAG).OBJ
-endif
-VPATH = $(OBJDIR)
-
-# Automatic make dependencies file
-DEPENDENCIES = $(OBJDIR)/.md
-
-LCJAR = js15lc30.jar
-
-# Library name
-LIBDIR := lib
-ifeq ($(CPU_ARCH), x86_64)
-LIBDIR := lib64
-endif
-
Index: ossp-pkg/js/src/config/AIX4.1.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/AIX4.1.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/AIX4.1.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/AIX4.1.mk' 2>/dev/null
--- ossp-pkg/js/src/config/AIX4.1.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,65 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for AIX
-#
-
-CC = xlC_r
-CCC = xlC_r
-
-RANLIB = ranlib
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-ARCH := aix
-CPU_ARCH = rs6000
-GFX_ARCH = x
-INLINES = js_compare_and_swap:js_fast_lock1:js_fast_unlock1:js_lock_get_slot:js_lock_set_slot:js_lock_scope1
-
-OS_CFLAGS = -qarch=com -qinline+$(INLINES) -DXP_UNIX -DAIX -DAIXV3 -DSYSV -DHAVE_LOCALTIME_R
-OS_LIBS = -lbsd -lsvld -lm
-#-lpthreads -lc_r
-
-MKSHLIB = $(LD) -bM:SRE -bh:4 -bnoentry -berok
-XLDFLAGS += -lc
-
-ifdef JS_THREADSAFE
-XLDFLAGS += -lsvld
-endif
Index: ossp-pkg/js/src/config/AIX4.2.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/AIX4.2.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/AIX4.2.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/AIX4.2.mk' 2>/dev/null
--- ossp-pkg/js/src/config/AIX4.2.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,64 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for AIX
-#
-
-CC = xlC_r
-CCC = xlC_r
-CFLAGS += -qarch=com -qnoansialias -qinline+$(INLINES) -DXP_UNIX -DAIX -DAIXV3 -DSYSV -DHAVE_LOCALTIME_R
-
-RANLIB = ranlib
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-ARCH := aix
-CPU_ARCH = rs6000
-GFX_ARCH = x
-INLINES = js_compare_and_swap:js_fast_lock1:js_fast_unlock1:js_lock_get_slot:js_lock_set_slot:js_lock_scope1
-
-#-lpthreads -lc_r
-
-MKSHLIB = /usr/lpp/xlC/bin/makeC++SharedLib_r -p 0 -G -berok
-
-ifdef JS_THREADSAFE
-XLDFLAGS += -ldl
-endif
-
Index: ossp-pkg/js/src/config/AIX4.3.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/AIX4.3.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/AIX4.3.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/AIX4.3.mk' 2>/dev/null
--- ossp-pkg/js/src/config/AIX4.3.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,65 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for AIX
-#
-
-CC = xlC_r
-CCC = xlC_r
-CFLAGS += -qarch=com -qnoansialias -qinline+$(INLINES) -DXP_UNIX -DAIX -DAIXV3 -DSYSV -DAIX4_3 -DHAVE_LOCALTIME_R
-
-RANLIB = ranlib
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-ARCH := aix
-CPU_ARCH = rs6000
-GFX_ARCH = x
-INLINES = js_compare_and_swap:js_fast_lock1:js_fast_unlock1:js_lock_get_slot:js_lock_set_slot:js_lock_scope1
-
-#-lpthreads -lc_r
-
-MKSHLIB_BIN = /usr/ibmcxx/bin/makeC++SharedLib_r
-MKSHLIB = $(MKSHLIB_BIN) -p 0 -G -berok -bM:UR
-
-ifdef JS_THREADSAFE
-XLDFLAGS += -ldl
-endif
-
Index: ossp-pkg/js/src/config/Darwin.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/Darwin.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/Darwin.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/Darwin.mk' 2>/dev/null
--- ossp-pkg/js/src/config/Darwin.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,81 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Steve Zellers (zellers@apple.com)
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config for Mac OS X as of PR3
-# Just ripped from Linux config
-#
-
-CC = cc
-CCC = g++
-CFLAGS += -Wall -Wno-format
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DDARWIN
-
-RANLIB = ranlib
-MKSHLIB = libtool $(XMKSHLIBOPTS) -framework System
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = $(shell uname -m)
-ifeq (86,$(findstring 86,$(CPU_ARCH)))
-CPU_ARCH = x86
-OS_CFLAGS+= -DX86_LINUX
-endif
-GFX_ARCH = x
-
-OS_LIBS = -lc -framework System
-
-ASFLAGS += -x assembler-with-cpp
-
-ifeq ($(CPU_ARCH),alpha)
-
-# Ask the C compiler on alpha linux to let us work with denormalized
-# double values, which are required by the ECMA spec.
-
-OS_CFLAGS += -mieee
-endif
-
-# Use the editline library to provide line-editing support.
-JS_EDITLINE = 1
-
-# Don't allow Makefile.ref to use libmath
-NO_LIBM = 1
-
Index: ossp-pkg/js/src/config/Darwin1.3.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/Darwin1.3.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/Darwin1.3.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/Darwin1.3.mk' 2>/dev/null
--- ossp-pkg/js/src/config/Darwin1.3.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,81 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Steve Zellers (zellers@apple.com)
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config for Mac OS X as of PR3
-# Just ripped from Linux config
-#
-
-CC = cc
-CCC = g++
-CFLAGS += -Wall -Wno-format
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DRHAPSODY
-
-RANLIB = ranlib
-MKSHLIB = libtool $(XMKSHLIBOPTS) -framework System
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = $(shell uname -m)
-ifeq (86,$(findstring 86,$(CPU_ARCH)))
-CPU_ARCH = x86
-OS_CFLAGS+= -DX86_LINUX
-endif
-GFX_ARCH = x
-
-OS_LIBS = -lc -framework System
-
-ASFLAGS += -x assembler-with-cpp
-
-ifeq ($(CPU_ARCH),alpha)
-
-# Ask the C compiler on alpha linux to let us work with denormalized
-# double values, which are required by the ECMA spec.
-
-OS_CFLAGS += -mieee
-endif
-
-# Use the editline library to provide line-editing support.
-JS_EDITLINE = 1
-
-# Don't allow Makefile.ref to use libmath
-NO_LIBM = 1
-
Index: ossp-pkg/js/src/config/Darwin1.4.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/Darwin1.4.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/Darwin1.4.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/Darwin1.4.mk' 2>/dev/null
--- ossp-pkg/js/src/config/Darwin1.4.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,41 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Mike McCabe
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-include $(DEPTH)/config/Darwin1.3.mk
Index: ossp-pkg/js/src/config/Darwin5.2.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/Darwin5.2.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/Darwin5.2.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/Darwin5.2.mk' 2>/dev/null
--- ossp-pkg/js/src/config/Darwin5.2.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,81 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Steve Zellers (zellers@apple.com)
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config for Mac OS X as of PR3
-# Just ripped from Linux config
-#
-
-CC = cc
-CCC = g++
-CFLAGS += -Wall -Wno-format
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DDARWIN
-
-RANLIB = ranlib
-MKSHLIB = libtool $(XMKSHLIBOPTS) -framework System
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = $(shell uname -m)
-ifeq (86,$(findstring 86,$(CPU_ARCH)))
-CPU_ARCH = x86
-OS_CFLAGS+= -DX86_LINUX
-endif
-GFX_ARCH = x
-
-OS_LIBS = -lc -framework System
-
-ASFLAGS += -x assembler-with-cpp
-
-ifeq ($(CPU_ARCH),alpha)
-
-# Ask the C compiler on alpha linux to let us work with denormalized
-# double values, which are required by the ECMA spec.
-
-OS_CFLAGS += -mieee
-endif
-
-# Use the editline library to provide line-editing support.
-JS_EDITLINE = 1
-
-# Don't allow Makefile.ref to use libmath
-NO_LIBM = 1
-
Index: ossp-pkg/js/src/config/Darwin5.3.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/Darwin5.3.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/Darwin5.3.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/Darwin5.3.mk' 2>/dev/null
--- ossp-pkg/js/src/config/Darwin5.3.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,81 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Steve Zellers (zellers@apple.com)
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config for Mac OS X as of PR3
-# Just ripped from Linux config
-#
-
-CC = cc
-CCC = g++
-CFLAGS += -Wall -Wno-format
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DDARWIN
-
-RANLIB = ranlib
-MKSHLIB = libtool $(XMKSHLIBOPTS) -framework System
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = $(shell uname -m)
-ifeq (86,$(findstring 86,$(CPU_ARCH)))
-CPU_ARCH = x86
-OS_CFLAGS+= -DX86_LINUX
-endif
-GFX_ARCH = x
-
-OS_LIBS = -lc -framework System
-
-ASFLAGS += -x assembler-with-cpp
-
-ifeq ($(CPU_ARCH),alpha)
-
-# Ask the C compiler on alpha linux to let us work with denormalized
-# double values, which are required by the ECMA spec.
-
-OS_CFLAGS += -mieee
-endif
-
-# Use the editline library to provide line-editing support.
-JS_EDITLINE = 1
-
-# Don't allow Makefile.ref to use libmath
-NO_LIBM = 1
-
Index: ossp-pkg/js/src/config/HP-UXB.10.10.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/HP-UXB.10.10.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/HP-UXB.10.10.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/HP-UXB.10.10.mk' 2>/dev/null
--- ossp-pkg/js/src/config/HP-UXB.10.10.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,77 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for HPUX
-#
-
-# CC = gcc
-# CCC = g++
-# CFLAGS += -Wall -Wno-format -fPIC
-
-CC = cc -Ae +Z
-CCC = CC -Ae +a1 +eh +Z
-
-RANLIB = echo
-MKSHLIB = $(LD) -b
-
-SO_SUFFIX = sl
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = hppa
-GFX_ARCH = x
-
-OS_CFLAGS = -DXP_UNIX -DHPUX -DSYSV -DHAVE_LOCALTIME_R
-OS_LIBS = -ldld
-
-ifeq ($(OS_RELEASE),B.10)
-PLATFORM_FLAGS += -DHPUX10 -Dhpux10
-PORT_FLAGS += -DRW_NO_OVERLOAD_SCHAR -DHAVE_MODEL_H
-ifeq ($(OS_VERSION),.10)
-PLATFORM_FLAGS += -DHPUX10_10
-endif
-ifeq ($(OS_VERSION),.20)
-PLATFORM_FLAGS += -DHPUX10_20
-endif
-ifeq ($(OS_VERSION),.30)
-PLATFORM_FLAGS += -DHPUX10_30
-endif
-endif
Index: ossp-pkg/js/src/config/HP-UXB.10.20.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/HP-UXB.10.20.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/HP-UXB.10.20.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/HP-UXB.10.20.mk' 2>/dev/null
--- ossp-pkg/js/src/config/HP-UXB.10.20.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,77 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for HPUX
-#
-
-# CC = gcc
-# CCC = g++
-# CFLAGS += -Wall -Wno-format -fPIC
-
-CC = cc -Ae +Z
-CCC = CC -Ae +a1 +eh +Z
-
-RANLIB = echo
-MKSHLIB = $(LD) -b
-
-SO_SUFFIX = sl
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = hppa
-GFX_ARCH = x
-
-OS_CFLAGS = -DXP_UNIX -DHPUX -DSYSV -DHAVE_LOCALTIME_R
-OS_LIBS = -ldld
-
-ifeq ($(OS_RELEASE),B.10)
-PLATFORM_FLAGS += -DHPUX10 -Dhpux10
-PORT_FLAGS += -DRW_NO_OVERLOAD_SCHAR -DHAVE_MODEL_H
-ifeq ($(OS_VERSION),.10)
-PLATFORM_FLAGS += -DHPUX10_10
-endif
-ifeq ($(OS_VERSION),.20)
-PLATFORM_FLAGS += -DHPUX10_20
-endif
-ifeq ($(OS_VERSION),.30)
-PLATFORM_FLAGS += -DHPUX10_30
-endif
-endif
Index: ossp-pkg/js/src/config/HP-UXB.11.00.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/HP-UXB.11.00.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/HP-UXB.11.00.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/HP-UXB.11.00.mk' 2>/dev/null
--- ossp-pkg/js/src/config/HP-UXB.11.00.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,80 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for HPUX
-#
-
-ifdef NS_USE_NATIVE
- CC = cc +Z +DAportable +DS2.0 +u4
-# LD = aCC +Z -b -Wl,+s -Wl,-B,symbolic
-else
- CC = gcc -Wall -Wno-format -fPIC
- CCC = g++ -Wall -Wno-format -fPIC
-endif
-
-RANLIB = echo
-MKSHLIB = $(LD) -b
-
-SO_SUFFIX = sl
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = hppa
-GFX_ARCH = x
-
-OS_CFLAGS = -DXP_UNIX -DHPUX -DSYSV -D_HPUX -DNATIVE -D_POSIX_C_SOURCE=199506L -DHAVE_LOCALTIME_R
-OS_LIBS = -ldld
-
-XLDFLAGS = -lpthread
-
-ifeq ($(OS_RELEASE),B.10)
-PLATFORM_FLAGS += -DHPUX10 -Dhpux10
-PORT_FLAGS += -DRW_NO_OVERLOAD_SCHAR -DHAVE_MODEL_H
-ifeq ($(OS_VERSION),.10)
-PLATFORM_FLAGS += -DHPUX10_10
-endif
-ifeq ($(OS_VERSION),.20)
-PLATFORM_FLAGS += -DHPUX10_20
-endif
-ifeq ($(OS_VERSION),.30)
-PLATFORM_FLAGS += -DHPUX10_30
-endif
-endif
Index: ossp-pkg/js/src/config/IRIX.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/IRIX.mk' 2>/dev/null
--- ossp-pkg/js/src/config/IRIX.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,87 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for IRIX
-#
-
-CPU_ARCH = mips
-GFX_ARCH = x
-
-RANLIB = /bin/true
-
-#NS_USE_GCC = 1
-
-ifndef NS_USE_NATIVE
-CC = gcc
-CCC = g++
-AS = $(CC) -x assembler-with-cpp
-ODD_CFLAGS = -Wall -Wno-format
-ifdef BUILD_OPT
-OPTIMIZER = -O6
-endif
-else
-ifeq ($(OS_RELEASE),6.2)
-CC = cc -n32 -DIRIX6_2
-endif
-ifeq ($(OS_RELEASE),6.3)
-CC = cc -n32 -DIRIX6_3
-endif
-ifeq ($(OS_RELEASE),6.5)
-CC = cc -n32 -DIRIX6_5
-endif
-CCC = CC
-# LD = CC
-ODD_CFLAGS = -fullwarn -xansi
-ifdef BUILD_OPT
-OPTIMIZER += -Olimit 4000
-endif
-endif
-
-# For purify
-HAVE_PURIFY = 1
-PURE_OS_CFLAGS = $(ODD_CFLAGS) -DXP_UNIX -DSVR4 -DSW_THREADS -DIRIX -DHAVE_LOCALTIME_R
-
-OS_CFLAGS = $(PURE_OS_CFLAGS) -MDupdate $(DEPENDENCIES)
-
-BSDECHO = echo
-MKSHLIB = $(LD) -n32 -shared
-
-# Use the editline library to provide line-editing support.
-JS_EDITLINE = 1
Index: ossp-pkg/js/src/config/IRIX5.3.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX5.3.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX5.3.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/IRIX5.3.mk' 2>/dev/null
--- ossp-pkg/js/src/config/IRIX5.3.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,44 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for IRIX5.3
-#
-
-include $(DEPTH)/config/IRIX.mk
Index: ossp-pkg/js/src/config/IRIX6.1.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX6.1.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX6.1.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/IRIX6.1.mk' 2>/dev/null
--- ossp-pkg/js/src/config/IRIX6.1.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,44 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for IRIX6.3
-#
-
-include $(DEPTH)/config/IRIX.mk
Index: ossp-pkg/js/src/config/IRIX6.2.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX6.2.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX6.2.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/IRIX6.2.mk' 2>/dev/null
--- ossp-pkg/js/src/config/IRIX6.2.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,44 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for IRIX6.3
-#
-
-include $(DEPTH)/config/IRIX.mk
Index: ossp-pkg/js/src/config/IRIX6.3.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX6.3.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX6.3.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/IRIX6.3.mk' 2>/dev/null
--- ossp-pkg/js/src/config/IRIX6.3.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,44 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for IRIX6.3
-#
-
-include $(DEPTH)/config/IRIX.mk
Index: ossp-pkg/js/src/config/IRIX6.5.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX6.5.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/IRIX6.5.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/IRIX6.5.mk' 2>/dev/null
--- ossp-pkg/js/src/config/IRIX6.5.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,44 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for IRIX6.3
-#
-
-include $(DEPTH)/config/IRIX.mk
Index: ossp-pkg/js/src/config/Linux_All.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/Linux_All.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/Linux_All.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/Linux_All.mk' 2>/dev/null
--- ossp-pkg/js/src/config/Linux_All.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,103 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config for all versions of Linux
-#
-
-CC = gcc
-CCC = g++
-CFLAGS += -Wall -Wno-format
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE -DHAVE_LOCALTIME_R
-
-RANLIB = echo
-MKSHLIB = $(LD) -shared $(XMKSHLIBOPTS)
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = $(shell uname -m)
-# don't filter in x86-64 architecture
-ifneq (x86_64,$(CPU_ARCH))
-ifeq (86,$(findstring 86,$(CPU_ARCH)))
-CPU_ARCH = x86
-OS_CFLAGS+= -DX86_LINUX
-
-ifeq (gcc, $(CC))
-# if using gcc on x86, check version for opt bug
-# (http://bugzilla.mozilla.org/show_bug.cgi?id=24892)
-GCC_VERSION := $(shell gcc -v 2>&1 | grep version | awk '{ print $$3 }')
-GCC_LIST:=$(sort 2.91.66 $(GCC_VERSION) )
-
-ifeq (2.91.66, $(firstword $(GCC_LIST)))
-CFLAGS+= -DGCC_OPT_BUG
-endif
-endif
-endif
-endif
-
-GFX_ARCH = x
-
-OS_LIBS = -lm -lc
-
-ASFLAGS += -x assembler-with-cpp
-
-
-ifeq ($(CPU_ARCH),alpha)
-
-# Ask the C compiler on alpha linux to let us work with denormalized
-# double values, which are required by the ECMA spec.
-
-OS_CFLAGS += -mieee
-endif
-
-# Use the editline library to provide line-editing support.
-JS_EDITLINE = 1
-
-ifeq ($(CPU_ARCH),x86_64)
-# Use VA_COPY() standard macro on x86-64
-# FIXME: better use it everywhere
-OS_CFLAGS += -DHAVE_VA_COPY -DVA_COPY=va_copy
-endif
-
-ifeq ($(CPU_ARCH),x86_64)
-# We need PIC code for shared libraries
-# FIXME: better patch rules.mk & fdlibm/Makefile*
-OS_CFLAGS += -DPIC -fPIC
-endif
Index: ossp-pkg/js/src/config/Mac_OS10.0.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/Mac_OS10.0.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/Mac_OS10.0.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/Mac_OS10.0.mk' 2>/dev/null
--- ossp-pkg/js/src/config/Mac_OS10.0.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,82 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Steve Zellers (zellers@apple.com)
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config for Mac OS X as of PR3
-# Just ripped from Linux config
-#
-
-CC = cc
-CCC = g++
-CFLAGS += -Wall -Wno-format
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_BSD_SOURCE -DPOSIX_SOURCE
--DRHAPSODY
-
-RANLIB = ranlib
-MKSHLIB = libtool -dynamic $(XMKSHLIBOPTS) -framework System
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = $(shell uname -m)
-ifeq (86,$(findstring 86,$(CPU_ARCH)))
-CPU_ARCH = x86
-OS_CFLAGS+= -DX86_LINUX
-endif
-GFX_ARCH = x
-
-OS_LIBS = -lc -framework System
-
-ASFLAGS += -x assembler-with-cpp
-
-ifeq ($(CPU_ARCH),alpha)
-
-# Ask the C compiler on alpha linux to let us work with denormalized
-# double values, which are required by the ECMA spec.
-
-OS_CFLAGS += -mieee
-endif
-
-# Use the editline library to provide line-editing support.
-JS_EDITLINE = 1
-
-# Don't allow Makefile.ref to use libmath
-NO_LIBM = 1
-
Index: ossp-pkg/js/src/config/OSF1V4.0.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/OSF1V4.0.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/OSF1V4.0.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/OSF1V4.0.mk' 2>/dev/null
--- ossp-pkg/js/src/config/OSF1V4.0.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,72 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for Data General DG/UX
-#
-
-#
-# Initial DG/UX port by Marc Fraioli (fraioli@dg-rtp.dg.com)
-#
-
-ifndef NS_USE_NATIVE
-CC = gcc
-CCC = g++
-CFLAGS += -mieee -Wall -Wno-format
-else
-CC = cc
-CCC = cxx
-CFLAGS += -ieee -std
-# LD = cxx
-endif
-
-RANLIB = echo
-MKSHLIB = $(LD) -shared -taso -all -expect_unresolved "*"
-
-#
-# _DGUX_SOURCE is needed to turn on a lot of stuff in the headers if
-# you're not using DG's compiler. It shouldn't hurt if you are.
-#
-# _POSIX4A_DRAFT10_SOURCE is needed to pick up localtime_r, used in
-# prtime.c
-#
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -DDGUX -D_DGUX_SOURCE -D_POSIX4A_DRAFT10_SOURCE -DOSF1 -DHAVE_LOCALTIME_R
-OS_LIBS = -lsocket -lnsl
-
-NOSUCHFILE = /no-such-file
Index: ossp-pkg/js/src/config/OSF1V5.0.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/OSF1V5.0.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/OSF1V5.0.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/OSF1V5.0.mk' 2>/dev/null
--- ossp-pkg/js/src/config/OSF1V5.0.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,69 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for Tru64 Unix 5.0
-#
-
-#
-# Initial DG/UX port by Marc Fraioli (fraioli@dg-rtp.dg.com)
-#
-
-ifndef NS_USE_NATIVE
-CC = gcc
-CCC = g++
-CFLAGS += -mieee -Wall -Wno-format
-else
-CC = cc
-CCC = cxx
-CFLAGS += -ieee -std -pthread
-# LD = cxx
-endif
-
-RANLIB = echo
-MKSHLIB = $(LD) -shared -all -expect_unresolved "*"
-
-#
-# _POSIX4A_DRAFT10_SOURCE is needed to pick up localtime_r, used in
-# prtime.c
-#
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D_POSIX4A_DRAFT10_SOURCE -DOSF1 -DHAVE_LOCALTIME_R
-OS_LIBS = -lsocket -lnsl
-
-NOSUCHFILE = /no-such-file
Index: ossp-pkg/js/src/config/SunOS4.1.4.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS4.1.4.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS4.1.4.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/SunOS4.1.4.mk' 2>/dev/null
--- ossp-pkg/js/src/config/SunOS4.1.4.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,101 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for SunOS4.1
-#
-
-CC = gcc
-CCC = g++
-RANLIB = ranlib
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = sparc
-GFX_ARCH = x
-
-# A pile of -D's to build xfe on sunos
-MOZ_CFLAGS = -DSTRINGS_ALIGNED -DNO_REGEX -DNO_ISDIR -DUSE_RE_COMP \
- -DNO_REGCOMP -DUSE_GETWD -DNO_MEMMOVE -DNO_ALLOCA \
- -DBOGUS_MB_MAX -DNO_CONST
-
-# Purify doesn't like -MDupdate
-NOMD_OS_CFLAGS = -DXP_UNIX -Wall -Wno-format -DSW_THREADS -DSUNOS4 -DNEED_SYSCALL \
- $(MOZ_CFLAGS)
-
-OS_CFLAGS = $(NOMD_OS_CFLAGS) -MDupdate $(DEPENDENCIES)
-OS_LIBS = -ldl -lm
-
-MKSHLIB = $(LD) -L$(MOTIF)/lib
-
-HAVE_PURIFY = 1
-MOTIF = /home/motif/usr
-MOTIFLIB = -L$(MOTIF)/lib -lXm
-INCLUDES += -I/usr/X11R5/include -I$(MOTIF)/include
-
-NOSUCHFILE = /solaris-rm-f-sucks
-
-LOCALE_MAP = $(DEPTH)/cmd/xfe/intl/sunos.lm
-
-EN_LOCALE = en_US
-DE_LOCALE = de
-FR_LOCALE = fr
-JP_LOCALE = ja
-SJIS_LOCALE = ja_JP.SJIS
-KR_LOCALE = ko
-CN_LOCALE = zh
-TW_LOCALE = zh_TW
-I2_LOCALE = i2
-IT_LOCALE = it
-SV_LOCALE = sv
-ES_LOCALE = es
-NL_LOCALE = nl
-PT_LOCALE = pt
-
-LOC_LIB_DIR = /usr/openwin/lib/locale
-
-BSDECHO = echo
-
-#
-# These defines are for building unix plugins
-#
-BUILD_UNIX_PLUGINS = 1
-DSO_LDOPTS =
-DSO_LDFLAGS =
Index: ossp-pkg/js/src/config/SunOS5.3.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.3.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.3.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/SunOS5.3.mk' 2>/dev/null
--- ossp-pkg/js/src/config/SunOS5.3.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,91 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for SunOS5.3
-#
-
-CC = gcc
-CCC = g++
-CFLAGS += -Wall -Wno-format
-
-#CC = /opt/SUNWspro/SC3.0.1/bin/cc
-RANLIB = echo
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = sparc
-GFX_ARCH = x
-
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -DSOLARIS -DHAVE_LOCALTIME_R
-OS_LIBS = -lsocket -lnsl -ldl
-
-ASFLAGS += -P -L -K PIC -D_ASM -D__STDC__=0
-
-HAVE_PURIFY = 1
-
-NOSUCHFILE = /solaris-rm-f-sucks
-
-ifndef JS_NO_ULTRA
-ULTRA_OPTIONS := -xarch=v8plus
-ULTRA_OPTIONSD := -DULTRA_SPARC
-else
-ULTRA_OPTIONS := -xarch=v8
-ULTRA_OPTIONSD :=
-endif
-
-ifeq ($(OS_CPUARCH),sun4u)
-DEFINES += $(ULTRA_OPTIONSD)
-ifeq ($(findstring gcc,$(CC)),gcc)
-DEFINES += -Wa,$(ULTRA_OPTIONS),$(ULTRA_OPTIONSD)
-else
-ASFLAGS += $(ULTRA_OPTIONS) $(ULTRA_OPTIONSD)
-endif
-endif
-
-ifeq ($(OS_CPUARCH),sun4m)
-ifeq ($(findstring gcc,$(CC)),gcc)
-DEFINES += -Wa,-xarch=v8
-else
-ASFLAGS += -xarch=v8
-endif
-endif
-
-MKSHLIB = $(LD) -G
Index: ossp-pkg/js/src/config/SunOS5.4.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.4.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.4.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/SunOS5.4.mk' 2>/dev/null
--- ossp-pkg/js/src/config/SunOS5.4.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,92 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for SunOS5.4
-#
-
-ifdef NS_USE_NATIVE
-CC = cc
-CCC = CC
-else
-CC = gcc
-CCC = g++
-CFLAGS += -Wall -Wno-format
-endif
-
-RANLIB = echo
-
-CPU_ARCH = sparc
-GFX_ARCH = x
-
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -D__svr4 -DSOLARIS -DHAVE_LOCALTIME_R
-OS_LIBS = -lsocket -lnsl -ldl
-
-ASFLAGS += -P -L -K PIC -D_ASM -D__STDC__=0
-
-HAVE_PURIFY = 1
-
-NOSUCHFILE = /solaris-rm-f-sucks
-
-ifndef JS_NO_ULTRA
-ULTRA_OPTIONS := -xarch=v8plus
-ULTRA_OPTIONSD := -DULTRA_SPARC
-else
-ULTRA_OPTIONS := -xarch=v8
-ULTRA_OPTIONSD :=
-endif
-
-ifeq ($(OS_CPUARCH),sun4u)
-DEFINES += $(ULTRA_OPTIONSD)
-ifeq ($(findstring gcc,$(CC)),gcc)
-DEFINES += -Wa,$(ULTRA_OPTIONS),$(ULTRA_OPTIONSD)
-else
-ASFLAGS += $(ULTRA_OPTIONS) $(ULTRA_OPTIONSD)
-endif
-endif
-
-ifeq ($(OS_CPUARCH),sun4m)
-ifeq ($(findstring gcc,$(CC)),gcc)
-DEFINES += -Wa,-xarch=v8
-else
-ASFLAGS += -xarch=v8
-endif
-endif
-
-MKSHLIB = $(LD) -G
Index: ossp-pkg/js/src/config/SunOS5.5.1.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.5.1.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.5.1.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/SunOS5.5.1.mk' 2>/dev/null
--- ossp-pkg/js/src/config/SunOS5.5.1.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,44 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for SunOS5.5.1
-#
-
-include $(DEPTH)/config/SunOS5.5.mk
Index: ossp-pkg/js/src/config/SunOS5.5.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.5.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.5.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/SunOS5.5.mk' 2>/dev/null
--- ossp-pkg/js/src/config/SunOS5.5.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,87 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for SunOS5.5
-#
-
-AS = /usr/ccs/bin/as
-ifndef NS_USE_NATIVE
-CC = gcc
-CCC = g++
-CFLAGS += -Wall -Wno-format
-else
-CC = cc
-CCC = CC
-endif
-
-RANLIB = echo
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = sparc
-GFX_ARCH = x
-
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -DSOLARIS -DHAVE_LOCALTIME_R
-OS_LIBS = -lsocket -lnsl -ldl
-
-ASFLAGS += -P -L -K PIC -D_ASM -D__STDC__=0
-
-HAVE_PURIFY = 1
-
-NOSUCHFILE = /solaris-rm-f-sucks
-
-ifeq ($(OS_CPUARCH),sun4u) # ultra sparc?
-ifeq ($(CC),gcc) # using gcc?
-ifndef JS_NO_ULTRA # do we want ultra?
-ifdef JS_THREADSAFE # only in thread-safe mode
-DEFINES += -DULTRA_SPARC
-DEFINES += -Wa,-xarch=v8plus,-DULTRA_SPARC
-else
-ASFLAGS += -xarch=v8plus -DULTRA_SPARC
-endif
-endif
-endif
-endif
-
-MKSHLIB = $(LD) -G
-
-# Use the editline library to provide line-editing support.
-JS_EDITLINE = 1
Index: ossp-pkg/js/src/config/SunOS5.6.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.6.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.6.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/SunOS5.6.mk' 2>/dev/null
--- ossp-pkg/js/src/config/SunOS5.6.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,89 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for SunOS5.5
-#
-
-AS = /usr/ccs/bin/as
-ifndef NS_USE_NATIVE
- CC = gcc
- CCC = g++
- CFLAGS += -Wall -Wno-format
-else
- CC = cc
- CCC = CC
- CFLAGS += -mt -KPIC
-# LD = CC
-endif
-
-RANLIB = echo
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = sparc
-GFX_ARCH = x
-
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -DSOLARIS -DHAVE_LOCALTIME_R
-OS_LIBS = -lsocket -lnsl -ldl
-
-ASFLAGS += -P -L -K PIC -D_ASM -D__STDC__=0
-
-HAVE_PURIFY = 1
-
-NOSUCHFILE = /solaris-rm-f-sucks
-
-ifeq ($(OS_CPUARCH),sun4u) # ultra sparc?
-ifeq ($(CC),gcc) # using gcc?
-ifndef JS_NO_ULTRA # do we want ultra?
-ifdef JS_THREADSAFE # only in thread-safe mode
-DEFINES += -DULTRA_SPARC
-DEFINES += -Wa,-xarch=v8plus,-DULTRA_SPARC
-else
-ASFLAGS += -xarch=v8plus -DULTRA_SPARC
-endif
-endif
-endif
-endif
-
-MKSHLIB = $(LD) -G
-
-# Use the editline library to provide line-editing support.
-JS_EDITLINE = 1
Index: ossp-pkg/js/src/config/SunOS5.7.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.7.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.7.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/SunOS5.7.mk' 2>/dev/null
--- ossp-pkg/js/src/config/SunOS5.7.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,44 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1999
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for SunOS5.7
-#
-
-include $(DEPTH)/config/SunOS5.5.mk
Index: ossp-pkg/js/src/config/SunOS5.8.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.8.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.8.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/SunOS5.8.mk' 2>/dev/null
--- ossp-pkg/js/src/config/SunOS5.8.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,44 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1999
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for SunOS5.8
-#
-
-include $(DEPTH)/config/SunOS5.5.mk
Index: ossp-pkg/js/src/config/SunOS5.9.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.9.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/SunOS5.9.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/SunOS5.9.mk' 2>/dev/null
--- ossp-pkg/js/src/config/SunOS5.9.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,44 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1999
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for SunOS5.9
-#
-
-include $(DEPTH)/config/SunOS5.5.mk
Index: ossp-pkg/js/src/config/WINNT4.0.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/WINNT4.0.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/WINNT4.0.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/WINNT4.0.mk' 2>/dev/null
--- ossp-pkg/js/src/config/WINNT4.0.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,115 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config for Windows NT using MS Visual C++ (version?)
-#
-
-CC = cl
-
-RANLIB = echo
-
-PDBFILE = $(basename $(@F)).pdb
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = x86 # XXX fixme
-GFX_ARCH = win32
-
-# MSVC compiler options for both debug/optimize
-# -nologo - suppress copyright message
-# -W3 - Warning level 3
-# -Gm - enable minimal rebuild
-# -Z7 - put debug info into the executable, not in .pdb file
-# -Zi - put debug info into .pdb file
-# -YX - automatic precompiled headers
-# -GX - enable C++ exception support
-WIN_CFLAGS = -nologo -W3
-
-# MSVC compiler options for debug builds linked to MSVCRTD.DLL
-# -MDd - link with MSVCRTD.LIB (Dynamically-linked, multi-threaded, debug C-runtime)
-# -Od - minimal optimization
-WIN_IDG_CFLAGS = -MDd -Od -Z7
-
-# MSVC compiler options for debug builds linked to MSVCRT.DLL
-# -MD - link with MSVCRT.LIB (Dynamically-linked, multi-threaded, debug C-runtime)
-# -Od - minimal optimization
-WIN_DEBUG_CFLAGS = -MD -Od -Zi -Fd$(OBJDIR)/$(PDBFILE)
-
-# MSVC compiler options for release (optimized) builds
-# -MD - link with MSVCRT.LIB (Dynamically-linked, multi-threaded, C-runtime)
-# -O2 - Optimize for speed
-# -G5 - Optimize for Pentium
-WIN_OPT_CFLAGS = -MD -O2
-
-ifdef BUILD_OPT
-OPTIMIZER = $(WIN_OPT_CFLAGS)
-else
-ifdef BUILD_IDG
-OPTIMIZER = $(WIN_IDG_CFLAGS)
-else
-OPTIMIZER = $(WIN_DEBUG_CFLAGS)
-endif
-endif
-
-OS_CFLAGS = -D_X86_=1 -DXP_WIN -DXP_WIN32 -DWIN32 -D_WINDOWS -D_WIN32 $(WIN_CFLAGS)
-JSDLL_CFLAGS = -DEXPORT_JS_API
-OS_LIBS = -lm -lc
-
-PREBUILT_CPUCFG = 1
-USE_MSVC = 1
-
-LIB_LINK_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib oldnames.lib -nologo\
- -subsystem:windows -dll -debug -pdb:$(OBJDIR)/$(PDBFILE)\
- -machine:I386\
- -opt:ref -opt:noicf
-
-EXE_LINK_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib oldnames.lib -nologo\
- -subsystem:console -debug -pdb:$(OBJDIR)/$(PDBFILE)\
- -machine:I386\
- -opt:ref -opt:noicf
-
-# CAFEDIR = t:/cafe
-# JCLASSPATH = $(CAFEDIR)/Java/Lib/classes.zip
-# JAVAC = $(CAFEDIR)/Bin/sj.exe
-# JAVAH = $(CAFEDIR)/Java/Bin/javah.exe
-# JCFLAGS = -I$(CAFEDIR)/Java/Include -I$(CAFEDIR)/Java/Include/win32
Index: ossp-pkg/js/src/config/WINNT5.0.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/WINNT5.0.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/WINNT5.0.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/WINNT5.0.mk' 2>/dev/null
--- ossp-pkg/js/src/config/WINNT5.0.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,115 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config for Windows NT using MS Visual C++ (version?)
-#
-
-CC = cl
-
-RANLIB = echo
-
-PDBFILE = $(basename $(@F)).pdb
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = x86 # XXX fixme
-GFX_ARCH = win32
-
-# MSVC compiler options for both debug/optimize
-# -nologo - suppress copyright message
-# -W3 - Warning level 3
-# -Gm - enable minimal rebuild
-# -Z7 - put debug info into the executable, not in .pdb file
-# -Zi - put debug info into .pdb file
-# -YX - automatic precompiled headers
-# -GX - enable C++ exception support
-WIN_CFLAGS = -nologo -W3
-
-# MSVC compiler options for debug builds linked to MSVCRTD.DLL
-# -MDd - link with MSVCRTD.LIB (Dynamically-linked, multi-threaded, debug C-runtime)
-# -Od - minimal optimization
-WIN_IDG_CFLAGS = -MDd -Od -Z7
-
-# MSVC compiler options for debug builds linked to MSVCRT.DLL
-# -MD - link with MSVCRT.LIB (Dynamically-linked, multi-threaded, debug C-runtime)
-# -Od - minimal optimization
-WIN_DEBUG_CFLAGS = -MD -Od -Zi -Fd$(OBJDIR)/$(PDBFILE)
-
-# MSVC compiler options for release (optimized) builds
-# -MD - link with MSVCRT.LIB (Dynamically-linked, multi-threaded, C-runtime)
-# -O2 - Optimize for speed
-# -G5 - Optimize for Pentium
-WIN_OPT_CFLAGS = -MD -O2
-
-ifdef BUILD_OPT
-OPTIMIZER = $(WIN_OPT_CFLAGS)
-else
-ifdef BUILD_IDG
-OPTIMIZER = $(WIN_IDG_CFLAGS)
-else
-OPTIMIZER = $(WIN_DEBUG_CFLAGS)
-endif
-endif
-
-OS_CFLAGS = -D_X86_=1 -DXP_WIN -DXP_WIN32 -DWIN32 -D_WINDOWS -D_WIN32 $(WIN_CFLAGS)
-JSDLL_CFLAGS = -DEXPORT_JS_API
-OS_LIBS = -lm -lc
-
-PREBUILT_CPUCFG = 1
-USE_MSVC = 1
-
-LIB_LINK_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib oldnames.lib -nologo\
- -subsystem:windows -dll -debug -pdb:$(OBJDIR)/$(PDBFILE)\
- -machine:I386\
- -opt:ref -opt:noicf
-
-EXE_LINK_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib oldnames.lib -nologo\
- -subsystem:console -debug -pdb:$(OBJDIR)/$(PDBFILE)\
- -machine:I386\
- -opt:ref -opt:noicf
-
-# CAFEDIR = t:/cafe
-# JCLASSPATH = $(CAFEDIR)/Java/Lib/classes.zip
-# JAVAC = $(CAFEDIR)/Bin/sj.exe
-# JAVAH = $(CAFEDIR)/Java/Bin/javah.exe
-# JCFLAGS = -I$(CAFEDIR)/Java/Include -I$(CAFEDIR)/Java/Include/win32
Index: ossp-pkg/js/src/config/WINNT5.1.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/WINNT5.1.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/WINNT5.1.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/WINNT5.1.mk' 2>/dev/null
--- ossp-pkg/js/src/config/WINNT5.1.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,115 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config for Windows NT using MS Visual C++ (version?)
-#
-
-CC = cl
-
-RANLIB = echo
-
-PDBFILE = $(basename $(@F)).pdb
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = x86 # XXX fixme
-GFX_ARCH = win32
-
-# MSVC compiler options for both debug/optimize
-# -nologo - suppress copyright message
-# -W3 - Warning level 3
-# -Gm - enable minimal rebuild
-# -Z7 - put debug info into the executable, not in .pdb file
-# -Zi - put debug info into .pdb file
-# -YX - automatic precompiled headers
-# -GX - enable C++ exception support
-WIN_CFLAGS = -nologo -W3
-
-# MSVC compiler options for debug builds linked to MSVCRTD.DLL
-# -MDd - link with MSVCRTD.LIB (Dynamically-linked, multi-threaded, debug C-runtime)
-# -Od - minimal optimization
-WIN_IDG_CFLAGS = -MDd -Od -Z7
-
-# MSVC compiler options for debug builds linked to MSVCRT.DLL
-# -MD - link with MSVCRT.LIB (Dynamically-linked, multi-threaded, debug C-runtime)
-# -Od - minimal optimization
-WIN_DEBUG_CFLAGS = -MD -Od -Zi -Fd$(OBJDIR)/$(PDBFILE)
-
-# MSVC compiler options for release (optimized) builds
-# -MD - link with MSVCRT.LIB (Dynamically-linked, multi-threaded, C-runtime)
-# -O2 - Optimize for speed
-# -G5 - Optimize for Pentium
-WIN_OPT_CFLAGS = -MD -O2
-
-ifdef BUILD_OPT
-OPTIMIZER = $(WIN_OPT_CFLAGS)
-else
-ifdef BUILD_IDG
-OPTIMIZER = $(WIN_IDG_CFLAGS)
-else
-OPTIMIZER = $(WIN_DEBUG_CFLAGS)
-endif
-endif
-
-OS_CFLAGS = -D_X86_=1 -DXP_WIN -DXP_WIN32 -DWIN32 -D_WINDOWS -D_WIN32 $(WIN_CFLAGS)
-JSDLL_CFLAGS = -DEXPORT_JS_API
-OS_LIBS = -lm -lc
-
-PREBUILT_CPUCFG = 1
-USE_MSVC = 1
-
-LIB_LINK_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib oldnames.lib -nologo\
- -subsystem:windows -dll -debug -pdb:$(OBJDIR)/$(PDBFILE)\
- -machine:I386\
- -opt:ref -opt:noicf
-
-EXE_LINK_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib oldnames.lib -nologo\
- -subsystem:console -debug -pdb:$(OBJDIR)/$(PDBFILE)\
- -machine:I386\
- -opt:ref -opt:noicf
-
-# CAFEDIR = t:/cafe
-# JCLASSPATH = $(CAFEDIR)/Java/Lib/classes.zip
-# JAVAC = $(CAFEDIR)/Bin/sj.exe
-# JAVAH = $(CAFEDIR)/Java/Bin/javah.exe
-# JCFLAGS = -I$(CAFEDIR)/Java/Include -I$(CAFEDIR)/Java/Include/win32
Index: ossp-pkg/js/src/config/WINNT5.2.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/WINNT5.2.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/WINNT5.2.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/WINNT5.2.mk' 2>/dev/null
--- ossp-pkg/js/src/config/WINNT5.2.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,115 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config for Windows NT using MS Visual C++ (version?)
-#
-
-CC = cl
-
-RANLIB = echo
-
-PDBFILE = $(basename $(@F)).pdb
-
-#.c.o:
-# $(CC) -c -MD $*.d $(CFLAGS) $<
-
-CPU_ARCH = x86 # XXX fixme
-GFX_ARCH = win32
-
-# MSVC compiler options for both debug/optimize
-# -nologo - suppress copyright message
-# -W3 - Warning level 3
-# -Gm - enable minimal rebuild
-# -Z7 - put debug info into the executable, not in .pdb file
-# -Zi - put debug info into .pdb file
-# -YX - automatic precompiled headers
-# -GX - enable C++ exception support
-WIN_CFLAGS = -nologo -W3
-
-# MSVC compiler options for debug builds linked to MSVCRTD.DLL
-# -MDd - link with MSVCRTD.LIB (Dynamically-linked, multi-threaded, debug C-runtime)
-# -Od - minimal optimization
-WIN_IDG_CFLAGS = -MDd -Od -Z7
-
-# MSVC compiler options for debug builds linked to MSVCRT.DLL
-# -MD - link with MSVCRT.LIB (Dynamically-linked, multi-threaded, debug C-runtime)
-# -Od - minimal optimization
-WIN_DEBUG_CFLAGS = -MD -Od -Zi -Fd$(OBJDIR)/$(PDBFILE)
-
-# MSVC compiler options for release (optimized) builds
-# -MD - link with MSVCRT.LIB (Dynamically-linked, multi-threaded, C-runtime)
-# -O2 - Optimize for speed
-# -G5 - Optimize for Pentium
-WIN_OPT_CFLAGS = -MD -O2
-
-ifdef BUILD_OPT
-OPTIMIZER = $(WIN_OPT_CFLAGS)
-else
-ifdef BUILD_IDG
-OPTIMIZER = $(WIN_IDG_CFLAGS)
-else
-OPTIMIZER = $(WIN_DEBUG_CFLAGS)
-endif
-endif
-
-OS_CFLAGS = -D_X86_=1 -DXP_WIN -DXP_WIN32 -DWIN32 -D_WINDOWS -D_WIN32 $(WIN_CFLAGS)
-JSDLL_CFLAGS = -DEXPORT_JS_API
-OS_LIBS = -lm -lc
-
-PREBUILT_CPUCFG = 1
-USE_MSVC = 1
-
-LIB_LINK_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib oldnames.lib -nologo\
- -subsystem:windows -dll -debug -pdb:$(OBJDIR)/$(PDBFILE)\
- -machine:I386\
- -opt:ref -opt:noicf
-
-EXE_LINK_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib oldnames.lib -nologo\
- -subsystem:console -debug -pdb:$(OBJDIR)/$(PDBFILE)\
- -machine:I386\
- -opt:ref -opt:noicf
-
-# CAFEDIR = t:/cafe
-# JCLASSPATH = $(CAFEDIR)/Java/Lib/classes.zip
-# JAVAC = $(CAFEDIR)/Bin/sj.exe
-# JAVAH = $(CAFEDIR)/Java/Bin/javah.exe
-# JCFLAGS = -I$(CAFEDIR)/Java/Include -I$(CAFEDIR)/Java/Include/win32
Index: ossp-pkg/js/src/config/dgux.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/config/Attic/dgux.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/config/Attic/dgux.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/config/dgux.mk' 2>/dev/null
--- ossp-pkg/js/src/config/dgux.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,64 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# Config stuff for Data General DG/UX
-#
-
-#
-# Initial DG/UX port by Marc Fraioli (fraioli@dg-rtp.dg.com)
-#
-
-AS = as
-CC = gcc
-CCC = g++
-
-RANLIB = echo
-
-#
-# _DGUX_SOURCE is needed to turn on a lot of stuff in the headers if
-# you're not using DG's compiler. It shouldn't hurt if you are.
-#
-# _POSIX4A_DRAFT10_SOURCE is needed to pick up localtime_r, used in
-# prtime.c
-#
-OS_CFLAGS = -DXP_UNIX -DSVR4 -DSYSV -DDGUX -D_DGUX_SOURCE -D_POSIX4A_DRAFT10_SOURCE -DHAVE_LOCALTIME_R
-OS_LIBS = -lsocket -lnsl
-
-NOSUCHFILE = /no-such-file
Index: ossp-pkg/js/src/fdlibm/fdlibm.mak
RCS File: /v/ossp/cvs/ossp-pkg/js/src/fdlibm/Attic/fdlibm.mak,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/fdlibm/Attic/fdlibm.mak,v' | diff -u - /dev/null -L'ossp-pkg/js/src/fdlibm/fdlibm.mak' 2>/dev/null
--- ossp-pkg/js/src/fdlibm/fdlibm.mak
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,1453 +0,0 @@
-# Microsoft Developer Studio Generated NMAKE File, Format Version 4.20
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Static Library" 0x0104
-
-!IF "$(CFG)" == ""
-CFG=fdlibm - Win32 Debug
-!MESSAGE No configuration specified. Defaulting to fdlibm - Win32 Debug.
-!ENDIF
-
-!IF "$(CFG)" != "fdlibm - Win32 Release" && "$(CFG)" != "fdlibm - Win32 Debug"
-!MESSAGE Invalid configuration "$(CFG)" specified.
-!MESSAGE You can specify a configuration when running NMAKE on this makefile
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE
-!MESSAGE NMAKE /f "fdlibm.mak" CFG="fdlibm - Win32 Debug"
-!MESSAGE
-!MESSAGE Possible choices for configuration are:
-!MESSAGE
-!MESSAGE "fdlibm - Win32 Release" (based on "Win32 (x86) Static Library")
-!MESSAGE "fdlibm - Win32 Debug" (based on "Win32 (x86) Static Library")
-!MESSAGE
-!ERROR An invalid configuration is specified.
-!ENDIF
-
-!IF "$(OS)" == "Windows_NT"
-NULL=
-!ELSE
-NULL=nul
-!ENDIF
-################################################################################
-# Begin Project
-CPP=cl.exe
-
-!IF "$(CFG)" == "fdlibm - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "fdlibm__"
-# PROP BASE Intermediate_Dir "fdlibm__"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "fdlibm__"
-# PROP Intermediate_Dir "fdlibm__"
-# PROP Target_Dir ""
-OUTDIR=.\fdlibm__
-INTDIR=.\fdlibm__
-
-ALL : "$(OUTDIR)\fdlibm.lib"
-
-CLEAN :
- -@erase "$(INTDIR)\e_acos.obj"
- -@erase "$(INTDIR)\e_acosh.obj"
- -@erase "$(INTDIR)\e_asin.obj"
- -@erase "$(INTDIR)\e_atan2.obj"
- -@erase "$(INTDIR)\e_atanh.obj"
- -@erase "$(INTDIR)\e_cosh.obj"
- -@erase "$(INTDIR)\e_exp.obj"
- -@erase "$(INTDIR)\e_fmod.obj"
- -@erase "$(INTDIR)\e_gamma.obj"
- -@erase "$(INTDIR)\e_gamma_r.obj"
- -@erase "$(INTDIR)\e_hypot.obj"
- -@erase "$(INTDIR)\e_j0.obj"
- -@erase "$(INTDIR)\e_j1.obj"
- -@erase "$(INTDIR)\e_jn.obj"
- -@erase "$(INTDIR)\e_lgamma.obj"
- -@erase "$(INTDIR)\e_lgamma_r.obj"
- -@erase "$(INTDIR)\e_log.obj"
- -@erase "$(INTDIR)\e_log10.obj"
- -@erase "$(INTDIR)\e_pow.obj"
- -@erase "$(INTDIR)\e_rem_pio2.obj"
- -@erase "$(INTDIR)\e_remainder.obj"
- -@erase "$(INTDIR)\e_scalb.obj"
- -@erase "$(INTDIR)\e_sinh.obj"
- -@erase "$(INTDIR)\e_sqrt.obj"
- -@erase "$(INTDIR)\k_cos.obj"
- -@erase "$(INTDIR)\k_rem_pio2.obj"
- -@erase "$(INTDIR)\k_sin.obj"
- -@erase "$(INTDIR)\k_standard.obj"
- -@erase "$(INTDIR)\k_tan.obj"
- -@erase "$(INTDIR)\s_asinh.obj"
- -@erase "$(INTDIR)\s_atan.obj"
- -@erase "$(INTDIR)\s_cbrt.obj"
- -@erase "$(INTDIR)\s_ceil.obj"
- -@erase "$(INTDIR)\s_copysign.obj"
- -@erase "$(INTDIR)\s_cos.obj"
- -@erase "$(INTDIR)\s_erf.obj"
- -@erase "$(INTDIR)\s_expm1.obj"
- -@erase "$(INTDIR)\s_fabs.obj"
- -@erase "$(INTDIR)\s_finite.obj"
- -@erase "$(INTDIR)\s_floor.obj"
- -@erase "$(INTDIR)\s_frexp.obj"
- -@erase "$(INTDIR)\s_ilogb.obj"
- -@erase "$(INTDIR)\s_isnan.obj"
- -@erase "$(INTDIR)\s_ldexp.obj"
- -@erase "$(INTDIR)\s_lib_version.obj"
- -@erase "$(INTDIR)\s_log1p.obj"
- -@erase "$(INTDIR)\s_logb.obj"
- -@erase "$(INTDIR)\s_matherr.obj"
- -@erase "$(INTDIR)\s_modf.obj"
- -@erase "$(INTDIR)\s_nextafter.obj"
- -@erase "$(INTDIR)\s_rint.obj"
- -@erase "$(INTDIR)\s_scalbn.obj"
- -@erase "$(INTDIR)\s_signgam.obj"
- -@erase "$(INTDIR)\s_significand.obj"
- -@erase "$(INTDIR)\s_sin.obj"
- -@erase "$(INTDIR)\s_tan.obj"
- -@erase "$(INTDIR)\s_tanh.obj"
- -@erase "$(INTDIR)\w_acos.obj"
- -@erase "$(INTDIR)\w_acosh.obj"
- -@erase "$(INTDIR)\w_asin.obj"
- -@erase "$(INTDIR)\w_atan2.obj"
- -@erase "$(INTDIR)\w_atanh.obj"
- -@erase "$(INTDIR)\w_cosh.obj"
- -@erase "$(INTDIR)\w_exp.obj"
- -@erase "$(INTDIR)\w_fmod.obj"
- -@erase "$(INTDIR)\w_gamma.obj"
- -@erase "$(INTDIR)\w_gamma_r.obj"
- -@erase "$(INTDIR)\w_hypot.obj"
- -@erase "$(INTDIR)\w_j0.obj"
- -@erase "$(INTDIR)\w_j1.obj"
- -@erase "$(INTDIR)\w_jn.obj"
- -@erase "$(INTDIR)\w_lgamma.obj"
- -@erase "$(INTDIR)\w_lgamma_r.obj"
- -@erase "$(INTDIR)\w_log.obj"
- -@erase "$(INTDIR)\w_log10.obj"
- -@erase "$(INTDIR)\w_pow.obj"
- -@erase "$(INTDIR)\w_remainder.obj"
- -@erase "$(INTDIR)\w_scalb.obj"
- -@erase "$(INTDIR)\w_sinh.obj"
- -@erase "$(INTDIR)\w_sqrt.obj"
- -@erase "$(OUTDIR)\fdlibm.lib"
-
-"$(OUTDIR)" :
- if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c
-# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c
-CPP_PROJ=/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS"\
- /Fp"$(INTDIR)/fdlibm.pch" /YX /Fo"$(INTDIR)/" /c
-CPP_OBJS=.\fdlibm__/
-CPP_SBRS=.\.
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/fdlibm.bsc"
-BSC32_SBRS= \
-
-LIB32=link.exe -lib
-# ADD BASE LIB32 /nologo
-# ADD LIB32 /nologo
-LIB32_FLAGS=/nologo /out:"$(OUTDIR)/fdlibm.lib"
-LIB32_OBJS= \
- "$(INTDIR)\e_acos.obj" \
- "$(INTDIR)\e_acosh.obj" \
- "$(INTDIR)\e_asin.obj" \
- "$(INTDIR)\e_atan2.obj" \
- "$(INTDIR)\e_atanh.obj" \
- "$(INTDIR)\e_cosh.obj" \
- "$(INTDIR)\e_exp.obj" \
- "$(INTDIR)\e_fmod.obj" \
- "$(INTDIR)\e_gamma.obj" \
- "$(INTDIR)\e_gamma_r.obj" \
- "$(INTDIR)\e_hypot.obj" \
- "$(INTDIR)\e_j0.obj" \
- "$(INTDIR)\e_j1.obj" \
- "$(INTDIR)\e_jn.obj" \
- "$(INTDIR)\e_lgamma.obj" \
- "$(INTDIR)\e_lgamma_r.obj" \
- "$(INTDIR)\e_log.obj" \
- "$(INTDIR)\e_log10.obj" \
- "$(INTDIR)\e_pow.obj" \
- "$(INTDIR)\e_rem_pio2.obj" \
- "$(INTDIR)\e_remainder.obj" \
- "$(INTDIR)\e_scalb.obj" \
- "$(INTDIR)\e_sinh.obj" \
- "$(INTDIR)\e_sqrt.obj" \
- "$(INTDIR)\k_cos.obj" \
- "$(INTDIR)\k_rem_pio2.obj" \
- "$(INTDIR)\k_sin.obj" \
- "$(INTDIR)\k_standard.obj" \
- "$(INTDIR)\k_tan.obj" \
- "$(INTDIR)\s_asinh.obj" \
- "$(INTDIR)\s_atan.obj" \
- "$(INTDIR)\s_cbrt.obj" \
- "$(INTDIR)\s_ceil.obj" \
- "$(INTDIR)\s_copysign.obj" \
- "$(INTDIR)\s_cos.obj" \
- "$(INTDIR)\s_erf.obj" \
- "$(INTDIR)\s_expm1.obj" \
- "$(INTDIR)\s_fabs.obj" \
- "$(INTDIR)\s_finite.obj" \
- "$(INTDIR)\s_floor.obj" \
- "$(INTDIR)\s_frexp.obj" \
- "$(INTDIR)\s_ilogb.obj" \
- "$(INTDIR)\s_isnan.obj" \
- "$(INTDIR)\s_ldexp.obj" \
- "$(INTDIR)\s_lib_version.obj" \
- "$(INTDIR)\s_log1p.obj" \
- "$(INTDIR)\s_logb.obj" \
- "$(INTDIR)\s_matherr.obj" \
- "$(INTDIR)\s_modf.obj" \
- "$(INTDIR)\s_nextafter.obj" \
- "$(INTDIR)\s_rint.obj" \
- "$(INTDIR)\s_scalbn.obj" \
- "$(INTDIR)\s_signgam.obj" \
- "$(INTDIR)\s_significand.obj" \
- "$(INTDIR)\s_sin.obj" \
- "$(INTDIR)\s_tan.obj" \
- "$(INTDIR)\s_tanh.obj" \
- "$(INTDIR)\w_acos.obj" \
- "$(INTDIR)\w_acosh.obj" \
- "$(INTDIR)\w_asin.obj" \
- "$(INTDIR)\w_atan2.obj" \
- "$(INTDIR)\w_atanh.obj" \
- "$(INTDIR)\w_cosh.obj" \
- "$(INTDIR)\w_exp.obj" \
- "$(INTDIR)\w_fmod.obj" \
- "$(INTDIR)\w_gamma.obj" \
- "$(INTDIR)\w_gamma_r.obj" \
- "$(INTDIR)\w_hypot.obj" \
- "$(INTDIR)\w_j0.obj" \
- "$(INTDIR)\w_j1.obj" \
- "$(INTDIR)\w_jn.obj" \
- "$(INTDIR)\w_lgamma.obj" \
- "$(INTDIR)\w_lgamma_r.obj" \
- "$(INTDIR)\w_log.obj" \
- "$(INTDIR)\w_log10.obj" \
- "$(INTDIR)\w_pow.obj" \
- "$(INTDIR)\w_remainder.obj" \
- "$(INTDIR)\w_scalb.obj" \
- "$(INTDIR)\w_sinh.obj" \
- "$(INTDIR)\w_sqrt.obj"
-
-"$(OUTDIR)\fdlibm.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
- $(LIB32) @<<
- $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "fdlibm_0"
-# PROP BASE Intermediate_Dir "fdlibm_0"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "fdlibm_0"
-# PROP Intermediate_Dir "fdlibm_0"
-# PROP Target_Dir ""
-OUTDIR=.\fdlibm_0
-INTDIR=.\fdlibm_0
-
-ALL : "$(OUTDIR)\fdlibm.lib"
-
-CLEAN :
- -@erase "$(INTDIR)\e_acos.obj"
- -@erase "$(INTDIR)\e_acosh.obj"
- -@erase "$(INTDIR)\e_asin.obj"
- -@erase "$(INTDIR)\e_atan2.obj"
- -@erase "$(INTDIR)\e_atanh.obj"
- -@erase "$(INTDIR)\e_cosh.obj"
- -@erase "$(INTDIR)\e_exp.obj"
- -@erase "$(INTDIR)\e_fmod.obj"
- -@erase "$(INTDIR)\e_gamma.obj"
- -@erase "$(INTDIR)\e_gamma_r.obj"
- -@erase "$(INTDIR)\e_hypot.obj"
- -@erase "$(INTDIR)\e_j0.obj"
- -@erase "$(INTDIR)\e_j1.obj"
- -@erase "$(INTDIR)\e_jn.obj"
- -@erase "$(INTDIR)\e_lgamma.obj"
- -@erase "$(INTDIR)\e_lgamma_r.obj"
- -@erase "$(INTDIR)\e_log.obj"
- -@erase "$(INTDIR)\e_log10.obj"
- -@erase "$(INTDIR)\e_pow.obj"
- -@erase "$(INTDIR)\e_rem_pio2.obj"
- -@erase "$(INTDIR)\e_remainder.obj"
- -@erase "$(INTDIR)\e_scalb.obj"
- -@erase "$(INTDIR)\e_sinh.obj"
- -@erase "$(INTDIR)\e_sqrt.obj"
- -@erase "$(INTDIR)\k_cos.obj"
- -@erase "$(INTDIR)\k_rem_pio2.obj"
- -@erase "$(INTDIR)\k_sin.obj"
- -@erase "$(INTDIR)\k_standard.obj"
- -@erase "$(INTDIR)\k_tan.obj"
- -@erase "$(INTDIR)\s_asinh.obj"
- -@erase "$(INTDIR)\s_atan.obj"
- -@erase "$(INTDIR)\s_cbrt.obj"
- -@erase "$(INTDIR)\s_ceil.obj"
- -@erase "$(INTDIR)\s_copysign.obj"
- -@erase "$(INTDIR)\s_cos.obj"
- -@erase "$(INTDIR)\s_erf.obj"
- -@erase "$(INTDIR)\s_expm1.obj"
- -@erase "$(INTDIR)\s_fabs.obj"
- -@erase "$(INTDIR)\s_finite.obj"
- -@erase "$(INTDIR)\s_floor.obj"
- -@erase "$(INTDIR)\s_frexp.obj"
- -@erase "$(INTDIR)\s_ilogb.obj"
- -@erase "$(INTDIR)\s_isnan.obj"
- -@erase "$(INTDIR)\s_ldexp.obj"
- -@erase "$(INTDIR)\s_lib_version.obj"
- -@erase "$(INTDIR)\s_log1p.obj"
- -@erase "$(INTDIR)\s_logb.obj"
- -@erase "$(INTDIR)\s_matherr.obj"
- -@erase "$(INTDIR)\s_modf.obj"
- -@erase "$(INTDIR)\s_nextafter.obj"
- -@erase "$(INTDIR)\s_rint.obj"
- -@erase "$(INTDIR)\s_scalbn.obj"
- -@erase "$(INTDIR)\s_signgam.obj"
- -@erase "$(INTDIR)\s_significand.obj"
- -@erase "$(INTDIR)\s_sin.obj"
- -@erase "$(INTDIR)\s_tan.obj"
- -@erase "$(INTDIR)\s_tanh.obj"
- -@erase "$(INTDIR)\w_acos.obj"
- -@erase "$(INTDIR)\w_acosh.obj"
- -@erase "$(INTDIR)\w_asin.obj"
- -@erase "$(INTDIR)\w_atan2.obj"
- -@erase "$(INTDIR)\w_atanh.obj"
- -@erase "$(INTDIR)\w_cosh.obj"
- -@erase "$(INTDIR)\w_exp.obj"
- -@erase "$(INTDIR)\w_fmod.obj"
- -@erase "$(INTDIR)\w_gamma.obj"
- -@erase "$(INTDIR)\w_gamma_r.obj"
- -@erase "$(INTDIR)\w_hypot.obj"
- -@erase "$(INTDIR)\w_j0.obj"
- -@erase "$(INTDIR)\w_j1.obj"
- -@erase "$(INTDIR)\w_jn.obj"
- -@erase "$(INTDIR)\w_lgamma.obj"
- -@erase "$(INTDIR)\w_lgamma_r.obj"
- -@erase "$(INTDIR)\w_log.obj"
- -@erase "$(INTDIR)\w_log10.obj"
- -@erase "$(INTDIR)\w_pow.obj"
- -@erase "$(INTDIR)\w_remainder.obj"
- -@erase "$(INTDIR)\w_scalb.obj"
- -@erase "$(INTDIR)\w_sinh.obj"
- -@erase "$(INTDIR)\w_sqrt.obj"
- -@erase "$(OUTDIR)\fdlibm.lib"
-
-"$(OUTDIR)" :
- if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-# ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c
-# ADD CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /c
-CPP_PROJ=/nologo /MLd /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS"\
- /Fp"$(INTDIR)/fdlibm.pch" /YX /Fo"$(INTDIR)/" /c
-CPP_OBJS=.\fdlibm_0/
-CPP_SBRS=.\.
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/fdlibm.bsc"
-BSC32_SBRS= \
-
-LIB32=link.exe -lib
-# ADD BASE LIB32 /nologo
-# ADD LIB32 /nologo
-LIB32_FLAGS=/nologo /out:"$(OUTDIR)/fdlibm.lib"
-LIB32_OBJS= \
- "$(INTDIR)\e_acos.obj" \
- "$(INTDIR)\e_acosh.obj" \
- "$(INTDIR)\e_asin.obj" \
- "$(INTDIR)\e_atan2.obj" \
- "$(INTDIR)\e_atanh.obj" \
- "$(INTDIR)\e_cosh.obj" \
- "$(INTDIR)\e_exp.obj" \
- "$(INTDIR)\e_fmod.obj" \
- "$(INTDIR)\e_gamma.obj" \
- "$(INTDIR)\e_gamma_r.obj" \
- "$(INTDIR)\e_hypot.obj" \
- "$(INTDIR)\e_j0.obj" \
- "$(INTDIR)\e_j1.obj" \
- "$(INTDIR)\e_jn.obj" \
- "$(INTDIR)\e_lgamma.obj" \
- "$(INTDIR)\e_lgamma_r.obj" \
- "$(INTDIR)\e_log.obj" \
- "$(INTDIR)\e_log10.obj" \
- "$(INTDIR)\e_pow.obj" \
- "$(INTDIR)\e_rem_pio2.obj" \
- "$(INTDIR)\e_remainder.obj" \
- "$(INTDIR)\e_scalb.obj" \
- "$(INTDIR)\e_sinh.obj" \
- "$(INTDIR)\e_sqrt.obj" \
- "$(INTDIR)\k_cos.obj" \
- "$(INTDIR)\k_rem_pio2.obj" \
- "$(INTDIR)\k_sin.obj" \
- "$(INTDIR)\k_standard.obj" \
- "$(INTDIR)\k_tan.obj" \
- "$(INTDIR)\s_asinh.obj" \
- "$(INTDIR)\s_atan.obj" \
- "$(INTDIR)\s_cbrt.obj" \
- "$(INTDIR)\s_ceil.obj" \
- "$(INTDIR)\s_copysign.obj" \
- "$(INTDIR)\s_cos.obj" \
- "$(INTDIR)\s_erf.obj" \
- "$(INTDIR)\s_expm1.obj" \
- "$(INTDIR)\s_fabs.obj" \
- "$(INTDIR)\s_finite.obj" \
- "$(INTDIR)\s_floor.obj" \
- "$(INTDIR)\s_frexp.obj" \
- "$(INTDIR)\s_ilogb.obj" \
- "$(INTDIR)\s_isnan.obj" \
- "$(INTDIR)\s_ldexp.obj" \
- "$(INTDIR)\s_lib_version.obj" \
- "$(INTDIR)\s_log1p.obj" \
- "$(INTDIR)\s_logb.obj" \
- "$(INTDIR)\s_matherr.obj" \
- "$(INTDIR)\s_modf.obj" \
- "$(INTDIR)\s_nextafter.obj" \
- "$(INTDIR)\s_rint.obj" \
- "$(INTDIR)\s_scalbn.obj" \
- "$(INTDIR)\s_signgam.obj" \
- "$(INTDIR)\s_significand.obj" \
- "$(INTDIR)\s_sin.obj" \
- "$(INTDIR)\s_tan.obj" \
- "$(INTDIR)\s_tanh.obj" \
- "$(INTDIR)\w_acos.obj" \
- "$(INTDIR)\w_acosh.obj" \
- "$(INTDIR)\w_asin.obj" \
- "$(INTDIR)\w_atan2.obj" \
- "$(INTDIR)\w_atanh.obj" \
- "$(INTDIR)\w_cosh.obj" \
- "$(INTDIR)\w_exp.obj" \
- "$(INTDIR)\w_fmod.obj" \
- "$(INTDIR)\w_gamma.obj" \
- "$(INTDIR)\w_gamma_r.obj" \
- "$(INTDIR)\w_hypot.obj" \
- "$(INTDIR)\w_j0.obj" \
- "$(INTDIR)\w_j1.obj" \
- "$(INTDIR)\w_jn.obj" \
- "$(INTDIR)\w_lgamma.obj" \
- "$(INTDIR)\w_lgamma_r.obj" \
- "$(INTDIR)\w_log.obj" \
- "$(INTDIR)\w_log10.obj" \
- "$(INTDIR)\w_pow.obj" \
- "$(INTDIR)\w_remainder.obj" \
- "$(INTDIR)\w_scalb.obj" \
- "$(INTDIR)\w_sinh.obj" \
- "$(INTDIR)\w_sqrt.obj"
-
-"$(OUTDIR)\fdlibm.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
- $(LIB32) @<<
- $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
-<<
-
-!ENDIF
-
-.c{$(CPP_OBJS)}.obj:
- $(CPP) $(CPP_PROJ) $<
-
-.cpp{$(CPP_OBJS)}.obj:
- $(CPP) $(CPP_PROJ) $<
-
-.cxx{$(CPP_OBJS)}.obj:
- $(CPP) $(CPP_PROJ) $<
-
-.c{$(CPP_SBRS)}.sbr:
- $(CPP) $(CPP_PROJ) $<
-
-.cpp{$(CPP_SBRS)}.sbr:
- $(CPP) $(CPP_PROJ) $<
-
-.cxx{$(CPP_SBRS)}.sbr:
- $(CPP) $(CPP_PROJ) $<
-
-################################################################################
-# Begin Target
-
-# Name "fdlibm - Win32 Release"
-# Name "fdlibm - Win32 Debug"
-
-!IF "$(CFG)" == "fdlibm - Win32 Release"
-
-!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
-
-!ENDIF
-
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_sqrt.c
-DEP_CPP_W_SQR=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_sqrt.obj" : $(SOURCE) $(DEP_CPP_W_SQR) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_acosh.c
-DEP_CPP_E_ACO=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_acosh.obj" : $(SOURCE) $(DEP_CPP_E_ACO) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_asin.c
-DEP_CPP_E_ASI=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_asin.obj" : $(SOURCE) $(DEP_CPP_E_ASI) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_atan2.c
-DEP_CPP_E_ATA=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_atan2.obj" : $(SOURCE) $(DEP_CPP_E_ATA) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_atanh.c
-DEP_CPP_E_ATAN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_atanh.obj" : $(SOURCE) $(DEP_CPP_E_ATAN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_cosh.c
-DEP_CPP_E_COS=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_cosh.obj" : $(SOURCE) $(DEP_CPP_E_COS) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_exp.c
-DEP_CPP_E_EXP=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_exp.obj" : $(SOURCE) $(DEP_CPP_E_EXP) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_fmod.c
-DEP_CPP_E_FMO=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_fmod.obj" : $(SOURCE) $(DEP_CPP_E_FMO) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_gamma.c
-DEP_CPP_E_GAM=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_gamma.obj" : $(SOURCE) $(DEP_CPP_E_GAM) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_gamma_r.c
-DEP_CPP_E_GAMM=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_gamma_r.obj" : $(SOURCE) $(DEP_CPP_E_GAMM) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_hypot.c
-DEP_CPP_E_HYP=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_hypot.obj" : $(SOURCE) $(DEP_CPP_E_HYP) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_j0.c
-DEP_CPP_E_J0_=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_j0.obj" : $(SOURCE) $(DEP_CPP_E_J0_) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_j1.c
-DEP_CPP_E_J1_=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_j1.obj" : $(SOURCE) $(DEP_CPP_E_J1_) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_jn.c
-DEP_CPP_E_JN_=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_jn.obj" : $(SOURCE) $(DEP_CPP_E_JN_) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_lgamma.c
-DEP_CPP_E_LGA=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_lgamma.obj" : $(SOURCE) $(DEP_CPP_E_LGA) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_lgamma_r.c
-DEP_CPP_E_LGAM=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_lgamma_r.obj" : $(SOURCE) $(DEP_CPP_E_LGAM) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_log.c
-DEP_CPP_E_LOG=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_log.obj" : $(SOURCE) $(DEP_CPP_E_LOG) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_log10.c
-DEP_CPP_E_LOG1=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_log10.obj" : $(SOURCE) $(DEP_CPP_E_LOG1) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_pow.c
-DEP_CPP_E_POW=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_pow.obj" : $(SOURCE) $(DEP_CPP_E_POW) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_rem_pio2.c
-DEP_CPP_E_REM=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_rem_pio2.obj" : $(SOURCE) $(DEP_CPP_E_REM) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_remainder.c
-DEP_CPP_E_REMA=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_remainder.obj" : $(SOURCE) $(DEP_CPP_E_REMA) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_scalb.c
-DEP_CPP_E_SCA=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_scalb.obj" : $(SOURCE) $(DEP_CPP_E_SCA) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_sinh.c
-DEP_CPP_E_SIN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_sinh.obj" : $(SOURCE) $(DEP_CPP_E_SIN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_sqrt.c
-DEP_CPP_E_SQR=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_sqrt.obj" : $(SOURCE) $(DEP_CPP_E_SQR) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\fdlibm.h
-
-!IF "$(CFG)" == "fdlibm - Win32 Release"
-
-!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\k_cos.c
-DEP_CPP_K_COS=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\k_cos.obj" : $(SOURCE) $(DEP_CPP_K_COS) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\k_rem_pio2.c
-DEP_CPP_K_REM=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\k_rem_pio2.obj" : $(SOURCE) $(DEP_CPP_K_REM) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\k_sin.c
-DEP_CPP_K_SIN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\k_sin.obj" : $(SOURCE) $(DEP_CPP_K_SIN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\k_standard.c
-DEP_CPP_K_STA=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\k_standard.obj" : $(SOURCE) $(DEP_CPP_K_STA) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\k_tan.c
-DEP_CPP_K_TAN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\k_tan.obj" : $(SOURCE) $(DEP_CPP_K_TAN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_asinh.c
-DEP_CPP_S_ASI=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_asinh.obj" : $(SOURCE) $(DEP_CPP_S_ASI) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_atan.c
-DEP_CPP_S_ATA=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_atan.obj" : $(SOURCE) $(DEP_CPP_S_ATA) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_cbrt.c
-DEP_CPP_S_CBR=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_cbrt.obj" : $(SOURCE) $(DEP_CPP_S_CBR) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_ceil.c
-DEP_CPP_S_CEI=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_ceil.obj" : $(SOURCE) $(DEP_CPP_S_CEI) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_copysign.c
-DEP_CPP_S_COP=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_copysign.obj" : $(SOURCE) $(DEP_CPP_S_COP) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_cos.c
-DEP_CPP_S_COS=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_cos.obj" : $(SOURCE) $(DEP_CPP_S_COS) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_erf.c
-DEP_CPP_S_ERF=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_erf.obj" : $(SOURCE) $(DEP_CPP_S_ERF) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_expm1.c
-DEP_CPP_S_EXP=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_expm1.obj" : $(SOURCE) $(DEP_CPP_S_EXP) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_fabs.c
-DEP_CPP_S_FAB=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_fabs.obj" : $(SOURCE) $(DEP_CPP_S_FAB) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_finite.c
-DEP_CPP_S_FIN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_finite.obj" : $(SOURCE) $(DEP_CPP_S_FIN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_floor.c
-DEP_CPP_S_FLO=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_floor.obj" : $(SOURCE) $(DEP_CPP_S_FLO) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_frexp.c
-DEP_CPP_S_FRE=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_frexp.obj" : $(SOURCE) $(DEP_CPP_S_FRE) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_ilogb.c
-DEP_CPP_S_ILO=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_ilogb.obj" : $(SOURCE) $(DEP_CPP_S_ILO) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_isnan.c
-DEP_CPP_S_ISN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_isnan.obj" : $(SOURCE) $(DEP_CPP_S_ISN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_ldexp.c
-DEP_CPP_S_LDE=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_ldexp.obj" : $(SOURCE) $(DEP_CPP_S_LDE) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_lib_version.c
-DEP_CPP_S_LIB=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_lib_version.obj" : $(SOURCE) $(DEP_CPP_S_LIB) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_log1p.c
-DEP_CPP_S_LOG=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_log1p.obj" : $(SOURCE) $(DEP_CPP_S_LOG) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_logb.c
-DEP_CPP_S_LOGB=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_logb.obj" : $(SOURCE) $(DEP_CPP_S_LOGB) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_matherr.c
-DEP_CPP_S_MAT=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_matherr.obj" : $(SOURCE) $(DEP_CPP_S_MAT) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_modf.c
-DEP_CPP_S_MOD=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_modf.obj" : $(SOURCE) $(DEP_CPP_S_MOD) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_nextafter.c
-DEP_CPP_S_NEX=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_nextafter.obj" : $(SOURCE) $(DEP_CPP_S_NEX) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_rint.c
-DEP_CPP_S_RIN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_rint.obj" : $(SOURCE) $(DEP_CPP_S_RIN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_scalbn.c
-DEP_CPP_S_SCA=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_scalbn.obj" : $(SOURCE) $(DEP_CPP_S_SCA) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_signgam.c
-DEP_CPP_S_SIG=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_signgam.obj" : $(SOURCE) $(DEP_CPP_S_SIG) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_significand.c
-DEP_CPP_S_SIGN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_significand.obj" : $(SOURCE) $(DEP_CPP_S_SIGN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_sin.c
-DEP_CPP_S_SIN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_sin.obj" : $(SOURCE) $(DEP_CPP_S_SIN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_tan.c
-DEP_CPP_S_TAN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_tan.obj" : $(SOURCE) $(DEP_CPP_S_TAN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\s_tanh.c
-DEP_CPP_S_TANH=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\s_tanh.obj" : $(SOURCE) $(DEP_CPP_S_TANH) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_acos.c
-DEP_CPP_W_ACO=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_acos.obj" : $(SOURCE) $(DEP_CPP_W_ACO) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_acosh.c
-DEP_CPP_W_ACOS=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_acosh.obj" : $(SOURCE) $(DEP_CPP_W_ACOS) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_asin.c
-DEP_CPP_W_ASI=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_asin.obj" : $(SOURCE) $(DEP_CPP_W_ASI) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_atan2.c
-DEP_CPP_W_ATA=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_atan2.obj" : $(SOURCE) $(DEP_CPP_W_ATA) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_atanh.c
-DEP_CPP_W_ATAN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_atanh.obj" : $(SOURCE) $(DEP_CPP_W_ATAN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_cosh.c
-DEP_CPP_W_COS=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_cosh.obj" : $(SOURCE) $(DEP_CPP_W_COS) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_exp.c
-DEP_CPP_W_EXP=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_exp.obj" : $(SOURCE) $(DEP_CPP_W_EXP) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_fmod.c
-DEP_CPP_W_FMO=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_fmod.obj" : $(SOURCE) $(DEP_CPP_W_FMO) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_gamma.c
-DEP_CPP_W_GAM=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_gamma.obj" : $(SOURCE) $(DEP_CPP_W_GAM) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_gamma_r.c
-DEP_CPP_W_GAMM=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_gamma_r.obj" : $(SOURCE) $(DEP_CPP_W_GAMM) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_hypot.c
-DEP_CPP_W_HYP=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_hypot.obj" : $(SOURCE) $(DEP_CPP_W_HYP) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_j0.c
-DEP_CPP_W_J0_=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_j0.obj" : $(SOURCE) $(DEP_CPP_W_J0_) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_j1.c
-DEP_CPP_W_J1_=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_j1.obj" : $(SOURCE) $(DEP_CPP_W_J1_) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_jn.c
-DEP_CPP_W_JN_=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_jn.obj" : $(SOURCE) $(DEP_CPP_W_JN_) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_lgamma.c
-DEP_CPP_W_LGA=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_lgamma.obj" : $(SOURCE) $(DEP_CPP_W_LGA) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_lgamma_r.c
-DEP_CPP_W_LGAM=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_lgamma_r.obj" : $(SOURCE) $(DEP_CPP_W_LGAM) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_log.c
-DEP_CPP_W_LOG=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_log.obj" : $(SOURCE) $(DEP_CPP_W_LOG) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_log10.c
-DEP_CPP_W_LOG1=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_log10.obj" : $(SOURCE) $(DEP_CPP_W_LOG1) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_pow.c
-DEP_CPP_W_POW=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_pow.obj" : $(SOURCE) $(DEP_CPP_W_POW) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_remainder.c
-DEP_CPP_W_REM=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_remainder.obj" : $(SOURCE) $(DEP_CPP_W_REM) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_scalb.c
-DEP_CPP_W_SCA=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_scalb.obj" : $(SOURCE) $(DEP_CPP_W_SCA) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\w_sinh.c
-DEP_CPP_W_SIN=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\w_sinh.obj" : $(SOURCE) $(DEP_CPP_W_SIN) "$(INTDIR)"
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\e_acos.c
-DEP_CPP_E_ACOS=\
- ".\fdlibm.h"\
-
-
-"$(INTDIR)\e_acos.obj" : $(SOURCE) $(DEP_CPP_E_ACOS) "$(INTDIR)"
-
-
-# End Source File
-# End Target
-# End Project
-################################################################################
Index: ossp-pkg/js/src/fdlibm/fdlibm.mdp
RCS File: /v/ossp/cvs/ossp-pkg/js/src/fdlibm/Attic/fdlibm.mdp,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/fdlibm/Attic/fdlibm.mdp,v' | diff -u /dev/null - -L'ossp-pkg/js/src/fdlibm/fdlibm.mdp' 2>/dev/null
Binary files ossp-pkg/js/src/fdlibm/fdlibm.mdp and - differ
Index: ossp-pkg/js/src/js.mak
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/js.mak,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/js.mak,v' | diff -u /dev/null - -L'ossp-pkg/js/src/js.mak' 2>/dev/null
--- ossp-pkg/js/src/js.mak
+++ - 2025-04-04 17:30:35.777355209 +0200
@@ -0,0 +1,4115 @@
+# Microsoft Developer Studio Generated NMAKE File, Format Version 4.20
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
+# TARGTYPE "Win32 (x86) Static Library" 0x0104
+
+!IF "$(CFG)" == ""
+CFG=jsshell - Win32 Debug
+!MESSAGE No configuration specified. Defaulting to jsshell - Win32 Debug.
+!ENDIF
+
+!IF "$(CFG)" != "js - Win32 Release" && "$(CFG)" != "js - Win32 Debug" &&\
+ "$(CFG)" != "jsshell - Win32 Release" && "$(CFG)" != "jsshell - Win32 Debug" &&\
+ "$(CFG)" != "fdlibm - Win32 Release" && "$(CFG)" != "fdlibm - Win32 Debug"
+!MESSAGE Invalid configuration "$(CFG)" specified.
+!MESSAGE You can specify a configuration when running NMAKE on this makefile
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "js.mak" CFG="jsshell - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "js - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
+!MESSAGE "js - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
+!MESSAGE "jsshell - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "jsshell - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE "fdlibm - Win32 Release" (based on "Win32 (x86) Static Library")
+!MESSAGE "fdlibm - Win32 Debug" (based on "Win32 (x86) Static Library")
+!MESSAGE
+!ERROR An invalid configuration is specified.
+!ENDIF
+
+!IF "$(OS)" == "Windows_NT"
+NULL=
+!ELSE
+NULL=nul
+!ENDIF
+################################################################################
+# Begin Project
+# PROP Target_Last_Scanned "jsshell - Win32 Debug"
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "js___Wi1"
+# PROP BASE Intermediate_Dir "js___Wi1"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Target_Dir ""
+OUTDIR=.\Release
+INTDIR=.\Release
+
+ALL : "fdlibm - Win32 Release" "$(OUTDIR)\js32.dll"
+
+CLEAN :
+ -@erase "$(INTDIR)\jsapi.obj"
+ -@erase "$(INTDIR)\jsarena.obj"
+ -@erase "$(INTDIR)\jsarray.obj"
+ -@erase "$(INTDIR)\jsatom.obj"
+ -@erase "$(INTDIR)\jsbool.obj"
+ -@erase "$(INTDIR)\jscntxt.obj"
+ -@erase "$(INTDIR)\jsdate.obj"
+ -@erase "$(INTDIR)\jsdbgapi.obj"
+ -@erase "$(INTDIR)\jsdhash.obj"
+ -@erase "$(INTDIR)\jsdtoa.obj"
+ -@erase "$(INTDIR)\jsemit.obj"
+ -@erase "$(INTDIR)\jsexn.obj"
+ -@erase "$(INTDIR)\jsfun.obj"
+ -@erase "$(INTDIR)\jsgc.obj"
+ -@erase "$(INTDIR)\jshash.obj"
+ -@erase "$(INTDIR)\jsinterp.obj"
+ -@erase "$(INTDIR)\jslock.obj"
+ -@erase "$(INTDIR)\jslog2.obj"
+ -@erase "$(INTDIR)\jslong.obj"
+ -@erase "$(INTDIR)\jsmath.obj"
+ -@erase "$(INTDIR)\jsnum.obj"
+ -@erase "$(INTDIR)\jsobj.obj"
+ -@erase "$(INTDIR)\jsopcode.obj"
+ -@erase "$(INTDIR)\jsparse.obj"
+ -@erase "$(INTDIR)\jsprf.obj"
+ -@erase "$(INTDIR)\jsregexp.obj"
+ -@erase "$(INTDIR)\jsscan.obj"
+ -@erase "$(INTDIR)\jsscope.obj"
+ -@erase "$(INTDIR)\jsscript.obj"
+ -@erase "$(INTDIR)\jsstr.obj"
+ -@erase "$(INTDIR)\jsutil.obj"
+ -@erase "$(INTDIR)\jsxdrapi.obj"
+ -@erase "$(INTDIR)\jsxml.obj"
+ -@erase "$(INTDIR)\prmjtime.obj"
+ -@erase "$(OUTDIR)\js32.dll"
+ -@erase "$(OUTDIR)\js32.exp"
+ -@erase "$(OUTDIR)\js32.lib"
+
+"$(OUTDIR)" :
+ if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
+
+CPP=cl.exe
+# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D _X86_=1 /D "_WINDOWS" /YX /c
+# ADD CPP /nologo /MD /W3 /GX /O2 /D "NDEBUG" /D _X86_=1 /D "_WINDOWS" /D "WIN32" /D "XP_WIN" /D "JSFILE" /D "EXPORT_JS_API" /YX /c
+CPP_PROJ=/nologo /MD /W3 /GX /O2 /D "NDEBUG" /D _X86_=1 /D "_WINDOWS" /D "WIN32" /D\
+ "XP_WIN" /D "JSFILE" /D "EXPORT_JS_API" /Fp"$(INTDIR)/js.pch" /YX\
+ /Fo"$(INTDIR)/" /c
+CPP_OBJS=.\Release/
+CPP_SBRS=.\.
+
+.c{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.c{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+MTL=mktyplib.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /win32
+# ADD MTL /nologo /D "NDEBUG" /win32
+MTL_PROJ=/nologo /D "NDEBUG" /win32
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
+# ADD RSC /l 0x409 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+BSC32_FLAGS=/nologo /o"$(OUTDIR)/js.bsc"
+BSC32_SBRS= \
+
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386 /out:"Release/js32.dll"
+# SUBTRACT LINK32 /nodefaultlib
+LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
+ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\
+ odbccp32.lib /nologo /subsystem:windows /dll /incremental:no\
+ /pdb:"$(OUTDIR)/js32.pdb" /machine:I386 /out:"$(OUTDIR)/js32.dll"\
+ /implib:"$(OUTDIR)/js32.lib" /opt:ref /opt:noicf
+LINK32_OBJS= \
+ "$(INTDIR)\jsapi.obj" \
+ "$(INTDIR)\jsarena.obj" \
+ "$(INTDIR)\jsarray.obj" \
+ "$(INTDIR)\jsatom.obj" \
+ "$(INTDIR)\jsbool.obj" \
+ "$(INTDIR)\jscntxt.obj" \
+ "$(INTDIR)\jsdate.obj" \
+ "$(INTDIR)\jsdbgapi.obj" \
+ "$(INTDIR)\jsdhash.obj" \
+ "$(INTDIR)\jsdtoa.obj" \
+ "$(INTDIR)\jsemit.obj" \
+ "$(INTDIR)\jsexn.obj" \
+ "$(INTDIR)\jsfun.obj" \
+ "$(INTDIR)\jsgc.obj" \
+ "$(INTDIR)\jshash.obj" \
+ "$(INTDIR)\jsinterp.obj" \
+ "$(INTDIR)\jslock.obj" \
+ "$(INTDIR)\jslog2.obj" \
+ "$(INTDIR)\jslong.obj" \
+ "$(INTDIR)\jsmath.obj" \
+ "$(INTDIR)\jsnum.obj" \
+ "$(INTDIR)\jsobj.obj" \
+ "$(INTDIR)\jsopcode.obj" \
+ "$(INTDIR)\jsparse.obj" \
+ "$(INTDIR)\jsprf.obj" \
+ "$(INTDIR)\jsregexp.obj" \
+ "$(INTDIR)\jsscan.obj" \
+ "$(INTDIR)\jsscope.obj" \
+ "$(INTDIR)\jsscript.obj" \
+ "$(INTDIR)\jsstr.obj" \
+ "$(INTDIR)\jsutil.obj" \
+ "$(INTDIR)\jsxdrapi.obj" \
+ "$(INTDIR)\jsxml.obj" \
+ "$(INTDIR)\prmjtime.obj" \
+ "$(OUTDIR)\fdlibm.lib"
+
+"$(OUTDIR)\js32.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
+ $(LINK32) @<<
+ $(LINK32_FLAGS) $(LINK32_OBJS)
+<<
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "js___Wi2"
+# PROP BASE Intermediate_Dir "js___Wi2"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Target_Dir ""
+OUTDIR=.\Debug
+INTDIR=.\Debug
+
+ALL : "fdlibm - Win32 Debug" "$(OUTDIR)\js32.dll"
+
+CLEAN :
+ -@erase "$(INTDIR)\jsapi.obj"
+ -@erase "$(INTDIR)\jsarena.obj"
+ -@erase "$(INTDIR)\jsarray.obj"
+ -@erase "$(INTDIR)\jsatom.obj"
+ -@erase "$(INTDIR)\jsbool.obj"
+ -@erase "$(INTDIR)\jscntxt.obj"
+ -@erase "$(INTDIR)\jsdate.obj"
+ -@erase "$(INTDIR)\jsdbgapi.obj"
+ -@erase "$(INTDIR)\jsdhash.obj"
+ -@erase "$(INTDIR)\jsdtoa.obj"
+ -@erase "$(INTDIR)\jsemit.obj"
+ -@erase "$(INTDIR)\jsexn.obj"
+ -@erase "$(INTDIR)\jsfun.obj"
+ -@erase "$(INTDIR)\jsgc.obj"
+ -@erase "$(INTDIR)\jshash.obj"
+ -@erase "$(INTDIR)\jsinterp.obj"
+ -@erase "$(INTDIR)\jslock.obj"
+ -@erase "$(INTDIR)\jslog2.obj"
+ -@erase "$(INTDIR)\jslong.obj"
+ -@erase "$(INTDIR)\jsmath.obj"
+ -@erase "$(INTDIR)\jsnum.obj"
+ -@erase "$(INTDIR)\jsobj.obj"
+ -@erase "$(INTDIR)\jsopcode.obj"
+ -@erase "$(INTDIR)\jsparse.obj"
+ -@erase "$(INTDIR)\jsprf.obj"
+ -@erase "$(INTDIR)\jsregexp.obj"
+ -@erase "$(INTDIR)\jsscan.obj"
+ -@erase "$(INTDIR)\jsscope.obj"
+ -@erase "$(INTDIR)\jsscript.obj"
+ -@erase "$(INTDIR)\jsstr.obj"
+ -@erase "$(INTDIR)\jsutil.obj"
+ -@erase "$(INTDIR)\jsxdrapi.obj"
+ -@erase "$(INTDIR)\jsxml.obj"
+ -@erase "$(INTDIR)\prmjtime.obj"
+ -@erase "$(OUTDIR)\js32.dll"
+ -@erase "$(OUTDIR)\js32.exp"
+ -@erase "$(OUTDIR)\js32.ilk"
+ -@erase "$(OUTDIR)\js32.lib"
+ -@erase "$(OUTDIR)\js32.pdb"
+
+"$(OUTDIR)" :
+ if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
+
+CPP=cl.exe
+# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D _X86_=1 /D "_WINDOWS" /YX /c
+# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "_DEBUG" /D "DEBUG" /D _X86_=1 /D "_WINDOWS" /D "WIN32" /D "XP_WIN" /D "JSFILE" /D "EXPORT_JS_API" /YX /c
+CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /D "_DEBUG" /D "DEBUG" /D _X86_=1 /D "_WINDOWS"\
+ /D "WIN32" /D "XP_WIN" /D "JSFILE" /D "EXPORT_JS_API" /Fp"$(INTDIR)/js.pch" /YX\
+ /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c
+CPP_OBJS=.\Debug/
+CPP_SBRS=.\.
+
+.c{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.c{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+MTL=mktyplib.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /win32
+# ADD MTL /nologo /D "_DEBUG" /win32
+MTL_PROJ=/nologo /D "_DEBUG" /win32
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
+# ADD RSC /l 0x409 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+BSC32_FLAGS=/nologo /o"$(OUTDIR)/js.bsc"
+BSC32_SBRS= \
+
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"Debug/js32.dll"
+# SUBTRACT LINK32 /nodefaultlib
+LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
+ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\
+ odbccp32.lib /nologo /subsystem:windows /dll /incremental:yes\
+ /pdb:"$(OUTDIR)/js32.pdb" /debug /machine:I386 /out:"$(OUTDIR)/js32.dll"\
+ /implib:"$(OUTDIR)/js32.lib"
+LINK32_OBJS= \
+ "$(INTDIR)\jsapi.obj" \
+ "$(INTDIR)\jsarena.obj" \
+ "$(INTDIR)\jsarray.obj" \
+ "$(INTDIR)\jsatom.obj" \
+ "$(INTDIR)\jsbool.obj" \
+ "$(INTDIR)\jscntxt.obj" \
+ "$(INTDIR)\jsdate.obj" \
+ "$(INTDIR)\jsdbgapi.obj" \
+ "$(INTDIR)\jsdhash.obj" \
+ "$(INTDIR)\jsdtoa.obj" \
+ "$(INTDIR)\jsemit.obj" \
+ "$(INTDIR)\jsexn.obj" \
+ "$(INTDIR)\jsfun.obj" \
+ "$(INTDIR)\jsgc.obj" \
+ "$(INTDIR)\jshash.obj" \
+ "$(INTDIR)\jsinterp.obj" \
+ "$(INTDIR)\jslock.obj" \
+ "$(INTDIR)\jslog2.obj" \
+ "$(INTDIR)\jslong.obj" \
+ "$(INTDIR)\jsmath.obj" \
+ "$(INTDIR)\jsnum.obj" \
+ "$(INTDIR)\jsobj.obj" \
+ "$(INTDIR)\jsopcode.obj" \
+ "$(INTDIR)\jsparse.obj" \
+ "$(INTDIR)\jsprf.obj" \
+ "$(INTDIR)\jsregexp.obj" \
+ "$(INTDIR)\jsscan.obj" \
+ "$(INTDIR)\jsscope.obj" \
+ "$(INTDIR)\jsscript.obj" \
+ "$(INTDIR)\jsstr.obj" \
+ "$(INTDIR)\jsutil.obj" \
+ "$(INTDIR)\jsxdrapi.obj" \
+ "$(INTDIR)\jsxml.obj" \
+ "$(INTDIR)\prmjtime.obj" \
+ "$(OUTDIR)\fdlibm.lib"
+
+"$(OUTDIR)\js32.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
+ $(LINK32) @<<
+ $(LINK32_FLAGS) $(LINK32_OBJS)
+<<
+
+!ELSEIF "$(CFG)" == "jsshell - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "jsshell\Release"
+# PROP BASE Intermediate_Dir "jsshell\Release"
+# PROP BASE Target_Dir "jsshell"
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Target_Dir "jsshell"
+OUTDIR=.\Release
+INTDIR=.\Release
+
+ALL : "js - Win32 Release" "$(OUTDIR)\jsshell.exe"
+
+CLEAN :
+ -@erase "$(INTDIR)\js.obj"
+ -@erase "$(OUTDIR)\jsshell.exe"
+
+"$(OUTDIR)" :
+ if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
+
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c
+# ADD CPP /nologo /MD /W3 /GX /O2 /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D "XP_WIN" /D "JSFILE" /YX /c
+CPP_PROJ=/nologo /MD /W3 /GX /O2 /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D\
+ "XP_WIN" /D "JSFILE" /Fp"$(INTDIR)/jsshell.pch" /YX /Fo"$(INTDIR)/" /c
+CPP_OBJS=.\Release/
+CPP_SBRS=.\.
+
+.c{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.c{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
+# ADD RSC /l 0x409 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+BSC32_FLAGS=/nologo /o"$(OUTDIR)/jsshell.bsc"
+BSC32_SBRS= \
+
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
+ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\
+ odbccp32.lib /nologo /subsystem:console /incremental:no\
+ /pdb:"$(OUTDIR)/jsshell.pdb" /machine:I386 /out:"$(OUTDIR)/jsshell.exe"
+LINK32_OBJS= \
+ "$(INTDIR)\js.obj" \
+ "$(OUTDIR)\js32.lib"
+
+"$(OUTDIR)\jsshell.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
+ $(LINK32) @<<
+ $(LINK32_FLAGS) $(LINK32_OBJS)
+<<
+
+!ELSEIF "$(CFG)" == "jsshell - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "jsshell\jsshell_"
+# PROP BASE Intermediate_Dir "jsshell\jsshell_"
+# PROP BASE Target_Dir "jsshell"
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Target_Dir "jsshell"
+OUTDIR=.\Debug
+INTDIR=.\Debug
+
+ALL : "js - Win32 Debug" "$(OUTDIR)\jsshell.exe"
+
+CLEAN :
+ -@erase "$(INTDIR)\js.obj"
+ -@erase "$(OUTDIR)\jsshell.exe"
+ -@erase "$(OUTDIR)\jsshell.ilk"
+ -@erase "$(OUTDIR)\jsshell.pdb"
+
+"$(OUTDIR)" :
+ if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
+
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c
+# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /D "_CONSOLE" /D "_DEBUG" /D "WIN32" /D "XP_WIN" /D "JSFILE" /D "DEBUG" /YX /c
+CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /D "_CONSOLE" /D "_DEBUG" /D "WIN32"\
+ /D "XP_WIN" /D "JSFILE" /D "DEBUG" /Fp"$(INTDIR)/jsshell.pch" /YX\
+ /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c
+CPP_OBJS=.\Debug/
+CPP_SBRS=.\.
+
+.c{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.c{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
+# ADD RSC /l 0x409 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+BSC32_FLAGS=/nologo /o"$(OUTDIR)/jsshell.bsc"
+BSC32_SBRS= \
+
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386
+LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
+ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\
+ odbccp32.lib /nologo /subsystem:console /incremental:yes\
+ /pdb:"$(OUTDIR)/jsshell.pdb" /debug /machine:I386 /out:"$(OUTDIR)/jsshell.exe"
+LINK32_OBJS= \
+ "$(INTDIR)\js.obj" \
+ "$(OUTDIR)\js32.lib"
+
+"$(OUTDIR)\jsshell.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
+ $(LINK32) @<<
+ $(LINK32_FLAGS) $(LINK32_OBJS)
+<<
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "fdlibm\Release"
+# PROP BASE Intermediate_Dir "fdlibm\Release"
+# PROP BASE Target_Dir "fdlibm"
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Target_Dir "fdlibm"
+OUTDIR=.\Release
+INTDIR=.\Release
+
+ALL : "$(OUTDIR)\fdlibm.lib"
+
+CLEAN :
+ -@erase "$(INTDIR)\e_atan2.obj"
+ -@erase "$(INTDIR)\e_pow.obj"
+ -@erase "$(INTDIR)\e_sqrt.obj"
+ -@erase "$(INTDIR)\k_standard.obj"
+ -@erase "$(INTDIR)\s_atan.obj"
+ -@erase "$(INTDIR)\s_copysign.obj"
+ -@erase "$(INTDIR)\s_fabs.obj"
+ -@erase "$(INTDIR)\s_finite.obj"
+ -@erase "$(INTDIR)\s_isnan.obj"
+ -@erase "$(INTDIR)\s_matherr.obj"
+ -@erase "$(INTDIR)\s_rint.obj"
+ -@erase "$(INTDIR)\s_scalbn.obj"
+ -@erase "$(INTDIR)\w_atan2.obj"
+ -@erase "$(INTDIR)\w_pow.obj"
+ -@erase "$(INTDIR)\w_sqrt.obj"
+ -@erase "$(OUTDIR)\fdlibm.lib"
+
+"$(OUTDIR)" :
+ if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
+
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D _X86_=1 /D "_WINDOWS" /YX /c
+# ADD CPP /nologo /MD /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D _X86_=1 /D "_WINDOWS" /D "_IEEE_LIBM" /YX /c
+CPP_PROJ=/nologo /MD /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D _X86_=1 /D "_WINDOWS" /D\
+ "_IEEE_LIBM" /D "XP_WIN" /I .\ /Fp"$(INTDIR)/fdlibm.pch" /YX /Fo"$(INTDIR)/" /c
+CPP_OBJS=.\Release/
+CPP_SBRS=.\.
+
+.c{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.c{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+BSC32_FLAGS=/nologo /o"$(OUTDIR)/fdlibm.bsc"
+BSC32_SBRS= \
+
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+LIB32_FLAGS=/nologo /out:"$(OUTDIR)/fdlibm.lib"
+LIB32_OBJS= \
+ "$(INTDIR)\e_atan2.obj" \
+ "$(INTDIR)\e_pow.obj" \
+ "$(INTDIR)\e_sqrt.obj" \
+ "$(INTDIR)\k_standard.obj" \
+ "$(INTDIR)\s_atan.obj" \
+ "$(INTDIR)\s_copysign.obj" \
+ "$(INTDIR)\s_fabs.obj" \
+ "$(INTDIR)\s_finite.obj" \
+ "$(INTDIR)\s_isnan.obj" \
+ "$(INTDIR)\s_matherr.obj" \
+ "$(INTDIR)\s_rint.obj" \
+ "$(INTDIR)\s_scalbn.obj" \
+ "$(INTDIR)\w_atan2.obj" \
+ "$(INTDIR)\w_pow.obj" \
+ "$(INTDIR)\w_sqrt.obj"
+
+"$(OUTDIR)\fdlibm.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
+ $(LIB32) @<<
+ $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
+<<
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "fdlibm\Debug"
+# PROP BASE Intermediate_Dir "fdlibm\Debug"
+# PROP BASE Target_Dir "fdlibm"
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Target_Dir "fdlibm"
+OUTDIR=.\Debug
+INTDIR=.\Debug
+
+ALL : "$(OUTDIR)\fdlibm.lib"
+
+CLEAN :
+ -@erase "$(INTDIR)\e_atan2.obj"
+ -@erase "$(INTDIR)\e_pow.obj"
+ -@erase "$(INTDIR)\e_sqrt.obj"
+ -@erase "$(INTDIR)\k_standard.obj"
+ -@erase "$(INTDIR)\s_atan.obj"
+ -@erase "$(INTDIR)\s_copysign.obj"
+ -@erase "$(INTDIR)\s_fabs.obj"
+ -@erase "$(INTDIR)\s_finite.obj"
+ -@erase "$(INTDIR)\s_isnan.obj"
+ -@erase "$(INTDIR)\s_matherr.obj"
+ -@erase "$(INTDIR)\s_rint.obj"
+ -@erase "$(INTDIR)\s_scalbn.obj"
+ -@erase "$(INTDIR)\w_atan2.obj"
+ -@erase "$(INTDIR)\w_pow.obj"
+ -@erase "$(INTDIR)\w_sqrt.obj"
+ -@erase "$(OUTDIR)\fdlibm.lib"
+
+"$(OUTDIR)" :
+ if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
+
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /GX /Z7 /Od /D "WIN32" /D "_DEBUG" /D _X86_=1 /D "_WINDOWS" /YX /c
+# ADD CPP /nologo /MDd /W3 /GX /Z7 /Od /D "_DEBUG" /D "WIN32" /D _X86_=1 /D "_WINDOWS" /D "_IEEE_LIBM" /YX /c
+CPP_PROJ=/nologo /MDd /W3 /GX /Z7 /Od /D "_DEBUG" /D "WIN32" /D _X86_=1 /D "_WINDOWS" /D\
+ "_IEEE_LIBM" /D "XP_WIN" -I .\ /Fp"$(INTDIR)/fdlibm.pch" /YX /Fo"$(INTDIR)/" /c
+CPP_OBJS=.\Debug/
+CPP_SBRS=.\.
+
+.c{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_OBJS)}.obj:
+ $(CPP) $(CPP_PROJ) $<
+
+.c{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cpp{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+.cxx{$(CPP_SBRS)}.sbr:
+ $(CPP) $(CPP_PROJ) $<
+
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+BSC32_FLAGS=/nologo /o"$(OUTDIR)/fdlibm.bsc"
+BSC32_SBRS= \
+
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+LIB32_FLAGS=/nologo /out:"$(OUTDIR)/fdlibm.lib"
+LIB32_OBJS= \
+ "$(INTDIR)\e_atan2.obj" \
+ "$(INTDIR)\e_pow.obj" \
+ "$(INTDIR)\e_sqrt.obj" \
+ "$(INTDIR)\k_standard.obj" \
+ "$(INTDIR)\s_atan.obj" \
+ "$(INTDIR)\s_copysign.obj" \
+ "$(INTDIR)\s_fabs.obj" \
+ "$(INTDIR)\s_finite.obj" \
+ "$(INTDIR)\s_isnan.obj" \
+ "$(INTDIR)\s_matherr.obj" \
+ "$(INTDIR)\s_rint.obj" \
+ "$(INTDIR)\s_scalbn.obj" \
+ "$(INTDIR)\w_atan2.obj" \
+ "$(INTDIR)\w_pow.obj" \
+ "$(INTDIR)\w_sqrt.obj"
+
+"$(OUTDIR)\fdlibm.lib" : "$(OUTDIR)" $(DEF_FILE) $(LIB32_OBJS)
+ $(LIB32) @<<
+ $(LIB32_FLAGS) $(DEF_FLAGS) $(LIB32_OBJS)
+<<
+
+!ENDIF
+
+################################################################################
+# Begin Target
+
+# Name "js - Win32 Release"
+# Name "js - Win32 Debug"
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+!ENDIF
+
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsapi.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSAPI=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsbool.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdate.h"\
+ ".\jsemit.h"\
+ ".\jsexn.h"\
+ ".\jsfile.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsmath.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsparse.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxml.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSAPI=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsapi.obj" : $(SOURCE) $(DEP_CPP_JSAPI) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSAPI=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsbool.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdate.h"\
+ ".\jsemit.h"\
+ ".\jsexn.h"\
+ ".\jsfile.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsmath.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsparse.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxml.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSAPI=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsapi.obj" : $(SOURCE) $(DEP_CPP_JSAPI) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsarena.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSARE=\
+ ".\jsarena.h"\
+ ".\jsbit.h"\
+ ".\jscompat.h"\
+ ".\jscpucfg.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsstddef.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSARE=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jsarena.obj" : $(SOURCE) $(DEP_CPP_JSARE) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSARE=\
+ ".\jsarena.h"\
+ ".\jsbit.h"\
+ ".\jscompat.h"\
+ ".\jscpucfg.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsstddef.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSARE=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jsarena.obj" : $(SOURCE) $(DEP_CPP_JSARE) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsarray.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSARR=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSARR=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsarray.obj" : $(SOURCE) $(DEP_CPP_JSARR) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSARR=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSARR=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsarray.obj" : $(SOURCE) $(DEP_CPP_JSARR) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsatom.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSATO=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSATO=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsatom.obj" : $(SOURCE) $(DEP_CPP_JSATO) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSATO=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSATO=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsatom.obj" : $(SOURCE) $(DEP_CPP_JSATO) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsbool.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSBOO=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsbool.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSBOO=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsbool.obj" : $(SOURCE) $(DEP_CPP_JSBOO) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSBOO=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsbool.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSBOO=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsbool.obj" : $(SOURCE) $(DEP_CPP_JSBOO) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jscntxt.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSCNT=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsexn.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSCNT=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jscntxt.obj" : $(SOURCE) $(DEP_CPP_JSCNT) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSCNT=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsexn.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSCNT=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jscntxt.obj" : $(SOURCE) $(DEP_CPP_JSCNT) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsdate.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSDAT=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdate.h"\
+ ".\jsdtoa.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\prmjtime.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSDAT=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsdate.obj" : $(SOURCE) $(DEP_CPP_JSDAT) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSDAT=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdate.h"\
+ ".\jsdtoa.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\prmjtime.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSDAT=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsdate.obj" : $(SOURCE) $(DEP_CPP_JSDAT) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsdbgapi.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSDBG=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSDBG=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsdbgapi.obj" : $(SOURCE) $(DEP_CPP_JSDBG) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSDBG=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSDBG=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsdbgapi.obj" : $(SOURCE) $(DEP_CPP_JSDBG) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsdhash.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSDHA=\
+ ".\jsbit.h"\
+ ".\jscompat.h"\
+ ".\jscpucfg.h"\
+ ".\jsdhash.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSDHA=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jsdhash.obj" : $(SOURCE) $(DEP_CPP_JSDHA) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSDHA=\
+ ".\jsbit.h"\
+ ".\jscompat.h"\
+ ".\jscpucfg.h"\
+ ".\jsdhash.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSDHA=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jsdhash.obj" : $(SOURCE) $(DEP_CPP_JSDHA) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsdtoa.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSDTO=\
+ ".\jscompat.h"\
+ ".\jscpucfg.h"\
+ ".\jsdtoa.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsstddef.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSDTO=\
+ ".\jsautocfg.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsdtoa.obj" : $(SOURCE) $(DEP_CPP_JSDTO) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSDTO=\
+ ".\jscompat.h"\
+ ".\jscpucfg.h"\
+ ".\jsdtoa.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsstddef.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSDTO=\
+ ".\jsautocfg.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsdtoa.obj" : $(SOURCE) $(DEP_CPP_JSDTO) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsemit.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSEMI=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsemit.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsparse.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSEMI=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsemit.obj" : $(SOURCE) $(DEP_CPP_JSEMI) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSEMI=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsemit.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsparse.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSEMI=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsemit.obj" : $(SOURCE) $(DEP_CPP_JSEMI) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsexn.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSEXN=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsexn.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSEXN=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsexn.obj" : $(SOURCE) $(DEP_CPP_JSEXN) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSEXN=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsexn.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSEXN=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsexn.obj" : $(SOURCE) $(DEP_CPP_JSEXN) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsfun.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSFUN=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsparse.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxdrapi.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSFUN=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsfun.obj" : $(SOURCE) $(DEP_CPP_JSFUN) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSFUN=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsparse.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxdrapi.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSFUN=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsfun.obj" : $(SOURCE) $(DEP_CPP_JSFUN) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsgc.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSGC_=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxml.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSGC_=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsgc.obj" : $(SOURCE) $(DEP_CPP_JSGC_) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSGC_=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxml.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSGC_=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsgc.obj" : $(SOURCE) $(DEP_CPP_JSGC_) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jshash.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSHAS=\
+ ".\jsbit.h"\
+ ".\jscompat.h"\
+ ".\jscpucfg.h"\
+ ".\jshash.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSHAS=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jshash.obj" : $(SOURCE) $(DEP_CPP_JSHAS) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSHAS=\
+ ".\jsbit.h"\
+ ".\jscompat.h"\
+ ".\jscpucfg.h"\
+ ".\jshash.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSHAS=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jshash.obj" : $(SOURCE) $(DEP_CPP_JSHAS) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsinterp.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSINT=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsbool.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxml.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSINT=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsinterp.obj" : $(SOURCE) $(DEP_CPP_JSINT) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSINT=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsbool.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxml.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSINT=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsinterp.obj" : $(SOURCE) $(DEP_CPP_JSINT) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jslock.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSLOC=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSLOC=\
+ ".\jsautocfg.h"\
+ ".\pratom.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+ ".\prthread.h"\
+
+
+"$(INTDIR)\jslock.obj" : $(SOURCE) $(DEP_CPP_JSLOC) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSLOC=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSLOC=\
+ ".\jsautocfg.h"\
+ ".\pratom.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+ ".\prthread.h"\
+
+
+"$(INTDIR)\jslock.obj" : $(SOURCE) $(DEP_CPP_JSLOC) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jslog2.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSLOG=\
+ ".\jsbit.h"\
+ ".\jscpucfg.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jstypes.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSLOG=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jslog2.obj" : $(SOURCE) $(DEP_CPP_JSLOG) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSLOG=\
+ ".\jsbit.h"\
+ ".\jscpucfg.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jstypes.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSLOG=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jslog2.obj" : $(SOURCE) $(DEP_CPP_JSLOG) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jslong.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSLON=\
+ ".\jscpucfg.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jstypes.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSLON=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jslong.obj" : $(SOURCE) $(DEP_CPP_JSLON) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSLON=\
+ ".\jscpucfg.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jstypes.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSLON=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jslong.obj" : $(SOURCE) $(DEP_CPP_JSLON) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsmath.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSMAT=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslibmath.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsmath.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\prmjtime.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSMAT=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsmath.obj" : $(SOURCE) $(DEP_CPP_JSMAT) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSMAT=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslibmath.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsmath.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\prmjtime.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSMAT=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsmath.obj" : $(SOURCE) $(DEP_CPP_JSMAT) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsnum.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSNUM=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdtoa.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSNUM=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsnum.obj" : $(SOURCE) $(DEP_CPP_JSNUM) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSNUM=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdtoa.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSNUM=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsnum.obj" : $(SOURCE) $(DEP_CPP_JSNUM) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsobj.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSOBJ=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsbool.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxdrapi.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSOBJ=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsobj.obj" : $(SOURCE) $(DEP_CPP_JSOBJ) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSOBJ=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsbool.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxdrapi.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSOBJ=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsobj.obj" : $(SOURCE) $(DEP_CPP_JSOBJ) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsopcode.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSOPC=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsdtoa.h"\
+ ".\jsemit.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSOPC=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsopcode.obj" : $(SOURCE) $(DEP_CPP_JSOPC) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSOPC=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsdtoa.h"\
+ ".\jsemit.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSOPC=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsopcode.obj" : $(SOURCE) $(DEP_CPP_JSOPC) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsparse.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSPAR=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsemit.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsparse.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSPAR=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsparse.obj" : $(SOURCE) $(DEP_CPP_JSPAR) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSPAR=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsemit.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsparse.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSPAR=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsparse.obj" : $(SOURCE) $(DEP_CPP_JSPAR) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsprf.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSPRF=\
+ ".\jscpucfg.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSPRF=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jsprf.obj" : $(SOURCE) $(DEP_CPP_JSPRF) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSPRF=\
+ ".\jscpucfg.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSPRF=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jsprf.obj" : $(SOURCE) $(DEP_CPP_JSPRF) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsregexp.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSREG=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxdrapi.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSREG=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsregexp.obj" : $(SOURCE) $(DEP_CPP_JSREG) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSREG=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxdrapi.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSREG=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsregexp.obj" : $(SOURCE) $(DEP_CPP_JSREG) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsscan.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSSCA=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdtoa.h"\
+ ".\jsexn.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxml.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSSCA=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsscan.obj" : $(SOURCE) $(DEP_CPP_JSSCA) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSSCA=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdtoa.h"\
+ ".\jsexn.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxml.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSSCA=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsscan.obj" : $(SOURCE) $(DEP_CPP_JSSCA) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsscope.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSSCO=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSSCO=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsscope.obj" : $(SOURCE) $(DEP_CPP_JSSCO) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSSCO=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSSCO=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsscope.obj" : $(SOURCE) $(DEP_CPP_JSSCO) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsscript.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSSCR=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsemit.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxdrapi.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSSCR=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsscript.obj" : $(SOURCE) $(DEP_CPP_JSSCR) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSSCR=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsemit.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxdrapi.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSSCR=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsscript.obj" : $(SOURCE) $(DEP_CPP_JSSCR) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsstr.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSSTR=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsbool.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSSTR=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsstr.obj" : $(SOURCE) $(DEP_CPP_JSSTR) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSSTR=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsbool.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSSTR=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsstr.obj" : $(SOURCE) $(DEP_CPP_JSSTR) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsutil.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSUTI=\
+ ".\jscpucfg.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSUTI=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jsutil.obj" : $(SOURCE) $(DEP_CPP_JSUTI) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSUTI=\
+ ".\jscpucfg.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSUTI=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\jsutil.obj" : $(SOURCE) $(DEP_CPP_JSUTI) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsxdrapi.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSXDR=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxdrapi.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSXDR=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsxdrapi.obj" : $(SOURCE) $(DEP_CPP_JSXDR) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSXDR=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscope.h"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxdrapi.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSXDR=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsxdrapi.obj" : $(SOURCE) $(DEP_CPP_JSXDR) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\jsxml.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_JSXML=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsbit.h"\
+ ".\jsbool.h"\
+ ".\jscntxt.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsparse.h"\
+ ".\jsprf.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxml.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSXML=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsxml.obj" : $(SOURCE) $(DEP_CPP_JSXML) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_JSXML=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarray.h"\
+ ".\jsatom.h"\
+ ".\jsbit.h"\
+ ".\jsbool.h"\
+ ".\jscntxt.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jsnum.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsparse.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ ".\jsxml.h"\
+ ".\jsprf.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JSXML=\
+ ".\jsautocfg.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\jsxml.obj" : $(SOURCE) $(DEP_CPP_JSXML) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\prmjtime.c
+
+!IF "$(CFG)" == "js - Win32 Release"
+
+DEP_CPP_PRMJT=\
+ ".\jscompat.h"\
+ ".\jscpucfg.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jstypes.h"\
+ ".\prmjtime.h"\
+ {$(INCLUDE)}"\sys\TIMEB.H"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_PRMJT=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\prmjtime.obj" : $(SOURCE) $(DEP_CPP_PRMJT) "$(INTDIR)"
+
+
+!ELSEIF "$(CFG)" == "js - Win32 Debug"
+
+DEP_CPP_PRMJT=\
+ ".\jscompat.h"\
+ ".\jscpucfg.h"\
+ ".\jslong.h"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsprf.h"\
+ ".\jstypes.h"\
+ ".\prmjtime.h"\
+ {$(INCLUDE)}"\sys\TIMEB.H"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_PRMJT=\
+ ".\jsautocfg.h"\
+
+
+"$(INTDIR)\prmjtime.obj" : $(SOURCE) $(DEP_CPP_PRMJT) "$(INTDIR)"
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Project Dependency
+
+# Project_Dep_Name "fdlibm"
+
+!IF "$(CFG)" == "js - Win32 Debug"
+
+"fdlibm - Win32 Debug" :
+ $(MAKE) /$(MAKEFLAGS) /F ".\js.mak" CFG="fdlibm - Win32 Debug"
+
+!ELSEIF "$(CFG)" == "js - Win32 Release"
+
+"fdlibm - Win32 Release" :
+ $(MAKE) /$(MAKEFLAGS) /F ".\js.mak" CFG="fdlibm - Win32 Release"
+
+!ENDIF
+
+# End Project Dependency
+# End Target
+################################################################################
+# Begin Target
+
+# Name "jsshell - Win32 Release"
+# Name "jsshell - Win32 Debug"
+
+!IF "$(CFG)" == "jsshell - Win32 Release"
+
+!ELSEIF "$(CFG)" == "jsshell - Win32 Debug"
+
+!ENDIF
+
+################################################################################
+# Begin Source File
+
+SOURCE=.\js.c
+DEP_CPP_JS_C42=\
+ ".\js.msg"\
+ ".\jsapi.h"\
+ ".\jsarena.h"\
+ ".\jsatom.h"\
+ ".\jsclist.h"\
+ ".\jscntxt.h"\
+ ".\jscompat.h"\
+ ".\jsconfig.h"\
+ ".\jscpucfg.h"\
+ ".\jsdbgapi.h"\
+ ".\jsemit.h"\
+ ".\jsfun.h"\
+ ".\jsgc.h"\
+ ".\jshash.h"\
+ ".\jsinterp.h"\
+ ".\jslock.h"\
+ ".\jslong.h"\
+ ".\jsobj.h"\
+ ".\jsopcode.h"\
+ ".\jsopcode.tbl"\
+ ".\jsosdep.h"\
+ ".\jsotypes.h"\
+ ".\jsparse.h"\
+ ".\jsprf.h"\
+ ".\jsprvtd.h"\
+ ".\jspubtd.h"\
+ ".\jsregexp.h"\
+ ".\jsscan.h"\
+ ".\jsscope.h"\
+ ".\jsscript.h"\
+ ".\jsshell.msg"\
+ ".\jsstddef.h"\
+ ".\jsstr.h"\
+ ".\jstypes.h"\
+ ".\jsutil.h"\
+ {$(INCLUDE)}"\sys\types.h"\
+
+NODEP_CPP_JS_C42=\
+ ".\jsautocfg.h"\
+ ".\jsdb.h"\
+ ".\jsdebug.h"\
+ ".\jsdjava.h"\
+ ".\jsjava.h"\
+ ".\jsperl.h"\
+ ".\prcvar.h"\
+ ".\prlock.h"\
+
+
+"$(INTDIR)\js.obj" : $(SOURCE) $(DEP_CPP_JS_C42) "$(INTDIR)"
+
+
+# End Source File
+################################################################################
+# Begin Project Dependency
+
+# Project_Dep_Name "js"
+
+!IF "$(CFG)" == "jsshell - Win32 Release"
+
+"js - Win32 Release" :
+ $(MAKE) /$(MAKEFLAGS) /F ".\js.mak" CFG="js - Win32 Release"
+
+!ELSEIF "$(CFG)" == "jsshell - Win32 Debug"
+
+"js - Win32 Debug" :
+ $(MAKE) /$(MAKEFLAGS) /F ".\js.mak" CFG="js - Win32 Debug"
+
+!ENDIF
+
+# End Project Dependency
+# End Target
+################################################################################
+# Begin Target
+
+# Name "fdlibm - Win32 Release"
+# Name "fdlibm - Win32 Debug"
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+!ENDIF
+
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\w_atan2.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_W_ATA=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\w_atan2.obj" : $(SOURCE) $(DEP_CPP_W_ATA) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_W_ATA=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\w_atan2.obj" : $(SOURCE) $(DEP_CPP_W_ATA) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\s_copysign.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_S_COP=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_copysign.obj" : $(SOURCE) $(DEP_CPP_S_COP) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_S_COP=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_copysign.obj" : $(SOURCE) $(DEP_CPP_S_COP) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\w_pow.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_W_POW=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\w_pow.obj" : $(SOURCE) $(DEP_CPP_W_POW) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_W_POW=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\w_pow.obj" : $(SOURCE) $(DEP_CPP_W_POW) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\e_pow.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_E_POW=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\e_pow.obj" : $(SOURCE) $(DEP_CPP_E_POW) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_E_POW=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\e_pow.obj" : $(SOURCE) $(DEP_CPP_E_POW) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\k_standard.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_K_STA=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\k_standard.obj" : $(SOURCE) $(DEP_CPP_K_STA) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_K_STA=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\k_standard.obj" : $(SOURCE) $(DEP_CPP_K_STA) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\e_atan2.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_E_ATA=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\e_atan2.obj" : $(SOURCE) $(DEP_CPP_E_ATA) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_E_ATA=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\e_atan2.obj" : $(SOURCE) $(DEP_CPP_E_ATA) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\s_isnan.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_S_ISN=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_isnan.obj" : $(SOURCE) $(DEP_CPP_S_ISN) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_S_ISN=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_isnan.obj" : $(SOURCE) $(DEP_CPP_S_ISN) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\s_fabs.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_S_FAB=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_fabs.obj" : $(SOURCE) $(DEP_CPP_S_FAB) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_S_FAB=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_fabs.obj" : $(SOURCE) $(DEP_CPP_S_FAB) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\w_sqrt.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_W_SQR=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\w_sqrt.obj" : $(SOURCE) $(DEP_CPP_W_SQR) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_W_SQR=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\w_sqrt.obj" : $(SOURCE) $(DEP_CPP_W_SQR) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\s_scalbn.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_S_SCA=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_scalbn.obj" : $(SOURCE) $(DEP_CPP_S_SCA) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_S_SCA=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_scalbn.obj" : $(SOURCE) $(DEP_CPP_S_SCA) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\e_sqrt.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_E_SQR=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\e_sqrt.obj" : $(SOURCE) $(DEP_CPP_E_SQR) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_E_SQR=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\e_sqrt.obj" : $(SOURCE) $(DEP_CPP_E_SQR) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\s_rint.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_S_RIN=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_rint.obj" : $(SOURCE) $(DEP_CPP_S_RIN) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_S_RIN=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_rint.obj" : $(SOURCE) $(DEP_CPP_S_RIN) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\s_atan.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_S_ATA=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_atan.obj" : $(SOURCE) $(DEP_CPP_S_ATA) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_S_ATA=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_atan.obj" : $(SOURCE) $(DEP_CPP_S_ATA) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\s_finite.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_S_FIN=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_finite.obj" : $(SOURCE) $(DEP_CPP_S_FIN) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_S_FIN=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_finite.obj" : $(SOURCE) $(DEP_CPP_S_FIN) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+################################################################################
+# Begin Source File
+
+SOURCE=.\fdlibm\s_matherr.c
+
+!IF "$(CFG)" == "fdlibm - Win32 Release"
+
+DEP_CPP_S_MAT=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_matherr.obj" : $(SOURCE) $(DEP_CPP_S_MAT) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ELSEIF "$(CFG)" == "fdlibm - Win32 Debug"
+
+DEP_CPP_S_MAT=\
+ ".\fdlibm\fdlibm.h"\
+
+
+"$(INTDIR)\s_matherr.obj" : $(SOURCE) $(DEP_CPP_S_MAT) "$(INTDIR)"
+ $(CPP) $(CPP_PROJ) $(SOURCE)
+
+
+!ENDIF
+
+# End Source File
+# End Target
+# End Project
+################################################################################
Index: ossp-pkg/js/src/js.mdp
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/js.mdp,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/js.mdp,v' | diff -u /dev/null - -L'ossp-pkg/js/src/js.mdp' 2>/dev/null
Binary files ossp-pkg/js/src/js.mdp and - differ
Index: ossp-pkg/js/src/js.pkg
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/js.pkg,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/js.pkg,v' | diff -u /dev/null - -L'ossp-pkg/js/src/js.pkg' 2>/dev/null
--- ossp-pkg/js/src/js.pkg
+++ - 2025-04-04 17:30:35.784620743 +0200
@@ -0,0 +1,2 @@
+[gecko xpi-bootstrap]
+dist/bin/@SHARED_LIBRARY@
Index: ossp-pkg/js/src/js3240.rc
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/js3240.rc,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/js3240.rc,v' | diff -u /dev/null - -L'ossp-pkg/js/src/js3240.rc' 2>/dev/null
--- ossp-pkg/js/src/js3240.rc
+++ - 2025-04-04 17:30:35.787516801 +0200
@@ -0,0 +1,79 @@
+//Microsoft Developer Studio generated resource script.
+//
+#include "resource.h"
+
+#define APSTUDIO_READONLY_SYMBOLS
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 2 resource.
+//
+#include "winver.h"
+
+/////////////////////////////////////////////////////////////////////////////
+#undef APSTUDIO_READONLY_SYMBOLS
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Version
+//
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION 4,0,0,0
+ PRODUCTVERSION 4,0,0,0
+ FILEFLAGSMASK 0x3fL
+#ifdef _DEBUG
+ FILEFLAGS 0x1L
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS 0x10004L
+ FILETYPE 0x2L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040904e4"
+ BEGIN
+ VALUE "CompanyName", "Netscape Communications Corporation\0"
+ VALUE "FileDescription", "Netscape 32-bit JavaScript Module\0"
+ VALUE "FileVersion", "4.0\0"
+ VALUE "InternalName", "JS3240\0"
+ VALUE "LegalCopyright", "Copyright Netscape Communications. 1994-96\0"
+ VALUE "LegalTrademarks", "Netscape, Mozilla\0"
+ VALUE "OriginalFilename", "js3240.dll\0"
+ VALUE "ProductName", "NETSCAPE\0"
+ VALUE "ProductVersion", "4.0\0"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x409, 1252
+ END
+END
+
+#ifdef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// TEXTINCLUDE
+//
+
+1 TEXTINCLUDE DISCARDABLE
+BEGIN
+ "resource.h\0"
+END
+
+2 TEXTINCLUDE DISCARDABLE
+BEGIN
+ "#include ""winver.h""\r\n"
+ "\0"
+END
+
+3 TEXTINCLUDE DISCARDABLE
+BEGIN
+ "\r\n"
+ "\0"
+END
+
+#endif // APSTUDIO_INVOKED
+
+/////////////////////////////////////////////////////////////////////////////
\ No newline at end of file
Index: ossp-pkg/js/src/jsOS240.def
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/jsOS240.def,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/jsOS240.def,v' | diff -u /dev/null - -L'ossp-pkg/js/src/jsOS240.def' 2>/dev/null
--- ossp-pkg/js/src/jsOS240.def
+++ - 2025-04-04 17:30:35.790810271 +0200
@@ -0,0 +1,654 @@
+; ***** BEGIN LICENSE BLOCK *****
+; Version: MPL 1.1/GPL 2.0/LGPL 2.1
+;
+; The contents of this file are subject to the Mozilla 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/MPL/
+;
+; 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 Communicator client code, released
+; March 31, 1998.
+;
+; The Initial Developer of the Original Code is
+; Netscape Communications Corporation.
+; Portions created by the Initial Developer are Copyright (C) 1998
+; the Initial Developer. All Rights Reserved.
+;
+; Contributor(s):
+;
+; Alternatively, the contents of this file may be used under the terms of
+; either of the GNU General Public License Version 2 or later (the "GPL"),
+; or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+; in which case the provisions of the GPL or the LGPL are applicable instead
+; of those above. If you wish to allow use of your version of this file only
+; under the terms of either the GPL or the LGPL, and not to allow others to
+; use your version of this file under the terms of the MPL, indicate your
+; decision by deleting the provisions above and replace them with the notice
+; and other provisions required by the GPL or the LGPL. If you do not delete
+; the provisions above, a recipient may use your version of this file under
+; the terms of any one of the MPL, the GPL or the LGPL.
+;
+; ***** END LICENSE BLOCK *****
+
+LIBRARY JS3240 INITINSTANCE TERMINSTANCE
+PROTMODE
+
+DESCRIPTION 'Netscape OS/2 JavaScript Library'
+
+
+CODE LOADONCALL MOVEABLE DISCARDABLE
+DATA PRELOAD MOVEABLE MULTIPLE NONSHARED
+
+
+EXPORTS
+;====================== win16 exports these at least... ===========
+; JS_Init = JS_Init @2
+; JS_Finish = JS_Finish @3
+; JS_GetNaNValue
+; JS_GetNegativeInfinityValue
+; JS_GetPositiveInfinityValue
+; JS_GetEmptyStringValue
+; JS_ConvertValue
+; JS_ValueToObject
+; JS_ValueToFunction
+; JS_ValueToString
+; JS_ValueToNumber
+; JS_ValueToBoolean
+; JS_TypeOfValue
+; JS_GetTypeName
+; JS_Lock
+; JS_Unlock
+; JS_NewContext
+; JS_DestroyContext
+; JS_ContextIterator
+; JS_GetGlobalObject
+; JS_SetGlobalObject
+; JS_InitStandardClasses
+;; JS_GetStaticLink
+; JS_malloc
+; JS_realloc
+; JS_free
+; JS_strdup
+; JS_NewDouble
+; JS_NewDoubleValue
+; JS_AddRoot
+; JS_RemoveRoot
+; JS_LockGCThing
+; JS_UnlockGCThing
+; JS_GC
+; JS_PropertyStub
+; JS_EnumerateStub
+; JS_ResolveStub
+; JS_ConvertStub
+; JS_FinalizeStub
+; JS_InitClass
+; JS_GetClass
+; JS_InstanceOf
+; JS_GetPrivate
+; JS_SetPrivate
+; JS_GetInstancePrivate
+; JS_GetPrototype
+; JS_GetParent
+; JS_SetParent
+; JS_GetConstructor
+; JS_NewObject
+; JS_DefineObject
+; JS_DefineConstDoubles
+; JS_DefineProperties
+; JS_DefineProperty
+; JS_DefinePropertyWithTinyId
+; JS_AliasProperty
+; JS_LookupProperty
+; JS_GetProperty
+; JS_SetProperty
+; JS_DeleteProperty
+; JS_NewArrayObject
+; JS_DefineElement
+; JS_AliasElement
+; JS_LookupElement
+; JS_GetElement
+; JS_SetElement
+; JS_DeleteElement
+; JS_ClearScope
+; JS_NewFunction
+; JS_GetFunctionObject
+; JS_GetFunctionName
+; JS_DefineFunctions
+; JS_DefineFunction
+; JS_CompileScript
+; JS_DestroyScript
+; JS_CompileFunction
+; JS_DecompileScript
+; JS_DecompileFunction
+; JS_DecompileFunctionBody
+; JS_ExecuteScript
+; JS_EvaluateScript
+; JS_CallFunction
+; JS_CallFunctionName
+; JS_CallFunctionValue
+; JS_SetBranchCallback
+; JS_IsRunning
+; JS_IsConstructing
+; JS_SetCallReturnValue2
+; JS_NewString
+; JS_NewStringCopyN
+; JS_NewStringCopyZ
+; JS_InternString
+; JS_GetStringBytes
+; JS_GetStringLength
+; JS_CompareStrings
+; JS_ReportError
+; JS_ReportOutOfMemory
+; JS_SetErrorReporter
+; JS_NewRegExpObject
+; JS_SetRegExpInput
+; JS_ClearRegExpStatics
+;=================================================
+
+
+;00001:jsstr (OFFSET:0x00002e17, SIZE:0x0000ae17):
+; - Public Definitions:
+; js_EmptySubString
+; js_CompareStrings
+; js_HashString
+; js_ValueToString
+; js_StringToObject
+; js_FinalizeString
+; js_NewStringCopyZ
+; js_NewString
+; js_InitStringClass
+; js_NewStringCopyN
+; js_BoyerMooreHorspool
+;
+;
+;00002:jsscript (OFFSET:0x0000dc2e, SIZE:0x00003abb):
+; - Public Definitions:
+; js_LineNumberToPC
+; js_PCToLineNumber
+; js_GetSrcNote
+; js_DestroyScript
+; js_NewScript
+;
+;
+;00003:jsscope (OFFSET:0x000116e9, SIZE:0x00004f82):
+; - Public Definitions:
+; js_hash_scope_ops
+; js_list_scope_ops
+; js_DestroyProperty
+; js_NewProperty
+; js_IdToValue
+; js_HashValue
+; js_DestroyScope
+; js_MutateScope
+; js_DropScope
+; js_HoldScope
+; js_NewScope
+; js_GetMutableScope
+; js_HoldProperty
+; js_DropProperty
+;
+;
+;00004:jsscan (OFFSET:0x0001666b, SIZE:0x00008890):
+; - Public Definitions:
+; js_MatchToken
+; js_FlushNewlines
+; js_PeekTokenSameLine
+; js_UngetToken
+; js_GetToken
+; js_PeekToken
+; js_ReportCompileError
+ js_CloseTokenStream
+ js_NewBufferTokenStream
+; js_NewTokenStream
+; js_InitScanner
+;
+;
+;00005:jsregexp (OFFSET:0x0001eefb, SIZE:0x0000eee4):
+; - Public Definitions:
+; js_RegExpClass
+; reopsize
+; js_NewRegExpObject
+; js_InitRegExpClass
+; js_FreeRegExpStatics
+; js_InitRegExpStatics
+; js_ExecuteRegExp
+; js_NewRegExpOpt
+; js_DestroyRegExp
+; js_NewRegExp
+;
+;
+;00006:jsparse (OFFSET:0x0002dddf, SIZE:0x00010b71):
+; - Public Definitions:
+; js_ParseFunctionBody
+ js_Parse
+;
+;
+;00007:jsopcode (OFFSET:0x0003e950, SIZE:0x0000d362):
+; - Public Definitions:
+; js_EscapeMap
+; js_NumCodeSpecs
+; js_CodeSpec
+; js_incop_str
+; js_true_str
+; js_false_str
+; js_this_str
+; js_null_str
+; js_void_str
+; js_typeof_str
+; js_delete_str
+; js_new_str
+; js_ValueToSource
+; js_DecompileScript
+; js_DecompileCode
+; js_DecompileFunction
+; js_puts
+; js_printf
+; js_GetPrinterOutput
+; js_DestroyPrinter
+; js_NewPrinter
+; js_EscapeString
+; js_Disassemble1
+; js_Disassemble
+;
+;00008:jsobj (OFFSET:0x0004bcb2, SIZE:0x000090a4):
+; - Public Definitions:
+; js_WithClass
+; js_ObjectClass
+; js_TryValueOf
+; js_ValueToNonNullObject
+; js_TryMethod
+; js_ObjectToString
+; js_SetClassPrototype
+; js_DeleteProperty2
+; js_DeleteProperty
+; js_SetProperty
+; js_GetProperty
+; js_FindVariableScope
+; js_FindVariable
+; js_FindProperty
+; js_LookupProperty
+; js_DefineProperty
+; js_FreeSlot
+; js_AllocSlot
+; js_FinalizeObject
+; js_GetClassPrototype
+; js_NewObject
+; js_InitObjectClass
+; js_ValueToObject
+; js_obj_toString
+; js_SetSlot
+; js_GetSlot
+;
+;
+;00009:jsnum (OFFSET:0x00054d56, SIZE:0x00004f29):
+; - Public Definitions:
+; js_ValueToInt32
+; js_NumberToObject
+; js_FinalizeDouble
+; js_InitNumberClass
+; js_NumberToString
+; js_NewDoubleValue
+; js_NewDouble
+; js_ValueToNumber
+;
+;
+;00010:jsmath (OFFSET:0x00059c7f, SIZE:0x000054b6):
+; - Public Definitions:
+; js_InitMathClass
+;
+;
+;00011:jsjava (OFFSET:0x0005f135, SIZE:0x00022aad):
+; - Public Definitions:
+; js_Hooks
+; MojaSrcLog
+; finalizeTask
+ JSJ_FindCurrentJSContext
+; JSJ_GetPrincipals
+ JSJ_IsSafeMethod
+ JSJ_InitContext
+ JSJ_Init
+ js_JSErrorToJException
+ js_JavaErrorReporter
+ js_RemoveReflection
+ js_ReflectJObjectToJSObject
+ js_convertJObjectToJSValue
+ js_convertJSValueToJObject
+ js_ReflectJSObjectToJObject
+; js_ReflectJClassToJSObject
+ JSJ_ExitJS
+ JSJ_EnterJS
+ JSJ_CurrentContext
+ JSJ_IsEnabled
+;added in GA code - DSR70297
+ JSJ_Finish
+ JSJ_IsCalledFromJava
+ js_GetJSPrincipalsFromJavaCaller
+
+;
+;
+;00012:jsinterp (OFFSET:0x00081be2, SIZE:0x00012274):
+; - Public Definitions:
+; js_Call
+; js_Interpret
+; js_SetLocalVariable
+; js_GetLocalVariable
+; js_SetArgument
+; js_GetArgument
+; js_FlushPropertyCacheByProp
+; js_FlushPropertyCache
+;
+;
+;00013:jsgc (OFFSET:0x00093e56, SIZE:0x00004f8d):
+; - Public Definitions:
+; js_ForceGC
+; js_UnlockGCThing
+; js_LockGCThing
+; js_GC
+; js_AllocGCThing
+; js_RemoveRoot
+; js_AddRoot
+; js_FinishGC
+; js_InitGC
+;
+;
+;00014:jsfun (OFFSET:0x00098de3, SIZE:0x0000977c):
+; - Public Definitions:
+; js_FunctionClass
+; js_ClosureClass
+; js_CallClass
+; js_DefineFunction
+; js_NewFunction
+; js_InitCallAndClosureClasses
+; js_InitFunctionClass
+; js_ValueToFunction
+; js_SetCallVariable
+; js_GetCallVariable
+; js_PutCallObject
+; js_GetCallObject
+;
+;
+;00015:jsemit (OFFSET:0x000a255f, SIZE:0x000077be):
+; - Public Definitions:
+; js_SrcNoteName
+; js_SrcNoteArity
+ js_FinishTakingSrcNotes
+; js_MoveSrcNotes
+; js_GetSrcNoteOffset
+; js_BumpSrcNoteDelta
+; js_NewSrcNote3
+; js_NewSrcNote2
+; js_PopStatement
+; js_EmitContinue
+; js_EmitBreak
+; js_SetSrcNoteOffset
+; js_NewSrcNote
+; js_PushStatement
+; js_MoveCode
+; js_SetJumpOffset
+; js_Emit3
+; js_Emit2
+; js_Emit1
+; js_UpdateDepth
+; js_SrcNoteLength
+; js_CancelLastOpcode
+ js_InitCodeGenerator
+;
+;
+;00016:jsdbgapi (OFFSET:0x000a9d1d, SIZE:0x000057db):
+; - Public Definitions:
+; js_watchpoint_list
+; js_trap_list
+; JS_SetAnnotationInFrame
+; JS_GetAnnotationFromFrame
+; JS_GetJSPrincipalArrayFromFrame
+; JS_NextJSFrame
+; JS_InitJSFrameIterator
+ JS_LineNumberToPC
+ JS_PCToLineNumber
+ JS_ClearAllWatchPoints
+ JS_ClearWatchPoint
+ JS_SetWatchPoint
+ JS_HandleTrap
+ JS_ClearAllTraps
+ JS_ClearScriptTraps
+ JS_ClearTrap
+ JS_GetTrapOpcode
+ JS_SetTrap
+;DSR070297 - added in GA code
+ JS_FrameIterator
+ JS_GetFrameAnnotation
+ JS_GetFramePrincipalArray
+ JS_GetFrameScript
+ JS_GetScriptFilename
+ JS_SetFrameAnnotation
+ JS_GetFramePC
+ JS_GetFunctionScript
+
+;
+;
+;00017:jsdate (OFFSET:0x000af4f8, SIZE:0x00009a8e):
+; - Public Definitions:
+ js_DateGetSeconds
+ js_DateGetMinutes
+ js_DateGetHours
+ js_DateGetDate
+ js_DateGetMonth
+ js_DateGetYear
+ js_NewDateObject
+; js_InitDateClass
+;
+;
+;00018:jscntxt (OFFSET:0x000b8f86, SIZE:0x00003732):
+; - Public Definitions:
+; js_InterpreterHooks
+; js_ReportIsNotDefined
+; js_ReportErrorAgain
+; js_ReportErrorVA
+; js_ContextIterator
+; js_DestroyContext
+; js_NewContext
+; js_SetInterpreterHooks
+;
+;
+;00019:jsbool (OFFSET:0x000bc6b8, SIZE:0x00003375):
+; - Public Definitions:
+; js_BooleanToString
+; js_BooleanToObject
+; js_InitBooleanClass
+; js_ValueToBoolean
+;
+;
+;00020:jsatom (OFFSET:0x000bfa2d, SIZE:0x000058d0):
+; - Public Definitions:
+; js_valueOf_str
+; js_toString_str
+; js_length_str
+; js_eval_str
+; js_constructor_str
+; js_class_prototype_str
+; js_assign_str
+; js_anonymous_str
+; js_Object_str
+; js_Array_str
+; js_type_str
+; js_DropUnmappedAtoms
+ js_FreeAtomMap
+ js_InitAtomMap
+; js_GetAtom
+; js_DropAtom
+; js_IndexAtom
+; js_ValueToStringAtom
+; js_AtomizeString
+; js_AtomizeDouble
+; js_AtomizeInt
+; js_AtomizeBoolean
+; js_AtomizeObject
+; js_HoldAtom
+; js_MarkAtomState
+; js_FreeAtomState
+; js_Atomize
+; js_InitAtomState
+;
+;
+;00021:jsarray (OFFSET:0x000c52fd, SIZE:0x00007c86):
+; - Public Definitions:
+; js_ArrayClass
+; js_SetArrayLength
+; js_GetArrayLength
+; js_InitArrayClass
+; js_NewArrayObject
+; PR_qsort
+;
+;
+;00022:jsapi (OFFSET:0x000ccf83, SIZE:0x0000de8c):
+; - Public Definitions:
+ JS_ClearRegExpStatics
+ JS_SetRegExpInput
+ JS_NewRegExpObject
+ JS_SetErrorReporter
+ JS_CompareStrings
+ JS_GetStringLength
+ JS_GetStringBytes
+ JS_InternString
+ JS_NewStringCopyZ
+ JS_NewStringCopyN
+ JS_NewString
+ JS_IsRunning
+ JS_SetBranchCallback
+ JS_CallFunctionValue
+ JS_CallFunctionName
+ JS_CallFunction
+ JS_EvaluateScriptForPrincipals
+ JS_EvaluateScript
+ JS_ExecuteScript
+ JS_DecompileFunctionBody
+ JS_DecompileFunction
+ JS_DecompileScript
+ JS_CompileFunctionForPrincipals
+ JS_CompileFunction
+ JS_DestroyScript
+ JS_CompileScriptForPrincipals
+ JS_CompileScript
+ JS_DefineFunction
+ JS_GetFunctionName
+ JS_GetFunctionObject
+ JS_NewFunction
+ JS_ClearScope
+ JS_DeleteElement
+ JS_SetElement
+ JS_GetElement
+ JS_LookupElement
+ JS_AliasElement
+ JS_DefineElement
+ JS_SetArrayLength
+ JS_GetArrayLength
+ JS_NewArrayObject
+ JS_DeleteProperty
+ JS_SetProperty
+ JS_GetProperty
+ JS_LookupProperty
+ JS_AliasProperty
+ JS_DefinePropertyWithTinyId
+ JS_DefineProperty
+ JS_DefineConstDoubles
+ JS_DefineObject
+ JS_NewObject
+ JS_GetConstructor
+ JS_SetParent
+ JS_GetParent
+ JS_SetPrototype
+ JS_GetPrototype
+ JS_GetInstancePrivate
+ JS_SetPrivate
+ JS_GetPrivate
+ JS_InstanceOf
+ JS_GetClass
+ JS_DefineFunctions
+ JS_DefineProperties
+ JS_InitClass
+ JS_FinalizeStub
+ JS_ConvertStub
+ JS_ResolveStub
+ JS_EnumerateStub
+ JS_PropertyStub
+ JS_GC
+ JS_UnlockGCThing
+ JS_LockGCThing
+ JS_RemoveRoot
+ JS_AddRoot
+ JS_NewDoubleValue
+ JS_NewDouble
+ JS_strdup
+ JS_free
+ JS_realloc
+ JS_ReportOutOfMemory
+ JS_malloc
+ JS_GetScopeChain
+ JS_InitStandardClasses
+ JS_SetGlobalObject
+ JS_GetGlobalObject
+ JS_SetVersion
+ JS_GetVersion
+ JS_ContextIterator
+ JS_GetTaskState
+ JS_DestroyContext
+ JS_NewContext
+ JS_Unlock
+ JS_Lock
+ JS_Finish
+ JS_Init
+ JS_GetTypeName
+ JS_TypeOfValue
+ JS_ValueToBoolean
+ JS_ValueToInt32
+ JS_ValueToNumber
+ JS_ValueToString
+ JS_ValueToFunction
+ JS_ValueToObject
+ JS_ReportError
+ JS_ConvertValue
+ JS_GetEmptyStringValue
+ JS_GetPositiveInfinityValue
+ JS_GetNegativeInfinityValue
+ JS_GetNaNValue
+;DSR062897 - added for GA code
+ JS_MaybeGC
+ JS_GetScriptPrincipals
+ JS_IsAssigning
+ JS_SetCharSetInfo
+;brendan@mozilla.org, 2-Sept-2000
+ JS_SetCallReturnValue2
+ JS_SetGCCallback
+ JS_SetGCCallbackRT
+ JS_AddExternalStringFinalizer
+ JS_RemoveExternalStringFinalizer
+ JS_NewExternalString
+;
+;
+;00023:prmjtime (OFFSET:0x000dae0f, SIZE:0x00008986):
+; - Public Definitions:
+ PRMJ_FormatTimeUSEnglish
+ PRMJ_gmtime
+ PRMJ_FormatTime
+ PRMJ_mktime
+ PRMJ_ComputeTime
+ PRMJ_localtime
+ PRMJ_ExplodeTime
+ PRMJ_ToLocal
+ PRMJ_ToGMT
+ PRMJ_NowLocal
+ PRMJ_DSTOffset
+ PRMJ_NowS
+ PRMJ_NowMS
+ PRMJ_Now
+ PRMJ_ToExtendedTime
+ PRMJ_ToBaseTime
+ PRMJ_setDST
+ PRMJ_LocalGMTDifference
+
+
Index: ossp-pkg/js/src/jsconfig.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/jsconfig.mk,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/jsconfig.mk,v' | diff -u /dev/null - -L'ossp-pkg/js/src/jsconfig.mk' 2>/dev/null
--- ossp-pkg/js/src/jsconfig.mk
+++ - 2025-04-04 17:30:35.794134969 +0200
@@ -0,0 +1,181 @@
+# -*- Mode: makefile -*-
+#
+# ***** BEGIN LICENSE BLOCK *****
+# Version: MPL 1.1/GPL 2.0/LGPL 2.1
+#
+# The contents of this file are subject to the Mozilla 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/MPL/
+#
+# 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 Communicator client code, released
+# March 31, 1998.
+#
+# The Initial Developer of the Original Code is
+# Netscape Communications Corporation.
+# Portions created by the Initial Developer are Copyright (C) 1998-1999
+# the Initial Developer. All Rights Reserved.
+#
+# Contributor(s):
+#
+# Alternatively, the contents of this file may be used under the terms of
+# either of the GNU General Public License Version 2 or later (the "GPL"),
+# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+# in which case the provisions of the GPL or the LGPL are applicable instead
+# of those above. If you wish to allow use of your version of this file only
+# under the terms of either the GPL or the LGPL, and not to allow others to
+# use your version of this file under the terms of the MPL, indicate your
+# decision by deleting the provisions above and replace them with the notice
+# and other provisions required by the GPL or the LGPL. If you do not delete
+# the provisions above, a recipient may use your version of this file under
+# the terms of any one of the MPL, the GPL or the LGPL.
+#
+# ***** END LICENSE BLOCK *****
+
+ifndef OBJDIR
+ ifdef OBJDIR_NAME
+ OBJDIR = $(OBJDIR_NAME)
+ endif
+endif
+
+NSPR_VERSION = v4.0
+NSPR_LIBSUFFIX = 4
+
+NSPR_LOCAL = $(MOZ_DEPTH)/dist/$(OBJDIR)/nspr
+NSPR_DIST = $(MOZ_DEPTH)/dist/$(OBJDIR)
+NSPR_OBJDIR = $(OBJDIR)
+ifeq ($(OS_ARCH), SunOS)
+ NSPR_OBJDIR := $(subst _sparc,,$(NSPR_OBJDIR))
+endif
+ifeq ($(OS_ARCH), Linux)
+ LINUX_REL := $(shell uname -r)
+ ifneq (,$(findstring 2.0,$(LINUX_REL)))
+ NSPR_OBJDIR := $(subst _All,2.0_x86_glibc_PTH,$(NSPR_OBJDIR))
+ else
+ NSPR_OBJDIR := $(subst _All,2.2_x86_glibc_PTH,$(NSPR_OBJDIR))
+ endif
+endif
+ifeq ($(OS_ARCH), AIX)
+ NSPR_OBJDIR := $(subst 4.1,4.2,$(NSPR_OBJDIR))
+endif
+ifeq ($(OS_CONFIG), IRIX6.2)
+ NSPR_OBJDIR := $(subst 6.2,6.2_n32_PTH,$(NSPR_OBJDIR))
+endif
+ifeq ($(OS_CONFIG), IRIX6.5)
+ NSPR_OBJDIR := $(subst 6.5,6.5_n32_PTH,$(NSPR_OBJDIR))
+endif
+ifeq ($(OS_ARCH), WINNT)
+ ifeq ($(OBJDIR), WIN32_D.OBJ)
+ NSPR_OBJDIR = WINNT4.0_DBG.OBJ
+ endif
+ ifeq ($(OBJDIR), WIN32_O.OBJ)
+ NSPR_OBJDIR = WINNT4.0_OPT.OBJ
+ endif
+endif
+NSPR_SHARED = /share/builds/components/nspr20/$(NSPR_VERSION)/$(NSPR_OBJDIR)
+ifeq ($(OS_ARCH), WINNT)
+ NSPR_SHARED = nspr20/$(NSPR_VERSION)/$(NSPR_OBJDIR)
+endif
+NSPR_VERSIONFILE = $(NSPR_LOCAL)/Version
+NSPR_CURVERSION := $(shell cat $(NSPR_VERSIONFILE))
+
+get_nspr:
+ @echo "Grabbing NSPR component..."
+ifeq ($(NSPR_VERSION), $(NSPR_CURVERSION))
+ @echo "No need, NSPR is up to date in this tree (ver=$(NSPR_VERSION))."
+else
+ mkdir -p $(NSPR_LOCAL)
+ mkdir -p $(NSPR_DIST)
+ ifneq ($(OS_ARCH), WINNT)
+ cp $(NSPR_SHARED)/*.jar $(NSPR_LOCAL)
+ else
+ sh $(MOZ_DEPTH)/../reltools/compftp.sh $(NSPR_SHARED) $(NSPR_LOCAL) *.jar
+ endif
+ unzip -o $(NSPR_LOCAL)/mdbinary.jar -d $(NSPR_DIST)
+ mkdir -p $(NSPR_DIST)/include
+ unzip -o $(NSPR_LOCAL)/mdheader.jar -d $(NSPR_DIST)/include
+ rm -rf $(NSPR_DIST)/META-INF
+ rm -rf $(NSPR_DIST)/include/META-INF
+ echo $(NSPR_VERSION) > $(NSPR_VERSIONFILE)
+endif
+
+SHIP_DIST = $(MOZ_DEPTH)/dist/$(OBJDIR)
+SHIP_DIR = $(SHIP_DIST)/SHIP
+
+SHIP_LIBS = libjs.$(SO_SUFFIX) libjs.a
+ifdef JS_LIVECONNECT
+ SHIP_LIBS += libjsj.$(SO_SUFFIX) libjsj.a
+endif
+ifeq ($(OS_ARCH), WINNT)
+ SHIP_LIBS = js32.dll js32.lib
+ ifdef JS_LIVECONNECT
+ SHIP_LIBS += jsj.dll jsj.lib
+ endif
+endif
+SHIP_LIBS += $(LCJAR)
+SHIP_LIBS := $(addprefix $(SHIP_DIST)/lib/, $(SHIP_LIBS))
+
+SHIP_INCS = js*.h prmjtime.h resource.h *.msg *.tbl
+ifdef JS_LIVECONNECT
+ SHIP_INCS += netscape*.h nsC*.h nsI*.h
+endif
+SHIP_INCS := $(addprefix $(SHIP_DIST)/include/, $(SHIP_INCS))
+
+SHIP_BINS = js
+ifdef JS_LIVECONNECT
+ SHIP_BINS += lcshell
+endif
+ifeq ($(OS_ARCH), WINNT)
+ SHIP_BINS := $(addsuffix .exe, $(SHIP_BINS))
+endif
+SHIP_BINS := $(addprefix $(SHIP_DIST)/bin/, $(SHIP_BINS))
+
+ifdef BUILD_OPT
+ JSREFJAR = jsref_opt.jar
+else
+ifdef BUILD_IDG
+ JSREFJAR = jsref_idg.jar
+else
+ JSREFJAR = jsref_dbg.jar
+endif
+endif
+
+ship:
+ mkdir -p $(SHIP_DIR)/$(LIBDIR)
+ mkdir -p $(SHIP_DIR)/include
+ mkdir -p $(SHIP_DIR)/bin
+ cp $(SHIP_LIBS) $(SHIP_DIR)/$(LIBDIR)
+ cp $(SHIP_INCS) $(SHIP_DIR)/include
+ cp $(SHIP_BINS) $(SHIP_DIR)/bin
+ cd $(SHIP_DIR); \
+ zip -r $(JSREFJAR) bin lib include
+ifdef BUILD_SHIP
+ cp $(SHIP_DIR)/$(JSREFJAR) $(BUILD_SHIP)
+endif
+
+CWD = $(shell pwd)
+shipSource: $(SHIP_DIR)/jsref_src.lst .FORCE
+ mkdir -p $(SHIP_DIR)
+ cd $(MOZ_DEPTH)/.. ; \
+ zip $(CWD)/$(SHIP_DIR)/jsref_src.jar -@ < $(CWD)/$(SHIP_DIR)/jsref_src.lst
+ifdef BUILD_SHIP
+ cp $(SHIP_DIR)/jsref_src.jar $(BUILD_SHIP)
+endif
+
+JSREFSRCDIRS := $(shell cat $(DEPTH)/SpiderMonkey.rsp)
+$(SHIP_DIR)/jsref_src.lst: .FORCE
+ mkdir -p $(SHIP_DIR)
+ rm -f $@
+ touch $@
+ for d in $(JSREFSRCDIRS); do \
+ cd $(MOZ_DEPTH)/..; \
+ ls -1 -d $$d | grep -v CVS | grep -v \.OBJ >> $(CWD)/$@; \
+ cd $(CWD); \
+ done
+
+.FORCE:
Index: ossp-pkg/js/src/jsify.pl
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/jsify.pl,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/jsify.pl,v' | diff -u /dev/null - -L'ossp-pkg/js/src/jsify.pl' 2>/dev/null
--- ossp-pkg/js/src/jsify.pl
+++ - 2025-04-04 17:30:35.797317702 +0200
@@ -0,0 +1,485 @@
+#!/usr/local/bin/perl
+
+# This script modifies C code to use the hijacked NSPR routines that are
+# now baked into the JavaScript engine rather than using the NSPR
+# routines that they were based on, i.e. types like PRArenaPool are changed
+# to JSArenaPool.
+#
+# This script was used in 9/98 to facilitate the incorporation of some NSPR
+# code into the JS engine so as to minimize dependency on NSPR.
+#
+
+# Command-line: jsify.pl [options] [filename]*
+#
+# Options:
+# -r Reverse direction of transformation, i.e. JS ==> NSPR2
+# -outdir Directory in which to place output files
+
+
+# NSPR2 symbols that will be modified to JS symbols, e.g.
+# PRArena <==> JSArena
+
+@NSPR_symbols = (
+"PRArena",
+"PRArenaPool",
+"PRArenaStats",
+"PR_ARENAMETER",
+"PR_ARENA_",
+"PR_ARENA_ALIGN",
+"PR_ARENA_ALLOCATE",
+"PR_ARENA_CONST_ALIGN_MASK",
+"PR_ARENA_DEFAULT_ALIGN",
+"PR_ARENA_DESTROY",
+"PR_ARENA_GROW",
+"PR_ARENA_MARK",
+"PR_ARENA_RELEASE",
+
+"PR_smprintf",
+"PR_smprintf_free",
+"PR_snprintf",
+"PR_sprintf_append",
+"PR_sscanf",
+"PR_sxprintf",
+"PR_vsmprintf",
+"PR_vsnprintf",
+"PR_vsprintf_append",
+"PR_vsxprintf",
+
+"PRCList",
+"PRCListStr",
+"PRCLists",
+
+"PRDestroyEventProc",
+"PREvent",
+"PREventFunProc",
+"PREventQueue",
+"PRHandleEventProc",
+"PR_PostEvent",
+"PR_PostSynchronousEvent",
+"PR_ProcessPendingEvents",
+"PR_CreateEventQueue",
+"PR_DequeueEvent",
+"PR_DestroyEvent",
+"PR_DestroyEventQueue",
+"PR_EventAvailable",
+"PR_EventLoop",
+"PR_GetEvent",
+"PR_GetEventOwner",
+"PR_GetEventQueueMonitor",
+"PR_GetEventQueueSelectFD",
+"PR_GetMainEventQueue",
+"PR_HandleEvent",
+"PR_InitEvent",
+"PR_ENTER_EVENT_QUEUE_MONITOR",
+"PR_EXIT_EVENT_QUEUE_MONITOR",
+"PR_MapEvents",
+"PR_RevokeEvents",
+
+"PR_cnvtf",
+"PR_dtoa",
+"PR_strtod",
+
+"PRFileDesc",
+
+"PR_HASH_BITS",
+"PR_GOLDEN_RATIO",
+"PRHashAllocOps",
+"PRHashComparator",
+"PRHashEntry",
+"PRHashEnumerator",
+"PRHashFunction",
+"PRHashNumber",
+"PRHashTable",
+"PR_HashString",
+"PR_HashTableAdd",
+"PR_HashTableDestroy",
+"PR_HashTableDump",
+"PR_HashTableEnumerateEntries",
+"PR_HashTableLookup",
+"PR_HashTableRawAdd",
+"PR_HashTableRawLookup",
+"PR_HashTableRawRemove",
+"PR_HashTableRemove",
+
+"PRBool",
+"PRFloat64",
+"PRInt16",
+"PRInt32",
+"PRInt64",
+"PRInt8",
+"PRIntn",
+"PRUint16",
+"PRUint32",
+"PRUint64",
+"PRUint8",
+"PRUintn",
+"PRPtrDiff",
+"PRPtrdiff",
+"PRUptrdiff",
+"PRUword",
+"PRWord",
+"PRPackedBool",
+"PRSize",
+"PRStatus",
+"pruword",
+"prword",
+"prword_t",
+
+"PR_ALIGN_OF_DOUBLE",
+"PR_ALIGN_OF_FLOAT",
+"PR_ALIGN_OF_INT",
+"PR_ALIGN_OF_INT64",
+"PR_ALIGN_OF_LONG",
+"PR_ALIGN_OF_POINTER",
+"PR_ALIGN_OF_SHORT",
+"PR_ALIGN_OF_WORD",
+"PR_BITS_PER_BYTE",
+"PR_BITS_PER_BYTE_LOG2",
+"PR_BITS_PER_DOUBLE",
+"PR_BITS_PER_DOUBLE_LOG2",
+"PR_BITS_PER_FLOAT",
+"PR_BITS_PER_FLOAT_LOG2",
+"PR_BITS_PER_INT",
+"PR_BITS_PER_INT64",
+"PR_BITS_PER_INT64_LOG2",
+"PR_BITS_PER_INT_LOG2",
+"PR_BITS_PER_LONG",
+"PR_BITS_PER_LONG_LOG2",
+"PR_BITS_PER_SHORT",
+"PR_BITS_PER_SHORT_LOG2",
+"PR_BITS_PER_WORD",
+"PR_BITS_PER_WORD_LOG2",
+"PR_BYTES_PER_BYTE",
+"PR_BYTES_PER_DOUBLE",
+"PR_BYTES_PER_DWORD",
+"PR_BYTES_PER_DWORD_LOG2",
+"PR_BYTES_PER_FLOAT",
+"PR_BYTES_PER_INT",
+"PR_BYTES_PER_INT64",
+"PR_BYTES_PER_LONG",
+"PR_BYTES_PER_SHORT",
+"PR_BYTES_PER_WORD",
+"PR_BYTES_PER_WORD_LOG2",
+
+"PRSegment",
+"PRSegmentAccess",
+"PRStuffFunc",
+"PRThread",
+
+"PR_APPEND_LINK",
+
+"PR_ASSERT",
+
+"PR_ATOMIC_DWORD_LOAD",
+"PR_ATOMIC_DWORD_STORE",
+
+"PR_Abort",
+
+"PR_ArenaAllocate",
+"PR_ArenaCountAllocation",
+"PR_ArenaCountGrowth",
+"PR_ArenaCountInplaceGrowth",
+"PR_ArenaCountRelease",
+"PR_ArenaCountRetract",
+"PR_ArenaFinish",
+"PR_ArenaGrow",
+"PR_ArenaRelease",
+"PR_CompactArenaPool",
+"PR_DumpArenaStats",
+"PR_FinishArenaPool",
+"PR_FreeArenaPool",
+"PR_InitArenaPool",
+
+"PR_Assert",
+
+"PR_AttachThread",
+
+"PR_BEGIN_EXTERN_C",
+"PR_BEGIN_MACRO",
+
+"PR_BIT",
+"PR_BITMASK",
+
+"PR_BUFFER_OVERFLOW_ERROR",
+
+"PR_CALLBACK",
+"PR_CALLBACK_DECL",
+"PR_CALLOC",
+"PR_CEILING_LOG2",
+"PR_CLEAR_ARENA",
+"PR_CLEAR_BIT",
+"PR_CLEAR_UNUSED",
+"PR_CLIST_IS_EMPTY",
+"PR_COUNT_ARENA",
+"PR_CURRENT_THREAD",
+
+"PR_GetSegmentAccess",
+"PR_GetSegmentSize",
+"PR_GetSegmentVaddr",
+"PR_GrowSegment",
+"PR_DestroySegment",
+"PR_MapSegment",
+"PR_NewSegment",
+"PR_Segment",
+"PR_Seg",
+"PR_SEGMENT_NONE",
+"PR_SEGMENT_RDONLY",
+"PR_SEGMENT_RDWR",
+
+"PR_Calloc",
+"PR_CeilingLog2",
+"PR_CompareStrings",
+"PR_CompareValues",
+"PR_DELETE",
+"PR_END_EXTERN_C",
+"PR_END_MACRO",
+"PR_ENUMERATE_STOP",
+"PR_FAILURE",
+"PR_FALSE",
+"PR_FLOOR_LOG2",
+"PR_FREEIF",
+"PR_FREE_PATTERN",
+"PR_FloorLog2",
+"PR_FormatTime",
+"PR_Free",
+
+"PR_GetEnv",
+"PR_GetError",
+"PR_INIT_ARENA_POOL",
+"PR_INIT_CLIST",
+"PR_INIT_STATIC_CLIST",
+"PR_INLINE",
+"PR_INSERT_AFTER",
+"PR_INSERT_BEFORE",
+"PR_INSERT_LINK",
+"PR_INT32",
+"PR_INTERVAL_NO_TIMEOUT",
+"PR_INTERVAL_NO_WAIT",
+"PR_Init",
+"PR_LIST_HEAD",
+"PR_LIST_TAIL",
+"PR_LOG",
+"PR_LOGGING",
+"PR_LOG_ALWAYS",
+"PR_LOG_BEGIN",
+"PR_LOG_DEBUG",
+"PR_LOG_DEFINE",
+"PR_LOG_END",
+"PR_LOG_ERROR",
+"PR_LOG_MAX",
+"PR_LOG_MIN",
+"PR_LOG_NONE",
+"PR_LOG_NOTICE",
+"PR_LOG_TEST",
+"PR_LOG_WARN",
+"PR_LOG_WARNING",
+"PR_LogFlush",
+"PR_LogPrint",
+"PR_MALLOC",
+"PR_MAX",
+"PR_MD_calloc",
+"PR_MD_free",
+"PR_MD_malloc",
+"PR_MD_realloc",
+"PR_MIN",
+"PR_Malloc",
+"PR_NEW",
+"PR_NEWZAP",
+"PR_NEXT_LINK",
+"PR_NOT_REACHED",
+"PR_NewCondVar",
+"PR_NewHashTable",
+"PR_NewLogModule",
+"PR_PREV_LINK",
+"PR_PUBLIC_API",
+"PR_PUBLIC_DATA",
+"PR_RANGE_ERROR",
+"PR_REALLOC",
+"PR_REMOVE_AND_INIT_LINK",
+"PR_REMOVE_LINK",
+"PR_ROUNDUP",
+"PR_Realloc",
+
+"PR_SET_BIT",
+"PR_STATIC_CALLBACK",
+"PR_SUCCESS",
+"PR_SetError",
+"PR_SetLogBuffering",
+"PR_SetLogFile",
+
+"PR_TEST_BIT",
+"PR_TRUE",
+"PR_UINT32",
+"PR_UPTRDIFF",
+
+"prarena_h___",
+"prbit_h___",
+"prclist_h___",
+"prdtoa_h___",
+"prlog_h___",
+"prlong_h___",
+"prmacos_h___",
+"prmem_h___",
+"prprf_h___",
+"prtypes_h___",
+
+"prarena",
+"prbit",
+"prbitmap_t",
+"prclist",
+"prcpucfg",
+"prdtoa",
+"prhash",
+"plhash",
+"prlong",
+"prmacos",
+"prmem",
+"prosdep",
+"protypes",
+"prprf",
+"prtypes"
+);
+
+while ($ARGV[0] =~ /^-/) {
+ if ($ARGV[0] eq "-r") {
+ shift;
+ $reverse_conversion = 1;
+ } elsif ($ARGV[0] eq "-outdir") {
+ shift;
+ $outdir = shift;
+ }
+}
+
+# Given an NSPR symbol compute the JS equivalent or
+# vice-versa
+sub subst {
+ local ($replacement);
+ local ($sym) = @_;
+
+ $replacement = substr($sym,0,2) eq "pr" ? "js" : "JS";
+ $replacement .= substr($sym, 2);
+ return $replacement;
+}
+
+# Build the regular expression that will convert between the NSPR
+# types and the JS types
+if ($reverse_conversion) {
+ die "Not implemented yet";
+} else {
+ foreach $sym (@NSPR_symbols) {
+ $regexp .= $sym . "|"
+ }
+ # Get rid of the last "!"
+ chop $regexp;
+
+ # Replace PR* with JS* and replace pr* with js*
+ $regexp = 's/(^|\\W)(' . $regexp . ')/$1 . &subst($2)/eg';
+# print $regexp;
+}
+
+# Pre-compile a little subroutine to perform the regexp substitution
+# between NSPR types and JS types
+eval('sub convert_from_NSPR {($line) = @_; $line =~ ' . $regexp . ';}');
+
+sub convert_mallocs {
+ ($line) = @_;
+ $line =~ s/PR_MALLOC/malloc/g;
+ $line =~ s/PR_REALLOC/realloc/g;
+ $line =~ s/PR_FREE/free/g;
+ return $line;
+}
+
+sub convert_includes {
+ ($line) = @_;
+ if ($line !~ /include/) {
+ return $line;
+ }
+
+ if ($line =~ /prlog\.h/) {
+ $line = '#include "jsutil.h"'. " /* Added by JSIFY */\n";
+ } elsif ($line =~ /plhash\.h/) {
+ $line = '#include "jshash.h"'. " /* Added by JSIFY */\n";
+ } elsif ($line =~ /plarena\.h/) {
+ $line = '#include "jsarena.h"'. " /* Added by JSIFY */\n";
+ } elsif ($line =~ /prmem\.h/) {
+ $line = "";
+ } elsif ($line =~ /jsmsg\.def/) {
+ $line = '#include "js.msg"' . "\n";
+ } elsif ($line =~ /shellmsg\.def/) {
+ $line = '#include "jsshell.msg"' . "\n";
+ } elsif ($line =~ /jsopcode\.def/) {
+ $line = '#include "jsopcode.tbl"' . "\n";
+ }
+ return $line;
+}
+
+sub convert_declarations {
+ ($line) = @_;
+ $line =~ s/PR_EXTERN/JS_EXTERN_API/g;
+ $line =~ s/PR_IMPLEMENT_DATA/JS_EXPORT_DATA/g;
+ $line =~ s/PR_IMPLEMENT/JS_EXPORT_API/g;
+ $line =~ s/PR_CALLBACK/JS_DLL_CALLBACK/g;
+ $line =~ s/PR_STATIC_CALLBACK/JS_STATIC_DLL_CALLBACK/g;
+ $line =~ s/PR_IMPORT/JS_IMPORT/g;
+ $line =~ s/PR_PUBLIC_API/JS_EXPORT_API/g;
+ $line =~ s/PR_PUBLIC_DATA/JS_EXPORT_DATA/g;
+ return $line;
+}
+
+sub convert_long_long_macros {
+ ($line) = @_;
+ $line =~ s/\b(LL_)/JSLL_/g;
+ return $line;
+}
+
+sub convert_asserts {
+ ($line) = @_;
+ $line =~ s/\bPR_ASSERT/JS_ASSERT/g;
+ return $line;
+}
+
+while ($#ARGV >= 0) {
+ $infile = shift;
+
+ # Change filename, e.g. prtime.h to jsprtime.h, except for legacy
+ # files that start with 'prmj', like prmjtime.h.
+ $outfile = $infile;
+ if ($infile !~ /^prmj/) {
+ $outfile =~ s/^pr/js/;
+ $outfile =~ s/^pl/js/;
+ }
+
+ if ($outdir) {
+ $outfile = $outdir . '/' . $outfile;
+ }
+
+ if ($infile eq $outfile) {
+ die "Error: refuse to overwrite $outfile, use -outdir option."
+ }
+ die "Can't open $infile" if !open(INFILE, "<$infile");
+ die "Can't open $outfile for writing" if !open(OUTFILE, ">$outfile");
+
+ while () {
+ $line = $_;
+
+ #Get rid of #include "prlog.h"
+ &convert_includes($line);
+
+ # Rename PR_EXTERN, PR_IMPORT, etc.
+ &convert_declarations($line);
+
+ # Convert from PR_MALLOC to malloc, etc.
+ &convert_mallocs($line);
+
+ # Convert from PR_ASSERT to JS_ASSERT
+# &convert_asserts($line);
+
+ # Convert from, e.g. PRArena to JSPRArena
+ &convert_from_NSPR($line);
+
+ # Change LL_* macros to JSLL_*
+ &convert_long_long_macros($line);
+
+ print OUTFILE $line;
+ }
+}
Index: ossp-pkg/js/src/jslocko.asm
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/jslocko.asm,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/jslocko.asm,v' | diff -u /dev/null - -L'ossp-pkg/js/src/jslocko.asm' 2>/dev/null
--- ossp-pkg/js/src/jslocko.asm
+++ - 2025-04-04 17:30:35.800597111 +0200
@@ -0,0 +1,60 @@
+; -*- Mode: asm; tab-width: 8; c-basic-offset: 4 -*-
+
+; ***** BEGIN LICENSE BLOCK *****
+; Version: MPL 1.1/GPL 2.0/LGPL 2.1
+;
+; The contents of this file are subject to the Mozilla 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/MPL/
+;
+; 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 an OS/2 implementation of js_CompareAndSwap in assembly.
+;
+; The Initial Developer of the Original Code is
+; IBM Corporation.
+; Portions created by the Initial Developer are Copyright (C) 2001
+; the Initial Developer. All Rights Reserved.
+;
+; Contributor(s):
+;
+; Alternatively, the contents of this file may be used under the terms of
+; either the GNU General Public License Version 2 or later (the "GPL"), or
+; the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
+; in which case the provisions of the GPL or the LGPL are applicable instead
+; of those above. If you wish to allow use of your version of this file only
+; under the terms of either the GPL or the LGPL, and not to allow others to
+; use your version of this file under the terms of the MPL, indicate your
+; decision by deleting the provisions above and replace them with the notice
+; and other provisions required by the GPL or the LGPL. If you do not delete
+; the provisions above, a recipient may use your version of this file under
+; the terms of any one of the MPL, the GPL or the LGPL.
+;
+; ***** END LICENSE BLOCK *****
+
+ .486P
+ .MODEL FLAT, OPTLINK
+ .STACK
+
+ .CODE
+
+;;;---------------------------------------------------------------------
+;;; int _Optlink js_CompareAndSwap(jsword *w, jsword ov, jsword nv)
+;;;---------------------------------------------------------------------
+js_CompareAndSwap PROC OPTLINK EXPORT
+ push ebx
+ mov ebx, eax
+ mov eax, edx
+ mov edx, ebx
+ lock cmpxchg [ebx], ecx
+ sete al
+ and eax, 1h
+ pop ebx
+ ret
+js_CompareAndSwap endp
+
+ END
Index: ossp-pkg/js/src/lock_SunOS.s
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/lock_SunOS.s,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/lock_SunOS.s,v' | diff -u /dev/null - -L'ossp-pkg/js/src/lock_SunOS.s' 2>/dev/null
--- ossp-pkg/js/src/lock_SunOS.s
+++ - 2025-04-04 17:30:35.803437423 +0200
@@ -0,0 +1,114 @@
+!
+! 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 Communicator client code, released
+! March 31, 1998.
+!
+! The Initial Developer of the Original Code is Netscape
+! Communications Corporation. Portions created by Netscape are
+! Copyright (C) 1998-1999 Netscape Communications Corporation. All
+! Rights Reserved.
+!
+! Contributor(s):
+!
+! Alternatively, the contents of this file may be used under the
+! terms of the GNU Public License (the "GPL"), in which case the
+! provisions of the GPL are applicable instead of those above.
+! If you wish to allow use of your version of this file only
+! under the terms of the GPL and not to allow others to use your
+! version of this file under the NPL, indicate your decision by
+! deleting the provisions above and replace them with the notice
+! and other provisions required by the GPL. If you do not delete
+! the provisions above, a recipient may use your version of this
+! file under either the NPL or the GPL.
+!
+
+!
+! atomic compare-and-swap routines for V8 sparc
+! and for V8+ (ultrasparc)
+!
+!
+! standard asm linkage macros; this module must be compiled
+! with the -P option (use C preprocessor)
+
+#include
+
+! ======================================================================
+!
+! Perform the sequence *a = b atomically with respect to previous value
+! of a (a0). If *a==a0 then assign *a to b, all in one atomic operation.
+! Returns 1 if assignment happened, and 0 otherwise.
+!
+! usage : old_val = compare_and_swap(address, oldval, newval)
+!
+! -----------------------
+! Note on REGISTER USAGE:
+! as this is a LEAF procedure, a new stack frame is not created;
+! we use the caller stack frame so what would normally be %i (input)
+! registers are actually %o (output registers). Also, we must not
+! overwrite the contents of %l (local) registers as they are not
+! assumed to be volatile during calls.
+!
+! So, the registers used are:
+! %o0 [input] - the address of the value to increment
+! %o1 [input] - the old value to compare with
+! %o2 [input] - the new value to set for [%o0]
+! %o3 [local] - work register
+! -----------------------
+#ifndef ULTRA_SPARC
+! v8
+
+ ENTRY(compare_and_swap) ! standard assembler/ELF prologue
+
+ stbar
+ mov -1,%o3 ! busy flag
+ swap [%o0],%o3 ! get current value
+l1: cmp %o3,-1 ! busy?
+ be,a l1 ! if so, spin
+ swap [%o0],%o3 ! using branch-delay to swap back value
+ cmp %o1,%o3 ! compare old with current
+ be,a l2 ! if equal then swap in new value
+ swap [%o0],%o2 ! done.
+ swap [%o0],%o3 ! otherwise, swap back current value
+ retl
+ mov 0,%o0 ! return false
+l2: retl
+ mov 1,%o0 ! return true
+
+ SET_SIZE(compare_and_swap) ! standard assembler/ELF epilogue
+
+!
+! end
+!
+#else /* ULTRA_SPARC */
+! ======================================================================
+!
+! v9
+
+ ENTRY(compare_and_swap) ! standard assembler/ELF prologue
+
+ stbar
+ cas [%o0],%o1,%o2 ! compare *w with old value and set to new if equal
+ cmp %o1,%o2 ! did we succeed?
+ be,a m1 ! yes
+ mov 1,%o0 ! return true (annulled when no jump)
+ mov 0,%o0 ! return false
+m1: retl
+ nop
+
+ SET_SIZE(compare_and_swap) ! standard assembler/ELF epilogue
+
+!
+! end
+!
+! ======================================================================
+!
+#endif
Index: ossp-pkg/js/src/perfect.js
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/perfect.js,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/perfect.js,v' | diff -u /dev/null - -L'ossp-pkg/js/src/perfect.js' 2>/dev/null
--- ossp-pkg/js/src/perfect.js
+++ - 2025-04-04 17:30:35.806849305 +0200
@@ -0,0 +1,39 @@
+// Some simple testing of new, eval and some string stuff.
+
+// constructor -- expression array initialization
+function ExprArray(n,v)
+{
+ // Initializes n values to v coerced to a string.
+ for (var i = 0; i < n; i++) {
+ this[i] = "" + v;
+ }
+}
+
+
+// Print the perfect numbers up to n and the sum expression for n's divisors.
+function perfect(n)
+{
+ print("The perfect numbers up to " + n + " are:");
+
+ // We build sumOfDivisors[i] to hold a string expression for
+ // the sum of the divisors of i, excluding i itself.
+ var sumOfDivisors = new ExprArray(n+1,1);
+ for (var divisor = 2; divisor <= n; divisor++) {
+ for (var j = divisor + divisor; j <= n; j += divisor) {
+ sumOfDivisors[j] += " + " + divisor;
+ }
+ // At this point everything up to 'divisor' has its sumOfDivisors
+ // expression calculated, so we can determine whether it's perfect
+ // already by evaluating.
+ if (eval(sumOfDivisors[divisor]) == divisor) {
+ print("" + divisor + " = " + sumOfDivisors[divisor]);
+ }
+ }
+ print("That's all.");
+}
+
+
+print("\nA number is 'perfect' if it is equal to the sum of its")
+print("divisors (excluding itself).\n");
+perfect(500);
+
Index: ossp-pkg/js/src/perlconnect/JS.def
RCS File: /v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/JS.def,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/JS.def,v' | diff -u /dev/null - -L'ossp-pkg/js/src/perlconnect/JS.def' 2>/dev/null
--- ossp-pkg/js/src/perlconnect/JS.def
+++ - 2025-04-04 17:30:35.828705083 +0200
@@ -0,0 +1,6 @@
+LIBRARY "JS"
+DESCRIPTION "JS library for Perl <-> JS communications"
+CODE LOADONCALL
+DATA LOADONCALL NONSHARED MULTIPLE
+EXPORTS
+ boot_JS
Index: ossp-pkg/js/src/perlconnect/JS.dsp
RCS File: /v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/JS.dsp,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/JS.dsp,v' | diff -u /dev/null - -L'ossp-pkg/js/src/perlconnect/JS.dsp' 2>/dev/null
--- ossp-pkg/js/src/perlconnect/JS.dsp
+++ - 2025-04-04 17:30:35.831320240 +0200
@@ -0,0 +1,107 @@
+# Microsoft Developer Studio Project File - Name="JS" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
+
+CFG=JS - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "JS.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "JS.mak" CFG="JS - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "JS - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
+!MESSAGE "JS - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+MTL=midl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "JS - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
+# ADD RSC /l 0x409 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
+
+!ELSEIF "$(CFG)" == "JS - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "d:\opc\ns\js\ref" /I "$(PERL_SRC)" /I "$(PERL_SRC)\win32" /I "$(PERL_SRC)\win32\include" /I ".." /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "XP_PC" /YX /FD /c
+# SUBTRACT CPP /Gy /Fr
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32 /win32
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
+# ADD RSC /l 0x409 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 js32.lib perl.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"z:\livshits\src\perl\lib\auto\JS\JS.dll" /pdbtype:sept /libpath:"..\Debug" /libpath:"$(PERL_SRC)"
+
+!ENDIF
+
+# Begin Target
+
+# Name "JS - Win32 Release"
+# Name "JS - Win32 Debug"
+# Begin Source File
+
+SOURCE=.\JS.c
+# End Source File
+# Begin Source File
+
+SOURCE=.\JS.def
+# End Source File
+# Begin Source File
+
+SOURCE=.\jsperl.c
+# End Source File
+# Begin Source File
+
+SOURCE=.\jsperlpvt.h
+# End Source File
+# End Target
+# End Project
Index: ossp-pkg/js/src/perlconnect/PerlConnect.dsp
RCS File: /v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/PerlConnect.dsp,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/PerlConnect.dsp,v' | diff -u /dev/null - -L'ossp-pkg/js/src/perlconnect/PerlConnect.dsp' 2>/dev/null
--- ossp-pkg/js/src/perlconnect/PerlConnect.dsp
+++ - 2025-04-04 17:30:35.834941066 +0200
@@ -0,0 +1,103 @@
+# Microsoft Developer Studio Project File - Name="PerlConnect" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
+
+CFG=PerlConnect - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "PerlConnect.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "PerlConnect.mak" CFG="PerlConnect - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "PerlConnect - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
+!MESSAGE "PerlConnect - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+MTL=midl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "PerlConnect - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
+# ADD RSC /l 0x409 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /machine:I386
+
+!ELSEIF "$(CFG)" == "PerlConnect - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
+# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "d:\opc\ns\js\ref" /I "$(PERL_SRC)" /I "$(PERL_SRC)\win32" /I "$(PERL_SRC)\win32\include" /I "." /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "PERLCONNECT" /D "JSFILE" /D "XP_PC" /FR /YX /FD /c
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
+# ADD RSC /l 0x409 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 js32.lib perl.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /subsystem:windows /dll /pdb:none /debug /machine:I386 /out:"C:\DLLs\PerlConnect.dll " /implib:"PerlConnect.lib" /libpath:"d:\opc\ns\js\ref\Debug" /libpath:"$(PERL_SRC)"
+# SUBTRACT LINK32 /verbose
+
+!ENDIF
+
+# Begin Target
+
+# Name "PerlConnect - Win32 Release"
+# Name "PerlConnect - Win32 Debug"
+# Begin Source File
+
+SOURCE=.\jsperl.c
+# End Source File
+# Begin Source File
+
+SOURCE=.\jsperl.h
+# End Source File
+# Begin Source File
+
+SOURCE=.\jsperlpvt.h
+# End Source File
+# End Target
+# End Project
Index: ossp-pkg/js/src/perlconnect/PerlConnect.dsw
RCS File: /v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/PerlConnect.dsw,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/PerlConnect.dsw,v' | diff -u /dev/null - -L'ossp-pkg/js/src/perlconnect/PerlConnect.dsw' 2>/dev/null
--- ossp-pkg/js/src/perlconnect/PerlConnect.dsw
+++ - 2025-04-04 17:30:35.837591623 +0200
@@ -0,0 +1,59 @@
+Microsoft Developer Studio Workspace File, Format Version 6.00
+# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
+
+###############################################################################
+
+Project: "JS"=.\JS.dsp - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name PerlConnect
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Project: "PerlConnect"=.\PerlConnect.dsp - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+}}}
+
+###############################################################################
+
+Project: "PerlConnectShell"=.\PerlConnectShell.dsp - Package Owner=<4>
+
+Package=<5>
+{{{
+}}}
+
+Package=<4>
+{{{
+ Begin Project Dependency
+ Project_Dep_Name PerlConnect
+ End Project Dependency
+}}}
+
+###############################################################################
+
+Global:
+
+Package=<5>
+{{{
+}}}
+
+Package=<3>
+{{{
+}}}
+
+###############################################################################
+
Index: ossp-pkg/js/src/perlconnect/PerlConnectShell.dsp
RCS File: /v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/PerlConnectShell.dsp,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/perlconnect/Attic/PerlConnectShell.dsp,v' | diff -u /dev/null - -L'ossp-pkg/js/src/perlconnect/PerlConnectShell.dsp' 2>/dev/null
--- ossp-pkg/js/src/perlconnect/PerlConnectShell.dsp
+++ - 2025-04-04 17:30:35.840203155 +0200
@@ -0,0 +1,89 @@
+# Microsoft Developer Studio Project File - Name="PerlConnectShell" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=PerlConnectShell - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "PerlConnectShell.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "PerlConnectShell.mak" CFG="PerlConnectShell - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "PerlConnectShell - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "PerlConnectShell - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "PerlConnectShell - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
+# ADD RSC /l 0x409 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+
+!ELSEIF "$(CFG)" == "PerlConnectShell - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "D:\OPC\ns\js\ref" /I "D:\OPC\ns\js\ref\perlconnect" /I "$(PERL_SRC)" /I ".." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "PERLCONNECT" /D "JSFILE" /D "_WIN32" /D "XP_PC" /Fr /YX /FD /c
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
+# ADD RSC /l 0x409 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 js32.lib PerlConnect.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /out:"PerlConnectShell.exe" /pdbtype:sept /libpath:"..\Debug" /libpath:"$(PERL_SRC)"
+
+!ENDIF
+
+# Begin Target
+
+# Name "PerlConnectShell - Win32 Release"
+# Name "PerlConnectShell - Win32 Debug"
+# Begin Source File
+
+SOURCE=..\js.c
+# End Source File
+# End Target
+# End Project
Index: ossp-pkg/js/src/plify_jsdhash.sed
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/plify_jsdhash.sed,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/Attic/plify_jsdhash.sed,v' | diff -u - /dev/null -L'ossp-pkg/js/src/plify_jsdhash.sed' 2>/dev/null
--- ossp-pkg/js/src/plify_jsdhash.sed
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,32 +0,0 @@
-/ * Double hashing implementation./a\
- * GENERATED BY js/src/plify_jsdhash.sed -- DO NOT EDIT!!!
-/ * Double hashing, a la Knuth 6./a\
- * GENERATED BY js/src/plify_jsdhash.sed -- DO NOT EDIT!!!
-s/jsdhash_h___/pldhash_h___/
-s/jsdhash\.bigdump/pldhash.bigdump/
-s/jstypes\.h/nscore.h/
-s/jsbit\.h/prbit.h/
-s/jsdhash\.h/pldhash.h/
-s/jsdhash\.c/pldhash.c/
-s/jsdhash:/pldhash:/
-s/jsutil\.h/nsDebug.h/
-s/JS_DHASH/PL_DHASH/g
-s/JS_DHash/PL_DHash/g
-s/JSDHash/PLDHash/g
-s/JSHash/PLHash/g
-s/uint32 /PRUint32/g
-s/\([^U]\)int32 /\1PRInt32/g
-s/uint16 /PRUint16/g
-s/\([^U]\)int16 /\1PRInt16/g
-s/uint32/PRUint32/g
-s/\([^U]\)int32/\1PRInt32/g
-s/uint16/PRUint16/g
-s/\([^U]\)int16/\1PRInt16/g
-s/JSBool/PRBool/g
-s/extern JS_PUBLIC_API(\([^()]*\))/NS_COM_GLUE \1/
-s/JS_PUBLIC_API(\([^()]*\))/\1/
-s/JS_DLL_CALLBACK/PR_CALLBACK/
-s/JS_STATIC_DLL_CALLBACK/PR_STATIC_CALLBACK/
-s/JS_NewDHashTable/PL_NewDHashTable/
-s/JS_ASSERT(\(.*\));/NS_ASSERTION(\1, "PLDHash precondition");/
-s/JS_/PR_/g
Index: ossp-pkg/js/src/resource.h
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/resource.h,v
co -q -kk -p'1.2' '/v/ossp/cvs/ossp-pkg/js/src/Attic/resource.h,v' | diff -u /dev/null - -L'ossp-pkg/js/src/resource.h' 2>/dev/null
--- ossp-pkg/js/src/resource.h
+++ - 2025-04-04 17:30:35.865055879 +0200
@@ -0,0 +1,15 @@
+//{{NO_DEPENDENCIES}}
+// Microsoft Developer Studio generated include file.
+// Used by js3240.rc
+//
+
+// Next default values for new objects
+//
+#ifdef APSTUDIO_INVOKED
+#ifndef APSTUDIO_READONLY_SYMBOLS
+#define _APS_NEXT_RESOURCE_VALUE 101
+#define _APS_NEXT_COMMAND_VALUE 40001
+#define _APS_NEXT_CONTROL_VALUE 1000
+#define _APS_NEXT_SYMED_VALUE 101
+#endif
+#endif
Index: ossp-pkg/js/src/rules.mk
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/rules.mk,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/Attic/rules.mk,v' | diff -u - /dev/null -L'ossp-pkg/js/src/rules.mk' 2>/dev/null
--- ossp-pkg/js/src/rules.mk
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,193 +0,0 @@
-# -*- Mode: makefile -*-
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla 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/MPL/
-#
-# 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 Communicator client code, released
-# March 31, 1998.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998-1999
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Michael Ang
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either of the GNU General Public License Version 2 or later (the "GPL"),
-# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-#
-# JSRef GNUmake makefile rules
-#
-
-ifdef USE_MSVC
-LIB_OBJS = $(addprefix $(OBJDIR)/, $(LIB_CFILES:.c=.obj))
-PROG_OBJS = $(addprefix $(OBJDIR)/, $(PROG_CFILES:.c=.obj))
-else
-LIB_OBJS = $(addprefix $(OBJDIR)/, $(LIB_CFILES:.c=.o))
-LIB_OBJS += $(addprefix $(OBJDIR)/, $(LIB_ASFILES:.s=.o))
-PROG_OBJS = $(addprefix $(OBJDIR)/, $(PROG_CFILES:.c=.o))
-endif
-
-CFILES = $(LIB_CFILES) $(PROG_CFILES)
-OBJS = $(LIB_OBJS) $(PROG_OBJS)
-
-ifdef USE_MSVC
-# TARGETS = $(LIBRARY) # $(PROGRAM) not supported for MSVC yet
-TARGETS += $(SHARED_LIBRARY) $(PROGRAM) # it is now
-else
-TARGETS += $(LIBRARY) $(SHARED_LIBRARY) $(PROGRAM)
-endif
-
-all:
- +$(LOOP_OVER_PREDIRS)
-ifneq "$(strip $(TARGETS))" ""
- $(MAKE) -f Makefile.ref $(TARGETS)
-endif
- +$(LOOP_OVER_DIRS)
-
-$(OBJDIR)/%: %.c
- @$(MAKE_OBJDIR)
- $(CC) -o $@ $(CFLAGS) $*.c $(LDFLAGS)
-
-# This rule must come before the rule with no dep on header
-$(OBJDIR)/%.o: %.c %.h
- @$(MAKE_OBJDIR)
- $(CC) -o $@ -c $(CFLAGS) $*.c
-
-
-$(OBJDIR)/%.o: %.c
- @$(MAKE_OBJDIR)
- $(CC) -o $@ -c $(CFLAGS) $*.c
-
-$(OBJDIR)/%.o: %.s
- @$(MAKE_OBJDIR)
- $(AS) -o $@ $(ASFLAGS) $*.s
-
-# This rule must come before rule with no dep on header
-$(OBJDIR)/%.obj: %.c %.h
- @$(MAKE_OBJDIR)
- $(CC) -Fo$(OBJDIR)/ -c $(CFLAGS) $(JSDLL_CFLAGS) $*.c
-
-$(OBJDIR)/%.obj: %.c
- @$(MAKE_OBJDIR)
- $(CC) -Fo$(OBJDIR)/ -c $(CFLAGS) $(JSDLL_CFLAGS) $*.c
-
-$(OBJDIR)/js.obj: js.c
- @$(MAKE_OBJDIR)
- $(CC) -Fo$(OBJDIR)/ -c $(CFLAGS) $<
-
-ifeq ($(OS_ARCH),OS2)
-$(LIBRARY): $(LIB_OBJS)
- $(AR) $@ $? $(AR_OS2_SUFFIX)
- $(RANLIB) $@
-else
-ifdef USE_MSVC
-$(SHARED_LIBRARY): $(LIB_OBJS)
- link.exe $(LIB_LINK_FLAGS) /base:0x61000000 $(OTHER_LIBS) \
- /out:"$@" /pdb:none\
- /implib:"$(OBJDIR)/$(@F:.dll=.lib)" $^
-else
-$(LIBRARY): $(LIB_OBJS)
- $(AR) rv $@ $?
- $(RANLIB) $@
-
-$(SHARED_LIBRARY): $(LIB_OBJS)
- $(MKSHLIB) -o $@ $(LIB_OBJS) $(LDFLAGS) $(OTHER_LIBS)
-endif
-endif
-
-# Java stuff
-$(CLASSDIR)/$(OBJDIR)/$(JARPATH)/%.class: %.java
- mkdir -p $(@D)
- $(JAVAC) $(JAVAC_FLAGS) $<
-
-define MAKE_OBJDIR
-if test ! -d $(@D); then rm -rf $(@D); mkdir -p $(@D); fi
-endef
-
-ifdef DIRS
-LOOP_OVER_DIRS = \
- @for d in $(DIRS); do \
- if test -d $$d; then \
- set -e; \
- echo "cd $$d; $(MAKE) -f Makefile.ref $@"; \
- cd $$d; $(MAKE) -f Makefile.ref $@; cd ..; \
- set +e; \
- else \
- echo "Skipping non-directory $$d..."; \
- fi; \
- done
-endif
-
-ifdef PREDIRS
-LOOP_OVER_PREDIRS = \
- @for d in $(PREDIRS); do \
- if test -d $$d; then \
- set -e; \
- echo "cd $$d; $(MAKE) -f Makefile.ref $@"; \
- cd $$d; $(MAKE) -f Makefile.ref $@; cd ..; \
- set +e; \
- else \
- echo "Skipping non-directory $$d..."; \
- fi; \
- done
-endif
-
-export:
- +$(LOOP_OVER_PREDIRS)
- mkdir -p $(DIST)/include $(DIST)/$(LIBDIR) $(DIST)/bin
-ifneq "$(strip $(HFILES))" ""
- $(CP) $(HFILES) $(DIST)/include
-endif
-ifneq "$(strip $(LIBRARY))" ""
- $(CP) $(LIBRARY) $(DIST)/$(LIBDIR)
-endif
-ifneq "$(strip $(JARS))" ""
- $(CP) $(JARS) $(DIST)/$(LIBDIR)
-endif
-ifneq "$(strip $(SHARED_LIBRARY))" ""
- $(CP) $(SHARED_LIBRARY) $(DIST)/$(LIBDIR)
-endif
-ifneq "$(strip $(PROGRAM))" ""
- $(CP) $(PROGRAM) $(DIST)/bin
-endif
- +$(LOOP_OVER_DIRS)
-
-clean:
- rm -rf $(OBJS)
- @cd fdlibm; $(MAKE) -f Makefile.ref clean
-
-clobber:
- rm -rf $(OBJS) $(TARGETS) $(DEPENDENCIES)
- @cd fdlibm; $(MAKE) -f Makefile.ref clobber
-
-depend:
- gcc -MM $(CFLAGS) $(LIB_CFILES)
-
-tar:
- tar cvf $(TARNAME) $(TARFILES)
- gzip $(TARNAME)
-
Index: ossp-pkg/js/src/win32.order
RCS File: /v/ossp/cvs/ossp-pkg/js/src/Attic/win32.order,v
co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/js/src/Attic/win32.order,v' | diff -u - /dev/null -L'ossp-pkg/js/src/win32.order' 2>/dev/null
--- ossp-pkg/js/src/win32.order
+++ /dev/null 2025-04-04 17:30:29.000000000 +0200
@@ -1,391 +0,0 @@
-js_MarkGCThing ; 5893956
-JS_GetPrivate ; 2090130
-JS_HashTableRawLookup ; 1709984
-js_Mark ; 1547496
-js_GetToken ; 1406677
-js_UngetToken ; 1154416
-js_MarkAtom ; 992874
-js_MatchToken ; 980277
-js_CompareStrings ; 662772
-js_Lock ; 628184
-js_Unlock ; 628184
-js_AtomizeString ; 611102
-js_HashString ; 611102
-js_DropScopeProperty ; 546476
-JS_malloc ; 484350
-js_Atomize ; 464433
-js_InflateStringToBuffer ; 460739
-js_HoldScopeProperty ; 442612
-JS_free ; 382991
-js_MarkScript ; 376942
-js_HashId ; 365238
-JS_CompareValues ; 352366
-js_IdToValue ; 337594
-JS_GetClass ; 325296
-js_LookupProperty ; 324680
-js_GetAtom ; 244669
-js_DropProperty ; 223217
-JS_GetParent ; 209680
-js_LiveContext ; 205767
-js_PeekToken ; 200646
-js_GetSlotThreadSafe ; 198839
-JS_GetStringChars ; 190862
-JS_HashTableRawAdd ; 179156
-js_FoldConstants ; 162626
-js_EmitTree ; 145634
-JS_EnumerateStub ; 140640
-js_NewSrcNote ; 136983
-js_GetProperty ; 135639
-js_NewScopeProperty ; 135057
-js_MutateScope ; 135057
-js_GetMutableScope ; 135057
-js_AllocSlot ; 132401
-JS_GetRuntime ; 127316
-JS_FrameIterator ; 121963
-JS_GetFrameFunctionObject ; 120567
-js_AllocGCThing ; 119828
-js_DestroyScopeProperty ; 115989
-js_Emit3 ; 109135
-js_AtomizeChars ; 108038
-JS_HashTableLookup ; 107154
-JS_InstanceOf ; 103905
-js_DefineProperty ; 99514
-js_strncpy ; 88276
-js_PeekTokenSameLine ; 87197
-js_HoldObjectMap ; 79084
-js_DropObjectMap ; 77824
-js_NewObject ; 72421
-js_ValueToString ; 72143
-js_GetClassPrototype ; 66235
-js_UnlockRuntime ; 64699
-js_LockRuntime ; 64699
-js_ContextIterator ; 64586
-JS_ClearWatchPointsForObject ; 64155
-js_FinalizeObject ; 63925
-js_IndexAtom ; 63789
-JS_SetPrivate ; 63702
-JS_GetGlobalObject ; 63546
-js_Emit1 ; 63012
-JS_ContextIterator ; 57847
-JS_GetInstancePrivate ; 57817
-JS_HashTableRawRemove ; 57057
-js_AllocRawStack ; 54181
-js_Invoke ; 53568
-js_FindProperty ; 53150
-JS_GetFrameScript ; 51395
-js_LinkFunctionObject ; 50651
-js_SetSrcNoteOffset ; 47735
-js_InWithStatement ; 47346
-js_NewFunction ; 47074
-js_NewSrcNote2 ; 46165
-JS_HashTableAdd ; 45503
-JS_HashTableRemove ; 45213
-js_InCatchBlock ; 42198
-js_AddRootRT ; 40587
-js_AddRoot ; 40587
-js_SetProperty ; 40558
-JS_AddNamedRoot ; 40462
-js_RemoveRoot ; 40384
-JS_RemoveRootRT ; 38129
-js_NewString ; 37471
-js_DefineFunction ; 36629
-JS_GetContextThread ; 36498
-JS_LookupProperty ; 35137
-JS_ValueToString ; 34072
-JS_realloc ; 33776
-JS_DefineFunction ; 33268
-JS_SetErrorReporter ; 32851
-js_FinalizeString ; 30311
-js_FinalizeStringRT ; 30311
-JS_ArenaAllocate ; 30099
-JS_BeginRequest ; 29323
-JS_EndRequest ; 29323
-JS_GetContextPrivate ; 29189
-JS_CompactArenaPool ; 28874
-js_ValueToStringAtom ; 27934
-JS_ValueToId ; 26517
-js_ValueToBoolean ; 25908
-JS_InternString ; 25467
-js_PopStatement ; 24364
-js_PushStatement ; 24364
-js_NewStringCopyN ; 23911
-js_FlushPropertyCacheByProp ; 23883
-js_GetStringBytes ; 23421
-JS_ArenaRelease ; 23267
-JS_GetStringBytes ; 23106
-js_FreeStack ; 22399
-js_AllocStack ; 22399
-JS_SetProperty ; 21240
-js_InitObjectMap ; 19991
-js_NewScope ; 19991
-js_strlen ; 19070
-JS_GetScriptPrincipals ; 18063
-js_SrcNoteLength ; 17369
-js_DestroyObjectMap ; 17198
-js_DestroyScope ; 17198
-JS_GetStringLength ; 16306
-js_PopStatementCG ; 15418
-JS_GetFrameAnnotation ; 14949
-js_FreeRawStack ; 14032
-js_Interpret ; 14032
-js_TransferScopeLock ; 13899
-JS_ResolveStandardClass ; 13645
-JS_ResumeRequest ; 12837
-JS_SuspendRequest ; 12837
-JS_GetProperty ; 12488
-JS_NewObject ; 11660
-js_AllocTryNotes ; 11418
-js_NewNumberValue ; 10859
-js_InternalInvoke ; 10051
-js_NewDouble ; 9936
-js_SetJumpOffset ; 9886
-js_SkipWhiteSpace ; 9299
-js_NewDoubleValue ; 7474
-JS_GetPendingException ; 7404
-js_NewObjectMap ; 7236
-JS_ClearPendingException ; 7092
-JS_strtod ; 7053
-js_strtod ; 7053
-js_InflateString ; 7004
-JS_GetFunctionName ; 6808
-JS_NewHashTable ; 6794
-JS_NewFunction ; 6575
-js_FreeSlot ; 6476
-js_LockScope ; 6332
-JS_HashTableEnumerateEntries ; 6285
-js_GetLengthProperty ; 6162
-js_LockObj ; 6149
-JS_NewUCStringCopyN ; 5994
-JS_NewNumberValue ; 5904
-js_NewStringCopyZ ; 5809
-JS_NewUCStringCopyZ ; 5809
-js_DeflateString ; 5612
-js_ValueToNumber ; 5456
-JS_SetOptions ; 5322
-js_NewScript ; 4941
-js_InitCodeGenerator ; 4810
-js_FinishTakingSrcNotes ; 4810
-js_NewScriptFromParams ; 4810
-js_InitAtomMap ; 4810
-js_FinishTakingTryNotes ; 4810
-js_NewScriptFromCG ; 4810
-js_FinishCodeGenerator ; 4810
-JS_strdup ; 4534
-JS_HashTableDestroy ; 4119
-js_CheckRedeclaration ; 3965
-JS_DefineFunctions ; 3808
-js_EmitFunctionBody ; 3739
-js_TryMethod ; 3685
-js_DefaultValue ; 3610
-js_CloneFunctionObject ; 3577
-JS_InitClass ; 3546
-js_SetClassPrototype ; 3377
-JS_GetPrototype ; 3268
-JS_DefineProperties ; 3115
-js_FindVariable ; 3093
-js_DestroyScript ; 3041
-JS_ClearScriptTraps ; 3041
-js_FreeAtomMap ; 3041
-JS_NewStringCopyZ ; 2953
-js_AtomizeObject ; 2709
-JS_ValueToBoolean ; 2643
-js_SetLengthProperty ; 2637
-JS_GetOptions ; 2593
-js_ValueToObject ; 2522
-js_ValueToNonNullObject ; 2510
-js_StringToObject ; 2482
-JS_SetElement ; 2448
-js_NumberToString ; 2407
-JS_TypeOfValue ; 2275
-js_NewBufferTokenStream ; 2253
-js_NewTokenStream ; 2253
-js_CloseTokenStream ; 2253
-JS_RemoveRoot ; 2148
-JS_NewDouble ; 2129
-JS_vsnprintf ; 1937
-JS_snprintf ; 1937
-JS_CallFunctionValue ; 1844
-JS_DHashVoidPtrKeyStub ; 1840
-JS_DHashTableOperate ; 1840
-js_SetProtoOrParent ; 1758
-js_DoubleToInteger ; 1729
-JS_SetVersion ; 1531
-js_ValueToFunction ; 1476
-JS_SetPrototype ; 1408
-JS_CeilingLog2 ; 1317
-js_Execute ; 1199
-js_CompileFunctionBody ; 1182
-JS_CompileUCFunctionForPrincipals ; 1182
-js_GetSrcNoteOffset ; 1139
-JS_DHashMatchEntryStub ; 1094
-JS_VersionToString ; 1090
-JS_CompileUCScriptForPrincipals ; 1071
-js_CompileTokenStream ; 1071
-js_CurrentThreadId ; 1058
-JS_IdToValue ; 1046
-js_ConstructObject ; 974
-JS_DestroyScript ; 967
-js_PCToLineNumber ; 967
-JS_DefineProperty ; 930
-JS_GetScriptFilename ; 924
-JS_GetFramePC ; 899
-JS_EvaluateUCScriptForPrincipals ; 892
-JS_PCToLineNumber ; 848
-JS_StringToVersion ; 761
-js_ExecuteRegExp ; 755
-JS_MaybeGC ; 717
-JS_ValueToNumber ; 698
-JS_GetVersion ; 698
-JS_AliasProperty ; 693
-js_AtomizeValue ; 664
-js_BooleanToString ; 664
-js_SetSlotThreadSafe ; 596
-JS_DHashClearEntryStub ; 584
-JS_DHashTableRawRemove ; 584
-JS_DefineObject ; 557
-js_PutCallObject ; 516
-js_GetCallObject ; 516
-js_strchr ; 511
-JS_DefineUCProperty ; 480
-JS_dtostr ; 475
-JS_ValueToInt32 ; 464
-js_ValueToInt32 ; 464
-JS_FinishArenaPool ; 453
-js_NewTryNote ; 441
-js_strtointeger ; 437
-JS_vsmprintf ; 428
-JS_DHashTableInit ; 423
-JS_DHashAllocTable ; 423
-JS_DHashGetStubOps ; 423
-JS_NewDHashTable ; 423
-JS_DHashTableDestroy ; 423
-JS_DHashFreeTable ; 423
-JS_DHashTableFinish ; 423
-js_EmitBreak ; 412
-js_GetAttributes ; 412
-JS_DefineConstDoubles ; 407
-JS_ArenaGrow ; 374
-js_AtomizeInt ; 372
-JS_SetParent ; 345
-JS_CloneFunctionObject ; 343
-JS_IsNativeFrame ; 343
-JS_ReportErrorNumber ; 340
-js_ErrorToException ; 340
-js_ReportErrorNumberVA ; 340
-js_GetErrorMessage ; 340
-js_ExpandErrorArguments ; 340
-js_ReportUncaughtException ; 315
-JS_IsExceptionPending ; 315
-js_ReportErrorAgain ; 315
-js_ErrorFromException ; 315
-JS_LookupUCProperty ; 307
-JS_InitArenaPool ; 293
-PRMJ_Now ; 262
-DllMain@12 ; 235
-JS_ExecuteScript ; 232
-JS_GetFrameFunction ; 226
-PRMJ_LocalGMTDifference ; 175
-JS_GetConstructor ; 175
-JS_SetGlobalObject ; 164
-js_LockGCThing ; 155
-js_NewRegExpObject ; 152
-js_NewRegExp ; 152
-js_InitObjectClass ; 131
-js_InitFunctionClass ; 131
-js_EmitN ; 128
-JS_ArenaFinish ; 124
-js_GC ; 124
-js_SweepAtomState ; 124
-js_MarkAtomState ; 124
-JS_ArenaRealloc ; 124
-js_ForceGC ; 124
-js_FlushPropertyCache ; 122
-js_InitNumberClass ; 114
-JS_smprintf ; 112
-js_DoubleToECMAInt32 ; 112
-js_ValueToECMAInt32 ; 111
-JS_ValueToECMAInt32 ; 111
-JS_SetContextPrivate ; 109
-PRMJ_DSTOffset ; 108
-js_Clear ; 105
-JS_ClearScope ; 105
-JS_NewScriptObject ; 104
-JS_smprintf_free ; 104
-JS_ConvertValue ; 99
-js_GetSrcNote ; 98
-JS_ValueToECMAUint32 ; 93
-js_ValueToECMAUint32 ; 93
-js_printf ; 93
-js_DoubleToECMAUint32 ; 93
-js_DestroyRegExp ; 89
-js_UnlockGCThing ; 89
-js_TryValueOf ; 87
-js_NewSrcNote3 ; 86
-JS_ConvertStub ; 81
-JS_SetPendingException ; 80
-js_InitStringClass ; 79
-JS_GC ; 78
-js_InitArrayClass ; 74
-js_InitDateClass ; 67
-JS_NewContext ; 64
-JS_AddArgumentFormatter ; 64
-js_InitContextForLocking ; 64
-js_NewContext ; 64
-JS_SetBranchCallback ; 64
-JS_ClearRegExpStatics ; 64
-js_InitRegExpStatics ; 64
-js_InitCallClass ; 63
-js_InitRegExpClass ; 61
-js_Enumerate ; 58
-JS_DestroyContext ; 46
-js_DestroyContext ; 46
-js_FreeRegExpStatics ; 46
-js_InitScanner ; 39
-js_NewPrinter ; 36
-js_DestroyPrinter ; 36
-js_GetPrinterOutput ; 36
-JS_FreeArenaPool ; 36
-js_DecompileCode ; 34
-js_EmitContinue ; 33
-js_CheckAccess ; 30
-js_DecompileValueGenerator ; 28
-js_InitMathClass ; 27
-js_InitExceptionClasses ; 25
-js_NewArrayObject ; 24
-js_InitArgumentsClass ; 21
-js_puts ; 20
-js_InitBooleanClass ; 19
-JS_InitStandardClasses ; 19
-js_InitScriptClass ; 19
-js_obj_toString ; 15
-js_GetArgsValue ; 14
-js_GetArgsObject ; 14
-js_AtomizeDouble ; 12
-JS_DestroyIdArray ; 11
-js_NewIdArray ; 11
-JS_GetElement ; 11
-JS_EvaluateScript ; 9
-JS_EvaluateUCScript ; 9
-JS_DecompileFunction ; 8
-js_DecompileFunction ; 8
-JS_NewString ; 8
-js_SetStringBytes ; 8
-JS_GetArrayLength ; 7
-JS_NewArrayObject ; 7
-JS_IsArrayObject ; 7
-JS_ValueToObject ; 7
-JS_DefineElement ; 6
-js_DecompileScript ; 6
-JS_PushArguments ; 4
-JS_PopArguments ; 4
-JS_PushArgumentsVA ; 4
-js_PutArgsObject ; 2
-JS_SetGCCallbackRT ; 2
-JS_Init ; 1
-js_SetupLocks ; 1
-js_InitRuntimeNumberState ; 1
-js_InitRuntimeStringState ; 1
-js_InitLock ; 1
-js_InitGC ; 1
-js_InitAtomState ; 1
-js_InitStringGlobals ; 1