diff --git a/.eslintignore b/.eslintignore
index 999e137f0f8..f5f8a9e7ccd 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -24,7 +24,3 @@ packages/import-ynab5/**/node_modules/*
packages/loot-core/**/node_modules/*
packages/loot-core/**/lib-dist/*
packages/loot-core/**/proto/*
-
-packages/node-libofx/libofx.*.js
-packages/node-libofx/libofx/
-packages/node-libofx/OpenSP-*/
diff --git a/packages/desktop-client/src/components/modals/ImportTransactions.jsx b/packages/desktop-client/src/components/modals/ImportTransactions.jsx
index 79f23a37a84..731e0bb965e 100644
--- a/packages/desktop-client/src/components/modals/ImportTransactions.jsx
+++ b/packages/desktop-client/src/components/modals/ImportTransactions.jsx
@@ -743,8 +743,6 @@ export function ImportTransactions({ modalProps, options }) {
const [clearOnImport, setClearOnImport] = useState(true);
- const enableExperimentalOfxParser = useFeatureFlag('experimentalOfxParser');
-
async function parse(filename, options) {
setLoadingState('parsing');
@@ -752,11 +750,6 @@ export function ImportTransactions({ modalProps, options }) {
setFilename(filename);
setFileType(filetype);
- options = {
- ...options,
- enableExperimentalOfxParser,
- };
-
const { errors, transactions } = await parseTransactions(filename, options);
setLoadingState(null);
setError(null);
diff --git a/packages/desktop-client/src/components/settings/Experimental.tsx b/packages/desktop-client/src/components/settings/Experimental.tsx
index 273c1c21671..28ed2172237 100644
--- a/packages/desktop-client/src/components/settings/Experimental.tsx
+++ b/packages/desktop-client/src/components/settings/Experimental.tsx
@@ -94,10 +94,6 @@ export function ExperimentalFeatures() {
Goal templates
-
-
- Experimental OFX parser
-
) : (
= {
reportBudget: false,
goalTemplatesEnabled: false,
customReports: false,
- experimentalOfxParser: true,
};
export function useFeatureFlag(name: FeatureFlag): boolean {
diff --git a/packages/desktop-electron/package.json b/packages/desktop-electron/package.json
index 4f80a76bbc1..d84225cdf22 100644
--- a/packages/desktop-electron/package.json
+++ b/packages/desktop-electron/package.json
@@ -19,8 +19,7 @@
"!**/*.js.map",
"!node_modules/@jlongster/sql.js",
"!node_modules/absurd-sql",
- "!node_modules/better-sqlite3/{benchmark,src,bin,docs,deps,build/Release/obj,build/Release/sqlite3.a,build/Release/test_extension.node}",
- "!node_modules/node-libofx/{OpenSP-1.5.2,libofx,libofx.web.js,libofx.web.wasm,emscripten.cpp,Makefile}"
+ "!node_modules/better-sqlite3/{benchmark,src,bin,docs,deps,build/Release/obj,build/Release/sqlite3.a,build/Release/test_extension.node}"
],
"publish": {
"provider": "github",
diff --git a/packages/loot-core/bin/build-browser b/packages/loot-core/bin/build-browser
index 3b2c0d290c9..56caa4d9a77 100755
--- a/packages/loot-core/bin/build-browser
+++ b/packages/loot-core/bin/build-browser
@@ -37,7 +37,6 @@ if [ $NODE_ENV == 'development' ]; then
fi
cp ../../../node_modules/@jlongster/sql.js/dist/sql-wasm.wasm "$PUBLIC_DIR"/sql-wasm.wasm
-cp ../../node-libofx/libofx.web.wasm "$PUBLIC_DIR"/libofx.web.wasm
yarn webpack --config ../webpack/webpack.browser.config.js \
--target "webworker" \
diff --git a/packages/loot-core/package.json b/packages/loot-core/package.json
index 36d1d680e3f..48253fea564 100644
--- a/packages/loot-core/package.json
+++ b/packages/loot-core/package.json
@@ -33,7 +33,6 @@
"md5": "^2.3.0",
"mitt": "^3.0.0",
"node-fetch": "^2.6.9",
- "node-libofx": "*",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"reselect": "^4.1.8",
diff --git a/packages/loot-core/src/server/accounts/parse-file.test.ts b/packages/loot-core/src/server/accounts/parse-file.test.ts
index e5787d9f268..21628b3e6ab 100644
--- a/packages/loot-core/src/server/accounts/parse-file.test.ts
+++ b/packages/loot-core/src/server/accounts/parse-file.test.ts
@@ -37,9 +37,6 @@ async function importFileWithRealTime(
global.restoreDateNow();
const { errors, transactions: originalTransactions } = await parseFile(
filepath,
- {
- enableExperimentalOfxParser: true,
- },
);
global.restoreFakeDateNow();
diff --git a/packages/loot-core/src/server/accounts/parse-file.ts b/packages/loot-core/src/server/accounts/parse-file.ts
index c47fce23270..210a6883bf2 100644
--- a/packages/loot-core/src/server/accounts/parse-file.ts
+++ b/packages/loot-core/src/server/accounts/parse-file.ts
@@ -1,7 +1,6 @@
import csv2json from 'csv-parse/lib/sync';
import * as fs from '../../platform/server/fs';
-import { dayFromDate } from '../../shared/months';
import { looselyParseAmount } from '../../shared/util';
import { ofx2json } from './ofx2json';
@@ -17,7 +16,6 @@ type ParseFileOptions = {
hasHeaderRow?: boolean;
delimiter?: string;
fallbackMissingPayeeToMemo?: boolean;
- enableExperimentalOfxParser?: boolean;
};
export async function parseFile(
@@ -111,10 +109,6 @@ async function parseOFX(
filepath: string,
options?: ParseFileOptions,
): Promise {
- if (!options?.enableExperimentalOfxParser) {
- return parseOFXNodeLibOFX(filepath, options);
- }
-
const errors = Array();
const contents = await fs.readFile(filepath);
@@ -147,43 +141,3 @@ async function parseOFX(
}),
};
}
-
-async function parseOFXNodeLibOFX(
- filepath: string,
- options: ParseFileOptions,
-): Promise {
- const { getOFXTransactions, initModule } = await import(
- /* webpackChunkName: 'xfo' */ 'node-libofx'
- );
- await initModule();
-
- const errors = Array();
- const contents = await fs.readFile(filepath, 'binary');
-
- let data;
- try {
- data = getOFXTransactions(contents);
- } catch (err) {
- errors.push({
- message: 'Failed importing file',
- internal: err.stack,
- });
- return { errors };
- }
-
- // Banks don't always implement the OFX standard properly
- // If no payee is available try and fallback to memo
- const useMemoFallback = options.fallbackMissingPayeeToMemo;
-
- return {
- errors,
- transactions: data.map(trans => ({
- amount: trans.amount,
- imported_id: trans.fi_id,
- date: trans.date ? dayFromDate(new Date(trans.date * 1000)) : null,
- payee_name: trans.name || (useMemoFallback ? trans.memo : null),
- imported_payee: trans.name || (useMemoFallback ? trans.memo : null),
- notes: !!trans.name || !useMemoFallback ? trans.memo || null : null, //memo used for payee
- })),
- };
-}
diff --git a/packages/loot-core/src/types/prefs.d.ts b/packages/loot-core/src/types/prefs.d.ts
index 4d183b709af..31a25962c49 100644
--- a/packages/loot-core/src/types/prefs.d.ts
+++ b/packages/loot-core/src/types/prefs.d.ts
@@ -5,8 +5,7 @@ export type FeatureFlag =
| 'sankeyReport'
| 'reportBudget'
| 'goalTemplatesEnabled'
- | 'customReports'
- | 'experimentalOfxParser';
+ | 'customReports';
export type LocalPrefs = Partial<
{
diff --git a/packages/loot-core/webpack/webpack.desktop.config.js b/packages/loot-core/webpack/webpack.desktop.config.js
index b1df8510040..152deec728e 100644
--- a/packages/loot-core/webpack/webpack.desktop.config.js
+++ b/packages/loot-core/webpack/webpack.desktop.config.js
@@ -28,7 +28,7 @@ module.exports = {
'pegjs',
],
},
- externals: ['better-sqlite3', 'electron-log', 'node-fetch', 'node-libofx'],
+ externals: ['better-sqlite3', 'electron-log', 'node-fetch'],
plugins: [
new webpack.IgnorePlugin({
resourceRegExp: /original-fs/,
diff --git a/packages/node-libofx/.gitignore b/packages/node-libofx/.gitignore
deleted file mode 100644
index 15309787ada..00000000000
--- a/packages/node-libofx/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-*.o
\ No newline at end of file
diff --git a/packages/node-libofx/Makefile b/packages/node-libofx/Makefile
deleted file mode 100644
index 5e4f2e23119..00000000000
--- a/packages/node-libofx/Makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-
-all: opensp ofx finalweb finalnode
-
-final: finalweb finalnode
-
-finalweb:
- $(MAKE) EMCC_FLAGS="-s ENVIRONMENT=\"worker\"" EMCC_OUTPUT_FILE="libofx.web.js" wasm
-
-finalnode:
- $(MAKE) EMCC_OUTPUT_FILE="libofx.electron.js" wasm
-
-wasm:
- emcc emscripten.cpp -O2 libofx/lib/.libs/libofx.dylib OpenSP-1.5.2/lib/.libs/libosp.dylib \
- -s EXPORTED_FUNCTIONS="['_init', '_debug', '_set_ofx_version', '_set_app_id', '_set_app_version', '_parse_data', '_get_new_context', '_ofx_set_statement_cb', '_ofx_set_account_cb', '_ofx_set_transaction_cb', '_transaction_amount', '_transaction_fi_id', '_transaction_date', '_transaction_payee', '_transaction_name', '_transaction_memo']" \
- -s EXTRA_EXPORTED_RUNTIME_METHODS='["cwrap", "addFunction"]' \
- -s RESERVED_FUNCTION_POINTERS=10 \
- -s MODULARIZE=1 \
- $(EMCC_FLAGS) \
- --embed-file libofx/dtd/ofx160.dtd \
- --embed-file libofx/dtd/ofx201.dtd \
- --embed-file libofx/dtd/ofc.dtd \
- --embed-file libofx/dtd/opensp.dcl \
- -o $(EMCC_OUTPUT_FILE)
-
-opensp:
- cd OpenSP-1.5.2 && emconfigure ./configure --disable-doc-build
- sed -i -e 's/\/\* \#undef HAVE_NAMESPACE_STD \*\//\#define HAVE_NAMESPACE_STD/g' OpenSP-1.5.2/config.h
- sed -i -e 's/\/\* \#undef HAVE_MEMMOVE \*\//\#define HAVE_MEMMOVE 1/g' OpenSP-1.5.2/config.h
- sed -i -e 's/\#define ptrdiff_t long/\/*\#define ptrdiff_t long\*\//g' OpenSP-1.5.2/config.h
- cd OpenSP-1.5.2 && emmake make
-
-ofx:
- cd libofx && emconfigure ./configure --verbose --without-iconv --with-opensp-includes=/Users/james/projects/actual/packages/node-libofx/OpenSP-1.5.2/generic --with-opensp-libs=/Users/james/projects/actual/packages/node-libofx/OpenSP-1.5.2/lib/.libs
- cd libofx && emmake make
-
-clean:
- cd libofx && make clean
- cd OpenSP-1.5.2 && make clean
diff --git a/packages/node-libofx/OpenSP-1.5.2/.cvsignore b/packages/node-libofx/OpenSP-1.5.2/.cvsignore
deleted file mode 100644
index ef51cc59aa5..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/.cvsignore
+++ /dev/null
@@ -1,33 +0,0 @@
-config.h
-Makefile.in
-ChangeLog
-stamp-h.in
-config.cache
-configure
-aclocal.m4
-config.log
-libtool
-config.status
-Makefile
-stamp-h
-stamp-h1
-config.h.in
-msggen.pl
-*.tar.gz
-*.spec
-autom4te-2.53.cache
-autom4te.cache
-onsgmlnorm.1
-onsgmls.1
-osgmlnorm.1
-ospam.1
-ospent.1
-osx.1
-ospcat.1
-releasenotes.html
-releasenotes.pdf
-releasenotes.ps
-stamp-h1.in
-stamp-h2.in
-stamp-h3.in
-stamp-h4.in
diff --git a/packages/node-libofx/OpenSP-1.5.2/ABOUT-NLS b/packages/node-libofx/OpenSP-1.5.2/ABOUT-NLS
deleted file mode 100644
index e32d52d2b7d..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/ABOUT-NLS
+++ /dev/null
@@ -1,996 +0,0 @@
-1 Notes on the Free Translation Project
-***************************************
-
-Free software is going international! The Free Translation Project is
-a way to get maintainers of free software, translators, and users all
-together, so that free software will gradually become able to speak many
-languages. A few packages already provide translations for their
-messages.
-
- If you found this `ABOUT-NLS' file inside a distribution, you may
-assume that the distributed package does use GNU `gettext' internally,
-itself available at your nearest GNU archive site. But you do _not_
-need to install GNU `gettext' prior to configuring, installing or using
-this package with messages translated.
-
- Installers will find here some useful hints. These notes also
-explain how users should proceed for getting the programs to use the
-available translations. They tell how people wanting to contribute and
-work on translations can contact the appropriate team.
-
- When reporting bugs in the `intl/' directory or bugs which may be
-related to internationalization, you should tell about the version of
-`gettext' which is used. The information can be found in the
-`intl/VERSION' file, in internationalized packages.
-
-1.1 Quick configuration advice
-==============================
-
-If you want to exploit the full power of internationalization, you
-should configure it using
-
- ./configure --with-included-gettext
-
-to force usage of internationalizing routines provided within this
-package, despite the existence of internationalizing capabilities in the
-operating system where this package is being installed. So far, only
-the `gettext' implementation in the GNU C library version 2 provides as
-many features (such as locale alias, message inheritance, automatic
-charset conversion or plural form handling) as the implementation here.
-It is also not possible to offer this additional functionality on top
-of a `catgets' implementation. Future versions of GNU `gettext' will
-very likely convey even more functionality. So it might be a good idea
-to change to GNU `gettext' as soon as possible.
-
- So you need _not_ provide this option if you are using GNU libc 2 or
-you have installed a recent copy of the GNU gettext package with the
-included `libintl'.
-
-1.2 INSTALL Matters
-===================
-
-Some packages are "localizable" when properly installed; the programs
-they contain can be made to speak your own native language. Most such
-packages use GNU `gettext'. Other packages have their own ways to
-internationalization, predating GNU `gettext'.
-
- By default, this package will be installed to allow translation of
-messages. It will automatically detect whether the system already
-provides the GNU `gettext' functions. If not, the included GNU
-`gettext' library will be used. This library is wholly contained
-within this package, usually in the `intl/' subdirectory, so prior
-installation of the GNU `gettext' package is _not_ required.
-Installers may use special options at configuration time for changing
-the default behaviour. The commands:
-
- ./configure --with-included-gettext
- ./configure --disable-nls
-
-will, respectively, bypass any pre-existing `gettext' to use the
-internationalizing routines provided within this package, or else,
-_totally_ disable translation of messages.
-
- When you already have GNU `gettext' installed on your system and run
-configure without an option for your new package, `configure' will
-probably detect the previously built and installed `libintl.a' file and
-will decide to use this. This might not be desirable. You should use
-the more recent version of the GNU `gettext' library. I.e. if the file
-`intl/VERSION' shows that the library which comes with this package is
-more recent, you should use
-
- ./configure --with-included-gettext
-
-to prevent auto-detection.
-
- The configuration process will not test for the `catgets' function
-and therefore it will not be used. The reason is that even an
-emulation of `gettext' on top of `catgets' could not provide all the
-extensions of the GNU `gettext' library.
-
- Internationalized packages usually have many `po/LL.po' files, where
-LL gives an ISO 639 two-letter code identifying the language. Unless
-translations have been forbidden at `configure' time by using the
-`--disable-nls' switch, all available translations are installed
-together with the package. However, the environment variable `LINGUAS'
-may be set, prior to configuration, to limit the installed set.
-`LINGUAS' should then contain a space separated list of two-letter
-codes, stating which languages are allowed.
-
-1.3 Using This Package
-======================
-
-As a user, if your language has been installed for this package, you
-only have to set the `LANG' environment variable to the appropriate
-`LL_CC' combination. Here `LL' is an ISO 639 two-letter language code,
-and `CC' is an ISO 3166 two-letter country code. For example, let's
-suppose that you speak German and live in Germany. At the shell
-prompt, merely execute `setenv LANG de_DE' (in `csh'),
-`export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash').
-This can be done from your `.login' or `.profile' file, once and for
-all.
-
- You might think that the country code specification is redundant.
-But in fact, some languages have dialects in different countries. For
-example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The
-country code serves to distinguish the dialects.
-
- The locale naming convention of `LL_CC', with `LL' denoting the
-language and `CC' denoting the country, is the one use on systems based
-on GNU libc. On other systems, some variations of this scheme are
-used, such as `LL' or `LL_CC.ENCODING'. You can get the list of
-locales supported by your system for your country by running the command
-`locale -a | grep '^LL''.
-
- Not all programs have translations for all languages. By default, an
-English message is shown in place of a nonexistent translation. If you
-understand other languages, you can set up a priority list of languages.
-This is done through a different environment variable, called
-`LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG'
-for the purpose of message handling, but you still need to have `LANG'
-set to the primary language; this is required by other parts of the
-system libraries. For example, some Swedish users who would rather
-read translations in German than English for when Swedish is not
-available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'.
-
- Special advice for Norwegian users: The language code for Norwegian
-bokma*l changed from `no' to `nb' recently (in 2003). During the
-transition period, while some message catalogs for this language are
-installed under `nb' and some older ones under `no', it's recommended
-for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and
-older translations are used.
-
- In the `LANGUAGE' environment variable, but not in the `LANG'
-environment variable, `LL_CC' combinations can be abbreviated as `LL'
-to denote the language's main dialect. For example, `de' is equivalent
-to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT'
-(Portuguese as spoken in Portugal) in this context.
-
-1.4 Translating Teams
-=====================
-
-For the Free Translation Project to be a success, we need interested
-people who like their own language and write it well, and who are also
-able to synergize with other translators speaking the same language.
-Each translation team has its own mailing list. The up-to-date list of
-teams can be found at the Free Translation Project's homepage,
-`http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams"
-area.
-
- If you'd like to volunteer to _work_ at translating messages, you
-should become a member of the translating team for your own language.
-The subscribing address is _not_ the same as the list itself, it has
-`-request' appended. For example, speakers of Swedish can send a
-message to `sv-request@li.org', having this message body:
-
- subscribe
-
- Keep in mind that team members are expected to participate
-_actively_ in translations, or at solving translational difficulties,
-rather than merely lurking around. If your team does not exist yet and
-you want to start one, or if you are unsure about what to do or how to
-get started, please write to `translation@iro.umontreal.ca' to reach the
-coordinator for all translator teams.
-
- The English team is special. It works at improving and uniformizing
-the terminology in use. Proven linguistic skill are praised more than
-programming skill, here.
-
-1.5 Available Packages
-======================
-
-Languages are not equally supported in all packages. The following
-matrix shows the current state of internationalization, as of May 2005.
-The matrix shows, in regard of each package, for which languages PO
-files have been submitted to translation coordination, with a
-translation percentage of at least 50%.
-
- Ready PO files af am ar az be bg bs ca cs cy da de el en en_GB
- +-------------------------------------------------+
- GNUnet | |
- a2ps | [] [] [] [] [] |
- aegis | () |
- ant-phone | () |
- anubis | [] |
- ap-utils | |
- aspell | [] [] [] [] |
- bash | [] [] |
- batchelor | [] |
- bfd | |
- bibshelf | [] |
- binutils | [] |
- bison | [] [] |
- bluez-pin | [] [] [] [] |
- clisp | [] [] |
- console-tools | [] [] |
- coreutils | [] [] [] [] |
- cpio | |
- cpplib | [] [] [] |
- darkstat | [] () [] |
- dialog | [] [] [] [] [] [] |
- diffutils | [] [] [] [] [] |
- doodle | [] |
- e2fsprogs | [] [] |
- enscript | [] [] [] [] |
- error | [] [] [] [] |
- fetchmail | [] [] () [] |
- fileutils | [] [] |
- findutils | [] [] [] |
- flex | [] [] [] |
- fslint | [] |
- gas | |
- gawk | [] [] [] |
- gbiff | [] |
- gcal | [] |
- gcc | [] |
- gettext-examples | [] [] [] [] |
- gettext-runtime | [] [] [] [] |
- gettext-tools | [] [] |
- gimp-print | [] [] [] [] |
- gip | |
- gliv | [] |
- glunarclock | |
- gmult | [] [] |
- gnubiff | () |
- gnucash | [] () () [] |
- gnucash-glossary | [] () |
- gpe-aerial | [] [] |
- gpe-beam | [] [] |
- gpe-calendar | [] [] |
- gpe-clock | [] [] |
- gpe-conf | [] [] |
- gpe-contacts | |
- gpe-edit | [] |
- gpe-go | [] |
- gpe-login | [] [] |
- gpe-ownerinfo | [] [] |
- gpe-sketchbook | [] [] |
- gpe-su | [] [] |
- gpe-taskmanager | [] [] |
- gpe-timesheet | [] |
- gpe-today | [] [] |
- gpe-todo | [] [] |
- gphoto2 | [] [] [] [] |
- gprof | [] [] |
- gpsdrive | () () |
- gramadoir | [] [] |
- grep | [] [] [] [] [] [] |
- gretl | |
- gsasl | [] |
- gss | |
- gst-plugins | [] [] [] [] [] [] |
- gstreamer | [] [] [] [] [] |
- gtick | [] () |
- gtkspell | [] [] [] |
- hello | [] [] [] [] |
- id-utils | [] [] |
- impost | |
- indent | [] [] |
- iso_3166 | |
- iso_3166_1 | [] [] [] [] [] |
- iso_3166_2 | |
- iso_3166_3 | [] |
- iso_4217 | |
- iso_639 | |
- jpilot | [] |
- jtag | |
- jwhois | |
- kbd | [] [] [] [] |
- latrine | () |
- ld | [] |
- libc | [] [] [] [] [] |
- libextractor | |
- libgpewidget | [] [] [] |
- libgphoto2 | [] |
- libgphoto2_port | [] |
- libgsasl | |
- libiconv | [] [] [] [] [] |
- libidn | |
- lifelines | [] () |
- lilypond | [] |
- lingoteach | |
- lynx | [] [] [] [] |
- m4 | [] [] [] [] |
- mailutils | [] |
- make | [] [] |
- man-db | [] () [] [] |
- minicom | [] [] |
- mysecretdiary | [] [] |
- nano | [] () [] |
- nano_1_0 | [] () [] [] |
- opcodes | [] |
- parted | [] [] [] [] |
- psmisc | |
- ptx | [] [] [] |
- pwdutils | |
- python | |
- radius | [] |
- recode | [] [] [] [] [] |
- rpm | [] [] |
- screem | |
- scrollkeeper | [] [] [] [] [] [] [] [] |
- sed | [] [] |
- sh-utils | [] [] |
- shared-mime-info | [] [] |
- sharutils | [] [] [] [] [] |
- silky | |
- skencil | [] () |
- sketch | [] () |
- solfege | [] |
- soundtracker | [] [] |
- sp | [] |
- stardict | [] |
- tar | |
- texinfo | [] [] |
- textutils | [] [] [] |
- tin | () () |
- tp-robot | [] |
- tuxpaint | [] [] [] [] [] [] [] |
- unicode-han-tra... | |
- unicode-transla... | |
- util-linux | [] [] [] [] |
- vorbis-tools | [] [] [] [] |
- wastesedge | () |
- wdiff | [] [] [] [] |
- wget | |
- xchat | [] [] [] [] [] |
- xkeyboard-config | |
- xpad | |
- +-------------------------------------------------+
- af am ar az be bg bs ca cs cy da de el en en_GB
- 10 0 0 2 7 5 0 40 43 2 51 91 19 1 14
-
- eo es et eu fa fi fr ga gl he hi hr hu id is
- +-----------------------------------------------+
- GNUnet | |
- a2ps | [] [] [] |
- aegis | |
- ant-phone | [] |
- anubis | [] |
- ap-utils | [] |
- aspell | [] [] |
- bash | [] [] [] [] |
- batchelor | [] [] |
- bfd | [] |
- bibshelf | [] [] |
- binutils | [] [] |
- bison | [] [] [] [] [] |
- bluez-pin | [] [] [] [] [] [] |
- clisp | [] [] |
- console-tools | |
- coreutils | [] [] [] [] [] |
- cpio | [] [] |
- cpplib | [] [] |
- darkstat | [] () [] [] [] |
- dialog | [] [] [] [] [] [] [] |
- diffutils | [] [] [] [] [] [] [] [] [] |
- doodle | [] |
- e2fsprogs | [] [] |
- enscript | [] [] |
- error | [] [] [] [] [] |
- fetchmail | [] |
- fileutils | [] [] [] [] [] |
- findutils | [] [] [] [] |
- flex | [] [] [] |
- fslint | [] |
- gas | [] [] |
- gawk | [] [] [] [] |
- gbiff | [] |
- gcal | [] [] |
- gcc | [] |
- gettext-examples | [] [] [] |
- gettext-runtime | [] [] [] [] [] |
- gettext-tools | [] [] |
- gimp-print | [] [] |
- gip | [] [] [] |
- gliv | () |
- glunarclock | [] [] [] |
- gmult | [] [] |
- gnubiff | () |
- gnucash | [] () |
- gnucash-glossary | [] |
- gpe-aerial | [] [] |
- gpe-beam | [] [] |
- gpe-calendar | [] [] [] [] |
- gpe-clock | [] [] [] |
- gpe-conf | [] |
- gpe-contacts | [] |
- gpe-edit | [] [] |
- gpe-go | [] [] |
- gpe-login | [] [] [] |
- gpe-ownerinfo | [] [] [] [] [] |
- gpe-sketchbook | [] [] |
- gpe-su | [] [] [] |
- gpe-taskmanager | [] [] [] |
- gpe-timesheet | [] [] [] [] |
- gpe-today | [] [] [] [] |
- gpe-todo | [] [] [] |
- gphoto2 | [] [] [] [] |
- gprof | [] [] [] |
- gpsdrive | () () [] |
- gramadoir | [] [] |
- grep | [] [] [] [] [] [] [] [] [] [] [] |
- gretl | [] [] |
- gsasl | [] [] [] |
- gss | [] |
- gst-plugins | [] [] |
- gstreamer | |
- gtick | [] [] [] [] |
- gtkspell | [] [] [] [] [] |
- hello | [] [] [] [] [] [] [] [] [] [] [] [] [] |
- id-utils | [] [] [] |
- impost | [] [] |
- indent | [] [] [] [] [] [] [] [] [] [] |
- iso_3166 | [] [] [] |
- iso_3166_1 | [] [] [] [] [] [] [] |
- iso_3166_2 | [] |
- iso_3166_3 | [] |
- iso_4217 | [] [] [] |
- iso_639 | [] [] [] [] |
- jpilot | [] [] |
- jtag | [] |
- jwhois | [] [] [] [] |
- kbd | [] [] |
- latrine | [] [] |
- ld | [] [] |
- libc | [] [] [] [] [] |
- libextractor | |
- libgpewidget | [] [] [] [] [] |
- libgphoto2 | [] [] [] |
- libgphoto2_port | [] |
- libgsasl | [] [] |
- libiconv | [] [] [] [] [] [] [] [] [] [] |
- libidn | [] [] |
- lifelines | () |
- lilypond | |
- lingoteach | [] [] |
- lynx | [] [] |
- m4 | [] [] [] [] |
- mailutils | [] [] |
- make | [] [] [] [] [] [] [] |
- man-db | () |
- minicom | [] [] [] [] |
- mysecretdiary | [] [] [] |
- nano | [] [] () [] |
- nano_1_0 | [] [] [] [] |
- opcodes | [] [] [] |
- parted | [] [] [] |
- psmisc | [] |
- ptx | [] [] [] [] [] [] [] [] [] |
- pwdutils | |
- python | |
- radius | [] [] |
- recode | [] [] [] [] [] [] [] |
- rpm | [] |
- screem | |
- scrollkeeper | [] [] [] |
- sed | [] [] [] [] [] [] |
- sh-utils | [] [] [] [] [] [] |
- shared-mime-info | [] [] [] [] [] [] |
- sharutils | [] [] [] [] [] [] |
- silky | [] |
- skencil | [] [] |
- sketch | [] [] |
- solfege | |
- soundtracker | [] [] |
- sp | [] |
- stardict | [] |
- tar | [] [] [] [] |
- texinfo | [] [] [] |
- textutils | [] [] [] [] [] |
- tin | [] () |
- tp-robot | [] [] |
- tuxpaint | [] [] [] [] [] [] [] [] |
- unicode-han-tra... | |
- unicode-transla... | [] [] |
- util-linux | [] [] [] [] [] |
- vorbis-tools | [] [] |
- wastesedge | () |
- wdiff | [] [] [] [] [] [] [] |
- wget | [] [] [] [] |
- xchat | [] [] [] [] [] |
- xkeyboard-config | |
- xpad | [] [] [] |
- +-----------------------------------------------+
- eo es et eu fa fi fr ga gl he hi hr hu id is
- 15 85 21 15 2 35 115 45 16 8 1 6 40 27 1
-
- it ja ko ku lg lt lv mk mn ms mt nb nl nn no nso
- +--------------------------------------------------+
- GNUnet | |
- a2ps | () () [] [] () |
- aegis | () |
- ant-phone | [] |
- anubis | [] [] [] |
- ap-utils | |
- aspell | [] [] |
- bash | [] |
- batchelor | [] |
- bfd | |
- bibshelf | [] |
- binutils | |
- bison | [] [] [] [] |
- bluez-pin | [] [] |
- clisp | [] |
- console-tools | |
- coreutils | [] [] |
- cpio | |
- cpplib | [] |
- darkstat | [] [] |
- dialog | [] [] |
- diffutils | [] [] [] [] |
- doodle | [] |
- e2fsprogs | [] |
- enscript | [] |
- error | [] |
- fetchmail | [] [] |
- fileutils | [] [] [] |
- findutils | [] [] |
- flex | [] [] |
- fslint | [] |
- gas | |
- gawk | [] [] |
- gbiff | [] |
- gcal | |
- gcc | |
- gettext-examples | [] [] [] |
- gettext-runtime | [] [] [] [] |
- gettext-tools | [] [] [] |
- gimp-print | [] [] |
- gip | [] |
- gliv | [] |
- glunarclock | [] [] |
- gmult | [] [] |
- gnubiff | () |
- gnucash | [] () () [] |
- gnucash-glossary | [] [] |
- gpe-aerial | [] |
- gpe-beam | [] |
- gpe-calendar | [] |
- gpe-clock | [] |
- gpe-conf | [] |
- gpe-contacts | |
- gpe-edit | [] |
- gpe-go | [] |
- gpe-login | [] |
- gpe-ownerinfo | [] |
- gpe-sketchbook | [] |
- gpe-su | [] |
- gpe-taskmanager | [] [] |
- gpe-timesheet | [] |
- gpe-today | [] |
- gpe-todo | [] |
- gphoto2 | [] [] [] |
- gprof | |
- gpsdrive | () () () () |
- gramadoir | () |
- grep | [] [] [] [] |
- gretl | [] |
- gsasl | [] |
- gss | |
- gst-plugins | [] [] |
- gstreamer | [] [] |
- gtick | [] [] |
- gtkspell | [] [] [] |
- hello | [] [] [] [] [] [] [] [] [] |
- id-utils | [] [] |
- impost | |
- indent | [] [] [] |
- iso_3166 | [] |
- iso_3166_1 | [] [] |
- iso_3166_2 | [] |
- iso_3166_3 | [] |
- iso_4217 | [] [] [] |
- iso_639 | [] [] [] |
- jpilot | () () () |
- jtag | |
- jwhois | [] [] |
- kbd | [] |
- latrine | [] [] |
- ld | |
- libc | [] [] [] [] [] |
- libextractor | |
- libgpewidget | [] |
- libgphoto2 | [] [] |
- libgphoto2_port | [] [] |
- libgsasl | [] |
- libiconv | [] [] |
- libidn | [] |
- lifelines | [] |
- lilypond | |
- lingoteach | [] [] |
- lynx | [] [] [] |
- m4 | [] [] |
- mailutils | |
- make | [] [] [] |
- man-db | () |
- minicom | [] |
- mysecretdiary | [] |
- nano | [] [] [] |
- nano_1_0 | [] [] [] [] |
- opcodes | [] |
- parted | [] [] [] [] |
- psmisc | [] [] [] |
- ptx | [] [] [] |
- pwdutils | |
- python | |
- radius | |
- recode | [] [] |
- rpm | [] [] |
- screem | [] |
- scrollkeeper | [] [] [] |
- sed | [] [] |
- sh-utils | [] [] [] |
- shared-mime-info | [] [] [] [] |
- sharutils | [] [] [] |
- silky | [] |
- skencil | |
- sketch | |
- solfege | [] [] [] |
- soundtracker | [] |
- sp | () |
- stardict | [] [] |
- tar | [] [] [] |
- texinfo | [] [] [] |
- textutils | [] [] [] |
- tin | |
- tp-robot | [] |
- tuxpaint | [] [] [] [] [] [] [] |
- unicode-han-tra... | |
- unicode-transla... | |
- util-linux | [] [] [] |
- vorbis-tools | [] |
- wastesedge | [] |
- wdiff | [] [] [] |
- wget | [] |
- xchat | [] [] [] [] [] |
- xkeyboard-config | [] |
- xpad | [] |
- +--------------------------------------------------+
- it ja ko ku lg lt lv mk mn ms mt nb nl nn no nso
- 46 35 11 2 1 1 2 2 3 11 0 15 96 7 5 0
-
- or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv
- +----------------------------------------------+
- GNUnet | |
- a2ps | () [] [] [] [] [] [] |
- aegis | () () |
- ant-phone | [] |
- anubis | [] [] [] |
- ap-utils | () |
- aspell | [] [] |
- bash | [] [] [] |
- batchelor | [] |
- bfd | |
- bibshelf | |
- binutils | [] [] |
- bison | [] [] [] [] [] |
- bluez-pin | [] [] [] [] [] [] [] [] |
- clisp | [] |
- console-tools | [] |
- coreutils | [] [] [] [] |
- cpio | [] [] |
- cpplib | |
- darkstat | [] [] [] [] [] [] |
- dialog | [] [] [] [] [] [] [] |
- diffutils | [] [] [] [] [] [] |
- doodle | [] |
- e2fsprogs | [] [] |
- enscript | [] [] [] [] |
- error | [] [] [] |
- fetchmail | [] [] [] [] |
- fileutils | [] [] [] [] [] |
- findutils | [] [] [] [] [] [] |
- flex | [] [] [] [] [] |
- fslint | [] [] [] |
- gas | |
- gawk | [] [] [] [] |
- gbiff | [] |
- gcal | [] |
- gcc | |
- gettext-examples | [] [] [] [] [] [] |
- gettext-runtime | [] [] [] [] [] [] [] |
- gettext-tools | [] [] [] [] [] [] [] |
- gimp-print | [] [] |
- gip | [] [] [] |
- gliv | [] [] [] |
- glunarclock | [] [] [] [] [] [] |
- gmult | [] [] [] [] |
- gnubiff | () [] |
- gnucash | () [] [] [] [] |
- gnucash-glossary | [] [] [] |
- gpe-aerial | [] [] [] [] [] [] |
- gpe-beam | [] [] [] [] [] [] |
- gpe-calendar | [] [] [] [] [] [] [] |
- gpe-clock | [] [] [] [] [] [] [] |
- gpe-conf | [] [] [] [] [] [] |
- gpe-contacts | [] [] [] [] |
- gpe-edit | [] [] [] [] [] [] [] |
- gpe-go | [] [] [] [] [] |
- gpe-login | [] [] [] [] [] [] [] |
- gpe-ownerinfo | [] [] [] [] [] [] [] |
- gpe-sketchbook | [] [] [] [] [] [] [] |
- gpe-su | [] [] [] [] [] [] [] |
- gpe-taskmanager | [] [] [] [] [] [] [] |
- gpe-timesheet | [] [] [] [] [] [] [] |
- gpe-today | [] [] [] [] [] [] [] |
- gpe-todo | [] [] [] [] [] [] [] [] |
- gphoto2 | [] [] [] [] |
- gprof | [] [] [] |
- gpsdrive | [] [] |
- gramadoir | [] |
- grep | [] [] [] [] [] [] [] |
- gretl | [] |
- gsasl | [] [] [] [] [] |
- gss | [] [] [] |
- gst-plugins | [] [] [] [] |
- gstreamer | [] [] [] [] |
- gtick | [] [] [] |
- gtkspell | [] [] [] [] [] [] |
- hello | [] [] [] [] [] [] [] |
- id-utils | [] [] [] [] |
- impost | |
- indent | [] [] [] [] [] [] |
- iso_3166 | [] [] [] [] [] |
- iso_3166_1 | [] [] [] [] |
- iso_3166_2 | |
- iso_3166_3 | [] [] [] |
- iso_4217 | [] [] |
- iso_639 | [] [] [] |
- jpilot | |
- jtag | [] |
- jwhois | [] [] [] () () |
- kbd | [] [] [] |
- latrine | [] [] |
- ld | [] |
- libc | [] [] [] [] [] |
- libextractor | [] |
- libgpewidget | [] [] [] [] [] [] |
- libgphoto2 | [] [] |
- libgphoto2_port | [] |
- libgsasl | [] [] [] |
- libiconv | [] [] [] [] [] [] [] [] [] [] |
- libidn | [] () |
- lifelines | [] [] |
- lilypond | |
- lingoteach | [] |
- lynx | [] [] [] |
- m4 | [] [] [] [] [] |
- mailutils | [] [] [] |
- make | [] [] [] [] |
- man-db | [] [] |
- minicom | [] [] [] [] |
- mysecretdiary | [] [] [] [] |
- nano | [] [] [] |
- nano_1_0 | [] [] [] [] |
- opcodes | [] [] |
- parted | [] [] [] [] |
- psmisc | [] [] |
- ptx | [] [] [] [] [] [] |
- pwdutils | [] |
- python | |
- radius | [] [] |
- recode | [] [] [] [] [] [] |
- rpm | [] [] [] [] |
- screem | |
- scrollkeeper | [] [] [] [] [] [] [] |
- sed | [] [] [] [] [] [] [] [] |
- sh-utils | [] [] [] |
- shared-mime-info | [] [] [] [] [] [] |
- sharutils | [] [] [] |
- silky | [] |
- skencil | [] [] [] |
- sketch | [] [] [] |
- solfege | |
- soundtracker | [] [] |
- sp | |
- stardict | [] [] |
- tar | [] [] [] [] |
- texinfo | [] [] [] [] |
- textutils | [] [] [] |
- tin | |
- tp-robot | [] |
- tuxpaint | [] [] [] [] [] [] [] [] |
- unicode-han-tra... | |
- unicode-transla... | |
- util-linux | [] [] [] |
- vorbis-tools | [] [] |
- wastesedge | |
- wdiff | [] [] [] [] [] [] |
- wget | |
- xchat | [] [] [] [] [] [] [] |
- xkeyboard-config | |
- xpad | |
- +----------------------------------------------+
- or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv
- 1 3 47 29 57 6 78 73 5 44 12 12 50 85
-
- ta tg th tk tr uk ven vi wa xh zh_CN zh_TW zu
- +-----------------------------------------------+
- GNUnet | | 0
- a2ps | [] [] [] | 19
- aegis | | 0
- ant-phone | [] [] | 5
- anubis | [] [] [] | 11
- ap-utils | () [] | 2
- aspell | [] [] [] | 13
- bash | [] | 11
- batchelor | [] [] | 7
- bfd | | 1
- bibshelf | [] | 5
- binutils | [] | 6
- bison | [] [] | 18
- bluez-pin | [] [] [] [] [] | 25
- clisp | | 7
- console-tools | [] [] | 5
- coreutils | [] [] | 17
- cpio | [] [] [] | 7
- cpplib | [] [] | 8
- darkstat | [] () () | 15
- dialog | [] [] [] | 25
- diffutils | [] [] [] [] | 28
- doodle | [] | 5
- e2fsprogs | [] | 8
- enscript | [] | 12
- error | [] [] [] | 16
- fetchmail | [] | 12
- fileutils | [] [] [] | 18
- findutils | [] [] | 17
- flex | [] [] | 15
- fslint | [] | 7
- gas | [] | 3
- gawk | [] | 14
- gbiff | [] | 5
- gcal | [] | 5
- gcc | [] [] | 4
- gettext-examples | [] [] [] [] [] | 21
- gettext-runtime | [] [] [] [] [] | 25
- gettext-tools | [] [] [] [] [] | 19
- gimp-print | [] | 11
- gip | [] | 8
- gliv | [] [] | 7
- glunarclock | [] [] | 13
- gmult | [] [] [] | 13
- gnubiff | [] | 3
- gnucash | () [] | 10
- gnucash-glossary | [] [] | 9
- gpe-aerial | [] [] | 13
- gpe-beam | [] [] | 13
- gpe-calendar | [] [] [] [] | 18
- gpe-clock | [] [] [] [] | 17
- gpe-conf | [] [] | 12
- gpe-contacts | [] [] | 7
- gpe-edit | [] [] [] [] | 15
- gpe-go | [] [] | 11
- gpe-login | [] [] [] [] [] | 18
- gpe-ownerinfo | [] [] [] [] | 19
- gpe-sketchbook | [] [] | 14
- gpe-su | [] [] [] | 16
- gpe-taskmanager | [] [] [] | 17
- gpe-timesheet | [] [] [] [] | 17
- gpe-today | [] [] [] [] [] | 19
- gpe-todo | [] [] [] | 17
- gphoto2 | [] [] [] | 18
- gprof | [] [] | 10
- gpsdrive | | 3
- gramadoir | [] | 6
- grep | [] [] [] [] | 32
- gretl | | 4
- gsasl | [] [] | 12
- gss | [] | 5
- gst-plugins | [] [] [] | 17
- gstreamer | [] [] [] [] | 15
- gtick | [] | 11
- gtkspell | [] [] [] [] | 21
- hello | [] [] [] [] | 37
- id-utils | [] [] | 13
- impost | [] | 3
- indent | [] [] [] [] | 25
- iso_3166 | [] [] [] | 12
- iso_3166_1 | [] [] | 20
- iso_3166_2 | | 2
- iso_3166_3 | [] [] | 8
- iso_4217 | [] [] | 10
- iso_639 | [] [] | 12
- jpilot | [] [] [] | 6
- jtag | | 2
- jwhois | [] [] [] | 12
- kbd | [] [] | 12
- latrine | [] [] | 8
- ld | [] | 5
- libc | [] [] | 22
- libextractor | | 1
- libgpewidget | [] [] | 17
- libgphoto2 | [] | 9
- libgphoto2_port | | 5
- libgsasl | [] | 7
- libiconv | [] [] [] [] [] | 32
- libidn | [] [] | 6
- lifelines | | 4
- lilypond | | 1
- lingoteach | [] | 6
- lynx | [] [] [] | 15
- m4 | [] [] | 17
- mailutils | [] | 7
- make | [] [] | 18
- man-db | | 5
- minicom | | 11
- mysecretdiary | [] [] | 12
- nano | [] [] | 13
- nano_1_0 | [] [] [] | 18
- opcodes | [] [] | 9
- parted | [] [] [] | 18
- psmisc | [] | 7
- ptx | [] [] | 23
- pwdutils | | 1
- python | | 0
- radius | [] | 6
- recode | [] [] | 22
- rpm | [] [] | 11
- screem | | 1
- scrollkeeper | [] [] [] | 24
- sed | [] [] [] | 21
- sh-utils | [] | 15
- shared-mime-info | [] [] [] | 21
- sharutils | [] [] [] | 20
- silky | | 3
- skencil | | 6
- sketch | | 6
- solfege | | 4
- soundtracker | [] | 8
- sp | [] | 3
- stardict | [] [] [] [] | 10
- tar | [] [] [] [] | 15
- texinfo | [] [] | 14
- textutils | [] [] [] | 17
- tin | | 1
- tp-robot | [] [] [] | 8
- tuxpaint | [] [] [] [] | 34
- unicode-han-tra... | | 0
- unicode-transla... | | 2
- util-linux | [] [] [] | 18
- vorbis-tools | [] | 10
- wastesedge | | 1
- wdiff | [] [] | 22
- wget | [] [] | 7
- xchat | [] [] [] [] | 26
- xkeyboard-config | [] | 2
- xpad | [] | 5
- +-----------------------------------------------+
- 73 teams ta tg th tk tr uk ven vi wa xh zh_CN zh_TW zu
- 149 domains 0 0 0 1 77 30 0 92 16 0 42 32 0 1746
-
- Some counters in the preceding matrix are higher than the number of
-visible blocks let us expect. This is because a few extra PO files are
-used for implementing regional variants of languages, or language
-dialects.
-
- For a PO file in the matrix above to be effective, the package to
-which it applies should also have been internationalized and
-distributed as such by its maintainer. There might be an observable
-lag between the mere existence a PO file and its wide availability in a
-distribution.
-
- If May 2005 seems to be old, you may fetch a more recent copy of
-this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date
-matrix with full percentage details can be found at
-`http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'.
-
-1.6 Using `gettext' in new packages
-===================================
-
-If you are writing a freely available program and want to
-internationalize it you are welcome to use GNU `gettext' in your
-package. Of course you have to respect the GNU Library General Public
-License which covers the use of the GNU `gettext' library. This means
-in particular that even non-free programs can use `libintl' as a shared
-library, whereas only free software can use `libintl' as a static
-library or use modified versions of `libintl'.
-
- Once the sources are changed appropriately and the setup can handle
-the use of `gettext' the only thing missing are the translations. The
-Free Translation Project is also available for packages which are not
-developed inside the GNU project. Therefore the information given above
-applies also for every other Free Software Project. Contact
-`translation@iro.umontreal.ca' to make the `.pot' files available to
-the translation teams.
-
diff --git a/packages/node-libofx/OpenSP-1.5.2/AUTHORS b/packages/node-libofx/OpenSP-1.5.2/AUTHORS
deleted file mode 100644
index f4907be0824..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/AUTHORS
+++ /dev/null
@@ -1,15 +0,0 @@
-James Clark:
-Original author of the SP suite, from which OpenSP is derived.
-
-Henry Thompson:
-Initial autoconf support for SP.
-
-Cees A. de Groot:
-Autoconf support for SP.
-
-Matthias Clasen:
-spcat, DTDDECL, CONCUR, improved support of Annex K,
-autoconf & automake setup.
-
-Peter Newcomb, Epremis Corp.:
-MessageModule, support for HyTime Amendment 1 (IS10744:arch PI)
diff --git a/packages/node-libofx/OpenSP-1.5.2/BUGS b/packages/node-libofx/OpenSP-1.5.2/BUGS
deleted file mode 100644
index e56d6d9300b..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/BUGS
+++ /dev/null
@@ -1,4 +0,0 @@
-Some tests of the testsuite will fail at the moment, if you run
-'make check'; test which are known to fail (mostly Architectual Forms
-(SF) processing related) are listed as SHOWSTOPPERS in
-tests/Makefile.am. (2003-10-10).
diff --git a/packages/node-libofx/OpenSP-1.5.2/COPYING b/packages/node-libofx/OpenSP-1.5.2/COPYING
deleted file mode 100644
index 179f0c5c426..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/COPYING
+++ /dev/null
@@ -1,25 +0,0 @@
-Copyright (c) 1994, 1995, 1996, 1997, 1998 James Clark
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-``Software''), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL JAMES CLARK BE LIABLE FOR ANY CLAIM, DAMAGES OR
-OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
-ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-OTHER DEALINGS IN THE SOFTWARE.
-
-Except as contained in this notice, the name of James Clark shall
-not be used in advertising or otherwise to promote the sale, use or
-other dealings in this Software without prior written authorization
-from James Clark.
diff --git a/packages/node-libofx/OpenSP-1.5.2/ChangeLog b/packages/node-libofx/OpenSP-1.5.2/ChangeLog
deleted file mode 100644
index a828114677e..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/ChangeLog
+++ /dev/null
@@ -1,2634 +0,0 @@
-2005-12-11 Neil Roeth
-
- * docsrc/releasenotes.xml:
- Changed release date to December 2005 from November 2005.
-
- * docsrc/Makefile.am:
- Redefined XMLDCL to be one included here, $(top_srcdir)/pubtext/xml.dcl.
- Use EXTRADOCS variable now defined in configure step to determine if PDF and
- PS format release notes will be built.
-
- * configure.in:
- Added --enable-full-doc-build option to build PDF and PS docs as well as man
- and HTML. Only check for necessary tools if enabled.
- Removed search for xml.dcl, we will always use the one in pubtext.
-
-2005-12-10 Neil Roeth
-
- * sx/Makefile.am, spent/Makefile.am, spcat/Makefile.am, spam/Makefile.am, sgmlnorm/Makefile.am, nsgmls/Makefile.am, lib/Makefile.am:
- Gerrit Haase's patch: add LTLIBINTL to avoid undefined references.
-
-2005-12-09 Neil Roeth
-
- * po/fr.po: Fixed typo.
-
- * autoinit.sh: Added libtoolize to avoid error of missing ltmain.sh.
-
-2005-12-07 Neil Roeth
-
- * docsrc/osx.xml:
- Made purpose a one-liner because it is used for man -k and apropos, so it
- should be short. Moved long paragraph that was there to description section.
-
- * docsrc/ospent.xml:
- Made purpose a bit more descriptive so it makes more sense without context.
-
- * docsrc/ospam.xml, docsrc/onsgmls.xml, docsrc/osgmlnorm.xml:
- Made purpose a one-liner because it is used for man -k and apropos, so it
- should be short. Moved long paragraph that was there to description section.
-
-2005-12-07 Karl Eichwalder
-
- * include/InternalInputSource.h: Prepare for gcc 4.1.
-
-2005-10-23 Neil Roeth
-
- * lib/Text.cxx, lib/Attribute.cxx: Make operator= return *this.
-
- * lib/ExtendEntityManager.cxx:
- Fix operator= to return *this (two places).
-
- * lib/ArcEngine.cxx:
- Ensure that toIndex and fromIndex are not invalidAtt OR contentPseudoAtt
- before using to index into arrays. Those constants are defined to be the
- unsigned version of -1 and -2, which are very large numbers, and cause
- segfaults when array elements with those indexes are accessed.
-
- * nsgmls/RastEventHandler.h, lib/Text.cxx, lib/Syntax.cxx, lib/SdText.cxx, lib/Sd.cxx, lib/Recognizer.h, lib/Recognizer.cxx, lib/Notation.cxx, lib/MessageFormatter.cxx, lib/Message.cxx, lib/Markup.cxx, lib/Lpd.cxx, lib/Location.cxx, lib/ExtendEntityManager.cxx, lib/Event.cxx, lib/EntityCatalog.cxx, lib/ElementType.cxx, lib/Dtd.cxx:
- Added functions to eliminate g++ 4.0 warnings.
-
-2005-10-22 Neil Roeth
-
- * lib/ContentToken.cxx, lib/CodingSystemKit.cxx, lib/CodingSystem.cxx:
- Added functions to eliminate g++ 4.0 warnings.
-
- * include/Vector.h:
- Changed order of initializations to match order of declaration in class.
-
- * include/UnivCharsetDesc.h, include/Text.h, include/Syntax.h, include/ShortReferenceMap.h, include/SdText.h, include/Sd.h, include/OpenElement.h, include/Notation.h:
- Added functions to eliminate g++ 4.0 warnings.
-
- * include/MessageFormatter.h:
- Added functions to eliminate g++ 4.0 warnings.
- Changed order of initializations to match order of declaration in class.
-
- * include/MessageBuilder.h, include/Message.h, include/Markup.h, include/Lpd.h, include/Location.h, include/ExtendEntityManager.h, include/Event.h, include/EntityCatalog.h, include/Entity.h, include/ElementType.h, include/Dtd.h, include/ContentToken.h, include/CodingSystemKit.h, include/CodingSystem.h, include/CharsetInfo.h, lib/CharsetDecl.cxx, include/CharsetDecl.h, lib/Attribute.cxx:
- Added functions to eliminate g++ 4.0 warnings.
-
- * include/Attribute.h:
- Added missing prototypes to eliminate g++ 4.0 warnings.
-
- * configure.in:
- Incremented SP_LIBOSP_CUR in preparation for upcoming checkins that will
- technically break binary compatilibility.
-
- * Makefile.am: Added autoinit.sh to EXTRA_DIST.
-
-2005-09-30 Neil Roeth
-
- * tests/Makefile.am:
- Revert to using SHOWSTOPPERS variable after discussion with Karl Eichwalder.
- Changed EXTRA_DIST and other variables so that all tests get put into dist
- regardless of whether they are being run or not, e.g., if you run
- "make distcheck SHOWSTOPPERS=" then only the tests that are known to pass will
- be run during the make check part, but all tests, including the ones that are
- known to pass, will be in the dist tarball.
- Added comment that the tests that fail imply there are problems that need to
- be tracked down and fixed.
-
-2005-09-27 Neil Roeth
-
- * docsrc/releasenotes.xml: Initial update for 1.5.2.
-
-2005-09-24 Neil Roeth
-
- * tests/Makefile.am:
- Changed name of variable from SHOWSTOPPERS to XFAIL_TESTS. These are tests
- that are expected to fail, and the latter name is known by automake to tag
- them as such. This allows a "make check" to complete with a message that some
- tests failed, but were expected to, and the make returns a normal exit code.
- Use DTDDECL automake conditional to control whether catalog-1 is in
- XFAIL_TESTS. This test is the one that tests DTDDECL support, so if that is
- disabled then the test is expected to fail.
-
- * lib/SOEntityCatalog.cxx:
- Use new config preprocessor directive SP_DTDDECL to control whether DTDDECL
- support is enabled or not.
-
- * configure.in:
- Added option to disable DTDDECL support. If a default catalog is used, then
- the DTDDECL support causes it to be read over and over again, causing a huge
- performance hit if there are a significant number of entries in it.
-
-2005-09-23 Neil Roeth
-
- * po/Makefile.in.in:
- Be more precise about updating $(srcdir)/$(DOMAIN).pot so that both a normal
- make and a make distcheck work.
-
- * po/Makefile.in.in: Added PERL variable to enable running msggen.pl.
- Use old method of generating $(DOMAIN).pot with msggen.pl instead of newer
- method using xgettext. Should update to use the latter eventually.
-
- * docsrc/Makefile.am:
- Put man page XML sources, releasenotes.{xml,dsl} and logo.png in EXTRA_DIST
- variable so they get put into dist tarball.
- Added $(srcdir)/ prefix to files where necessary so docs will build even when
- build area differs from source area, e.g., as when make distcheck is done.
- Added (define %openjade-logo% "$(srcdir)/logo.png") so the logo can be found
- when creating releasenotes.{pdf,ps}
-
- * Makefile.am:
- Use @DOCSRC@ variable in SUBDIRS so that it will not be included if doc
- building is disabled.
-
-2005-09-19 Neil Roeth
-
- * configure.in:
- Change AM_PROG_LIBTOOL to AC_PROG_LIBTOOL.
- Added --disable-doc-build option.
- Moved checks for doc building so they are only executed if building docs.
- Added error messages for doc building programs so it is more clear what is
- missing.
- Added /usr/share/sgml/declaration to search path for xml.dcl.
-
-2005-08-28 Bjoern Hoehrmann
-
- * docsrc/onsgmls.xml:
- added documentation for the revised restricted file reading
- behavior on win32, etc
-
-2005-08-27 Terje Bless
-
- * include/UnivCharsetDesc.h:
- Fiddle #include's around as it seems to appease GCC 3.4 and does no harm
- for GCC 4.0.
-
-2005-08-26 Terje Bless
-
- * configure.in: Bump version to 1.5.2, to shut check-news up.
-
- * po/Makefile.in.in: Restore Neil Roeth's domain=soname for .po files.
-
- * po/remove-potcdate.sed: Add another missing gettext file.
-
- * po/remove-potcdate.sed: New file.
-
- * configure.in, docsrc/Makefile.am:
- Make autoconf check for the utils needed for docsrc/ building, and let
- xmlto choose the stylesheet to use for the manpages.
-
- ( The rest of the docs should probably also be made by xmlto, but it's
- not currently working on my box so we'll do iut the old way for now. )
-
- * configure.in, intl/dcigettext.c, intl/langprefs.c, intl/libgnuintl.h.in, intl/localcharset.h, intl/log.c, intl/printf-args.c, intl/printf-args.h, intl/printf-parse.c, intl/printf-parse.h, intl/printf.c, intl/relocatable.c, intl/relocatable.h, intl/vasnprintf.c, intl/vasnprintf.h, intl/vasnwprintf.h, intl/wprintf-parse.h, intl/xsize.h, po/ChangeLog, po/Makevars, po/Rules-quot, po/boldquot.sed, po/en@boldquot.header, po/en@quot.header, po/insert-header.sin, po/quot.sed, po/remove-potcdate.sin:
- Add (new) files left out of previous checkin.
-
- * intl/langprefs.c, intl/libgnuintl.h.in, intl/localcharset.h, intl/log.c, intl/printf-args.c, intl/printf-args.h, intl/printf-parse.c, intl/printf-parse.h, intl/printf.c, intl/relocatable.c, intl/relocatable.h, intl/vasnprintf.c, intl/vasnprintf.h, intl/vasnwprintf.h, intl/wprintf-parse.h, intl/xsize.h, po/ChangeLog, po/Makevars, po/Rules-quot, po/boldquot.sed, po/en@boldquot.header, po/en@quot.header, po/insert-header.sin, po/quot.sed, po/remove-potcdate.sin, m4/codeset.m4, m4/gettext.m4, m4/glibc2.m4, m4/glibc21.m4, m4/iconv.m4, m4/intdiv0.m4, m4/intmax.m4, m4/inttypes-pri.m4, m4/inttypes.m4, m4/inttypes_h.m4, m4/isc-posix.m4, m4/lcmessage.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4, m4/longdouble.m4, m4/longlong.m4, m4/nls.m4, m4/po.m4, m4/printf-posix.m4, m4/progtest.m4, m4/signed.m4, m4/size_max.m4, m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
- New file.
-
- * ABOUT-NLS, ChangeLog, Makefile.am, config.rpath, configure.in, intl/COPYING.LIB-2.0, intl/COPYING.LIB-2.1, intl/ChangeLog, intl/Makefile.in, intl/VERSION, intl/bindtextdom.c, intl/config.charset, intl/dcgettext.c, intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c, intl/dngettext.c, intl/eval-plural.h, intl/explodename.c, intl/finddomain.c, intl/gettext.c, intl/gettextP.h, intl/gmo.h, intl/hash-string.h, intl/intl-compat.c, intl/l10nflist.c, intl/libgnuintl.h, intl/loadinfo.h, intl/loadmsgcat.c, intl/localcharset.c, intl/locale.alias, intl/localealias.c, intl/localename.c, intl/ngettext.c, intl/os2compat.c, intl/os2compat.h, intl/osdep.c, intl/plural-exp.c, intl/plural-exp.h, intl/plural.c, intl/plural.y, intl/ref-add.sin, intl/ref-del.sin, intl/textdomain.c, m4/codeset.m4, m4/gettext.m4, m4/glibc2.m4, m4/glibc21.m4, m4/iconv.m4, m4/intdiv0.m4, m4/intmax.m4, m4/inttypes-pri.m4, m4/inttypes.m4, m4/inttypes_h.m4, m4/isc-posix.m4, m4/lcmessage.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4, m4/longdouble.m4, m4/longlong.m4, m4/nls.m4, m4/po.m4, m4/printf-posix.m4, m4/progtest.m4, m4/signed.m4, m4/size_max.m4, m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4, po/Makefile.in.in, po/de.po, po/fr.po, po/ja.po, po/sv.po, po/tr.po:
- Upgrading gettext to 0.14.5 and including necessary .m4 files.
-
- * spec.in: Slightly tweak spec towards Fedora guidelines;
- for Vendor, Packager, Copyright vs. License, and BuildRoot.
-
- * configure.in: Tell automake about our embedded gettext version.
-
-
-2005-08-26 Terje Bless (via gettextize)
-
- * m4/codeset.m4: Upgrade to gettext-0.14.5.
- * m4/gettext.m4: Upgrade to gettext-0.14.5.
- * m4/glibc2.m4: New file, from gettext-0.14.5.
- * m4/glibc21.m4: Upgrade to gettext-0.14.5.
- * m4/iconv.m4: Upgrade to gettext-0.14.5.
- * m4/intdiv0.m4: New file, from gettext-0.14.5.
- * m4/intmax.m4: New file, from gettext-0.14.5.
- * m4/inttypes.m4: New file, from gettext-0.14.5.
- * m4/inttypes_h.m4: New file, from gettext-0.14.5.
- * m4/inttypes-pri.m4: New file, from gettext-0.14.5.
- * m4/isc-posix.m4: Upgrade to gettext-0.14.5.
- * m4/lcmessage.m4: Upgrade to gettext-0.14.5.
- * m4/lib-ld.m4: Upgrade to gettext-0.14.5.
- * m4/lib-link.m4: Upgrade to gettext-0.14.5.
- * m4/lib-prefix.m4: Upgrade to gettext-0.14.5.
- * m4/longdouble.m4: New file, from gettext-0.14.5.
- * m4/longlong.m4: New file, from gettext-0.14.5.
- * m4/nls.m4: New file, from gettext-0.14.5.
- * m4/po.m4: New file, from gettext-0.14.5.
- * m4/printf-posix.m4: New file, from gettext-0.14.5.
- * m4/progtest.m4: Upgrade to gettext-0.14.5.
- * m4/signed.m4: New file, from gettext-0.14.5.
- * m4/size_max.m4: New file, from gettext-0.14.5.
- * m4/stdint_h.m4: New file, from gettext-0.14.5.
- * m4/uintmax_t.m4: New file, from gettext-0.14.5.
- * m4/ulonglong.m4: New file, from gettext-0.14.5.
- * m4/wchar_t.m4: New file, from gettext-0.14.5.
- * m4/wint_t.m4: New file, from gettext-0.14.5.
- * m4/xsize.m4: New file, from gettext-0.14.5.
- * Makefile.am (SUBDIRS): Remove intl.
- (ACLOCAL_AMFLAGS): New variable.
- (EXTRA_DIST): Add mkinstalldirs.
- * configure.in (AM_GNU_GETTEXT_VERSION): Bump to 0.14.5.
- (AC_CONFIG_FILES): Add intl/Makefile.
-
-2005-08-15 02:25 Bjoern Hoehrmann
-
- * sx/XmlOutputEventHandler.cxx: explicit const char* to char*
- conversion for VS.NET 2005 Beta2
-
-2005-08-15 02:09 Bjoern Hoehrmann
-
- * lib/xentmgr_inst.m4: fix for vs.net when building with
- /Zc:wchar_t
-
-2005-08-15 00:05 Bjoern Hoehrmann
-
- * lib/Sd.cxx: make gcc happy again
-
-2005-08-14 22:49 Bjoern Hoehrmann
-
- * lib/Sd.cxx: initialize implydefElement_ so OpenSP does not assume
- some random value
-
-2005-07-21 16:12 Terje Bless
-
- * Makefile.am, configure.in, docsrc/Makefile, docsrc/Makefile.am:
- Use automake/autoconf to generate man pages and
- releasenotes.{ps|pdf|html}.
-
-2005-07-15 16:03 Terje Bless
-
- * acinclude.m4: Adding copious quoting for Automake >= 1.8; cf.
-
-
-2005-07-15 16:01 Terje Bless
-
- * BUILDING: Add note about missing gettext-devel/gettext.m4 causing
- aclocal complaints for undefined AM_GNU_GETTEXT macro.
-
-2004-09-07 06:45 Bjoern Hoehrmann
-
- * lib/PosixStorage.cxx: make -R consistent with common practise on
- Win32
-
-2004-09-07 05:15 Bjoern Hoehrmann
-
- * lib/parseDecl.cxx: allow applications to get non-random location
- information for dtd events for implied dtds
-
-2004-09-04 18:41 Bjoern Hoehrmann
-
- * doc/generic.htm, generic/ParserEventGeneratorKit.h,
- lib/ParserEventGeneratorKit.cxx: adding --error-numbers to
- generic interface
-
-2004-08-29 14:57 Bjoern Hoehrmann
-
- * lib/lib.dsp: use proper paths to refer to source files of the
- generic interface
-
-2004-08-28 21:11 Bjoern Hoehrmann
-
- * sp-generate.mak: turn off error checking for `del`, the relevant
- files do not exist for builds from CVS which causes the entire
- make process to fail
-
-2004-08-26 05:58 Bjoern Hoehrmann
-
- * sx/: XmlOutputEventHandler.cxx, XmlOutputEventHandler.h: [ 970258
- ] Patch to make osx compile in MSVC -- Thanks to Tony Dodd
-
-2004-08-26 05:39 Bjoern Hoehrmann
-
- * lib/parseParam.cxx: fix for markup declaration memory leak, see
- http://sourceforge.net/mailarchive/forum.php?thread_id=5381372&forum_id=2437
-
-2004-08-23 02:01 Bjoern Hoehrmann
-
- * lib/parseDecl.cxx: Dead memory-leaking code, see
- http://sourceforge.net/mailarchive/forum.php?thread_id=5381372&forum_id=2437
-
-2004-06-30 Karl Eichwalder
-
- * acinclude.m4: Add missing quotations.
-
-2004-06-26 19:11 liamquinn
-
- * doc/index.htm: Fixed broken link to NEWS (bug 666497).
-
-2004-06-26 19:05 liamquinn
-
- * docsrc/osx.xml: Fixed -l option in man page synopsis (bug
- 891323).
-
-2004-06-09 Karl Eichwalder
-
- * tests/onsgmls-2: Make sure path to the binary will not come
- into the way.
-
-2004-06-09 Karl Eichwalder
-
- * configure.in (ALL_LINGUAS): Remove it; only po/LINGUAS is required.
-
-2004-06-09 Karl Eichwalder
-
- * include/MessageReporter.h: Add missing return; (thanks to Marcus
- Meissner).
- * lib/URLStorage.cxx (open): Likewise.
-
-2004-05-23 01:57 Bjoern Hoehrmann
-
- * SP.dsw, msggen.pl.in, sp-generate.mak, include/Message.h,
- include/MessageReporter.h, include/config.h.old.in,
- lib/MessageTable.cxx, lib/lib.dsp: Win32 patch, see
- http://lists.w3.org/Archives/Public/www-archive/2004Jan/0081.html
-
-2004-04-09 04:14 Terje Bless
-
- * spec.in: Merge "today" changelog entires into one entry (dunno
- what I was thinking).
-
-2004-04-09 03:58 Terje Bless
-
- * spec.in: Merging in spec file changes from HEAD; add man pages to
- %files section and change the *.mo files to include the library
- major revision.
-
-2004-04-09 03:54 Terje Bless
-
- * spec.in: Adding man pages to the %files section for the OpenSP
- package.
-
-2004-04-09 03:51 Terje Bless
-
- * spec.in: Use _datadir macro for doc files; merged from
- opensp_1_5_branch, change by Karl Eichwalder and Ville Skytta.
-
-2004-04-09 03:38 Terje Bless
-
- * spec.in: Tweak names of l10n/*.mo files in the %files section.
- These seem to get the library's major revision appended to the
- basename for some reason.
-
-2004-01-16 Karl Eichwalder
-
- * include/RangeMap.cxx: Include "constant.h" to make it compile
- with GCC 3.4 (thanks to Marcus Meissner).
-
-2003-11-03 Karl Eichwalder
-
- * po/LINGUAS (Tag): Add 'tr'
- * po/tr.po (Tag): New file from
- http://www.iro.umontreal.ca/~gnutra/maint/sp/ .
- * po/de.po (Tag): Update from
- http://www.iro.umontreal.ca/~gnutra/maint/sp/ .
- * po/fr.po (Tag): Likewise.
-
-2003-10-19 Karl Eichwalder
-
- * tests/onsgmls-2: New file. Test --restricted and --directory= .
-
- * tests/Makefile.am (TESTS): Add onsgmls-2.
-
-2003-10-10 Karl Eichwalder
-
- * Makefile.am (pkgdoc_DATA): Add BUGS.
-
- * BUGS: New file.
-
- * tests/Makefile.am (TESTS_ENVIRONMENT): Add
- ../sgmlnorm:../sx:../spent:../spcat:../spam to PATH.
-
-2003-09-14 08:26 Neil Roeth
-
- Make sure DESTDIR is handled correctly in po/Makefile
-
-2003-09-13 08:48 Ian Castle
-
- * Add ospcat man page
-
-2003-09-03 Karl Eichwalder
-
- * Add testsuite from opensp_1_5_tests_branch.
-
-2003-08-31 12:09 Jessica Perry Hekman
-
- Add new options (-x preserve-case, -x no-overwrite ) to osx
-
- preserve-case:
-
- Preserve casing as specified in the DTD for element names;
- attribute names; attribute values which are token lists.
-
- no-overwrite:
-
- When preserving internal or external entities, multiple output
- files will be written. If this option is specified, do not
- overwrite existing files; instead, attempt to append a number to
- the end of the original filename to create a unique filename.
- Exit with an error if too many (100) such files already exist.
-
-2003-08-30 11:54 Neil Roeth
-
- Build Infrastructure/Localisation Changes
-
- The change is to add versions to the translations so that
- multiple versions of libosp, i.e., with different SONAMEs, can
- exist simultaneously without stomping on each other's files.
-
- Without this, the Debian package would not upgrade properly.Â
- Since the next release will require a new SONAME (recent changes
- made the ABI different), it makes sense to include this change in
- the next release.
-
- I accomplished the versioning by adding a version number to
- SP_MESSAGE_DOMAIN, and it made sense to use the library SONAME
- for that. So, I created a new variable in configure.in called
- SP_LIBOSP_CUR to be the "current" part of the SONAME, and used
- that in SP_MESSAGE_DOMAIN, and also referenced that in
- lib/Makefile to to actually set the SONAME.
-
-2003-08-30 09:56 Peter O'Gorman
-
- Fix for Mac OS X/Darwin compiliation.
-
-2003-08-30 09:26 Nick Kew
-
- MessageReporter: to enable selection of [XML|TRADITIONAL|NONE] at
- run time.
-
- The message format can now be set at run time using the
- environment variable SP_MESSAGE_FORMAT e.g. export
- SP_MESSAGE_FORMAT=XML
-
- ParserEventGeneratorKit: enable Liam's restrictFileReading from
- the "generic API".
-
- Improvements to http:// support. Allow http redirection. The
- User-Agent: header can be specified by the environment variable
- SP_HTTP_USER_AGENT It defaults to "libosp 1.5" if not set. The
- environment variable SP_HTTP_ACCEPT can contain the argument to
- the Accept: header (was hard coded as "Accept: */*"). There is no
- default, so to obtain the same behaviour do export
- SP_HTTP_ACCEPT="*/*"
-
-2003-07-17 19:41 Patrick Smith
-
- * Make opensp compile with gcc 3.3
-
-2003-07-17 19:16 Jessica Perry Hekman
-
- * Fixed bug reported by Neil Roeth: nested entities were being
- mishandled; also sdata entities were being misquoted; note,
- modified outputData to have additional argument, and added
- getQuoteMark method
-
- * added contents() for use by osx
-
- * added asInternalInputSource for use by osx
-
-2003-05-08 16:57 Jessica Perry Hekman
-
- * New command line argument
-
- * Warn before removing leading slashes in output file pathnames,
- and remove them; added no-write-outside-outdir to request
- exiting instead of writing output file outside (above) output
- directory
-
-2003-04-29 22:08 Jessica Perry Hekman
-
- * handle schemes such as http://
- correctly in external entity filenames
-
-2003-02-10 21:05 Jessica Perry Hekman
-
- * - include appropriate quotation marks in entity declarations
- - print correct output filenames for external entity files in
- driver file
- - print correct output directory name in for driver files in
- internal subset
- - create directories where needed when writing files
- - output all under output directory, even absolute
- filenames
- - don't define predefined entities (like lt)
-
-2002-12-01 Karl Eichwalder
-
- * doc/Makefile.am (docdir): Set to $(datadir)/doc.
- * doc/Makefile.am (pkgdochtmldir): New variable; set to
- $(pkgdocdir)/doc to make it compatible with description in README.
- * doc/Makefile.am (pkgdochtml_DATA): Use it instead of
- pkgdoc_DATA.
- * spec.in: Change it accordingly.
- Reported by Ville Skyttä.
-
- * include/Makefile.am (EXTRA_DIST): Add NCVector.sed.
- * include/NCVector.sed: Add it; required by sunfix.sh.
-
-2002-11-24 17:04 icastle
-
- * docsrc/ospam.xml: file ospam.xml was initially added on branch
- opensp_1_5_branch.
-
-2002-11-24 17:04 icastle
-
- * docsrc/logo.png: file logo.png was initially added on branch
- opensp_1_5_branch.
-
-2002-11-24 17:04 icastle
-
- * docsrc/: .cvsignore, Makefile, jadetex.cfg, logo.png,
- onsgmls.xml, osgmlnorm.xml, ospam.xml, ospent.xml, osx.xml,
- releasenotes.dsl, releasenotes.xml: Documentation
-
- Added manual pages and release notes
-
-2002-11-24 17:04 icastle
-
- * docsrc/releasenotes.xml: file releasenotes.xml was initially
- added on branch opensp_1_5_branch.
-
-2002-11-24 17:04 icastle
-
- * docsrc/.cvsignore: file .cvsignore was initially added on branch
- opensp_1_5_branch.
-
-2002-11-24 17:04 icastle
-
- * docsrc/Makefile: file Makefile was initially added on branch
- opensp_1_5_branch.
-
-2002-11-24 17:04 icastle
-
- * docsrc/jadetex.cfg: file jadetex.cfg was initially added on
- branch opensp_1_5_branch.
-
-2002-11-24 17:04 icastle
-
- * docsrc/osx.xml: file osx.xml was initially added on branch
- opensp_1_5_branch.
-
-2002-11-24 17:04 icastle
-
- * docsrc/releasenotes.dsl: file releasenotes.dsl was initially
- added on branch opensp_1_5_branch.
-
-2002-11-24 17:04 icastle
-
- * docsrc/osgmlnorm.xml: file osgmlnorm.xml was initially added on
- branch opensp_1_5_branch.
-
-2002-11-24 17:04 icastle
-
- * docsrc/ospent.xml: file ospent.xml was initially added on branch
- opensp_1_5_branch.
-
-2002-11-24 17:04 icastle
-
- * docsrc/onsgmls.xml: file onsgmls.xml was initially added on
- branch opensp_1_5_branch.
-
-2002-11-24 09:48 icastle
-
- * po/fr.po: file fr.po was initially added on branch
- opensp_1_5_branch.
-
-2002-11-24 09:48 icastle
-
- * po/: LINGUAS, de.po, fr.po, ja.po, sv.po: Updated translation
- files (.po). Translation file for "fr" added.
-
- The files are held at the "Translation Project"
-
- http://www.iro.umontreal.ca/contrib/po/HTML/index.html
-
- The textual domain for OpenSP is "sp".
-
- The French (fr) translation has been contributed by Michel
- Robitaille The German (de) translation has been updated for 1.5 by
- Karl Eichwalder
-
-2002-11-23 18:18 icastle
-
- * configure.in: Make sure compiler doesn't emit warnings when
- compiling openjade 1.3.2 with the config.h file
-
-2002-11-23 15:05 icastle
-
- * nsgmls/: NsgmlsMessages.msg, nsgmls.cxx: "-m" is an alias for
- "-c". As such, it needs to take a SYSID as a parameter, otherwise
- it will crash.
-
-2002-11-22 18:08 icastle
-
- * doc/index.htm: Correct URLS (download, mailing list etc).
-
- Ref: Source Forge Patch #641163 (Karl Eichwalder).
-
-2002-11-16 07:46 icastle
-
- * Makefile.am: Make sure docdir is in a structure like /usr/share
- instead of /usr for LSB compliance etc.
-
-2002-11-16 00:14 icastle
-
- * Makefile.am: Add config.rpath
-
-2002-11-15 18:25 icastle
-
- * NEWS, config.rpath, configure.in: Add config.rpath from/for
- gettext. Update NEWS and configure.in
-
-2002-11-15 18:25 icastle
-
- * config.rpath: file config.rpath was initially added on branch
- opensp_1_5_branch.
-
-2002-08-23 02:14 liamquinn
-
- * doc/nsgmls.htm, doc/sgmlnorm.htm, doc/spam.htm, doc/spcat.htm,
- doc/spent.htm, doc/sx.htm, include/EntityApp.h,
- include/PosixStorage.h, lib/EntityApp.cxx,
- lib/EntityAppMessages.msg, lib/PosixStorage.cxx: Added a new
- command-line option, -R or --restricted, to restrict file reading
- (intended for use in OpenSP-based Web applications).
-
-2002-07-10 17:08 icastle
-
- * configure.in: Make sure that SP_MULTI_BYTE is set by default
- (reverts mistake in previous commit).
-
-2002-07-08 06:14 Terje Bless
-
- * lib/ParserMessages.msg: Demote duplicateAttributeDef from Error
- to Warning. This closes SF Bug Tracker bug #578543.
-
-2002-07-07 17:42 Terje Bless
-
- * pubtext/xml.dcl: Update to canonical SGML Declaration for XML
- from the W3C. Changes ISO Registration number for the BASESET from
- 176 (UCS-2) to 177 (UCS-4). UCS-2 only allows 2^16 code points;
- UCS-4 allows the full 2^31.
-
-2002-06-13 21:16 icastle
-
- * NEWS, doc/sx.htm, sx/XmlOutputEventHandler.cxx,
- sx/XmlOutputEventHandler.h, sx/sx.cxx: Added a -x command line
- option to osx, which allows users to say whether they want sdata
- entities transformed into PIs or treated like normal entities (the
- default is the latter, which is how osx always behaved before these
- changes). Contributed by Jessica Hekman.
-
-2002-06-13 12:45 icastle
-
- * .cvsignore, NEWS, acconfig.h, configure.in: More work on upgrade
- to newer autoconf etc.
-
- Remove obsolete acconfig.h. Update .cvsignore for new files/dir
- created by new autoconf tools. Change the version number.
-
- Need to be careful that config.h.in hasn't been perturbed by the
- changes....
-
-2002-06-12 13:43 icastle
-
- * intl/gmo.h: file gmo.h was initially added on branch
- opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/dcigettext.c: file dcigettext.c was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/ref-del.sin: file ref-del.sin was initially added on branch
- opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/plural.c: file plural.c was initially added on branch
- opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/osdep.c: file osdep.c was initially added on branch
- opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/libgnuintl.h: file libgnuintl.h was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/ref-add.sin: file ref-add.sin was initially added on branch
- opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/plural.y: file plural.y was initially added on branch
- opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/localename.c: file localename.c was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/localcharset.c: file localcharset.c was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/os2compat.c: file os2compat.c was initially added on branch
- opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/os2compat.h: file os2compat.h was initially added on branch
- opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * po/LINGUAS: file LINGUAS was initially added on branch
- opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/eval-plural.h: file eval-plural.h was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/dcngettext.c: file dcngettext.c was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/dngettext.c: file dngettext.c was initially added on branch
- opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/locale.alias: file locale.alias was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/ngettext.c: file ngettext.c was initially added on branch
- opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/plural-exp.h: file plural-exp.h was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/plural-exp.c: file plural-exp.c was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/COPYING.LIB-2.0: file COPYING.LIB-2.0 was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/config.charset: file config.charset was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * intl/COPYING.LIB-2.1: file COPYING.LIB-2.1 was initially added on
- branch opensp_1_5_branch.
-
-2002-06-12 13:43 icastle
-
- * configure.in, intl/COPYING.LIB-2.0, intl/COPYING.LIB-2.1,
- intl/ChangeLog, intl/Makefile.in, intl/VERSION, intl/bindtextdom.c,
- intl/cat-compat.c, intl/config.charset, intl/dcgettext.c,
- intl/dcigettext.c, intl/dcngettext.c, intl/dgettext.c,
- intl/dngettext.c, intl/eval-plural.h, intl/explodename.c,
- intl/finddomain.c, intl/gettext.c, intl/gettext.h, intl/gettextP.h,
- intl/gmo.h, intl/hash-string.h, intl/intl-compat.c,
- intl/l10nflist.c, intl/libgettext.h, intl/libgnuintl.h,
- intl/linux-msg.sed, intl/loadinfo.h, intl/loadmsgcat.c,
- intl/localcharset.c, intl/locale.alias, intl/localealias.c,
- intl/localename.c, intl/ngettext.c, intl/os2compat.c,
- intl/os2compat.h, intl/osdep.c, intl/plural-exp.c,
- intl/plural-exp.h, intl/plural.c, intl/plural.y,
- intl/po2tbl.sed.in, intl/ref-add.sin, intl/ref-del.sin,
- intl/textdomain.c, intl/xopen-msg.sed, po/LINGUAS: Upgrade autoconf
- framework
-
- In the absence of a nice set of portability tools to cope with
- different versions of autoconf, automake etc.;-) upgrade to
- autoconf-2.53 automake-1.5 gettext-0.11.1 libtool-1.4.2
-
- Hopefully, this will reduce the problems people have had recently
- when building from CVS
-
- - Run autoupgrade on configure.in. - update the built-in "intl" to
- version 0.11. - no longer need to define extra commands to handle
- POFILE substitution in configure. - Use "LINGUAS" file in the
- "po" directory rather than in ALL_LINGUAS in the configure.in as
- this is the modern way of doing it (allows support for multiple
- po directories in the project).
-
-2002-06-10 18:22 icastle
-
- * configure.in: LIBOBJS is obsolete in autoconf 2.53. As it isn't
- used, the simplest thing is to remove it.
-
-2002-04-13 13:48 icastle
-
- * NEWS, include/ArcEngine.h, lib/ArcEngine.cxx: architecture public
- id reporting
-
- Ref: Sourceforge #532322, Peter Newcomb, Epremis
-
- Adds the architecture public id to the information passed to
- implementations of ArcDirector. This is especially important when
- using the PI-based architecture use declaration syntax, since there
- may be no Notation object from which to get the information.
-
-2002-04-13 13:19 icastle
-
- * AUTHORS, NEWS, include/Mode.h, include/SgmlParser.h,
- lib/ArcEngine.cxx, lib/ArcEngineMessages.msg, lib/ArcProcessor.h,
- lib/MessageReporter.cxx, lib/ModeInfo.cxx, lib/Parser.h,
- lib/ParserState.h, lib/parseAttribute.cxx, lib/parseDecl.cxx,
- lib/parseInstance.cxx, lib/parseMode.cxx: PI architecture
- declaration support
-
- Ref: Sourceforge #532318, Peter Newcomb, Epremis (patch #19689)
-
- Adds support for the PI-based architecture use declaration syntax
- defined by Amendment 1 to ISO/IEC 10744:1997 (HyTime). This makes
- it possible to specify architectural support attributes when using
- architectures with XML, and is generally simpler than the original
- syntax. See http://www.ornl.gov/sgml/wg8/document/1985.htm for
- details. This patch also makes it possible to, and provides an
- example of how to, use the exisiting attribute specification
- parsing machinery to process attribute specifications within
- processing instructions.
-
-2002-04-13 12:57 icastle
-
- * include/MessageFormatter.h: MessageFormatter::Builder private
-
- Ref: Source Forge #532046, Peter Newcomb, Epremis
-
- XMLMessageFormatter::formatMessage() needs to instantiate a
- MessageFormatter::Builder, but cannot because Builder is private.
- This patch adds makes Builder protected instead of private.
-
- This problem crops up with Red Hat gcc 2.96
-
-2002-04-13 12:53 icastle
-
- * lib/ArcEngine.cxx: defaulting invalid arc att segfault fix
-
- Ref: Sourceforge patch #530152
-
- Fixes a segfault that occurred when an attempt was made to map a
- nonexistent architectural attribute to #DEFAULT.
-
-2002-04-13 12:41 icastle
-
- * NEWS, doc/sx.htm, include/Event.h, include/OutputByteStream.h,
- include/OutputCharStream.h, include/Owner.h, include/Vector.h,
- lib/Event.cxx, lib/ParserState.cxx, sx/XmlOutputEventHandler.cxx,
- sx/XmlOutputEventHandler.h, sx/XmlOutputMessages.msg, sx/sx.cxx:
- Various enhancements to osx from Jessica Perry Hekman, Dynamic
- Diagrams
-
-2002-03-16 08:55 icastle
-
- * lib/Makefile.am: Read the libtool manual and work out the
- "correct" rules for bumping the library version
-
-2002-03-15 15:56 icastle
-
- * lib/Makefile.am: Bump version number as API has changed with new
- Message Module capability
-
-2002-03-15 11:57 icastle
-
- * include/MessageModule.h: file MessageModule.h was initially added
- on branch opensp_1_5_branch.
-
-2002-03-15 11:57 icastle
-
- * include/MessageModule.h: Extensible message modules
-
- In order to support Windows applications that use DLLs that use
- SP's DLL, where the intervening DLLs also define messages to be
- used with the SP message handling infrastructure, this patch
- reworks the way in which MessageFragments identify the module
- within which their text resides by replacing the (libModule,
- appModule, xModule) enumeration with a pointer to a global, opaque
- MessageModule object. This MessageModule object then contains
- whatever data is needed to identify sets of text resources on the
- host system, e.g. an HINSTANCE DLL handle under Windows, or a
- message domain string for gettext.
-
- Only the implementation of the message handling infrastructure is
- changed; use of the patch does require regeneration of .h and .cxx
- files from .msg files and recompilation of everything, its general
- usage does not change.
-
- Ref: Peter Newcomb, Epremis Corp. Source Forge patch #530161
-
-2002-03-15 11:53 icastle
-
- * AUTHORS, NEWS, msggen.pl.in, include/Makefile.am,
- include/Message.h, include/MessageTable.h, lib/CmdLineApp.cxx,
- lib/Message.cxx, lib/MessageTable.cxx: Extensible message modules
-
- In order to support Windows applications that use DLLs that use
- SP's DLL, where the intervening DLLs also define messages to be
- used with the SP message handling infrastructure, this patch
- reworks the way in which MessageFragments identify the module
- within which their text resides by replacing the (libModule,
- appModule, xModule) enumeration with a pointer to a global, opaque
- MessageModule object. This MessageModule object then contains
- whatever data is needed to identify sets of text resources on the
- host system, e.g. an HINSTANCE DLL handle under Windows, or a
- message domain string for gettext.
-
- Only the implementation of the message handling infrastructure is
- changed; use of the patch does require regeneration of .h and .cxx
- files from .msg files and recompilation of everything, its general
- usage does not change.
-
- Ref: Peter Newcomb, Epremis Corp. Source Forge patch #530161
-
-2002-03-15 10:15 icastle
-
- * include/constant.h: Include types.h in constant.h
-
- Allows "constant.h" to be independently included by source files by
- making explicit its dependency on "types.h".
-
- Ref: Peter Newcomb, Epremis Corporation, Source Forge patch #530157
-
-2002-03-15 10:12 icastle
-
- * include/CmdLineApp.h: main() missing extern "C" fix
-
- Adds missing `extern "C"' to non-multi-byte main() definition macro
- in "CmdLineApp.h".
-
- Ref: Peter Newcomb, Epremis Corporation, Source Forge patch #530158
-
-2002-03-15 10:10 icastle
-
- * include/Entity.h: Makes PiEntity a part of the public API.
-
- Ref: Peter Newcomb, Epremis Corporation, Source Forge patch #530154
-
-2002-03-15 10:00 icastle
-
- * lib/ArcEngine.cxx: Fixes cut-and-paste error that made undeclared
- architectural DTD general entities reported as if they were
- expected to be parameter entities.
-
- Ref: Peter Newcomb, Epremis Corporation, SourceForge Patch #530150
-
-2002-03-14 17:50 icastle
-
- * configure.in: Revert change to package name opensp -> OpenSP. It
- may look nicer but it is too gratuitous a change - affects external
- interfaces etc.
-
-2002-03-14 13:33 icastle
-
- * nsgmls/Makefile.am: Add new header file nsgmls.h
-
-2002-03-14 12:35 icastle
-
- * nsgmls/nsgmls.h: Add new output options "all" and "version" to
- onsgmls
-
- --option=all --option=version
-
- Option "all" is shorthand to turn on all available options
-
- Option "version" causes details of onsgmls to be output under a new
- output code "V". A version line and a mini-report of features will
- be utput. For example (p=package, v=version, c=possible codes,
- o=output options):
-
- Vp opensp Vv 1.5pre7 Vc -?C#()&ADaNEISTps{}fLie_oV Vo esis line
- entity id included notation-sysid nonsgml empty data-attribute
- comment omitted tagomit attromit version
-
- Robert Braddock notes "I think this will be useful, based on
- working on (Perl tools) SGMLSpm and XML::Parser::ESISParser, to
- help applications know what kind of info they'll be getting.
- Ideally, the "Vc" line would only list commands that might be
- issued, but right now, I just have it list all commands the onsgmls
- knows about. I'm not particularly happy with this change, because I
- needed to split out a couple things from nsgmls.cxx and make a
- nsgmls.h to keep down the duplication of lists of options, but it's
- not clear to me the best way to lay things out (and I think that
- needs to be found before there will be a clean way to reduce the Vc
- line)."
-
- Ref: Robert Braddock, Source Forge patch #476642
-
-2002-03-14 12:35 icastle
-
- * nsgmls/nsgmls.h: file nsgmls.h was initially added on branch
- opensp_1_5_branch.
-
-2002-03-14 11:26 icastle
-
- * nsgmls/: SgmlsEventHandler.cxx, SgmlsEventHandler.h, nsgmls.cxx:
- Add new output options "all" and "version" to onsgmls
-
- --option=all --option=version
-
- Option "all" is shorthand to turn on all available options
-
- Option "version" causes details of onsgmls to be output under a new
- output code "V". A version line and a mini-report of features will
- be utput. For example (p=package, v=version, c=possible codes,
- o=output options):
-
- Vp opensp Vv 1.5pre7 Vc -?C#()&ADaNEISTps{}fLie_oV Vo esis line
- entity id included notation-sysid nonsgml empty data-attribute
- comment omitted tagomit attromit version
-
- Robert Braddock notes "I think this will be useful, based on
- working on (Perl tools) SGMLSpm and XML::Parser::ESISParser, to
- help applications know what kind of info they'll be getting.
- Ideally, the "Vc" line would only list commands that might be
- issued, but right now, I just have it list all commands the onsgmls
- knows about. I'm not particularly happy with this change, because I
- needed to split out a couple things from nsgmls.cxx and make a
- nsgmls.h to keep down the duplication of lists of options, but it's
- not clear to me the best way to lay things out (and I think that
- needs to be found before there will be a clean way to reduce the Vc
- line)."
-
- Ref: Robert Braddock, Source Forge patch #476642
-
-2002-03-14 11:08 icastle
-
- * nsgmls/: SgmlsEventHandler.cxx, SgmlsEventHandler.h: Simple
- onsgmls char type changes
-
- Some minor changes to character typing, and move all character
- constants to const variables. (This is desirable because it
- simplifies working on wide character support and it looks nice. It
- also removes a FIXME, which is probably good.)
-
- Ref: Robert Braddock, sourceforge patch #476606
-
-2002-03-14 10:57 icastle
-
- * lib/UTF8CodingSystem.cxx: Accept Byte Order Marks as valid XML
-
- Ref: Source Forge #442560 (Terje Bless/Liam Quinn)
-
- Determination of Character Encoding of an XML file brought in line
- with Second Edition XML 1.0 Specification (REC-xml-20001006) - Byte
- Order Marks now accepted as valid XML in UTF8 encoded documents.
-
-2002-03-14 10:37 icastle
-
- * lib/lib.dsp: Update from jade RELEASE-1_3 branch.
-
- Win32: Can't use precompiled header when header file is not
- included...
-
-2002-03-14 10:34 icastle
-
- * include/config.h.old.in: Update from jade RELEASE-1_3 branch.
-
- Support for new std namespace in GNU C++ >= 2.9
-
-2002-03-14 10:12 icastle
-
- * nsgmls/nsgmls.cxx: Update from jade RELEASE-1_3 branch.
-
- Better support for newer compilers
-
- Ref: Red Hat openjade-1.3-decl.patch
-
-2002-03-14 08:47 icastle
-
- * configure.in: Updates for new versions of automake
-
-2002-03-13 16:00 icastle
-
- * NEWS, configure.in: Update for 1.5-pre7. Also change package name
- to "opensp" (looks more natural, consistent with previous releases
- and most other things and best to avoid case signficance when
- dealing with cross platform stuff. And I like it this way).
-
-2002-03-13 14:40 icastle
-
- * configure.in, include/CmdLineApp.h, include/MessageFormatter.h,
- include/MessageReporter.h, lib/CmdLineApp.cxx,
- lib/MessageReporter.cxx: Add Nick Kew's option for producing
- messages in XML format (taken from MAIN). Also add support for
- configure to enable this with
-
- ./configure --enable-xml-messages
-
- See http://valet.webthing.com/xml/ for some info about this
- feature.
-
-2002-03-13 13:43 icastle
-
- * configure.in, po/ja.po: Add Japanese Support contributed by SATO
- Satoru (from MAIN branch)
-
-2002-03-13 13:13 icastle
-
- * ChangeLog: file ChangeLog was initially added on branch
- opensp_1_5_branch.
-
-2002-03-13 13:13 icastle
-
- * ChangeLog: Add missing ChangeLog
-
-2001-08-31 08:29 adicarlo
-
- * NEWS, configure.in: fix the wchar_t check; remove redundant
- RANLIB check
-
-2001-08-31 08:15 adicarlo
-
- * acconfig.h: autoconf 2.52 doesn't liek these silly error messages
- I guess
-
-2001-08-31 08:01 adicarlo
-
- * debian/: changelog, control: reburn this version; require
- autoconf 2.52 or better
-
-2001-08-31 08:00 adicarlo
-
- * NEWS, configure.in: require autoconf 2.52; remove reference to
- OJ_CHECK_SIZEOF, which was causing autoheader to puke; if this
- works ok, I'll remove the definition of that from acinclude.m4,
- since I think it was just a temporary workaround for an autoconf
- bug....
-
-2001-08-31 07:25 adicarlo
-
- * debian/changelog: burn 1.5pre5-4
-
-2001-08-06 16:00 adicarlo
-
- * debian/: changelog, rules: libosp-dev now has proper depends on
- libosp2 and opensp, modified patch from Yann Dirson; closes:
- #107239
-
-2001-07-30 05:51 adicarlo
-
- * debian/: changelog, control: 1.5pre5-3: fix missing build-depends
- on gettext, closes: #105961
-
-2001-07-10 21:07 adicarlo
-
- * debian/: changelog, control, rules: use dh_shlibdeps, remove some
- hand-rolled stuff here which was unnecessary and in fact adding two
- libosp deps on the opensp package, not to mention that it stopped
- working
-
-2001-07-10 17:03 adicarlo
-
- * debian/changelog: uh, change version 1.5pre5-1.5pre6-1 to just
- 1.5pre5-2, the other seems like asking for trouble
-
-2001-07-10 17:02 adicarlo
-
- * debian/changelog: Debian version 1.5pre5-1.5pre6-1
-
-2001-07-10 17:02 adicarlo
-
- * NEWS: trivial recent news
-
-2001-07-10 17:00 adicarlo
-
- * Makefile.am: deal with the config.h in 'make dist' situation, I
- hope
-
-2001-07-10 16:58 adicarlo
-
- * debian/rules: libtoolize --force during building; tolerate errors
- in 'make maintainer-clean'
-
-2001-07-10 16:57 adicarlo
-
- * nsgmls/nsgmls.cxx: fix for GCC 3.0 compilation, doesn't seem to
- hurt the older GCCs (I hope!)
-
-2001-07-10 06:44 adicarlo
-
- * NEWS: document Terje Bless's documentation improvements
-
-2001-05-11 14:08 twaugh
-
- * po/ja.po: Japanese translations.
-
-2001-03-19 17:01 adicarlo
-
- * doc/sysid.htm: more discussion of , thanks to Terje Bless
-
-2001-03-19 16:39 adicarlo
-
- * NEWS: document gcc 2.96 fixes
-
-2001-03-19 16:37 adicarlo
-
- * BUILDING, nsgmls/RastEventHandler.h: merged from HEAD (latest
- head merge is opensp_1_5_branch_merged)
-
-2001-03-17 10:34 adicarlo
-
- * configure.in: bump up to 1.5pre6
-
-2001-02-22 21:42 adicarlo
-
- * NEWS, lib/URLStorage.cxx: Adapt SP patch from Liam Quinn that
- adds a HTTP/1.0 Host header to HTTP requests. Necessary to fetch
- DTDs specified in SYSTEM identifiers when the DTD resides on a
- name-based "Virtual Host". Thanks to 'tbe'.
-
-2001-02-22 21:32 adicarlo
-
- * debian/: changelog, rules: hmm, it turns out that Debian wasn't
- shipping the gettext files properly, oops
-
-2001-02-22 21:30 adicarlo
-
- * NEWS, spec.in: RPM spec file updates and corrections from Terje
- Bless
-
-2001-02-19 06:08 adicarlo
-
- * msggen.pl.in: use @PERL@ setting here, thanks to Michael Wiedmann
-
-2001-02-19 06:04 adicarlo
-
- * debian/changelog: prepare 1.5pre5-1
-
-2001-02-19 06:03 adicarlo
-
- * debian/rules: do make clean, then make maintainer clean
-
-2001-02-10 08:28 adicarlo
-
- * debian/changelog: prepare 1.5pre5-1
-
-2001-02-10 08:20 adicarlo
-
- * configure.in: version bumped to 1.5pre5
-
-2001-02-09 23:22 adicarlo
-
- * lib/Mutex.h: #include now put outside of
- SP_NAMESPACE; patch from Robert Braddock
-
-2001-02-09 23:18 adicarlo
-
- * debian/rules: make some rules depends on 'Makefile', and use that
-
-2001-02-09 23:17 adicarlo
-
- * debian/control: libosp2 goes in libs (override disparity);
- libosp-dev goes in devel (request change from text, mail sent to
- override-change@debian.org)
-
-2001-02-09 23:15 adicarlo
-
- * NEWS, doc/nsgmls.htm, doc/sgmlsout.htm,
- nsgmls/SgmlsEventHandler.cxx, nsgmls/SgmlsEventHandler.h,
- nsgmls/nsgmls.cxx: New -output options: comment, omitted, tagomit
- and attromit; this shows comments and implied elements and/or
- attributes. Patch from Robert Braddock.
-
-2001-02-08 05:44 adicarlo
-
- * include/SubstTable.h: fix a c++ warning, warning: nsigned int
- SubstTable::operator [](unsigned int) const' was used before it was
- declared inline
-
-2001-02-08 03:19 adicarlo
-
- * configure.in: mere cosmetic
-
-2001-02-03 02:42 adicarlo
-
- * debian/changelog: clarify
-
-2001-02-03 02:41 adicarlo
-
- * debian/changelog: re-burn this
-
-2001-01-31 09:41 adicarlo
-
- * NEWS: document autoconf fix
-
-2001-01-31 09:40 adicarlo
-
- * debian/changelog: prepare 1.5pre4-5
-
-2001-01-31 09:39 adicarlo
-
- * debian/rules: handle DEB_BUILD_OPTIONS
-
-2001-01-31 09:39 adicarlo
-
- * debian/control: update standards to 3.5.0
-
-2001-01-31 09:36 adicarlo
-
- * configure.in: fix bug triggered on gcc 2.7.x at least, fixing
- 'checking whether to declare set_new_handler extern C'
-
-2000-10-16 00:00 adicarlo
-
- * NEWS: oops, it would be 1.5pre5
-
-2000-10-15 23:42 adicarlo
-
- * NEWS: reconstruct changes for a projected 1.5pre5 based on CVS
- logs
-
-2000-10-15 23:10 adicarlo
-
- * intl/: ChangeLog, Makefile.in, bindtextdom.c, cat-compat.c,
- dcgettext.c, dgettext.c, explodename.c, finddomain.c, gettext.c,
- gettext.h, gettextP.h, hash-string.h, l10nflist.c, libgettext.h,
- loadinfo.h, loadmsgcat.c, localealias.c, textdomain.c: rerun
- gettextize, gettting newer versions of intl stuff; all of this is
- straight out of the gettext package w/o modification
-
-2000-10-15 23:10 adicarlo
-
- * intl/l10nflist.c: file l10nflist.c was initially added on branch
- opensp_1_5_branch.
-
-2000-10-15 23:10 adicarlo
-
- * intl/ChangeLog: file ChangeLog was initially added on branch
- opensp_1_5_branch.
-
-2000-10-15 23:10 adicarlo
-
- * intl/loadinfo.h: file loadinfo.h was initially added on branch
- opensp_1_5_branch.
-
-2000-10-15 23:10 adicarlo
-
- * intl/explodename.c: file explodename.c was initially added on
- branch opensp_1_5_branch.
-
-2000-10-15 07:50 adicarlo
-
- * debian/rules: put doc/*.htm in opensp doc dir (closes: Bug#68002)
-
-2000-10-15 07:49 adicarlo
-
- * debian/changelog: 1.5pre4-4
-
-2000-10-15 07:43 adicarlo
-
- * configure.in: be more careful about po/Makefile.in, although we
- still seem to get some circular situations
-
-2000-10-15 07:41 adicarlo
-
- * lib/parseDecl.cxx: patch from Christopher C. Chimelis to enable
- compilation on 64-bit platforms, Alpha in particular
-
-2000-06-26 10:00 murray
-
- * BUILDING: This file documents the build process as decribed in
- the jade-devel mailing list by Adam Di Carlo.
-
-2000-05-20 09:40 adicarlo
-
- * debian/: changelog, control: we gotta conflict with libosp1
-
-2000-05-20 06:52 adicarlo
-
- * debian/libosp2.postinst: file libosp2.postinst was initially
- added on branch opensp_1_5_branch.
-
-2000-05-20 06:52 adicarlo
-
- * debian/: changelog, control, libosp-dev.README,
- libosp1.README.Debian.in, libosp1.postinst,
- libosp2.README.Debian.in, libosp2.postinst, rules: major number on
- the shared library changed; libosp1 is libosp2
-
-2000-05-20 06:52 adicarlo
-
- * debian/libosp2.README.Debian.in: file libosp2.README.Debian.in
- was initially added on branch opensp_1_5_branch.
-
-2000-05-16 08:19 clasen
-
- * msggen.pl.in, sp-generate.mak, doc/build.htm: Support localized
- builds on Win32.
-
-2000-05-15 13:53 clasen
-
- * lib/ParserApp.cxx: Reinstate the -widref option which was
- accidentally removed.
-
-2000-05-09 04:18 adicarlo
-
- * debian/: changelog, rules: fix aclocal/autoheader ordering bug
-
-2000-05-09 03:27 adicarlo
-
- * debian/changelog: first cut for 1.5pre4-2
-
-2000-05-08 08:37 adicarlo
-
- * acconfig.h: undo bad change I made before
-
-2000-05-06 20:40 adicarlo
-
- * debian/: changelog, control: add build-depends for next version
-
-2000-05-06 05:20 adicarlo
-
- * debian/: changelog, rules: lintian and lib dep change
-
-2000-05-06 00:25 adicarlo
-
- * debian/changelog: document Makefile.am changes
-
-2000-05-06 00:10 adicarlo
-
- * Makefile.am, doc/Makefile.am, generic/Makefile.am,
- include/Makefile.am, lib/Makefile.am, nsgmls/Makefile.am,
- pubtext/Makefile.am, sgmlnorm/Makefile.am, spam/Makefile.am,
- spcat/Makefile.am, spent/Makefile.am, sx/Makefile.am,
- unicode/Makefile.am: 'maintainer-clean' is now closer to CVS-level
- pristineness
-
-2000-05-05 22:26 adicarlo
-
- * spent/Makefile.am: SpentMessages.msg should not be in
- BUILT_SOURCES
-
-2000-05-05 22:25 adicarlo
-
- * debian/libosp1.postinst: add newline at end of file
-
-2000-05-05 19:02 adicarlo
-
- * debian/changelog: more updates
-
-2000-05-05 19:01 adicarlo
-
- * debian/libosp-dev.README: file libosp-dev.README was initially
- added on branch opensp_1_5_branch.
-
-2000-05-05 19:01 adicarlo
-
- * debian/libosp-dev.README: new file
-
-2000-05-05 17:47 adicarlo
-
- * debian/changelog: uh, change the numbering a bit
-
-2000-05-05 16:54 adicarlo
-
- * debian/changelog: recent updates documented
-
-2000-05-05 16:53 adicarlo
-
- * debian/copyright.Debian: update download/cvs locations
-
-2000-05-05 16:52 adicarlo
-
- * README: point to project home page, and bug reporting URL
-
-2000-05-05 16:42 adicarlo
-
- * debian/: changelog, rules: finalize for 1.5-0.pre4-1, we hope
-
-2000-05-05 15:27 adicarlo
-
- * acconfig.h: add HAVE_BOOL
-
-2000-05-04 16:50 adicarlo
-
- * debian/changelog: new version started
-
-2000-04-28 08:15 clasen
-
- * lib/PosixStorage.cxx: Fix a typo which caused problems with
- filenames on Win32.
-
-2000-03-30 07:55 pnil
-
- * include/config.h.old.in: (SP_PACKAGE, SP_VERSION): Use @PACKAGE@
- and @VERSION@ instead of the SP_ prefixed ones.
-
-2000-03-29 19:49 clasen
-
- * spec.in: Remove braces since rpm apparently doesn't support brace
- expansion.
-
-2000-03-29 18:00 clasen
-
- * Makefile.am, NEWS, configure.in, include/SubstTable.h,
- lib/CmdLineApp.cxx, lib/SubstTable.cxx, lib/Win32CodingSystem.cxx,
- lib/WinApp.cxx, lib/lib.dsp, po/de.po: More Win32 fixes.
-
-2000-03-28 18:21 clasen
-
- * spec.in: Include message catalogs.
-
-2000-03-27 18:33 clasen
-
- * lib/xentmgr_inst.m4, po/Makefile.in.in: More Win32 fixes.
-
-2000-03-25 22:15 clasen
-
- * lib/CmdLineApp.cxx: One more Win32 fix.
-
-2000-03-25 21:31 clasen
-
- * lib/: ArcEngine.cxx, Win32CodingSystem.cxx, entmgr_inst.m4,
- xentmgr_inst.m4: More Win32 fixes and a fix for a segfault caused
- by the recent architecture engine changes.
-
-2000-03-23 22:37 clasen
-
- * lib/ArcEngine.cxx: Fix a segfault.
-
-2000-03-22 14:36 clasen
-
- * lib/: lib.dsp, splibpch.h, xentmgr_inst.m4: More Win32 fixes.
-
-2000-03-21 10:04 pnil
-
- * msggen.pl.in: Added Peter Nilsson as copyright holder.
-
-2000-03-21 09:25 pnil
-
- * msggen.pl.in: (read_po_translations, po_flush): New functions.
-
-2000-03-18 21:08 clasen
-
- * Makefile.am, NEWS, configure.in, spec.in, include/MessageArg.h,
- include/SubstTable.h, lib/ArcEngine.cxx, lib/entmgr_inst.m4,
- lib/lib.dsp: More Win32 build fixes.
-
-2000-03-16 20:47 clasen
-
- * NEWS, configure.in, lib/Group.cxx, lib/Group.h,
- lib/ParserMessages.msg, lib/lib.dsp, lib/parseParam.cxx, po/de.po,
- po/sv.po: Annex K: Parse #ALL/#IMPLICIT content tokens and issue a
- proper error message.
-
-2000-03-16 16:49 clasen
-
- * spec.in, lib/CmdLineApp.cxx, lib/PosixStorage.cxx,
- lib/Win32CodingSystem.cxx, lib/WinApp.cxx, lib/lib.dsp,
- nsgmls/nsgmls.dsp, sgmlnorm/sgmlnorm.dsp, spam/spam.dsp,
- spcat/spcat.dsp, spent/spent.dsp, sx/sx.dsp: Incorporate spec
- changes proposed by Karl Eichwalder; change SP_NAMESPACE to
- "OpenSP" on Win32; remove silent assumption sizeof(Char) ==
- sizeof(wchar_t) in Win32-only files.
-
-2000-03-15 16:24 clasen
-
- * po/de.po: More german translations.
-
-2000-03-14 23:17 clasen
-
- * include/Syntax.h, lib/Parser.h, lib/ParserMessages.msg,
- lib/Syntax.cxx, lib/parseDecl.cxx, lib/parseSd.cxx: Check that
- added function names are valid in the concrete syntax; warn about
- notation attributes which are CONREF; use the proper syntax for
- delimiters in bracketed text entities.
-
-2000-03-14 12:26 clasen
-
- * lib/parseParam.cxx: Fix a typo.
-
-2000-03-14 12:22 clasen
-
- * lib/Parser.h, lib/ParserMessages.msg, lib/ParserState.cxx,
- lib/ParserState.h, lib/parseInstance.cxx, lib/parseParam.cxx,
- po/de.po, po/sv.po: Correctly recognize parameter entities with an
- active document type name; disallow name group in parameter entity
- references in document type specifications in tags.
-
-2000-03-13 15:59 clasen
-
- * lib/parseDecl.cxx: A fix for the (nonworking) #IMPLIED doctypes.
-
-2000-03-09 18:30 clasen
-
- * NEWS, doc/xml.htm, include/Attribute.h, lib/Attribute.cxx,
- lib/ParserMessages.msg, lib/ParserState.cxx,
- lib/parseAttribute.cxx, lib/parseDecl.cxx: Annex K support
- improvements: common data attributes can now be specified in entity
- declarations.
-
-2000-03-08 18:25 clasen
-
- * spec.in: Split the rpm into OpenSP, OpenSP and OpenSP-devel
- packages.
-
-2000-03-08 16:28 clasen
-
- * .cvsignore, Makefile.am, configure.in, spec.in, po/de.po,
- po/sv.po: First cut at RPM packaging support. It should be able to
- generate a .rpm package simply by applying rpm -tb to the tarball.
-
-2000-03-08 16:28 clasen
-
- * spec.in: file spec.in was initially added on branch
- opensp_1_5_branch.
-
-2000-03-07 12:25 clasen
-
- * NEWS, configure.in, doc/Makefile.am, generic/Makefile.am,
- include/Makefile.am, intl/Makefile.in, lib/Makefile.am,
- lib/lib.dsp, lib/memcmp.c, lib/memmove.c, lib/strerror.c,
- nsgmls/Makefile.am, po/Makefile.in.in, pubtext/Makefile.am,
- sgmlnorm/Makefile.am, spam/Makefile.am, spcat/Makefile.am,
- spent/Makefile.am, sx/Makefile.am: Minor improvements.
-
-2000-03-07 12:23 clasen
-
- * autoinit.sh: A little shell script to ease working from CVS.
-
-2000-03-07 12:23 clasen
-
- * autoinit.sh: file autoinit.sh was initially added on branch
- opensp_1_5_branch.
-
-2000-03-07 12:03 clasen
-
- * unicode/.cvsignore: file .cvsignore was initially added on branch
- opensp_1_5_branch.
-
-2000-03-07 12:03 clasen
-
- * Makefile.am, all/Makefile.am, unicode/.cvsignore,
- unicode/Makefile.am: Add all and unicode directories to dist;
- install unicode stuff in pkgdatadir.
-
-2000-03-07 12:03 clasen
-
- * unicode/Makefile.am: file Makefile.am was initially added on
- branch opensp_1_5_branch.
-
-2000-03-07 10:21 clasen
-
- * NEWS: Add a forgotten headline.
-
-2000-03-07 10:15 clasen
-
- * lib/parseDecl.cxx: Merge the post-1.4 fix.
-
-2000-03-07 10:13 clasen
-
- * lib/lib.dsp: Change dll name to be in sync with $VERSION.
-
-2000-03-07 10:12 clasen
-
- * lib/Makefile.am: Bump so version, since the SubstTable and Char
- changes are interface changes.
-
-2000-03-07 10:10 clasen
-
- * NEWS, doc/archform.htm, lib/ArcEngine.cxx,
- lib/ArcEngineMessages.msg, lib/ArcProcessor.h: Implement #MAPTOKEN,
- fix architectural content handling and remove some cruft.
-
-2000-03-06 16:24 clasen
-
- * lib/: ArcEngine.cxx, ArcEngineMessages.msg, ArcProcessor.h:
- Stricter error-catching in the architecture engine; parse
- #maptoken.
-
-2000-03-03 10:44 clasen
-
- * lib/ParserMessages.msg, msggen.pl.in: Add standard identification
- to relevant clauses.
-
-2000-03-01 19:57 clasen
-
- * lib/SubstTable.cxx: Fix a coredump.
-
-2000-03-01 18:59 clasen
-
- * lib/XMLCodingSystem.cxx: Fix some byte order bugs.
-
-2000-03-01 14:19 clasen
-
- * lib/: Fixed4CodingSystem.cxx, XMLCodingSystem.cxx: Fix
- compilation failures.
-
-2000-02-29 18:08 clasen
-
- * include/CodingSystem.h, include/Fixed2CodingSystem.h,
- include/Fixed4CodingSystem.h, lib/Fixed2CodingSystem.cxx,
- lib/Fixed4CodingSystem.cxx, lib/UTF16CodingSystem.cxx,
- lib/XMLCodingSystem.cxx: Support autodetection of 4-byte coding
- systems in XML. This needs testing.
-
-2000-02-28 17:36 clasen
-
- * pubtext/xml.dcl: Use the full UTF-16 char range in the XML
- declaration.
-
-2000-02-28 17:21 clasen
-
- * doc/: features.htm, xml.htm: Updates for 32bit chars.
-
-2000-02-28 16:25 clasen
-
- * NEWS, doc/charset.htm, include/CodingSystem.h,
- include/UTF16CodingSystem.h, include/UnicodeCodingSystem.h,
- lib/CodingSystemKit.cxx, lib/Fixed2CodingSystem.cxx,
- lib/UTF16CodingSystem.cxx, lib/UnicodeCodingSystem.cxx,
- lib/XMLCodingSystem.cxx: Adapt the coding systems to the new
- character range. fixed-2 now handles unencodable chars, unicode and
- xml use a utf-16 subdecoder/subencoder to handle utf-16.
-
-2000-02-28 09:53 pnil
-
- * include/XcharMap.cxx: (XcharMap::setRange): Tighten loop. Also
- fixes a bug where == should be >=.
-
-2000-02-27 22:20 pnil
-
- * po/sv.po: More translations.
-
-2000-02-27 22:12 pnil
-
- * include/: CharMap.cxx, CharMap.h: Cleanups.
-
-2000-02-26 21:52 clasen
-
- * generic/SGMLApplication.h, include/constant.h, include/types.h:
- Switch to 32bit Chars. charMax stays at 0x10ffff.
-
-2000-02-25 16:55 clasen
-
- * include/CharsetInfo.h, include/RangeMap.cxx, lib/CharsetInfo.cxx,
- lib/SOEntityCatalog.cxx, lib/Syntax.cxx, lib/UnivCharsetDesc.cxx:
- Replace uses of {Wide,Syntax,Univ,}Char(-1) by the appropriate
- constants.
-
-2000-02-25 15:27 clasen
-
- * include/: XcharMap.cxx, XcharMap.h: Fix the size of the flat
- array to 2^8/2^16 independent of charMax. For SP_MULTI_BYTE, add a
- CharMap to XcharMap to store the values for higher planes.
-
-2000-02-25 15:25 clasen
-
- * include/: CharMap.cxx, CharMap.h: Change levels to 5,8,4,4.
- Rename block to plane.
-
-2000-02-25 13:19 clasen
-
- * include/Syntax.h, lib/Syntax.cxx: Delay instantiation of
- Syntax::markupScanTable_ to save 64k with most SGML declarations.
-
-2000-02-24 19:00 clasen
-
- * include/: CharMap.cxx, CharMap.h: Add another level of
- indirection to CharMap in order to accomodate 20bits. This needs
- severe testing.
-
-2000-02-24 18:07 clasen
-
- * include/Fixed4CodingSystem.h, include/Makefile.am,
- include/UTF16CodingSystem.h, lib/CodingSystemKit.cxx,
- lib/Fixed4CodingSystem.cxx, lib/Makefile.am,
- lib/UTF16CodingSystem.cxx: First cut at utf16 and fixed4 encodings.
- Known to compile, but untested.
-
-2000-02-24 17:45 clasen
-
- * lib/SubstTable.cxx: Add forgotten file.
-
-2000-02-24 00:34 clasen
-
- * lib/Partition.cxx: Remove forgotten debugging printf.
-
-2000-02-23 22:42 clasen
-
- * include/SubstTable.h, lib/Partition.cxx: Change SubstTable
- implementation to a sparse array with binary search. This should
- work with 32bit Chars.
-
-2000-02-21 20:12 clasen
-
- * include/Makefile.am: Remove SubstTable.cxx.
-
-2000-02-21 20:10 clasen
-
- * lib/: ParserState.cxx, SOEntityCatalog.cxx, parseDecl.cxx,
- parseSd.cxx: Replace loops over strings by calls of
- SubstTable::subst(StringC &).
-
-2000-02-21 19:46 clasen
-
- * include/ArcEngine.h, include/EntityCatalog.h,
- include/SubstTable.h, include/Syntax.h, include/Text.h,
- lib/ArcEngine.cxx, lib/Makefile.am, lib/ParserState.cxx,
- lib/ParserState.h, lib/Partition.cxx, lib/Partition.h,
- lib/SOEntityCatalog.cxx, lib/SubstTable.cxx, lib/Syntax.cxx,
- lib/Text.cxx, lib/entmgr_inst.m4, lib/parseDecl.cxx,
- lib/parseSd.cxx, spam/CopyEventHandler.h,
- sx/XmlOutputEventHandler.h: Detemplatize SubstTable. We never used
- anything but SubstTable.
-
-2000-02-08 16:59 clasen
-
- * .cvsignore, Makefile.am, NEWS, SP.dsw, acconfig.h, acinclude.m4,
- build-win32.bat, configure.in, msggen.pl.in, sp-generate.mak,
- debian/README.Debian.in, debian/changelog, debian/control,
- debian/copyright.Debian, debian/libosp1.README.Debian.in,
- debian/libosp1.postinst, debian/opensp.doc-base, debian/rules,
- doc/.cvsignore, doc/autoconf.htm, doc/build.htm, doc/charset.htm,
- doc/ideas.htm, doc/index.htm, doc/new.htm, generic/.cvsignore,
- include/.cvsignore, include/CharsetRegistry.h, include/Dtd.h,
- include/ExternalId.h, include/MessageArg.h, include/SubstTable.h,
- include/config.h.old.in, intl/.cvsignore, lib/.cvsignore,
- lib/Attribute.cxx, lib/CharsetRegistry.cxx, lib/CmdLineApp.cxx,
- lib/CodingSystemKit.cxx, lib/Makefile.am, lib/MessageArg.cxx,
- lib/MessageTable.cxx, lib/ParserState.cxx, lib/ParserState.h,
- lib/koi8-r.h, lib/lib.dsp, lib/parseInstance.cxx, lib/splibpch.h,
- nsgmls/.cvsignore, nsgmls/Makefile.am, nsgmls/nsgmls.dsp,
- po/.cvsignore, po/Makefile.in.in, po/de.po, pubtext/.cvsignore,
- pubtext/Makefile.am, pubtext/opensp-implied.dcl,
- sgmlnorm/.cvsignore, sgmlnorm/Makefile.am, sgmlnorm/sgmlnorm.dsp,
- spam/.cvsignore, spam/Makefile.am, spam/spam.dsp, spcat/.cvsignore,
- spcat/Makefile.am, spcat/spcat.dsp, spcat/spcat_inst.m4,
- spent/.cvsignore, spent/Makefile.am, spent/spent.dsp,
- sx/.cvsignore, sx/Makefile.am, sx/sx.dsp: Merge the
- opensp_1_4_branch up to tag opensp_1_4_merge.
-
-2000-01-21 22:02 clasen
-
- * doc/autoconf.htm: file autoconf.htm was initially added on branch
- opensp_1_4_branch.
-
-2000-01-20 23:39 pn
-
- * .cvsignore, doc/.cvsignore, generic/.cvsignore,
- include/.cvsignore, intl/.cvsignore, lib/.cvsignore,
- nsgmls/.cvsignore, po/.cvsignore, pubtext/.cvsignore,
- sgmlnorm/.cvsignore, spam/.cvsignore, spcat/.cvsignore,
- spent/.cvsignore, sx/.cvsignore: file .cvsignore was initially
- added on branch opensp_1_4_branch.
-
-2000-01-20 21:15 clasen
-
- * lib/koi8-r.h: file koi8-r.h was initially added on branch
- opensp_1_4_branch.
-
-2000-01-08 14:01 clasen
-
- * lib/Makefile.am, nsgmls/Makefile.am, sgmlnorm/Makefile.am,
- spam/Makefile.am, spcat/Makefile.am, spent/Makefile.am,
- sx/Makefile.am: Fix building with builddir!=srcdir.
-
-1999-12-30 00:37 debian
-
- * debian/README.Debian.in: file README.Debian.in was initially
- added on branch opensp_1_4_branch.
-
-1999-12-30 00:37 debian
-
- * debian/libosp1.postinst: file libosp1.postinst was initially
- added on branch opensp_1_4_branch.
-
-1999-12-30 00:37 debian
-
- * debian/libosp1.README.Debian.in: file libosp1.README.Debian.in
- was initially added on branch opensp_1_4_branch.
-
-1999-12-23 06:30 debian
-
- * debian/copyright.Debian: file copyright.Debian was initially
- added on branch opensp_1_4_branch.
-
-1999-12-22 18:44 debian
-
- * pubtext/opensp-implied.dcl: file opensp-implied.dcl was initially
- added on branch opensp_1_4_branch.
-
-1999-12-22 08:26 debian
-
- * debian/changelog: file changelog was initially added on branch
- opensp_1_4_branch.
-
-1999-12-22 08:26 debian
-
- * debian/opensp.doc-base: file opensp.doc-base was initially added
- on branch opensp_1_4_branch.
-
-1999-12-22 08:26 debian
-
- * debian/rules: file rules was initially added on branch
- opensp_1_4_branch.
-
-1999-12-22 08:26 debian
-
- * debian/control: file control was initially added on branch
- opensp_1_4_branch.
-
-1999-12-21 22:32 pn
-
- * include/config.h.old.in: file config.h.old.in was initially added
- on branch opensp_1_4_branch.
-
-1999-12-16 23:11 pn
-
- * Makefile.am, msggen.pl.in: Merge with 1.4 branch.
-
-1999-12-16 22:11 pn
-
- * lib/lib.dsp, lib/lib.rc, spcat/spcat.dsp, SP.dsw,
- include/Attribute.h, include/Message.h, include/Options.cxx,
- lib/app_inst.m4, lib/assert.cxx: MSVC (and other) small fixes.
-
-1999-12-13 07:54 pn
-
- * po/sv.po: Merge from 1.4 branch.
-
-1999-12-12 08:43 clasen
-
- * configure.in: Change version to 1.5-devel
-
-1999-12-11 21:34 clasen
-
- * configure.in, lib/Group.cxx, lib/Param.cxx,
- lib/ParserMessages.msg, lib/TokenMessageArg.cxx, lib/parseSd.cxx,
- po/de.po: Remove delimEnd message, change version number to
- 1.4-pre1.
-
-1999-12-11 00:41 pn
-
- * po/sv.po: Many new translations.
-
-1999-12-10 15:38 pn
-
- * lib/CmdLineApp.cxx: (cmdLineApp::usage): Create output stream
- with default coding system.
-
-1999-12-09 23:32 clasen
-
- * doc/: archform.htm, build.htm, catalog.htm, charset.htm,
- features.htm, generic.htm, ideas.htm, index.htm, new.htm,
- nsgmls.htm, sgmldecl.htm, sgmlnorm.htm, sgmlsout.htm, spam.htm,
- spcat.htm, spent.htm, sx.htm, sysdecl.htm, sysid.htm, xml.htm:
- Updated docs for long options, removed james' mail address
- throughout.
-
-1999-12-09 18:45 clasen
-
- * NEWS: Mention --help.
-
-1999-12-09 18:39 clasen
-
- * include/CmdLineApp.h, lib/CmdLineApp.cxx,
- lib/CmdLineAppMessages.msg, nsgmls/NsgmlsMessages.msg,
- nsgmls/nsgmls.cxx, po/de.po, sgmlnorm/SgmlnormMessages.msg,
- sgmlnorm/sgmlnorm.cxx, spam/SpamMessages.msg, spam/spam.cxx,
- spcat/SpcatMessages.msg, spcat/spcat.cxx, spent/SpentMessages.msg,
- spent/spent.cxx, sx/SxMessages.msg, sx/sx.cxx: Add info lines to
- the usage messages, extracted from the html docs. Change the
- CmdLineApp interface once more: info lines now have one argument,
- the program name.
-
-1999-12-09 15:58 clasen
-
- * intl/: Makefile.in, VERSION: Add the VERSION file, so we know
- which version of GNU gettext we use.
-
-1999-12-09 11:25 pn
-
- * lib/CmdLineAppMessages.msg: (bHelp, eHelp): Clarified
- documentation.
-
-1999-12-09 08:54 pn
-
- * NEWS: Update.
-
-1999-12-08 21:25 pn
-
- * po/Makefile.in.in: DISTFILES: Remove non-existent ChangeLog file.
-
-1999-12-08 21:24 pn
-
- * lib/Makefile.am: Typo fix.
-
-1999-12-08 21:23 pn
-
- * intl/Makefile.in: Deps on non-existent files removed.
- check-install target added.
-
-1999-12-08 07:45 clasen
-
- * lib/Makefile.am, nsgmls/Makefile.am, sx/Makefile.am: Remove
- unnecessary dependencies.
-
-1999-12-08 00:56 pn
-
- * lib/CmdLineApp.cxx: CmdLineApp::usage(): Clean up. Avoid using
- messages in some places.
-
-1999-12-08 00:55 pn
-
- * configure.in: AC_OUTPUT: Generate msggen.pl.
-
-1999-12-08 00:54 pn
-
- * Makefile.am: BUILT_SOURCES: Add msggen.pl (remove from
- EXTRA_DIST)
-
-1999-12-08 00:53 pn
-
- * msggen.pl.in: Generate msggen.pl from msggen.pl.in. Add header to
- generated .po file.
-
-1999-12-07 13:19 pn
-
- * include/CmdLineApp.h, lib/CmdLineApp.cxx,
- lib/CmdLineAppMessages.msg: CmdLineApp::registerOption(): Added
- back the old form registering an undocumented option.
-
-1999-12-07 08:56 pn
-
- * po/sv.po: New translations added.
-
-1999-12-07 08:53 pn
-
- * lib/CmdLineAppMessages.msg: tryHelpOptionFor INfo added.
-
-1999-12-07 08:50 pn
-
- * include/CmdLineApp.h, lib/CmdLineApp.cxx: Help message lokks more
- like GNU tools. --help prints help message on stdout and exits
- successfully. Help message lokks more like GNU tools. --help
- prints help message on stdout and exits successfully.
-
-1999-12-07 08:35 clasen
-
- * lib/CmdLineApp.cxx: Make sure arg names in usage() get
- translated.
-
-1999-12-06 16:09 clasen
-
- * po/de.po: More german translations.
-
-1999-12-06 15:54 clasen
-
- * include/CmdLineApp.h, lib/CmdLineApp.cxx,
- lib/CmdLineAppMessages.msg, lib/EntityApp.cxx,
- lib/EntityAppMessages.msg, lib/ParserApp.cxx,
- lib/ParserAppMessages.msg, sgmlnorm/sgmlnorm.cxx, sx/sx.cxx: Add a
- way to add information before the options list in usage() output,
- some options got shorter names, resolved option name conficts, some
- doc rewording.
-
-1999-12-06 14:28 clasen
-
- * acinclude.m4, configure.in, include/CmdLineApp.h,
- lib/CmdLineApp.cxx, lib/EntityApp.cxx, spam/spam.cxx: Fix bug in
- redefining cmdline options.
-
-1999-12-05 22:51 clasen
-
- * lib/EntityAppMessages.msg, sgmlnorm/SgmlnormMessages.msg,
- spcat/SpcatMessages.msg, spent/SpentMessages.msg: add new messages
- for translatable usage messages.
-
-1999-12-05 22:49 clasen
-
- * include/CmdLineApp.h, include/MessageFormatter.h,
- include/Options.cxx, include/Options.h, include/sptchar.h,
- lib/CmdLineApp.cxx, lib/CmdLineAppMessages.msg, lib/EntityApp.cxx,
- lib/Makefile.am, lib/MessageFormatter.cxx, lib/ParserApp.cxx,
- lib/ParserAppMessages.msg, nsgmls/NsgmlsMessages.msg,
- nsgmls/nsgmls.cxx, po/POTFILES.in, sgmlnorm/Makefile.am,
- sgmlnorm/sgmlnorm.cxx, spam/SpamMessages.msg, spam/spam.cxx,
- spcat/Makefile.am, spcat/spcat.cxx, spent/Makefile.am,
- spent/spent.cxx, sx/SxMessages.msg, sx/sx.cxx: Revamp long options
- and usage message.
-
-1999-12-04 13:07 pn
-
- * po/sv.po: Updated after Matthias msggen.pl changes.
-
-1999-12-03 23:31 pn
-
- * po/sv.po: First Swedish messages. Most missing, and many
- translated need review.
-
-1999-12-03 23:30 pn
-
- * configure.in: ALL_LINGUAS: Added Swedish translation.
-
-1999-12-03 18:48 clasen
-
- * lib/Makefile.am: Typo fix.
-
-1999-12-03 17:14 clasen
-
- * lib/Makefile.am, lib/ParserMessages.msg, nsgmls/Makefile.am,
- po/Makefile.in.in, po/POTFILES.in, po/de.po, spam/Makefile.am,
- sx/Makefile.am: Improve the build process for I18N: no more
- intermediate .po files, msggen.pl now directly produces OpenSP.pot
- from the .msg files when called with -p OpenSP.pot.
-
-1999-12-02 22:06 clasen
-
- * po/de.po: Latest and greatest translations.
-
-1999-12-01 22:01 clasen
-
- * NEWS, lib/ParserMessages.msg, po/de.po: More German translations,
- fix some glitches in the English messages.
-
-1999-12-01 19:48 clasen
-
- * sx/sx.cxx: Typo fix.
-
-1999-12-01 19:46 clasen
-
- * spent/spent.cxx, sgmlnorm/sgmlnorm.cxx, sx/sx.cxx: Add a needed
- include.
-
-1999-12-01 19:43 clasen
-
- * lib/ParserApp.cxx: Typo fix.
-
-1999-12-01 19:41 clasen
-
- * nsgmls/nsgmls.cxx, sgmlnorm/sgmlnorm.cxx, spam/spam.cxx,
- spcat/spcat.cxx, spent/spent.cxx, sx/sx.cxx: Add long variants for
- all options. This was done in a hurry and the names may be
- improvable.
-
-1999-12-01 19:27 clasen
-
- * lib/: EntityApp.cxx, ParserApp.cxx: More long options.
-
-1999-12-01 19:08 clasen
-
- * include/CmdLineApp.h, include/Options.cxx, include/Options.h,
- lib/CmdLineApp.cxx, lib/CmdLineAppMessages.msg, po/de.po: Long
- options. Currently only CmdLineApp has some.
-
-1999-12-01 00:18 clasen
-
- * po/de.po: More german translations.
-
-1999-11-30 22:25 pn
-
- * acconfig.h: Add HAVE_GETTEXT and #define SP_ANSI_LIB to 1 to
- match OJ definition.
-
-1999-11-30 19:16 clasen
-
- * lib/ParserMessages.msg: Remove some unwanted trailing spaces in
- messages.
-
-1999-11-30 18:52 clasen
-
- * lib/Makefile.am, nsgmls/Makefile.am, spam/Makefile.am,
- sx/Makefile.am: Add rules for .rc and .po files.
-
-1999-11-30 18:22 clasen
-
- * acconfig.h, configure.in, lib/MessageTable.cxx: Remove a
- generated file in intl/, cosmetic fixes.
-
-1999-11-30 18:04 clasen
-
- * nsgmls/RastEventHandlerMessages.msg: Fix a typo.
-
-1999-11-30 17:46 clasen
-
- * acconfig.h: Re-add HAVE_GETTEXT which was accidentally removed.
-
-1999-11-29 17:37 clasen
-
- * lib/MessageTable.cxx: Make it compile.
-
-1999-11-29 17:32 clasen
-
- * acconfig.h, acinclude.m4, configure.in, include/MessageTable.h,
- lib/CmdLineApp.cxx, lib/MessageTable.cxx: support ./configure
- --disable-nls, use bindtextdomain() to find translated messages
- where they are installed.
-
-1999-11-29 16:49 clasen
-
- * po/de.po: Remove illegal linebreak
-
-1999-11-29 16:33 clasen
-
- * Makefile.am, configure.in, include/Makefile.am: Generate config.h
- at top level, since GNU gettext depends on it.
-
-1999-11-29 15:29 clasen
-
- * ABOUT-NLS: Apparently automake wants this to exist.
-
-1999-11-28 22:47 clasen
-
- * configure.in, po/de.po: Add beginning of german translation for
- OpenSP.
-
-1999-11-28 22:46 clasen
-
- * lib/: Entity.cxx, EntityManagerMessages.msg, ParserMessages.msg,
- StdioStorageMessages.msg: Message uniformity improvements.
-
-1999-11-27 01:00 clasen
-
- * configure.in: Cosmetic fix.
-
-1999-11-27 00:54 clasen
-
- * acconfig.h: Add gettext defines.
-
-1999-11-27 00:51 clasen
-
- * Makefile.am, configure.in, intl/Makefile.in, intl/bindtextdom.c,
- intl/cat-compat.c, intl/dcgettext.c, intl/dgettext.c,
- intl/finddomain.c, intl/gettext.c, intl/gettext.h, intl/gettextP.h,
- intl/hash-string.h, intl/intl-compat.c, intl/libgettext.h,
- intl/linux-msg.sed, intl/loadmsgcat.c, intl/localealias.c,
- intl/po2tbl.sed.in, intl/textdomain.c, intl/xopen-msg.sed,
- lib/Makefile.am, nsgmls/Makefile.am, po/Makefile.in.in,
- po/POTFILES.in, spam/Makefile.am, sx/Makefile.am: First cut at GNU
- gettext integration.
-
-1999-11-26 10:07 clasen
-
- * doc/: catalog.htm, nsgmls.htm, xml.htm: Update links to WebSGML
- adaptations.
-
-1999-11-23 20:52 clasen
-
- * acconfig.h, acinclude.m4, configure.in, lib/EntityApp.cxx: Some
- define cleanups.
-
-1999-11-22 22:40 clasen
-
- * README, doc/nsgmls.htm, lib/CatalogMessages.msg: Cleanups.
-
-1999-11-22 17:21 clasen
-
- * NEWS, doc/nsgmls.htm, pubtext/Makefile.am, pubtext/japan.dcl:
- Document -n and -x, move japan.sgmldecl to pubtext/japan.dcl.
-
-1999-11-22 16:37 clasen
-
- * sp-generate.mak: Try to adapt win build. Here we go again: Win
- users, test this !!!
-
-1999-11-21 02:27 clasen
-
- * include/Message.h, include/MessageReporter.h,
- include/MessageTable.h, lib/CmdLineApp.cxx, lib/Makefile.am,
- lib/Message.cxx, lib/MessageReporter.cxx,
- lib/MessageReporterMessages.msg, lib/MessageTable.cxx,
- lib/ParserApp.cxx, nsgmls/Makefile.am, spam/Makefile.am,
- spcat/Makefile.am, sx/Makefile.am: Changes to the message reporting
- system: make the message domain for gettext settable and set it to
- OpenSP for all messages, make the `relevant clauses' info and
- message numbers available via -x and -n; related changes to
- msggen.pl.
-
-1999-11-20 22:23 clasen
-
- * lib/ParserMessages.msg: Move a comment.
-
-1999-11-15 21:19 pn
-
- * configure.in, lib/CmdLineApp.cxx: Change Package to SP_PACKAGE
- and VERSION to SP_VERSION to avoid conflicts, since
- include/config.h gets included by users.
-
-1999-11-14 14:03 clasen
-
- * configure.in: Remove AC_CONFIG_AUX_DIR(config). All aux files are
- toplevel now (automake prefers this).
-
-1999-11-14 12:30 clasen
-
- * Makefile.am: Remove all from SUBDIRS.
-
-1999-11-14 12:22 clasen
-
- * all/Makefile.am: Add a forgotten Makefile.
-
-1999-11-14 00:40 clasen
-
- * Makefile.am: Remove unneccessary EXTRA_DIST stuff (automake knows
- to include the config stuff if it is toplevel).
-
-1999-11-13 22:13 clasen
-
- * Makefile.am, acconfig.h, acinclude.m4, configure.in,
- doc/Makefile.am, generic/Makefile.am, include/Makefile.am,
- lib/Makefile.am, nsgmls/Makefile.am, pubtext/Makefile.am,
- sgmlnorm/Makefile.am, spam/Makefile.am, spcat/Makefile.am,
- spent/Makefile.am, sx/Makefile.am: More C++ autoconf tests, some
- caching fixes in configure, add windows-only stuff to distribution,
- add dist-zip target for windows distribution.
-
-1999-11-12 21:52 clasen
-
- * acinclude.m4: Fix a typo.
-
-1999-11-12 21:50 clasen
-
- * acinclude.m4, configure.in: remove unneeded test for RTTI.
-
-1999-11-12 21:45 clasen
-
- * acconfig.h, configure.in, include/Vector.cxx: Remove
- SP_QUAL_TEMPLATE_DTOR_BROKEN, since the macro DTOR() whose
- definition it influences is unused.
-
-1999-11-12 21:09 clasen
-
- * configure.in: Add test for `fancy' new_handler.
-
-1999-11-12 18:48 clasen
-
- * configure.in: Add forgotten type check.
-
-1999-11-12 18:15 clasen
-
- * lib/ExtendEntityManager.cxx: Fix a typo·
-
-1999-11-12 17:17 clasen
-
- * acconfig.h, acinclude.m4, configure.in,
- lib/DtdDeclEventHandler.cxx, lib/DtdDeclEventHandler.h: Remove
- erroneous SP_API on internal headers, add test for placement
- operator delete.
-
-1999-11-11 21:45 clasen
-
- * instmac.pl: Move instmac.pl to toplevel.
-
-1999-11-11 19:09 clasen
-
- * README: Remove pointers to removed files.
-
-1999-11-11 17:54 clasen
-
- * configure.in: Some reorganization.
-
-1999-11-11 17:03 clasen
-
- * lib/CmdLineApp.cxx: Remove forgotten include of version.h
-
-1999-11-11 16:29 clasen
-
- * Makefile.am, configure.in, lib/CmdLineApp.cxx,
- lib/CmdLineAppMessages.msg, lib/Makefile.am, nsgmls/Makefile.am,
- spam/Makefile.am, spcat/Makefile.am, sx/Makefile.am: Directly use
- the #defined VERSION instead of producing two intermediate files.
-
-1999-11-10 00:51 clasen
-
- * acconfig.h, configure.in, lib/memcmp.c: Add better thread support
- detection, add check for memcmp with replacement.
-
-1999-11-09 21:15 pn
-
- * Makefile.am: EXTRA_DIST: Distribute files in config/.
-
-1999-11-09 11:07 clasen
-
- * acconfig.h, configure.in: A few more checks for #defines found by
- ifnames.
-
-1999-11-09 10:16 pn
-
- * nsgmls/Makefile.am, sgmlnorm/Makefile.am, spent/Makefile.am,
- sx/Makefile.am: INCLUDES: Added "-I" before directory names.
-
-1999-11-09 09:20 pn
-
- * spam/Makefile.am, spcat/Makefile.am: INCLUDES: Add "-I" before
- include path.
-
-1999-11-08 16:29 clasen
-
- * acconfig.h, nsgmls/Makefile.am, sgmlnorm/Makefile.am,
- spam/Makefile.am, spcat/Makefile.am, spent/Makefile.am,
- sx/Makefile.am: More fixes, it should actually compile and work
- now.
-
-1999-11-08 14:53 clasen
-
- * acconfig.h, acinclude.m4, configure.in: Added some cxx checks
- found in the autoconf macro archive.
-
-1999-11-07 23:04 clasen
-
- * acconfig.h, configure.in, include/Makefile.am, lib/Makefile.am,
- nsgmls/Makefile.am: Initial attempt to let configure create
- config.h.
-
-1999-11-07 20:52 clasen
-
- * AUTHORS, Makefile.am, NEWS, README, configure.in,
- doc/Makefile.am, generic/Makefile.am, include/Makefile.am,
- lib/Makefile.am, nsgmls/Makefile.am, pubtext/Makefile.am,
- sgmlnorm/Makefile.am, spam/Makefile.am, spcat/Makefile.am,
- spent/Makefile.am, sx/Makefile.am: First attempt to automakify
- OpenSP.
-
-1999-11-07 20:15 clasen
-
- * doc/xmlwarn.htm: Add forgotten file.
-
-1999-11-06 13:10 clasen
-
- * configure.in: Install headers in $(includedir)/OpenSP, move
- configure.in to toplevel, remove generated file aclocal.m4.
-
-1999-11-04 08:35 clasen
-
- * COPYING, README, SP.dsw, SP.mak, build-win32.bat,
- sp-generate.mak, sunfix.sh, all/README, all/all.dsp,
- doc/archform.htm, doc/build.htm, doc/catalog, doc/catalog.htm,
- doc/charset.htm, doc/features.htm, doc/generic.htm, doc/ideas.htm,
- doc/index.htm, doc/new.htm, doc/nsgmls.htm, doc/sgmldecl.htm,
- doc/sgmlnorm.htm, doc/sgmlsout.htm, doc/spam.htm, doc/spcat.htm,
- doc/spent.htm, doc/sx.htm, doc/sysdecl.htm, doc/sysid.htm,
- doc/xml.htm, generic/EventGenerator.h,
- generic/ParserEventGeneratorKit.h, generic/SGMLApplication.h,
- include/Allocator.h, include/ArcEngine.h, include/Attribute.h,
- include/Attributed.h, include/Big5CodingSystem.h,
- include/Boolean.h, include/CharMap.cxx, include/CharMap.h,
- include/CharsetDecl.h, include/CharsetInfo.h,
- include/CharsetRegistry.h, include/CmdLineApp.h,
- include/CodingSystem.h, include/CodingSystemKit.h,
- include/ConsoleOutput.h, include/ContentState.h,
- include/ContentToken.h, include/CopyOwner.cxx, include/CopyOwner.h,
- include/DescriptorManager.h, include/Dtd.h,
- include/EUCJPCodingSystem.h, include/ElementType.h,
- include/Entity.h, include/EntityApp.h, include/EntityCatalog.h,
- include/EntityDecl.h, include/EntityManager.h,
- include/ErrnoMessageArg.h, include/ErrorCountEventHandler.h,
- include/Event.h, include/EventsWanted.h,
- include/ExtendEntityManager.h, include/ExternalId.h,
- include/Fixed2CodingSystem.h, include/GenericEventHandler.h,
- include/Hash.h, include/HashTable.cxx, include/HashTable.h,
- include/HashTableItemBase.cxx, include/HashTableItemBase.h,
- include/IList.h, include/IListBase.h, include/IListIter.h,
- include/IListIterBase.h, include/IQueue.cxx, include/IQueue.h,
- include/ISet.cxx, include/ISet.h, include/ISetIter.h,
- include/IdentityCodingSystem.h, include/InputSource.h,
- include/InternalInputSource.h, include/Link.h,
- include/LinkProcess.h, include/List.cxx, include/List.h,
- include/ListIter.h, include/LiteralStorage.h, include/Location.h,
- include/Lpd.h, include/Markup.h, include/Message.h,
- include/MessageArg.h, include/MessageBuilder.h,
- include/MessageEventHandler.h, include/MessageFormatter.h,
- include/MessageReporter.h, include/MessageTable.h, include/Mode.h,
- include/NCVector.h, include/NCVector.sed, include/Named.h,
- include/NamedResource.h, include/NamedResourceTable.h,
- include/NamedTable.h, include/Notation.h,
- include/NotationStorage.h, include/OpenElement.h,
- include/Options.cxx, include/Options.h, include/OutputByteStream.h,
- include/OutputCharStream.h, include/Owner.cxx, include/Owner.h,
- include/OwnerTable.cxx, include/OwnerTable.h, include/ParserApp.h,
- include/ParserOptions.h, include/PointerTable.cxx,
- include/PointerTable.h, include/PosixStorage.h, include/Ptr.cxx,
- include/Ptr.h, include/RangeMap.cxx, include/RangeMap.h,
- include/Resource.h, include/RewindStorageObject.h,
- include/SJISCodingSystem.h, include/SOEntityCatalog.h,
- include/Sd.h, include/SdText.h, include/SearchResultMessageArg.h,
- include/SgmlParser.h, include/ShortReferenceMap.h,
- include/StdioStorage.h, include/StorageManager.h,
- include/StringC.h, include/StringOf.cxx, include/StringOf.h,
- include/StringResource.h, include/SubstTable.h, include/Syntax.h,
- include/Text.h, include/TranslateCodingSystem.h, include/TypeId.h,
- include/URLStorage.h, include/UTF8CodingSystem.h,
- include/UnicodeCodingSystem.h, include/UnivCharsetDesc.h,
- include/Vector.cxx, include/Vector.h, include/Win32CodingSystem.h,
- include/WinApp.h, include/WinInetStorage.h,
- include/XMLCodingSystem.h, include/XcharMap.cxx,
- include/XcharMap.h, include/constant.h, include/macros.h,
- include/rtti.h, include/sptchar.h, include/types.h, include/xnew.h,
- lib/Allocator.cxx, lib/ArcEngine.cxx, lib/ArcEngineMessages.msg,
- lib/ArcProcessor.h, lib/Attribute.cxx, lib/Big5CodingSystem.cxx,
- lib/CatalogEntry.h, lib/CatalogMessages.msg, lib/CharsetDecl.cxx,
- lib/CharsetInfo.cxx, lib/CharsetRegistry.cxx, lib/CmdLineApp.cxx,
- lib/CmdLineAppMessages.msg, lib/CodingSystem.cxx,
- lib/CodingSystemKit.cxx, lib/ConsoleOutput.cxx,
- lib/ContentState.cxx, lib/ContentToken.cxx,
- lib/DescriptorManager.cxx, lib/Dtd.cxx,
- lib/DtdDeclEventHandler.cxx, lib/DtdDeclEventHandler.h,
- lib/EUCJPCodingSystem.cxx, lib/ElementType.cxx, lib/Entity.cxx,
- lib/EntityApp.cxx, lib/EntityCatalog.cxx, lib/EntityDecl.cxx,
- lib/EntityManager.cxx, lib/EntityManagerMessages.msg,
- lib/EquivClass.h, lib/ErrnoMessageArg.cxx,
- lib/ErrorCountEventHandler.cxx, lib/Event.cxx,
- lib/EventGenerator.cxx, lib/EventQueue.h,
- lib/ExtendEntityManager.cxx, lib/ExternalId.cxx,
- lib/Fixed2CodingSystem.cxx, lib/GenericEventHandler.cxx,
- lib/Group.cxx, lib/Group.h, lib/Hash.cxx, lib/IListBase.cxx,
- lib/Id.cxx, lib/Id.h, lib/IdentityCodingSystem.cxx,
- lib/InputSource.cxx, lib/InternalInputSource.cxx, lib/Link.cxx,
- lib/LinkProcess.cxx, lib/LiteralStorage.cxx, lib/Location.cxx,
- lib/Lpd.cxx, lib/LpdEntityRef.h, lib/Markup.cxx, lib/MarkupScan.h,
- lib/Message.cxx, lib/MessageArg.cxx, lib/MessageEventHandler.cxx,
- lib/MessageFormatter.cxx, lib/MessageFormatterMessages.msg,
- lib/MessageReporter.cxx, lib/MessageReporterMessages.msg,
- lib/MessageTable.cxx, lib/ModeInfo.cxx, lib/ModeInfo.h,
- lib/Mutex.h, lib/NameToken.h, lib/Notation.cxx,
- lib/NotationStorage.cxx, lib/NumericCharRefOrigin.cxx,
- lib/NumericCharRefOrigin.h, lib/OffsetOrderedList.cxx,
- lib/OffsetOrderedList.h, lib/OpenElement.cxx,
- lib/OutputByteStream.cxx, lib/OutputCharStream.cxx,
- lib/OutputState.cxx, lib/OutputState.h, lib/Param.cxx, lib/Param.h,
- lib/Parser.cxx, lib/Parser.h, lib/ParserApp.cxx,
- lib/ParserAppMessages.msg, lib/ParserEventGeneratorKit.cxx,
- lib/ParserMessages.msg, lib/ParserOptions.cxx, lib/ParserState.cxx,
- lib/ParserState.h, lib/Partition.cxx, lib/Partition.h,
- lib/PosixStorage.cxx, lib/PosixStorageMessages.msg, lib/Priority.h,
- lib/Recognizer.cxx, lib/Recognizer.h, lib/RewindStorageObject.cxx,
- lib/SGMLApplication.cxx, lib/SJISCodingSystem.cxx,
- lib/SOEntityCatalog.cxx, lib/Sd.cxx, lib/SdFormalError.h,
- lib/SdText.cxx, lib/SearchResultMessageArg.cxx, lib/SgmlParser.cxx,
- lib/ShortReferenceMap.cxx, lib/SrInfo.h, lib/StdioStorage.cxx,
- lib/StdioStorageMessages.msg, lib/StorageManager.cxx,
- lib/StorageObjectPosition.h, lib/Syntax.cxx, lib/Text.cxx,
- lib/TokenMessageArg.cxx, lib/TokenMessageArg.h,
- lib/TranslateCodingSystem.cxx, lib/Trie.h, lib/TrieBuilder.cxx,
- lib/TrieBuilder.h, lib/TypeId.cxx, lib/URLStorage.cxx,
- lib/URLStorageMessages.msg, lib/UTF8CodingSystem.cxx, lib/Undo.cxx,
- lib/Undo.h, lib/UnicodeCodingSystem.cxx, lib/UnivCharsetDesc.cxx,
- lib/Win32CodingSystem.cxx, lib/WinApp.cxx, lib/WinInetStorage.cxx,
- lib/WinInetStorageMessages.msg, lib/XMLCodingSystem.cxx,
- lib/app_inst.m4, lib/arc_inst.m4, lib/assert.cxx, lib/big5.h,
- lib/entmgr_inst.m4, lib/events.h, lib/gb2312.h, lib/iso646-jis.h,
- lib/iso8859-2.h, lib/iso8859-3.h, lib/iso8859-4.h, lib/iso8859-5.h,
- lib/iso8859-6.h, lib/iso8859-7.h, lib/iso8859-8.h, lib/iso8859-9.h,
- lib/jis0201.h, lib/jis0208.h, lib/jis0212.h, lib/ksc5601.h,
- lib/lib.dsp, lib/lib.rc, lib/memmove.c, lib/parseAttribute.cxx,
- lib/parseCommon.cxx, lib/parseDecl.cxx, lib/parseInstance.cxx,
- lib/parseMode.cxx, lib/parseParam.cxx, lib/parseSd.cxx,
- lib/parser_inst.m4, lib/splib.cxx, lib/splib.h, lib/splibpch.h,
- lib/strerror.c, lib/token.h, lib/xentmgr_inst.m4,
- nsgmls/NsgmlsMessages.msg, nsgmls/RastEventHandler.cxx,
- nsgmls/RastEventHandler.h, nsgmls/RastEventHandlerMessages.msg,
- nsgmls/SgmlsEventHandler.cxx, nsgmls/SgmlsEventHandler.h,
- nsgmls/StringSet.cxx, nsgmls/StringSet.h, nsgmls/nsgmls.cxx,
- nsgmls/nsgmls.dsp, nsgmls/nsgmls.rc, nsgmls/nsgmls_inst.m4,
- pubtext/HTML32.dcl, pubtext/HTML32.dtd, pubtext/HTML32.soc,
- pubtext/HTML4-f.dtd, pubtext/HTML4-s.dtd, pubtext/HTML4.dcl,
- pubtext/HTML4.dtd, pubtext/HTML4.soc, pubtext/HTMLlat1.ent,
- pubtext/HTMLspec.ent, pubtext/HTMLsym.ent, pubtext/ISOlat1.ent,
- pubtext/ISOlat1.sgm, pubtext/html-1.dtd, pubtext/html-1s.dtd,
- pubtext/html-s.dtd, pubtext/html.dcl, pubtext/html.dtd,
- pubtext/html.soc, pubtext/xml.dcl, pubtext/xml.soc,
- sgmlnorm/SGMLGenerator.cxx, sgmlnorm/SGMLGenerator.h,
- sgmlnorm/sgmlnorm.cxx, sgmlnorm/sgmlnorm.dsp,
- spam/CopyEventHandler.cxx, spam/CopyEventHandler.h,
- spam/MarkupEventHandler.cxx, spam/MarkupEventHandler.h,
- spam/SpamMessages.msg, spam/spam.cxx, spam/spam.dsp, spam/spam.rc,
- spam/spam_inst.m4, spcat/spcat.cxx, spcat/spcat.dsp,
- spcat/spcat_inst.m4, spent/spent.cxx, spent/spent.dsp,
- sx/SxMessages.msg, sx/XmlOutputEventHandler.cxx,
- sx/XmlOutputEventHandler.h, sx/XmlOutputMessages.msg, sx/sx.cxx,
- sx/sx.dsp, sx/sx.rc, sx/sx_inst.m4, unicode/catalog,
- unicode/demo.sgm, unicode/gensyntax.pl, unicode/unicode.sd,
- unicode/unicode.syn: Initial revision, taken from the current jade
- repository at tag before_split.
-
diff --git a/packages/node-libofx/OpenSP-1.5.2/INSTALL b/packages/node-libofx/OpenSP-1.5.2/INSTALL
deleted file mode 100644
index 23e5f25d0e5..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/INSTALL
+++ /dev/null
@@ -1,236 +0,0 @@
-Installation Instructions
-*************************
-
-Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free
-Software Foundation, Inc.
-
-This file is free documentation; the Free Software Foundation gives
-unlimited permission to copy, distribute and modify it.
-
-Basic Installation
-==================
-
-These are generic installation instructions.
-
- The `configure' shell script attempts to guess correct values for
-various system-dependent variables used during compilation. It uses
-those values to create a `Makefile' in each directory of the package.
-It may also create one or more `.h' files containing system-dependent
-definitions. Finally, it creates a shell script `config.status' that
-you can run in the future to recreate the current configuration, and a
-file `config.log' containing compiler output (useful mainly for
-debugging `configure').
-
- It can also use an optional file (typically called `config.cache'
-and enabled with `--cache-file=config.cache' or simply `-C') that saves
-the results of its tests to speed up reconfiguring. (Caching is
-disabled by default to prevent problems with accidental use of stale
-cache files.)
-
- If you need to do unusual things to compile the package, please try
-to figure out how `configure' could check whether to do them, and mail
-diffs or instructions to the address given in the `README' so they can
-be considered for the next release. If you are using the cache, and at
-some point `config.cache' contains results you don't want to keep, you
-may remove or edit it.
-
- The file `configure.ac' (or `configure.in') is used to create
-`configure' by a program called `autoconf'. You only need
-`configure.ac' if you want to change it or regenerate `configure' using
-a newer version of `autoconf'.
-
-The simplest way to compile this package is:
-
- 1. `cd' to the directory containing the package's source code and type
- `./configure' to configure the package for your system. If you're
- using `csh' on an old version of System V, you might need to type
- `sh ./configure' instead to prevent `csh' from trying to execute
- `configure' itself.
-
- Running `configure' takes awhile. While running, it prints some
- messages telling which features it is checking for.
-
- 2. Type `make' to compile the package.
-
- 3. Optionally, type `make check' to run any self-tests that come with
- the package.
-
- 4. Type `make install' to install the programs and any data files and
- documentation.
-
- 5. You can remove the program binaries and object files from the
- source code directory by typing `make clean'. To also remove the
- files that `configure' created (so you can compile the package for
- a different kind of computer), type `make distclean'. There is
- also a `make maintainer-clean' target, but that is intended mainly
- for the package's developers. If you use it, you may have to get
- all sorts of other programs in order to regenerate files that came
- with the distribution.
-
-Compilers and Options
-=====================
-
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about. Run `./configure --help' for
-details on some of the pertinent environment variables.
-
- You can give `configure' initial values for configuration parameters
-by setting variables in the command line or in the environment. Here
-is an example:
-
- ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix
-
- *Note Defining Variables::, for more details.
-
-Compiling For Multiple Architectures
-====================================
-
-You can compile the package for more than one kind of computer at the
-same time, by placing the object files for each architecture in their
-own directory. To do this, you must use a version of `make' that
-supports the `VPATH' variable, such as GNU `make'. `cd' to the
-directory where you want the object files and executables to go and run
-the `configure' script. `configure' automatically checks for the
-source code in the directory that `configure' is in and in `..'.
-
- If you have to use a `make' that does not support the `VPATH'
-variable, you have to compile the package for one architecture at a
-time in the source code directory. After you have installed the
-package for one architecture, use `make distclean' before reconfiguring
-for another architecture.
-
-Installation Names
-==================
-
-By default, `make install' installs the package's commands under
-`/usr/local/bin', include files under `/usr/local/include', etc. You
-can specify an installation prefix other than `/usr/local' by giving
-`configure' the option `--prefix=PREFIX'.
-
- You can specify separate installation prefixes for
-architecture-specific files and architecture-independent files. If you
-pass the option `--exec-prefix=PREFIX' to `configure', the package uses
-PREFIX as the prefix for installing programs and libraries.
-Documentation and other data files still use the regular prefix.
-
- In addition, if you use an unusual directory layout you can give
-options like `--bindir=DIR' to specify different values for particular
-kinds of files. Run `configure --help' for a list of the directories
-you can set and what kinds of files go in them.
-
- If the package supports it, you can cause programs to be installed
-with an extra prefix or suffix on their names by giving `configure' the
-option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
-
-Optional Features
-=================
-
-Some packages pay attention to `--enable-FEATURE' options to
-`configure', where FEATURE indicates an optional part of the package.
-They may also pay attention to `--with-PACKAGE' options, where PACKAGE
-is something like `gnu-as' or `x' (for the X Window System). The
-`README' should mention any `--enable-' and `--with-' options that the
-package recognizes.
-
- For packages that use the X Window System, `configure' can usually
-find the X include and library files automatically, but if it doesn't,
-you can use the `configure' options `--x-includes=DIR' and
-`--x-libraries=DIR' to specify their locations.
-
-Specifying the System Type
-==========================
-
-There may be some features `configure' cannot figure out automatically,
-but needs to determine by the type of machine the package will run on.
-Usually, assuming the package is built to be run on the _same_
-architectures, `configure' can figure that out, but if it prints a
-message saying it cannot guess the machine type, give it the
-`--build=TYPE' option. TYPE can either be a short name for the system
-type, such as `sun4', or a canonical name which has the form:
-
- CPU-COMPANY-SYSTEM
-
-where SYSTEM can have one of these forms:
-
- OS KERNEL-OS
-
- See the file `config.sub' for the possible values of each field. If
-`config.sub' isn't included in this package, then this package doesn't
-need to know the machine type.
-
- If you are _building_ compiler tools for cross-compiling, you should
-use the option `--target=TYPE' to select the type of system they will
-produce code for.
-
- If you want to _use_ a cross compiler, that generates code for a
-platform different from the build platform, you should specify the
-"host" platform (i.e., that on which the generated programs will
-eventually be run) with `--host=TYPE'.
-
-Sharing Defaults
-================
-
-If you want to set default values for `configure' scripts to share, you
-can create a site shell script called `config.site' that gives default
-values for variables like `CC', `cache_file', and `prefix'.
-`configure' looks for `PREFIX/share/config.site' if it exists, then
-`PREFIX/etc/config.site' if it exists. Or, you can set the
-`CONFIG_SITE' environment variable to the location of the site script.
-A warning: not all `configure' scripts look for a site script.
-
-Defining Variables
-==================
-
-Variables not defined in a site shell script can be set in the
-environment passed to `configure'. However, some packages may run
-configure again during the build, and the customized values of these
-variables may be lost. In order to avoid this problem, you should set
-them in the `configure' command line, using `VAR=value'. For example:
-
- ./configure CC=/usr/local2/bin/gcc
-
-causes the specified `gcc' to be used as the C compiler (unless it is
-overridden in the site shell script). Here is a another example:
-
- /bin/bash ./configure CONFIG_SHELL=/bin/bash
-
-Here the `CONFIG_SHELL=/bin/bash' operand causes subsequent
-configuration-related scripts to be executed by `/bin/bash'.
-
-`configure' Invocation
-======================
-
-`configure' recognizes the following options to control how it operates.
-
-`--help'
-`-h'
- Print a summary of the options to `configure', and exit.
-
-`--version'
-`-V'
- Print the version of Autoconf used to generate the `configure'
- script, and exit.
-
-`--cache-file=FILE'
- Enable the cache: use and save the results of the tests in FILE,
- traditionally `config.cache'. FILE defaults to `/dev/null' to
- disable caching.
-
-`--config-cache'
-`-C'
- Alias for `--cache-file=config.cache'.
-
-`--quiet'
-`--silent'
-`-q'
- Do not print messages saying which checks are being made. To
- suppress all normal output, redirect it to `/dev/null' (any error
- messages will still be shown).
-
-`--srcdir=DIR'
- Look for the package's source code in directory DIR. Usually
- `configure' can determine that directory automatically.
-
-`configure' also accepts some other, not widely useful, options. Run
-`configure --help' for more details.
-
diff --git a/packages/node-libofx/OpenSP-1.5.2/Makefile b/packages/node-libofx/OpenSP-1.5.2/Makefile
deleted file mode 100644
index da59e27a208..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/Makefile
+++ /dev/null
@@ -1,777 +0,0 @@
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
-# Makefile. Generated from Makefile.in by configure.
-
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005 Free Software Foundation, Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
-MAKE=make
-
-
-srcdir = .
-top_srcdir = .
-
-pkgdatadir = $(datadir)/OpenSP
-pkglibdir = $(libdir)/OpenSP
-pkgincludedir = $(includedir)/OpenSP
-top_builddir = .
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-INSTALL = /usr/bin/install -c
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-build_triplet = i686-apple-darwin19.0.0
-host_triplet = i686-apple-darwin19.0.0
-DIST_COMMON = README $(am__configure_deps) $(pkginclude_HEADERS) \
- $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
- $(srcdir)/config.h.in $(srcdir)/msggen.pl.in $(srcdir)/spec.in \
- $(top_srcdir)/configure $(top_srcdir)/intl/Makefile.in \
- ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS config.guess \
- config.rpath config.sub depcomp install-sh ltmain.sh missing \
- mkinstalldirs
-subdir = .
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \
- $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \
- $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \
- $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intmax.m4 \
- $(top_srcdir)/m4/inttypes-pri.m4 $(top_srcdir)/m4/inttypes.m4 \
- $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \
- $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
- $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/longdouble.m4 \
- $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/nls.m4 \
- $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/printf-posix.m4 \
- $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/signed.m4 \
- $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \
- $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \
- $(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/m4/wint_t.m4 \
- $(top_srcdir)/m4/xsize.m4 $(top_srcdir)/acinclude.m4 \
- $(top_srcdir)/configure.in
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- $(ACLOCAL_M4)
-am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
- configure.lineno configure.status.lineno
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-CONFIG_HEADER = config.h
-CONFIG_CLEAN_FILES = ${PACKAGE}-${VERSION}.spec msggen.pl \
- intl/Makefile
-SOURCES =
-DIST_SOURCES =
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
- html-recursive info-recursive install-data-recursive \
- install-exec-recursive install-info-recursive \
- install-recursive installcheck-recursive installdirs-recursive \
- pdf-recursive ps-recursive uninstall-info-recursive \
- uninstall-recursive
-am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-am__vpath_adj = case $$p in \
- $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
- *) f=$$p;; \
- esac;
-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-am__installdirs = "$(DESTDIR)$(pkgdocdir)" \
- "$(DESTDIR)$(pkgincludedir)"
-pkgdocDATA_INSTALL = $(INSTALL_DATA)
-DATA = $(pkgdoc_DATA)
-pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER)
-HEADERS = $(pkginclude_HEADERS)
-ETAGS = etags
-CTAGS = ctags
-DIST_SUBDIRS = $(SUBDIRS)
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-distdir = $(PACKAGE)-$(VERSION)
-top_distdir = $(distdir)
-am__remove_distdir = \
- { test ! -d $(distdir) \
- || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
- && rm -fr $(distdir); }; }
-DIST_ARCHIVES = $(distdir).tar.gz
-GZIP_ENV = --best
-distuninstallcheck_listfiles = find . -type f -print
-distcleancheck_listfiles = find . -type f -print
-ACLOCAL = ${SHELL} /Users/james/projects/actual/packages/node-libofx/OpenSP-1.5.2/missing --run aclocal-1.9
-ALLOCA =
-AMDEP_FALSE = #
-AMDEP_TRUE =
-AMTAR = ${SHELL} /Users/james/projects/actual/packages/node-libofx/OpenSP-1.5.2/missing --run tar
-AR = /Users/james/tmp/emsdk/fastcomp/emscripten/emar
-AUTOCONF = ${SHELL} /Users/james/projects/actual/packages/node-libofx/OpenSP-1.5.2/missing --run autoconf
-AUTOHEADER = ${SHELL} /Users/james/projects/actual/packages/node-libofx/OpenSP-1.5.2/missing --run autoheader
-AUTOMAKE = ${SHELL} /Users/james/projects/actual/packages/node-libofx/OpenSP-1.5.2/missing --run automake-1.9
-AWK = awk
-BUILD_INCLUDED_LIBINTL = yes
-CATOBJEXT = .gmo
-CC = /Users/james/tmp/emsdk/fastcomp/emscripten/emcc
-CCDEPMODE = depmode=gcc3
-CFLAGS =
-CPP = /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -E
-CPPFLAGS =
-CXX = /Users/james/tmp/emsdk/fastcomp/emscripten/em++
-CXXCPP = /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -E
-CXXDEPMODE = depmode=gcc3
-CXXFLAGS = -g -O2
-CYGPATH_W = echo
-DATADIRNAME = share
-DEFS = -DHAVE_CONFIG_H
-DEPDIR = .deps
-DOCSRC =
-DTDDECL_FALSE = #
-DTDDECL_TRUE =
-ECHO = /bin/echo
-ECHO_C = \c
-ECHO_N =
-ECHO_T =
-EGREP = grep -E
-EXEEXT =
-EXTRADOCS =
-F77 =
-FFLAGS =
-GENCAT = gencat
-GLIBC2 = no
-GLIBC21 = no
-GMSGFMT = :
-HAVE_ASPRINTF = 1
-HAVE_POSIX_PRINTF = 1
-HAVE_SNPRINTF = 1
-HAVE_WPRINTF = 0
-INSTALL_DATA = ${INSTALL} -m 644
-INSTALL_PROGRAM = ${INSTALL}
-INSTALL_SCRIPT = ${INSTALL}
-INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s
-INSTOBJEXT = .mo
-INTLBISON = bison
-INTLLIBS = ${top_builddir}/intl/libintl.a
-INTLOBJS = $(GETTOBJS)
-INTL_LIBTOOL_SUFFIX_PREFIX =
-INTL_MACOSX_LIBS =
-JADE =
-JADETEX =
-LDFLAGS =
-LIBICONV =
-LIBINTL = ${top_builddir}/intl/libintl.a
-LIBOBJS =
-LIBS = -lpthread
-LIBTOOL = $(SHELL) $(top_builddir)/libtool
-LN_S = ln -s
-LTLIBICONV =
-LTLIBINTL = ${top_builddir}/intl/libintl.a
-LTLIBOBJS =
-MAINT = #
-MAINTAINER_MODE_FALSE =
-MAINTAINER_MODE_TRUE = #
-MAKEINFO = ${SHELL} /Users/james/projects/actual/packages/node-libofx/OpenSP-1.5.2/missing --run makeinfo
-MKINSTALLDIRS = $(top_builddir)/./mkinstalldirs
-MSGFMT = :
-MSGMERGE = :
-OBJEXT = o
-PACKAGE = OpenSP
-PACKAGE_BUGREPORT =
-PACKAGE_NAME =
-PACKAGE_STRING =
-PACKAGE_TARNAME =
-PACKAGE_VERSION =
-PATH_SEPARATOR = :
-PDF2PS =
-PDFJADETEX =
-PERL = /usr/bin/perl
-POSUB = po
-RANLIB = /Users/james/tmp/emsdk/fastcomp/emscripten/emranlib
-SET_MAKE = MAKE=make
-SHELL = /bin/sh
-SP_LIBOSP_AGE = 0
-SP_LIBOSP_CUR = 5
-SP_LIBOSP_REV = 0
-SP_MESSAGE_DOMAIN = sp5
-STRIP = strip
-USE_INCLUDED_LIBINTL = yes
-USE_NLS = yes
-VERSION = 1.5.2
-XGETTEXT = :
-XMLTO =
-ac_ct_AR = /Users/james/tmp/emsdk/fastcomp/emscripten/emar
-ac_ct_CC = /Users/james/tmp/emsdk/fastcomp/emscripten/emcc
-ac_ct_CXX =
-ac_ct_F77 =
-ac_ct_RANLIB = /Users/james/tmp/emsdk/fastcomp/emscripten/emranlib
-ac_ct_STRIP = strip
-am__fastdepCC_FALSE = #
-am__fastdepCC_TRUE =
-am__fastdepCXX_FALSE = #
-am__fastdepCXX_TRUE =
-am__include = include
-am__leading_dot = .
-am__quote =
-am__tar = ${AMTAR} chof - "$$tardir"
-am__untar = ${AMTAR} xf -
-bindir = ${exec_prefix}/bin
-build = i686-apple-darwin19.0.0
-build_alias =
-build_cpu = i686
-build_os = darwin19.0.0
-build_vendor = apple
-datadir = ${prefix}/share
-exec_prefix = ${prefix}
-host = i686-apple-darwin19.0.0
-host_alias =
-host_cpu = i686
-host_os = darwin19.0.0
-host_vendor = apple
-includedir = ${prefix}/include
-infodir = ${prefix}/info
-install_sh = /Users/james/projects/actual/packages/node-libofx/OpenSP-1.5.2/install-sh
-libdir = ${exec_prefix}/lib
-libexecdir = ${exec_prefix}/libexec
-localstatedir = ${prefix}/var
-mandir = ${prefix}/man
-mkdir_p = $(mkinstalldirs)
-oldincludedir = /usr/include
-prefix = /usr/local
-program_transform_name = s,x,x,
-sbindir = ${exec_prefix}/sbin
-sharedstatedir = ${prefix}/com
-sysconfdir = ${prefix}/etc
-target_alias =
-AUTOMAKE_OPTIONS = check-news
-SUBDIRS = pubtext unicode doc \
- include generic \
- intl po \
- lib nsgmls spent spam sgmlnorm sx spcat \
- tests
-
-pkginclude_HEADERS = config.h
-docdir = $(datadir)/doc
-pkgdocdir = $(docdir)/OpenSP
-pkgdoc_DATA = README ABOUT-NLS NEWS COPYING AUTHORS BUGS ChangeLog
-BUILT_SOURCES = config.h msggen.pl
-
-# these are not in CVS and get generated by 'automake --add-missing'
-MAINTAINERCLEANFILES = install-sh mkinstalldirs missing \
- config.guess config.sub ltconfig ltmain.sh INSTALL \
- Makefile.in
-
-EXTRA_DIST = mkinstalldirs instmac.pl msggen.pl sunfix.sh SP.dsw SP.mak \
- build-win32.bat sp-generate.mak .cvsignore all/README all/all.dsp \
- OpenSP-1.5.2.spec config.rpath BUGS autoinit.sh
-
-ACLOCAL_AMFLAGS = -I m4
-all: $(BUILT_SOURCES) config.h
- $(MAKE) $(AM_MAKEFLAGS) all-recursive
-
-.SUFFIXES:
-am--refresh:
- @:
-$(srcdir)/Makefile.in: # $(srcdir)/Makefile.am $(am__configure_deps)
- @for dep in $?; do \
- case '$(am__configure_deps)' in \
- *$$dep*) \
- echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
- cd $(srcdir) && $(AUTOMAKE) --gnu \
- && exit 0; \
- exit 1;; \
- esac; \
- done; \
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
- cd $(top_srcdir) && \
- $(AUTOMAKE) --gnu Makefile
-.PRECIOUS: Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- @case '$?' in \
- *config.status*) \
- echo ' $(SHELL) ./config.status'; \
- $(SHELL) ./config.status;; \
- *) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
- esac;
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
- $(SHELL) ./config.status --recheck
-
-$(top_srcdir)/configure: # $(am__configure_deps)
- cd $(srcdir) && $(AUTOCONF)
-$(ACLOCAL_M4): # $(am__aclocal_m4_deps)
- cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
-
-config.h: stamp-h1
- @if test ! -f $@; then \
- rm -f stamp-h1; \
- $(MAKE) stamp-h1; \
- else :; fi
-
-stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
- @rm -f stamp-h1
- cd $(top_builddir) && $(SHELL) ./config.status config.h
-$(srcdir)/config.h.in: # $(am__configure_deps)
- cd $(top_srcdir) && $(AUTOHEADER)
- rm -f stamp-h1
- touch $@
-
-distclean-hdr:
- -rm -f config.h stamp-h1
-${PACKAGE}-${VERSION}.spec: $(top_builddir)/config.status $(srcdir)/spec.in
- cd $(top_builddir) && $(SHELL) ./config.status $@
-msggen.pl: $(top_builddir)/config.status $(srcdir)/msggen.pl.in
- cd $(top_builddir) && $(SHELL) ./config.status $@
-intl/Makefile: $(top_builddir)/config.status $(top_srcdir)/intl/Makefile.in
- cd $(top_builddir) && $(SHELL) ./config.status $@
-
-mostlyclean-libtool:
- -rm -f *.lo
-
-clean-libtool:
- -rm -rf .libs _libs
-
-distclean-libtool:
- -rm -f libtool
-uninstall-info-am:
-install-pkgdocDATA: $(pkgdoc_DATA)
- @$(NORMAL_INSTALL)
- test -z "$(pkgdocdir)" || $(mkdir_p) "$(DESTDIR)$(pkgdocdir)"
- @list='$(pkgdoc_DATA)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
- f=$(am__strip_dir) \
- echo " $(pkgdocDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgdocdir)/$$f'"; \
- $(pkgdocDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgdocdir)/$$f"; \
- done
-
-uninstall-pkgdocDATA:
- @$(NORMAL_UNINSTALL)
- @list='$(pkgdoc_DATA)'; for p in $$list; do \
- f=$(am__strip_dir) \
- echo " rm -f '$(DESTDIR)$(pkgdocdir)/$$f'"; \
- rm -f "$(DESTDIR)$(pkgdocdir)/$$f"; \
- done
-install-pkgincludeHEADERS: $(pkginclude_HEADERS)
- @$(NORMAL_INSTALL)
- test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)"
- @list='$(pkginclude_HEADERS)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
- f=$(am__strip_dir) \
- echo " $(pkgincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgincludedir)/$$f'"; \
- $(pkgincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgincludedir)/$$f"; \
- done
-
-uninstall-pkgincludeHEADERS:
- @$(NORMAL_UNINSTALL)
- @list='$(pkginclude_HEADERS)'; for p in $$list; do \
- f=$(am__strip_dir) \
- echo " rm -f '$(DESTDIR)$(pkgincludedir)/$$f'"; \
- rm -f "$(DESTDIR)$(pkgincludedir)/$$f"; \
- done
-
-# This directory's subdirectories are mostly independent; you can cd
-# into them and run `make' without going through this Makefile.
-# To change the values of `make' variables: instead of editing Makefiles,
-# (1) if the variable is set in `config.status', edit `config.status'
-# (which will cause the Makefiles to be regenerated when you run `make');
-# (2) otherwise, pass the desired values on the `make' command line.
-$(RECURSIVE_TARGETS):
- @failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
- dot_seen=no; \
- target=`echo $@ | sed s/-recursive//`; \
- list='$(SUBDIRS)'; for subdir in $$list; do \
- echo "Making $$target in $$subdir"; \
- if test "$$subdir" = "."; then \
- dot_seen=yes; \
- local_target="$$target-am"; \
- else \
- local_target="$$target"; \
- fi; \
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- || eval $$failcom; \
- done; \
- if test "$$dot_seen" = "no"; then \
- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
- fi; test -z "$$fail"
-
-mostlyclean-recursive clean-recursive distclean-recursive \
-maintainer-clean-recursive:
- @failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
- dot_seen=no; \
- case "$@" in \
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
- *) list='$(SUBDIRS)' ;; \
- esac; \
- rev=''; for subdir in $$list; do \
- if test "$$subdir" = "."; then :; else \
- rev="$$subdir $$rev"; \
- fi; \
- done; \
- rev="$$rev ."; \
- target=`echo $@ | sed s/-recursive//`; \
- for subdir in $$rev; do \
- echo "Making $$target in $$subdir"; \
- if test "$$subdir" = "."; then \
- local_target="$$target-am"; \
- else \
- local_target="$$target"; \
- fi; \
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- || eval $$failcom; \
- done && test -z "$$fail"
-tags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
- done
-ctags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
- done
-
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- mkid -fID $$unique
-tags: TAGS
-
-TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- tags=; \
- here=`pwd`; \
- if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
- include_option=--etags-include; \
- empty_fix=.; \
- else \
- include_option=--include; \
- empty_fix=; \
- fi; \
- list='$(SUBDIRS)'; for subdir in $$list; do \
- if test "$$subdir" = .; then :; else \
- test ! -f $$subdir/TAGS || \
- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
- fi; \
- done; \
- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
- test -n "$$unique" || unique=$$empty_fix; \
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
- $$tags $$unique; \
- fi
-ctags: CTAGS
-CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- tags=; \
- here=`pwd`; \
- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- test -z "$(CTAGS_ARGS)$$tags$$unique" \
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
- $$tags $$unique
-
-GTAGS:
- here=`$(am__cd) $(top_builddir) && pwd` \
- && cd $(top_srcdir) \
- && gtags -i $(GTAGS_ARGS) $$here
-
-distclean-tags:
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-
-distdir: $(DISTFILES)
- @case `sed 15q $(srcdir)/NEWS` in \
- *"$(VERSION)"*) : ;; \
- *) \
- echo "NEWS not updated; not releasing" 1>&2; \
- exit 1;; \
- esac
- $(am__remove_distdir)
- mkdir $(distdir)
- $(mkdir_p) $(distdir)/. $(distdir)/all $(distdir)/include $(distdir)/intl $(distdir)/m4 $(distdir)/po
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
- list='$(DISTFILES)'; for file in $$list; do \
- case $$file in \
- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
- esac; \
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
- if test "$$dir" != "$$file" && test "$$dir" != "."; then \
- dir="/$$dir"; \
- $(mkdir_p) "$(distdir)$$dir"; \
- else \
- dir=''; \
- fi; \
- if test -d $$d/$$file; then \
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
- fi; \
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
- else \
- test -f $(distdir)/$$file \
- || cp -p $$d/$$file $(distdir)/$$file \
- || exit 1; \
- fi; \
- done
- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
- if test "$$subdir" = .; then :; else \
- test -d "$(distdir)/$$subdir" \
- || $(mkdir_p) "$(distdir)/$$subdir" \
- || exit 1; \
- distdir=`$(am__cd) $(distdir) && pwd`; \
- top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
- (cd $$subdir && \
- $(MAKE) $(AM_MAKEFLAGS) \
- top_distdir="$$top_distdir" \
- distdir="$$distdir/$$subdir" \
- distdir) \
- || exit 1; \
- fi; \
- done
- $(MAKE) $(AM_MAKEFLAGS) \
- top_distdir="$(top_distdir)" distdir="$(distdir)" \
- dist-hook
- -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
- ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
- ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
- ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
- || chmod -R a+r $(distdir)
-dist-gzip: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
- $(am__remove_distdir)
-
-dist-bzip2: distdir
- tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
- $(am__remove_distdir)
-
-dist-tarZ: distdir
- tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
- $(am__remove_distdir)
-
-dist-shar: distdir
- shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
- $(am__remove_distdir)
-
-dist dist-all: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
- $(am__remove_distdir)
-
-# This target untars the dist file and tries a VPATH configuration. Then
-# it guarantees that the distribution is self-contained by making another
-# tarfile.
-distcheck: dist
- case '$(DIST_ARCHIVES)' in \
- *.tar.gz*) \
- GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
- *.tar.bz2*) \
- bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
- *.tar.Z*) \
- uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
- *.shar.gz*) \
- GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
- *.zip*) \
- unzip $(distdir).zip ;;\
- esac
- chmod -R a-w $(distdir); chmod a+w $(distdir)
- mkdir $(distdir)/_build
- mkdir $(distdir)/_inst
- chmod a-w $(distdir)
- dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
- && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
- && cd $(distdir)/_build \
- && ../configure --srcdir=.. --prefix="$$dc_install_base" \
- --with-included-gettext \
- $(DISTCHECK_CONFIGURE_FLAGS) \
- && $(MAKE) $(AM_MAKEFLAGS) \
- && $(MAKE) $(AM_MAKEFLAGS) dvi \
- && $(MAKE) $(AM_MAKEFLAGS) check \
- && $(MAKE) $(AM_MAKEFLAGS) install \
- && $(MAKE) $(AM_MAKEFLAGS) installcheck \
- && $(MAKE) $(AM_MAKEFLAGS) uninstall \
- && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
- distuninstallcheck \
- && chmod -R a-w "$$dc_install_base" \
- && ({ \
- (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
- distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
- } || { rm -rf "$$dc_destdir"; exit 1; }) \
- && rm -rf "$$dc_destdir" \
- && $(MAKE) $(AM_MAKEFLAGS) dist \
- && rm -rf $(DIST_ARCHIVES) \
- && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
- $(am__remove_distdir)
- @(echo "$(distdir) archives ready for distribution: "; \
- list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
- sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'
-distuninstallcheck:
- @cd $(distuninstallcheck_dir) \
- && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
- || { echo "ERROR: files left after uninstall:" ; \
- if test -n "$(DESTDIR)"; then \
- echo " (check DESTDIR support)"; \
- fi ; \
- $(distuninstallcheck_listfiles) ; \
- exit 1; } >&2
-distcleancheck: distclean
- @if test '$(srcdir)' = . ; then \
- echo "ERROR: distcleancheck can only run from a VPATH build" ; \
- exit 1 ; \
- fi
- @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
- || { echo "ERROR: files left in build directory after distclean:" ; \
- $(distcleancheck_listfiles) ; \
- exit 1; } >&2
-check-am: all-am
-check: $(BUILT_SOURCES)
- $(MAKE) $(AM_MAKEFLAGS) check-recursive
-all-am: Makefile $(DATA) $(HEADERS) config.h
-installdirs: installdirs-recursive
-installdirs-am:
- for dir in "$(DESTDIR)$(pkgdocdir)" "$(DESTDIR)$(pkgincludedir)"; do \
- test -z "$$dir" || $(mkdir_p) "$$dir"; \
- done
-install: $(BUILT_SOURCES)
- $(MAKE) $(AM_MAKEFLAGS) install-recursive
-install-exec: install-exec-recursive
-install-data: install-data-recursive
-uninstall: uninstall-recursive
-
-install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-installcheck: installcheck-recursive
-install-strip:
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
- `test -z '$(STRIP)' || \
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
-mostlyclean-generic:
-
-clean-generic:
-
-distclean-generic:
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-
-maintainer-clean-generic:
- @echo "This command is intended for maintainers to use"
- @echo "it deletes files that may require special tools to rebuild."
- -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
- -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
-clean: clean-recursive
-
-clean-am: clean-generic clean-libtool mostlyclean-am
-
-distclean: distclean-recursive
- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
- -rm -f Makefile
-distclean-am: clean-am distclean-generic distclean-hdr \
- distclean-libtool distclean-tags
-
-dvi: dvi-recursive
-
-dvi-am:
-
-html: html-recursive
-
-info: info-recursive
-
-info-am:
-
-install-data-am: install-pkgdocDATA install-pkgincludeHEADERS
-
-install-exec-am:
-
-install-info: install-info-recursive
-
-install-man:
-
-installcheck-am:
-
-maintainer-clean: maintainer-clean-recursive
- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
- -rm -rf $(top_srcdir)/autom4te.cache
- -rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
-
-mostlyclean: mostlyclean-recursive
-
-mostlyclean-am: mostlyclean-generic mostlyclean-libtool
-
-pdf: pdf-recursive
-
-pdf-am:
-
-ps: ps-recursive
-
-ps-am:
-
-uninstall-am: uninstall-info-am uninstall-pkgdocDATA \
- uninstall-pkgincludeHEADERS
-
-uninstall-info: uninstall-info-recursive
-
-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \
- check-am clean clean-generic clean-libtool clean-recursive \
- ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
- dist-hook dist-shar dist-tarZ dist-zip distcheck distclean \
- distclean-generic distclean-hdr distclean-libtool \
- distclean-recursive distclean-tags distcleancheck distdir \
- distuninstallcheck dvi dvi-am html html-am info info-am \
- install install-am install-data install-data-am install-exec \
- install-exec-am install-info install-info-am install-man \
- install-pkgdocDATA install-pkgincludeHEADERS install-strip \
- installcheck installcheck-am installdirs installdirs-am \
- maintainer-clean maintainer-clean-generic \
- maintainer-clean-recursive mostlyclean mostlyclean-generic \
- mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
- tags tags-recursive uninstall uninstall-am uninstall-info-am \
- uninstall-pkgdocDATA uninstall-pkgincludeHEADERS
-
-
-dist-hook:
- mv $(distdir)/include/config.h.old $(distdir)/config.h
- if test -f $(top_srcdir)/update-changelog; then \
- cd $(top_srcdir); \
- ./update-changelog; \
- cp $(top_srcdir)/ChangeLog $(top_distdir); \
- fi
-
-dist-zip: distdir
- -chmod -R a+r $(distdir)
- zip -rql $(distdir).zip $(distdir)
- -rm -rf $(distdir)
-# Tell versions [3.59,3.63) of GNU make to not export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:
diff --git a/packages/node-libofx/OpenSP-1.5.2/Makefile.am b/packages/node-libofx/OpenSP-1.5.2/Makefile.am
deleted file mode 100644
index 3703adff0a4..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/Makefile.am
+++ /dev/null
@@ -1,44 +0,0 @@
-## Process this file with automake to produce Makefile.in
-
-AUTOMAKE_OPTIONS = check-news
-
-SUBDIRS = pubtext unicode doc \
- include generic \
- intl po \
- lib nsgmls spent spam sgmlnorm sx spcat \
- tests @DOCSRC@
-
-pkginclude_HEADERS = config.h
-
-docdir = $(datadir)/doc
-pkgdocdir = $(docdir)/@PACKAGE@
-
-pkgdoc_DATA = README ABOUT-NLS NEWS COPYING AUTHORS BUGS ChangeLog
-
-BUILT_SOURCES = config.h msggen.pl
-
-# these are not in CVS and get generated by 'automake --add-missing'
-MAINTAINERCLEANFILES = install-sh mkinstalldirs missing \
- config.guess config.sub ltconfig ltmain.sh INSTALL \
- Makefile.in
-## Note that we include the windows-only aux files.
-## We include msggen.pl, since it won't be generated on Windows.
-EXTRA_DIST = mkinstalldirs instmac.pl msggen.pl sunfix.sh SP.dsw SP.mak \
- build-win32.bat sp-generate.mak .cvsignore all/README all/all.dsp \
- @PACKAGE@-@VERSION@.spec config.rpath BUGS autoinit.sh
-
-dist-hook:
- mv $(distdir)/include/config.h.old $(distdir)/config.h
- if test -f $(top_srcdir)/update-changelog; then \
- cd $(top_srcdir); \
- ./update-changelog; \
- cp $(top_srcdir)/ChangeLog $(top_distdir); \
- fi
-
-dist-zip: distdir
- -chmod -R a+r $(distdir)
- zip -rql $(distdir).zip $(distdir)
- -rm -rf $(distdir)
-
-
-ACLOCAL_AMFLAGS = -I m4
diff --git a/packages/node-libofx/OpenSP-1.5.2/Makefile.in b/packages/node-libofx/OpenSP-1.5.2/Makefile.in
deleted file mode 100644
index 55c7be525ce..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/Makefile.in
+++ /dev/null
@@ -1,777 +0,0 @@
-# Makefile.in generated by automake 1.9.6 from Makefile.am.
-# @configure_input@
-
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005 Free Software Foundation, Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
-@SET_MAKE@
-
-
-srcdir = @srcdir@
-top_srcdir = @top_srcdir@
-VPATH = @srcdir@
-pkgdatadir = $(datadir)/@PACKAGE@
-pkglibdir = $(libdir)/@PACKAGE@
-pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = .
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-INSTALL = @INSTALL@
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-build_triplet = @build@
-host_triplet = @host@
-DIST_COMMON = README $(am__configure_deps) $(pkginclude_HEADERS) \
- $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
- $(srcdir)/config.h.in $(srcdir)/msggen.pl.in $(srcdir)/spec.in \
- $(top_srcdir)/configure $(top_srcdir)/intl/Makefile.in \
- ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS config.guess \
- config.rpath config.sub depcomp install-sh ltmain.sh missing \
- mkinstalldirs
-subdir = .
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \
- $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \
- $(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \
- $(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intmax.m4 \
- $(top_srcdir)/m4/inttypes-pri.m4 $(top_srcdir)/m4/inttypes.m4 \
- $(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \
- $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
- $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/longdouble.m4 \
- $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/nls.m4 \
- $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/printf-posix.m4 \
- $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/signed.m4 \
- $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \
- $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \
- $(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/m4/wint_t.m4 \
- $(top_srcdir)/m4/xsize.m4 $(top_srcdir)/acinclude.m4 \
- $(top_srcdir)/configure.in
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- $(ACLOCAL_M4)
-am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
- configure.lineno configure.status.lineno
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-CONFIG_HEADER = config.h
-CONFIG_CLEAN_FILES = ${PACKAGE}-${VERSION}.spec msggen.pl \
- intl/Makefile
-SOURCES =
-DIST_SOURCES =
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
- html-recursive info-recursive install-data-recursive \
- install-exec-recursive install-info-recursive \
- install-recursive installcheck-recursive installdirs-recursive \
- pdf-recursive ps-recursive uninstall-info-recursive \
- uninstall-recursive
-am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
-am__vpath_adj = case $$p in \
- $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
- *) f=$$p;; \
- esac;
-am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-am__installdirs = "$(DESTDIR)$(pkgdocdir)" \
- "$(DESTDIR)$(pkgincludedir)"
-pkgdocDATA_INSTALL = $(INSTALL_DATA)
-DATA = $(pkgdoc_DATA)
-pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER)
-HEADERS = $(pkginclude_HEADERS)
-ETAGS = etags
-CTAGS = ctags
-DIST_SUBDIRS = $(SUBDIRS)
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-distdir = $(PACKAGE)-$(VERSION)
-top_distdir = $(distdir)
-am__remove_distdir = \
- { test ! -d $(distdir) \
- || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
- && rm -fr $(distdir); }; }
-DIST_ARCHIVES = $(distdir).tar.gz
-GZIP_ENV = --best
-distuninstallcheck_listfiles = find . -type f -print
-distcleancheck_listfiles = find . -type f -print
-ACLOCAL = @ACLOCAL@
-ALLOCA = @ALLOCA@
-AMDEP_FALSE = @AMDEP_FALSE@
-AMDEP_TRUE = @AMDEP_TRUE@
-AMTAR = @AMTAR@
-AR = @AR@
-AUTOCONF = @AUTOCONF@
-AUTOHEADER = @AUTOHEADER@
-AUTOMAKE = @AUTOMAKE@
-AWK = @AWK@
-BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
-CATOBJEXT = @CATOBJEXT@
-CC = @CC@
-CCDEPMODE = @CCDEPMODE@
-CFLAGS = @CFLAGS@
-CPP = @CPP@
-CPPFLAGS = @CPPFLAGS@
-CXX = @CXX@
-CXXCPP = @CXXCPP@
-CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = @CXXFLAGS@
-CYGPATH_W = @CYGPATH_W@
-DATADIRNAME = @DATADIRNAME@
-DEFS = @DEFS@
-DEPDIR = @DEPDIR@
-DOCSRC = @DOCSRC@
-DTDDECL_FALSE = @DTDDECL_FALSE@
-DTDDECL_TRUE = @DTDDECL_TRUE@
-ECHO = @ECHO@
-ECHO_C = @ECHO_C@
-ECHO_N = @ECHO_N@
-ECHO_T = @ECHO_T@
-EGREP = @EGREP@
-EXEEXT = @EXEEXT@
-EXTRADOCS = @EXTRADOCS@
-F77 = @F77@
-FFLAGS = @FFLAGS@
-GENCAT = @GENCAT@
-GLIBC2 = @GLIBC2@
-GLIBC21 = @GLIBC21@
-GMSGFMT = @GMSGFMT@
-HAVE_ASPRINTF = @HAVE_ASPRINTF@
-HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@
-HAVE_SNPRINTF = @HAVE_SNPRINTF@
-HAVE_WPRINTF = @HAVE_WPRINTF@
-INSTALL_DATA = @INSTALL_DATA@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
-INSTOBJEXT = @INSTOBJEXT@
-INTLBISON = @INTLBISON@
-INTLLIBS = @INTLLIBS@
-INTLOBJS = @INTLOBJS@
-INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@
-INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
-JADE = @JADE@
-JADETEX = @JADETEX@
-LDFLAGS = @LDFLAGS@
-LIBICONV = @LIBICONV@
-LIBINTL = @LIBINTL@
-LIBOBJS = @LIBOBJS@
-LIBS = @LIBS@
-LIBTOOL = @LIBTOOL@
-LN_S = @LN_S@
-LTLIBICONV = @LTLIBICONV@
-LTLIBINTL = @LTLIBINTL@
-LTLIBOBJS = @LTLIBOBJS@
-MAINT = @MAINT@
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
-MAKEINFO = @MAKEINFO@
-MKINSTALLDIRS = @MKINSTALLDIRS@
-MSGFMT = @MSGFMT@
-MSGMERGE = @MSGMERGE@
-OBJEXT = @OBJEXT@
-PACKAGE = @PACKAGE@
-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
-PACKAGE_NAME = @PACKAGE_NAME@
-PACKAGE_STRING = @PACKAGE_STRING@
-PACKAGE_TARNAME = @PACKAGE_TARNAME@
-PACKAGE_VERSION = @PACKAGE_VERSION@
-PATH_SEPARATOR = @PATH_SEPARATOR@
-PDF2PS = @PDF2PS@
-PDFJADETEX = @PDFJADETEX@
-PERL = @PERL@
-POSUB = @POSUB@
-RANLIB = @RANLIB@
-SET_MAKE = @SET_MAKE@
-SHELL = @SHELL@
-SP_LIBOSP_AGE = @SP_LIBOSP_AGE@
-SP_LIBOSP_CUR = @SP_LIBOSP_CUR@
-SP_LIBOSP_REV = @SP_LIBOSP_REV@
-SP_MESSAGE_DOMAIN = @SP_MESSAGE_DOMAIN@
-STRIP = @STRIP@
-USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
-USE_NLS = @USE_NLS@
-VERSION = @VERSION@
-XGETTEXT = @XGETTEXT@
-XMLTO = @XMLTO@
-ac_ct_AR = @ac_ct_AR@
-ac_ct_CC = @ac_ct_CC@
-ac_ct_CXX = @ac_ct_CXX@
-ac_ct_F77 = @ac_ct_F77@
-ac_ct_RANLIB = @ac_ct_RANLIB@
-ac_ct_STRIP = @ac_ct_STRIP@
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
-am__include = @am__include@
-am__leading_dot = @am__leading_dot@
-am__quote = @am__quote@
-am__tar = @am__tar@
-am__untar = @am__untar@
-bindir = @bindir@
-build = @build@
-build_alias = @build_alias@
-build_cpu = @build_cpu@
-build_os = @build_os@
-build_vendor = @build_vendor@
-datadir = @datadir@
-exec_prefix = @exec_prefix@
-host = @host@
-host_alias = @host_alias@
-host_cpu = @host_cpu@
-host_os = @host_os@
-host_vendor = @host_vendor@
-includedir = @includedir@
-infodir = @infodir@
-install_sh = @install_sh@
-libdir = @libdir@
-libexecdir = @libexecdir@
-localstatedir = @localstatedir@
-mandir = @mandir@
-mkdir_p = @mkdir_p@
-oldincludedir = @oldincludedir@
-prefix = @prefix@
-program_transform_name = @program_transform_name@
-sbindir = @sbindir@
-sharedstatedir = @sharedstatedir@
-sysconfdir = @sysconfdir@
-target_alias = @target_alias@
-AUTOMAKE_OPTIONS = check-news
-SUBDIRS = pubtext unicode doc \
- include generic \
- intl po \
- lib nsgmls spent spam sgmlnorm sx spcat \
- tests @DOCSRC@
-
-pkginclude_HEADERS = config.h
-docdir = $(datadir)/doc
-pkgdocdir = $(docdir)/@PACKAGE@
-pkgdoc_DATA = README ABOUT-NLS NEWS COPYING AUTHORS BUGS ChangeLog
-BUILT_SOURCES = config.h msggen.pl
-
-# these are not in CVS and get generated by 'automake --add-missing'
-MAINTAINERCLEANFILES = install-sh mkinstalldirs missing \
- config.guess config.sub ltconfig ltmain.sh INSTALL \
- Makefile.in
-
-EXTRA_DIST = mkinstalldirs instmac.pl msggen.pl sunfix.sh SP.dsw SP.mak \
- build-win32.bat sp-generate.mak .cvsignore all/README all/all.dsp \
- @PACKAGE@-@VERSION@.spec config.rpath BUGS autoinit.sh
-
-ACLOCAL_AMFLAGS = -I m4
-all: $(BUILT_SOURCES) config.h
- $(MAKE) $(AM_MAKEFLAGS) all-recursive
-
-.SUFFIXES:
-am--refresh:
- @:
-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
- @for dep in $?; do \
- case '$(am__configure_deps)' in \
- *$$dep*) \
- echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
- cd $(srcdir) && $(AUTOMAKE) --gnu \
- && exit 0; \
- exit 1;; \
- esac; \
- done; \
- echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
- cd $(top_srcdir) && \
- $(AUTOMAKE) --gnu Makefile
-.PRECIOUS: Makefile
-Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- @case '$?' in \
- *config.status*) \
- echo ' $(SHELL) ./config.status'; \
- $(SHELL) ./config.status;; \
- *) \
- echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
- cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
- esac;
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
- $(SHELL) ./config.status --recheck
-
-$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
- cd $(srcdir) && $(AUTOCONF)
-$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
- cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
-
-config.h: stamp-h1
- @if test ! -f $@; then \
- rm -f stamp-h1; \
- $(MAKE) stamp-h1; \
- else :; fi
-
-stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
- @rm -f stamp-h1
- cd $(top_builddir) && $(SHELL) ./config.status config.h
-$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
- cd $(top_srcdir) && $(AUTOHEADER)
- rm -f stamp-h1
- touch $@
-
-distclean-hdr:
- -rm -f config.h stamp-h1
-${PACKAGE}-${VERSION}.spec: $(top_builddir)/config.status $(srcdir)/spec.in
- cd $(top_builddir) && $(SHELL) ./config.status $@
-msggen.pl: $(top_builddir)/config.status $(srcdir)/msggen.pl.in
- cd $(top_builddir) && $(SHELL) ./config.status $@
-intl/Makefile: $(top_builddir)/config.status $(top_srcdir)/intl/Makefile.in
- cd $(top_builddir) && $(SHELL) ./config.status $@
-
-mostlyclean-libtool:
- -rm -f *.lo
-
-clean-libtool:
- -rm -rf .libs _libs
-
-distclean-libtool:
- -rm -f libtool
-uninstall-info-am:
-install-pkgdocDATA: $(pkgdoc_DATA)
- @$(NORMAL_INSTALL)
- test -z "$(pkgdocdir)" || $(mkdir_p) "$(DESTDIR)$(pkgdocdir)"
- @list='$(pkgdoc_DATA)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
- f=$(am__strip_dir) \
- echo " $(pkgdocDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgdocdir)/$$f'"; \
- $(pkgdocDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgdocdir)/$$f"; \
- done
-
-uninstall-pkgdocDATA:
- @$(NORMAL_UNINSTALL)
- @list='$(pkgdoc_DATA)'; for p in $$list; do \
- f=$(am__strip_dir) \
- echo " rm -f '$(DESTDIR)$(pkgdocdir)/$$f'"; \
- rm -f "$(DESTDIR)$(pkgdocdir)/$$f"; \
- done
-install-pkgincludeHEADERS: $(pkginclude_HEADERS)
- @$(NORMAL_INSTALL)
- test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)"
- @list='$(pkginclude_HEADERS)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
- f=$(am__strip_dir) \
- echo " $(pkgincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgincludedir)/$$f'"; \
- $(pkgincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgincludedir)/$$f"; \
- done
-
-uninstall-pkgincludeHEADERS:
- @$(NORMAL_UNINSTALL)
- @list='$(pkginclude_HEADERS)'; for p in $$list; do \
- f=$(am__strip_dir) \
- echo " rm -f '$(DESTDIR)$(pkgincludedir)/$$f'"; \
- rm -f "$(DESTDIR)$(pkgincludedir)/$$f"; \
- done
-
-# This directory's subdirectories are mostly independent; you can cd
-# into them and run `make' without going through this Makefile.
-# To change the values of `make' variables: instead of editing Makefiles,
-# (1) if the variable is set in `config.status', edit `config.status'
-# (which will cause the Makefiles to be regenerated when you run `make');
-# (2) otherwise, pass the desired values on the `make' command line.
-$(RECURSIVE_TARGETS):
- @failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
- dot_seen=no; \
- target=`echo $@ | sed s/-recursive//`; \
- list='$(SUBDIRS)'; for subdir in $$list; do \
- echo "Making $$target in $$subdir"; \
- if test "$$subdir" = "."; then \
- dot_seen=yes; \
- local_target="$$target-am"; \
- else \
- local_target="$$target"; \
- fi; \
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- || eval $$failcom; \
- done; \
- if test "$$dot_seen" = "no"; then \
- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
- fi; test -z "$$fail"
-
-mostlyclean-recursive clean-recursive distclean-recursive \
-maintainer-clean-recursive:
- @failcom='exit 1'; \
- for f in x $$MAKEFLAGS; do \
- case $$f in \
- *=* | --[!k]*);; \
- *k*) failcom='fail=yes';; \
- esac; \
- done; \
- dot_seen=no; \
- case "$@" in \
- distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
- *) list='$(SUBDIRS)' ;; \
- esac; \
- rev=''; for subdir in $$list; do \
- if test "$$subdir" = "."; then :; else \
- rev="$$subdir $$rev"; \
- fi; \
- done; \
- rev="$$rev ."; \
- target=`echo $@ | sed s/-recursive//`; \
- for subdir in $$rev; do \
- echo "Making $$target in $$subdir"; \
- if test "$$subdir" = "."; then \
- local_target="$$target-am"; \
- else \
- local_target="$$target"; \
- fi; \
- (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
- || eval $$failcom; \
- done && test -z "$$fail"
-tags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
- done
-ctags-recursive:
- list='$(SUBDIRS)'; for subdir in $$list; do \
- test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
- done
-
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- mkid -fID $$unique
-tags: TAGS
-
-TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- tags=; \
- here=`pwd`; \
- if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
- include_option=--etags-include; \
- empty_fix=.; \
- else \
- include_option=--include; \
- empty_fix=; \
- fi; \
- list='$(SUBDIRS)'; for subdir in $$list; do \
- if test "$$subdir" = .; then :; else \
- test ! -f $$subdir/TAGS || \
- tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
- fi; \
- done; \
- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
- test -n "$$unique" || unique=$$empty_fix; \
- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
- $$tags $$unique; \
- fi
-ctags: CTAGS
-CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
- tags=; \
- here=`pwd`; \
- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
- $(AWK) ' { files[$$0] = 1; } \
- END { for (i in files) print i; }'`; \
- test -z "$(CTAGS_ARGS)$$tags$$unique" \
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
- $$tags $$unique
-
-GTAGS:
- here=`$(am__cd) $(top_builddir) && pwd` \
- && cd $(top_srcdir) \
- && gtags -i $(GTAGS_ARGS) $$here
-
-distclean-tags:
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-
-distdir: $(DISTFILES)
- @case `sed 15q $(srcdir)/NEWS` in \
- *"$(VERSION)"*) : ;; \
- *) \
- echo "NEWS not updated; not releasing" 1>&2; \
- exit 1;; \
- esac
- $(am__remove_distdir)
- mkdir $(distdir)
- $(mkdir_p) $(distdir)/. $(distdir)/all $(distdir)/include $(distdir)/intl $(distdir)/m4 $(distdir)/po
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
- list='$(DISTFILES)'; for file in $$list; do \
- case $$file in \
- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
- esac; \
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
- if test "$$dir" != "$$file" && test "$$dir" != "."; then \
- dir="/$$dir"; \
- $(mkdir_p) "$(distdir)$$dir"; \
- else \
- dir=''; \
- fi; \
- if test -d $$d/$$file; then \
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
- cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
- fi; \
- cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
- else \
- test -f $(distdir)/$$file \
- || cp -p $$d/$$file $(distdir)/$$file \
- || exit 1; \
- fi; \
- done
- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
- if test "$$subdir" = .; then :; else \
- test -d "$(distdir)/$$subdir" \
- || $(mkdir_p) "$(distdir)/$$subdir" \
- || exit 1; \
- distdir=`$(am__cd) $(distdir) && pwd`; \
- top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
- (cd $$subdir && \
- $(MAKE) $(AM_MAKEFLAGS) \
- top_distdir="$$top_distdir" \
- distdir="$$distdir/$$subdir" \
- distdir) \
- || exit 1; \
- fi; \
- done
- $(MAKE) $(AM_MAKEFLAGS) \
- top_distdir="$(top_distdir)" distdir="$(distdir)" \
- dist-hook
- -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
- ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
- ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
- ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
- || chmod -R a+r $(distdir)
-dist-gzip: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
- $(am__remove_distdir)
-
-dist-bzip2: distdir
- tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
- $(am__remove_distdir)
-
-dist-tarZ: distdir
- tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
- $(am__remove_distdir)
-
-dist-shar: distdir
- shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
- $(am__remove_distdir)
-
-dist dist-all: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
- $(am__remove_distdir)
-
-# This target untars the dist file and tries a VPATH configuration. Then
-# it guarantees that the distribution is self-contained by making another
-# tarfile.
-distcheck: dist
- case '$(DIST_ARCHIVES)' in \
- *.tar.gz*) \
- GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
- *.tar.bz2*) \
- bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
- *.tar.Z*) \
- uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
- *.shar.gz*) \
- GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
- *.zip*) \
- unzip $(distdir).zip ;;\
- esac
- chmod -R a-w $(distdir); chmod a+w $(distdir)
- mkdir $(distdir)/_build
- mkdir $(distdir)/_inst
- chmod a-w $(distdir)
- dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
- && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
- && cd $(distdir)/_build \
- && ../configure --srcdir=.. --prefix="$$dc_install_base" \
- --with-included-gettext \
- $(DISTCHECK_CONFIGURE_FLAGS) \
- && $(MAKE) $(AM_MAKEFLAGS) \
- && $(MAKE) $(AM_MAKEFLAGS) dvi \
- && $(MAKE) $(AM_MAKEFLAGS) check \
- && $(MAKE) $(AM_MAKEFLAGS) install \
- && $(MAKE) $(AM_MAKEFLAGS) installcheck \
- && $(MAKE) $(AM_MAKEFLAGS) uninstall \
- && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
- distuninstallcheck \
- && chmod -R a-w "$$dc_install_base" \
- && ({ \
- (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
- && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
- distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
- } || { rm -rf "$$dc_destdir"; exit 1; }) \
- && rm -rf "$$dc_destdir" \
- && $(MAKE) $(AM_MAKEFLAGS) dist \
- && rm -rf $(DIST_ARCHIVES) \
- && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
- $(am__remove_distdir)
- @(echo "$(distdir) archives ready for distribution: "; \
- list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
- sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'
-distuninstallcheck:
- @cd $(distuninstallcheck_dir) \
- && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
- || { echo "ERROR: files left after uninstall:" ; \
- if test -n "$(DESTDIR)"; then \
- echo " (check DESTDIR support)"; \
- fi ; \
- $(distuninstallcheck_listfiles) ; \
- exit 1; } >&2
-distcleancheck: distclean
- @if test '$(srcdir)' = . ; then \
- echo "ERROR: distcleancheck can only run from a VPATH build" ; \
- exit 1 ; \
- fi
- @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
- || { echo "ERROR: files left in build directory after distclean:" ; \
- $(distcleancheck_listfiles) ; \
- exit 1; } >&2
-check-am: all-am
-check: $(BUILT_SOURCES)
- $(MAKE) $(AM_MAKEFLAGS) check-recursive
-all-am: Makefile $(DATA) $(HEADERS) config.h
-installdirs: installdirs-recursive
-installdirs-am:
- for dir in "$(DESTDIR)$(pkgdocdir)" "$(DESTDIR)$(pkgincludedir)"; do \
- test -z "$$dir" || $(mkdir_p) "$$dir"; \
- done
-install: $(BUILT_SOURCES)
- $(MAKE) $(AM_MAKEFLAGS) install-recursive
-install-exec: install-exec-recursive
-install-data: install-data-recursive
-uninstall: uninstall-recursive
-
-install-am: all-am
- @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-installcheck: installcheck-recursive
-install-strip:
- $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
- install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
- `test -z '$(STRIP)' || \
- echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
-mostlyclean-generic:
-
-clean-generic:
-
-distclean-generic:
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-
-maintainer-clean-generic:
- @echo "This command is intended for maintainers to use"
- @echo "it deletes files that may require special tools to rebuild."
- -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
- -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
-clean: clean-recursive
-
-clean-am: clean-generic clean-libtool mostlyclean-am
-
-distclean: distclean-recursive
- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
- -rm -f Makefile
-distclean-am: clean-am distclean-generic distclean-hdr \
- distclean-libtool distclean-tags
-
-dvi: dvi-recursive
-
-dvi-am:
-
-html: html-recursive
-
-info: info-recursive
-
-info-am:
-
-install-data-am: install-pkgdocDATA install-pkgincludeHEADERS
-
-install-exec-am:
-
-install-info: install-info-recursive
-
-install-man:
-
-installcheck-am:
-
-maintainer-clean: maintainer-clean-recursive
- -rm -f $(am__CONFIG_DISTCLEAN_FILES)
- -rm -rf $(top_srcdir)/autom4te.cache
- -rm -f Makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
-
-mostlyclean: mostlyclean-recursive
-
-mostlyclean-am: mostlyclean-generic mostlyclean-libtool
-
-pdf: pdf-recursive
-
-pdf-am:
-
-ps: ps-recursive
-
-ps-am:
-
-uninstall-am: uninstall-info-am uninstall-pkgdocDATA \
- uninstall-pkgincludeHEADERS
-
-uninstall-info: uninstall-info-recursive
-
-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \
- check-am clean clean-generic clean-libtool clean-recursive \
- ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
- dist-hook dist-shar dist-tarZ dist-zip distcheck distclean \
- distclean-generic distclean-hdr distclean-libtool \
- distclean-recursive distclean-tags distcleancheck distdir \
- distuninstallcheck dvi dvi-am html html-am info info-am \
- install install-am install-data install-data-am install-exec \
- install-exec-am install-info install-info-am install-man \
- install-pkgdocDATA install-pkgincludeHEADERS install-strip \
- installcheck installcheck-am installdirs installdirs-am \
- maintainer-clean maintainer-clean-generic \
- maintainer-clean-recursive mostlyclean mostlyclean-generic \
- mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \
- tags tags-recursive uninstall uninstall-am uninstall-info-am \
- uninstall-pkgdocDATA uninstall-pkgincludeHEADERS
-
-
-dist-hook:
- mv $(distdir)/include/config.h.old $(distdir)/config.h
- if test -f $(top_srcdir)/update-changelog; then \
- cd $(top_srcdir); \
- ./update-changelog; \
- cp $(top_srcdir)/ChangeLog $(top_distdir); \
- fi
-
-dist-zip: distdir
- -chmod -R a+r $(distdir)
- zip -rql $(distdir).zip $(distdir)
- -rm -rf $(distdir)
-# Tell versions [3.59,3.63) of GNU make to not export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:
diff --git a/packages/node-libofx/OpenSP-1.5.2/NEWS b/packages/node-libofx/OpenSP-1.5.2/NEWS
deleted file mode 100644
index 3921577e121..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/NEWS
+++ /dev/null
@@ -1,155 +0,0 @@
-Changes in OpenSP 1.5.2
-
-* Support for version 4.0 and 4.1 of the GNU C++ compiler.
-* Added doc building and config option.
-* Updated local gettext.
-* Added config option to turn off DTDDECL support.
-* Update 'de' and 'fr' translations; add new 'tr' translation.
-* Add more tests. (Karl Eichwalder)
-
-Changes in OpenSP 1.5.1
-
-* Enable run time selection of message format with SP_MESSAGE_FORMAT
- environment variable. Value is one of XML, NONE, TRADITIONAL (Nick Kew)
-
-* Add support for restricted files option to generic API (Nick Kew)
-
-* Add support for http redirection (Nick Kew)
-
-* Add support for specifying the user agent at run time with the
- SP_HTTP_USER_AGENT environment variable (Nick Kew)
-
-* Add support for specifying Accept: headers with the
- SP_HTTP_ACCEPT environment variable (Nick Kew)
-
-* Fix for Mac OS X/Darwin compilation (Peter O'Gorman)
-
-* Build Infrastructure/Localisation enhancements (Neil Roeth)
-
-* Enhancements to osx. Preserve case option, security fixes (Jessica Perry Hekman)
-
-* Start adding a testsuite. (Karl Eichwalder)
-
-Changes in OpenSP 1.5
-
-* Fix crash when "-m" option specified.
-
-* Updated Translations (new "fr" translation).
-
-Changes in OpenSP 1.5pre9
-
-* Support for "--restricted" option to restrict parsing of web based documents
- to local files only.
-
-Changes in OpenSP 1.5pre8
-
-* Support for newer autoconf, gettext tools
-
-* Added a -x command line option to osx, which allows users to
- say whether they want sdata entities transformed into PIs or treated like
- normal entities (the default is the latter, which is how osx always
- behaved before this change). Contributed by Jessica Hekman.
-
-Changes in OpenSP 1.5pre7
-
-* Option to produce error messages formatted as XML from Nick Kew
- enable with ./configure --enable-xml-messages
-
-* Japanese Translation from SATO Satoru
-
-* Changed the way in which MessageFragments identify the module within
- which their text resides (libModule, appModule, xModule) in order to
- support Windows applications that use DLLs that use SP's DLL, where
- the intervening DLLs also define messages to be used with the SP
- message handling infrastructure. Patch contributed by Peter Newcomb
- of Epremis Corp.
-
-* Enhancements to osx. Contributed by Jessica Perry Hekman, Dynamic Diagrams.
-
-* Added support for the PI-based architecture use declaration syntax
- defined by Amendment 1 to ISO/IEC 10744:1997 (HyTime). This makes
- it possible to specify architectural support attributes when using
- architectures with XML, and is generally simpler than the original
- syntax. See http://www.y12.doe.gov/sgml/wg8/document/1985.htm for
- details. Patch contributed by Peter Newcomb of Epremis Corp.
-
-* Adds the architecture public id to the information passed to
- implementations of ArcDirector. This is especially important when
- using the PI-based architecture use declaration syntax, since there
- may be no Notation object from which to get the information. Patch
- contributed by Peter Newcomb of Epremis Corp.
-
-Changes in OpenSP 1.5pre6
-
-* RPM spec file updates and corrections from Terje Bless
-
-* Adapt SP patch from Liam Quinn that adds a HTTP/1.0 Host header to HTTP
- requests. Necessary to fetch DTDs specified in SYSTEM identifiers
- when the DTD resides on a name-based "Virtual Host".
- Thanks to 'tbe'.
-
-* Some GCC >= 2.96 fixes and other build improvements
-
-* A few minor documentation improvements, thanks to Terje Bless
-
-* require autoconf 2.52; fix some autoconf problems for the new version
-
-Changes in OpenSP 1.5pre5
-
-* Fix 32-bit assumptions so we build on 64-bit platforms such
- as Alpha.
-
-* Enable internationalized builds on Win32
-
-* Other Win32 fixes
-
-* Re-instate the '-widref' option which was accidentally removed.
-
-* New output options (--option): comment, omitted, tagomit and attromit;
- this shows comments and implied elements and/or attributes.
- Patch from Robert Braddock.
-
-* German translation updates
-
-* Build hygene
-
-* Autoconf fix affecting at least some gcc 2.7.x installations
-
-Changes in OpenSP 1.5pre4
-
-* More of Annex K supported: Common data attributes can now be
- specified in external entity declarations.
-
-* The architecture engine supports #MAPTOKEN.
-
-* The multibyte version of OpenSP now uses 32bit chars and supports
- the full UTF-16 range 0x0000-0x10ffff.
-
-Changes in OpenSP 1.4
-
-* Support for the koi8-r (RFC 1489) encoding.
-
-* OpenSP now supports long cmdline options.
-
-* OpenSP is internationalized (currenly German and Swedish translations are
- provided).
-
-* New option -h or --help shows a list of all available options with
- descriptions.
-
-* New options -n and -x to see message numbers/relevant clauses with messages.
-
-* More of Annex K supported: SGML declarations on subdocs,
- DATA declared value for attributes, DTD data entities and
- DTD notations for doctypes, complete IMPLYDEF support,
- ENTITIES REF constraints, URN parsing. Many new -w flags.
-
-* DTDDECL supported.
-
-* New spcat cmdline interface to the catalog manager.
-
-Changes in OpenSP 1.3.4
-
-* Added the Entity classes to the public interface of the library/dll.
-
-1.3.3 The begin
diff --git a/packages/node-libofx/OpenSP-1.5.2/OpenSP-1.5.2.spec b/packages/node-libofx/OpenSP-1.5.2/OpenSP-1.5.2.spec
deleted file mode 100644
index b9a78b5d5bb..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/OpenSP-1.5.2.spec
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright (C) 2000 Matthias Clasen
-# See the file COPYING for copying permissions.
-
-Summary: The OpenJade Group's SGML and XML parsing tools
-Name: OpenSP
-Version: 1.5.2
-Release: 1
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
-License: GPL
-Group: Applications/Text
-Source: http://download.sourceforge.net/openjade/OpenSP-1.5.2.tar.gz
-URL: http://openjade.sourceforge.net/
-Requires: OpenSP-lib
-
-%description
-This package is a collection of SGML/XML tools called OpenSP. It is a fork from
-James Clark's SP suite. These tools are used to parse, validate, and normalize
-SGML and XML files.
-
-%package lib
-Summary: Runtime library for the OpenJade group's SP suite
-Group: System Environment/Libraries
-
-%description lib
-This is the SP suite's shared library runtime support. This C++
-library contains entity management functions, parsing functions, and
-other functions useful for SGML/XML/DSSSL development.
-
-%package devel
-Summary: Libraries and include files for developing OpenSP applications.
-Group: Development/Libraries
-
-%description devel
-This contains include files and libraries for OpenSP.
-This C++ library contains entity management functions, parsing functions,
-and other functions useful for SGML/XML/DSSSL development.
-
-%prep
-# check that rpm is new enough to know internal macros like %{_prefix}
-rpmversion=`rpm -q --queryformat '%{RPMVERSION}' rpm | cut -d. -f1`
-[ ${rpmversion} -lt 3 ] && { echo "please update rpm" exit 1 ; }
-# unpack source .tar.gz package
-%setup
-
-%build
-# configure build system according to rpm settings
-./configure --prefix=%{_prefix} --exec-prefix=%{_exec_prefix} --bindir=%{_bindir} --sbindir=%{_sbindir} --libexecdir=%{_libexecdir} --datadir=%{_datadir} --sysconfdir=%{_sysconfdir} --sharedstatedir=%{_sharedstatedir} --localstatedir=%{_localstatedir} --libdir=%{_libdir} --includedir=%{_includedir} --oldincludedir=%{_oldincludedir} --infodir=%{_infodir} --mandir=%{_mandir}
-# compile and link
-make CFLAGS="${RPM_OPT_FLAGS}"
-
-%install
-# install all files
-make "DESTDIR=${RPM_BUILD_ROOT}" install
-
-%clean
-test "$RPM_BUILD_ROOT" = "/" || rm -rf "$RPM_BUILD_ROOT"
-
-%files
-%defattr(-, root, root)
-%{_bindir}/*
-%{_datadir}/OpenSP/*
-%doc %{_datadir}/doc/OpenSP/*
-%doc %{_mandir}/man1/*
-
-%files lib
-%defattr(-, root, root)
-%{_libdir}/*.so.*
-%{_datadir}/locale/*/LC_MESSAGES/sp4.mo
-
-%files devel
-%defattr(-, root, root)
-%{_libdir}/lib*.so
-%{_libdir}/lib*.a
-%{_libdir}/lib*.la
-%{_includedir}/OpenSP/*
-
-%changelog
-* Fri Aug 26 2005 Terje Bless
-- Slightly tweak spec towards Fedora guidelines;
- for Vendor, Packager, Copyright vs. License, and BuildRoot.
-
-* Fri Apr 09 2004 Terje Bless
-- Add man pages to the "files" section for OpenSP.
-- Use _datadir macro for doc files (Karl Eichwalder and Ville Skytta).
-- Tweak name of l10n files; they get the lib's major rev appended.
-
-* Wed Feb 21 2001 Terje Bless
-- Fixed name of l10n message files ("OpenSP" -> "sp").
-
-* Tue Feb 20 2001 Terje Bless
-- Tweaked strings, moved to Sourceforge.
diff --git a/packages/node-libofx/OpenSP-1.5.2/README b/packages/node-libofx/OpenSP-1.5.2/README
deleted file mode 100644
index 64913c650aa..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/README
+++ /dev/null
@@ -1,18 +0,0 @@
-Copyright (c) 1994, 1995, 1996 James Clark, 1999 Matthias Clasen
-
-This directory contains an SGML parser called OpenSP.
-
-See the file COPYING for copying permission.
-
-This is a production release.
-
-All documentation is in HTML format in the doc directory. Start with
-doc/index.htm.
-
-The home page for OpenSP and OpenJade can be found at
-
-
-Please report any bugs you find.
-See .
-
-The OpenJade Team
diff --git a/packages/node-libofx/OpenSP-1.5.2/SP.dsw b/packages/node-libofx/OpenSP-1.5.2/SP.dsw
deleted file mode 100644
index 8f6510f61a1..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/SP.dsw
+++ /dev/null
@@ -1,118 +0,0 @@
-Microsoft Developer Studio Workspace File, Format Version 6.00
-# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
-
-###############################################################################
-
-Project: "lib"=.\lib\lib.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Project: "nsgmls"=.\nsgmls\nsgmls.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
- Begin Project Dependency
- Project_Dep_Name lib
- End Project Dependency
-}}}
-
-###############################################################################
-
-Project: "sgmlnorm"=.\sgmlnorm\sgmlnorm.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
- Begin Project Dependency
- Project_Dep_Name lib
- End Project Dependency
-}}}
-
-###############################################################################
-
-Project: "spam"=.\spam\spam.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
- Begin Project Dependency
- Project_Dep_Name lib
- End Project Dependency
-}}}
-
-###############################################################################
-
-Project: "spent"=.\spent\spent.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
- Begin Project Dependency
- Project_Dep_Name lib
- End Project Dependency
-}}}
-
-###############################################################################
-
-Project: "sx"=.\sx\sx.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
- Begin Project Dependency
- Project_Dep_Name lib
- End Project Dependency
-}}}
-
-###############################################################################
-
-Project: "spcat"=.\spcat\spcat.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
- Begin Project Dependency
- Project_Dep_Name lib
- End Project Dependency
-}}}
-
-###############################################################################
-
-Global:
-
-Package=<5>
-{{{
-}}}
-
-Package=<3>
-{{{
-}}}
-
-###############################################################################
diff --git a/packages/node-libofx/OpenSP-1.5.2/SP.mak b/packages/node-libofx/OpenSP-1.5.2/SP.mak
deleted file mode 100644
index d482d3bd0ab..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/SP.mak
+++ /dev/null
@@ -1,22618 +0,0 @@
-# Microsoft Developer Studio Generated NMAKE File, Format Version 4.20
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
-# TARGTYPE "Win32 (x86) External Target" 0x0106
-# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
-
-!IF "$(CFG)" == ""
-CFG=sx - Win32 Debug
-!MESSAGE No configuration specified. Defaulting to sx - Win32 Debug.
-!ENDIF
-
-!IF "$(CFG)" != "lib - Win32 Release" && "$(CFG)" != "lib - Win32 Debug" &&\
- "$(CFG)" != "nsgmls - Win32 Release" && "$(CFG)" != "nsgmls - Win32 Debug" &&\
- "$(CFG)" != "spam - Win32 Release" && "$(CFG)" != "spam - Win32 Debug" &&\
- "$(CFG)" != "spent - Win32 Release" && "$(CFG)" != "spent - Win32 Debug" &&\
- "$(CFG)" != "sgmlnorm - Win32 Release" && "$(CFG)" != "sgmlnorm - Win32 Debug"\
- && "$(CFG)" != "all - Win32 Release" && "$(CFG)" != "all - Win32 Debug" &&\
- "$(CFG)" != "sx - Win32 Release" && "$(CFG)" != "sx - 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 "SP.mak" CFG="sx - Win32 Debug"
-!MESSAGE
-!MESSAGE Possible choices for configuration are:
-!MESSAGE
-!MESSAGE "lib - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "lib - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "nsgmls - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "nsgmls - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE "spam - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "spam - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE "spent - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "spent - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE "sgmlnorm - Win32 Release" (based on\
- "Win32 (x86) Console Application")
-!MESSAGE "sgmlnorm - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE "all - Win32 Release" (based on "Win32 (x86) External Target")
-!MESSAGE "all - Win32 Debug" (based on "Win32 (x86) External Target")
-!MESSAGE "sx - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "sx - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE
-!ERROR An invalid configuration is specified.
-!ENDIF
-
-!IF "$(OS)" == "Windows_NT"
-NULL=
-!ELSE
-NULL=nul
-!ENDIF
-################################################################################
-# Begin Project
-# PROP Target_Last_Scanned "lib - Win32 Debug"
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "lib\Release"
-# PROP BASE Intermediate_Dir "lib\Release"
-# PROP BASE Target_Dir "lib"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "lib\Release"
-# PROP Intermediate_Dir "lib\Release"
-# PROP Target_Dir "lib"
-OUTDIR=.\lib\Release
-INTDIR=.\lib\Release
-
-ALL : ".\bin\sp133.dll"
-
-CLEAN :
- -@erase "$(INTDIR)\Allocator.obj"
- -@erase "$(INTDIR)\app_inst.obj"
- -@erase "$(INTDIR)\arc_inst.obj"
- -@erase "$(INTDIR)\ArcEngine.obj"
- -@erase "$(INTDIR)\assert.obj"
- -@erase "$(INTDIR)\Attribute.obj"
- -@erase "$(INTDIR)\Big5CodingSystem.obj"
- -@erase "$(INTDIR)\CharsetDecl.obj"
- -@erase "$(INTDIR)\CharsetInfo.obj"
- -@erase "$(INTDIR)\CharsetRegistry.obj"
- -@erase "$(INTDIR)\CmdLineApp.obj"
- -@erase "$(INTDIR)\CodingSystem.obj"
- -@erase "$(INTDIR)\CodingSystemKit.obj"
- -@erase "$(INTDIR)\ConsoleOutput.obj"
- -@erase "$(INTDIR)\ContentState.obj"
- -@erase "$(INTDIR)\ContentToken.obj"
- -@erase "$(INTDIR)\DescriptorManager.obj"
- -@erase "$(INTDIR)\Dtd.obj"
- -@erase "$(INTDIR)\ElementType.obj"
- -@erase "$(INTDIR)\Entity.obj"
- -@erase "$(INTDIR)\EntityApp.obj"
- -@erase "$(INTDIR)\EntityCatalog.obj"
- -@erase "$(INTDIR)\EntityDecl.obj"
- -@erase "$(INTDIR)\EntityManager.obj"
- -@erase "$(INTDIR)\entmgr_inst.obj"
- -@erase "$(INTDIR)\ErrnoMessageArg.obj"
- -@erase "$(INTDIR)\ErrorCountEventHandler.obj"
- -@erase "$(INTDIR)\EUCJPCodingSystem.obj"
- -@erase "$(INTDIR)\Event.obj"
- -@erase "$(INTDIR)\EventGenerator.obj"
- -@erase "$(INTDIR)\ExtendEntityManager.obj"
- -@erase "$(INTDIR)\ExternalId.obj"
- -@erase "$(INTDIR)\Fixed2CodingSystem.obj"
- -@erase "$(INTDIR)\GenericEventHandler.obj"
- -@erase "$(INTDIR)\Group.obj"
- -@erase "$(INTDIR)\Hash.obj"
- -@erase "$(INTDIR)\Id.obj"
- -@erase "$(INTDIR)\IdentityCodingSystem.obj"
- -@erase "$(INTDIR)\IListBase.obj"
- -@erase "$(INTDIR)\InputSource.obj"
- -@erase "$(INTDIR)\InternalInputSource.obj"
- -@erase "$(INTDIR)\lib.pch"
- -@erase "$(INTDIR)\lib.res"
- -@erase "$(INTDIR)\Link.obj"
- -@erase "$(INTDIR)\LinkProcess.obj"
- -@erase "$(INTDIR)\LiteralStorage.obj"
- -@erase "$(INTDIR)\Location.obj"
- -@erase "$(INTDIR)\Lpd.obj"
- -@erase "$(INTDIR)\Markup.obj"
- -@erase "$(INTDIR)\Message.obj"
- -@erase "$(INTDIR)\MessageArg.obj"
- -@erase "$(INTDIR)\MessageEventHandler.obj"
- -@erase "$(INTDIR)\MessageFormatter.obj"
- -@erase "$(INTDIR)\MessageReporter.obj"
- -@erase "$(INTDIR)\MessageTable.obj"
- -@erase "$(INTDIR)\ModeInfo.obj"
- -@erase "$(INTDIR)\Notation.obj"
- -@erase "$(INTDIR)\NotationStorage.obj"
- -@erase "$(INTDIR)\NumericCharRefOrigin.obj"
- -@erase "$(INTDIR)\OffsetOrderedList.obj"
- -@erase "$(INTDIR)\OpenElement.obj"
- -@erase "$(INTDIR)\OutputByteStream.obj"
- -@erase "$(INTDIR)\OutputCharStream.obj"
- -@erase "$(INTDIR)\OutputState.obj"
- -@erase "$(INTDIR)\Param.obj"
- -@erase "$(INTDIR)\parseAttribute.obj"
- -@erase "$(INTDIR)\parseCommon.obj"
- -@erase "$(INTDIR)\parseDecl.obj"
- -@erase "$(INTDIR)\parseInstance.obj"
- -@erase "$(INTDIR)\parseMode.obj"
- -@erase "$(INTDIR)\parseParam.obj"
- -@erase "$(INTDIR)\Parser.obj"
- -@erase "$(INTDIR)\parser_inst.obj"
- -@erase "$(INTDIR)\ParserApp.obj"
- -@erase "$(INTDIR)\ParserEventGeneratorKit.obj"
- -@erase "$(INTDIR)\ParserMessages.obj"
- -@erase "$(INTDIR)\ParserOptions.obj"
- -@erase "$(INTDIR)\ParserState.obj"
- -@erase "$(INTDIR)\parseSd.obj"
- -@erase "$(INTDIR)\Partition.obj"
- -@erase "$(INTDIR)\PosixStorage.obj"
- -@erase "$(INTDIR)\Recognizer.obj"
- -@erase "$(INTDIR)\RewindStorageObject.obj"
- -@erase "$(INTDIR)\Sd.obj"
- -@erase "$(INTDIR)\SdText.obj"
- -@erase "$(INTDIR)\SearchResultMessageArg.obj"
- -@erase "$(INTDIR)\SGMLApplication.obj"
- -@erase "$(INTDIR)\SgmlParser.obj"
- -@erase "$(INTDIR)\ShortReferenceMap.obj"
- -@erase "$(INTDIR)\SJISCodingSystem.obj"
- -@erase "$(INTDIR)\SOEntityCatalog.obj"
- -@erase "$(INTDIR)\splib.obj"
- -@erase "$(INTDIR)\StdioStorage.obj"
- -@erase "$(INTDIR)\StorageManager.obj"
- -@erase "$(INTDIR)\StringVectorMessageArg.obj"
- -@erase "$(INTDIR)\Syntax.obj"
- -@erase "$(INTDIR)\Text.obj"
- -@erase "$(INTDIR)\TokenMessageArg.obj"
- -@erase "$(INTDIR)\TranslateCodingSystem.obj"
- -@erase "$(INTDIR)\TrieBuilder.obj"
- -@erase "$(INTDIR)\TypeId.obj"
- -@erase "$(INTDIR)\Undo.obj"
- -@erase "$(INTDIR)\UnicodeCodingSystem.obj"
- -@erase "$(INTDIR)\UnivCharsetDesc.obj"
- -@erase "$(INTDIR)\URLStorage.obj"
- -@erase "$(INTDIR)\UTF8CodingSystem.obj"
- -@erase "$(INTDIR)\Win32CodingSystem.obj"
- -@erase "$(INTDIR)\WinApp.obj"
- -@erase "$(INTDIR)\WinInetStorage.obj"
- -@erase "$(INTDIR)\xentmgr_inst.obj"
- -@erase "$(INTDIR)\XMLCodingSystem.obj"
- -@erase "$(OUTDIR)\sp133.exp"
- -@erase "$(OUTDIR)\sp133.lib"
- -@erase ".\bin\sp133.dll"
-
-"$(OUTDIR)" :
- if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-CPP=cl.exe
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /c
-# ADD CPP /nologo /MD /W3 /GX /O2 /I "include" /I "generic" /D "NDEBUG" /D "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /Yu"splib.h" /c
-CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "include" /I "generic" /D "NDEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/" /c
-CPP_OBJS=.\lib\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 0x809 /d "NDEBUG"
-# ADD RSC /l 0x809 /d "NDEBUG"
-RSC_PROJ=/l 0x809 /fo"$(INTDIR)/lib.res" /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/lib.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 /nologo /subsystem:windows /dll /machine:I386
-# ADD LINK32 wininet.lib wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /machine:I386 /out:"bin/sp133.dll"
-# SUBTRACT LINK32 /profile
-LINK32_FLAGS=wininet.lib wsock32.lib kernel32.lib user32.lib gdi32.lib\
- winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib\
- uuid.lib /nologo /subsystem:windows /dll /incremental:no\
- /pdb:"$(OUTDIR)/sp133.pdb" /machine:I386 /out:"bin/sp133.dll"\
- /implib:"$(OUTDIR)/sp133.lib"
-LINK32_OBJS= \
- "$(INTDIR)\Allocator.obj" \
- "$(INTDIR)\app_inst.obj" \
- "$(INTDIR)\arc_inst.obj" \
- "$(INTDIR)\ArcEngine.obj" \
- "$(INTDIR)\assert.obj" \
- "$(INTDIR)\Attribute.obj" \
- "$(INTDIR)\Big5CodingSystem.obj" \
- "$(INTDIR)\CharsetDecl.obj" \
- "$(INTDIR)\CharsetInfo.obj" \
- "$(INTDIR)\CharsetRegistry.obj" \
- "$(INTDIR)\CmdLineApp.obj" \
- "$(INTDIR)\CodingSystem.obj" \
- "$(INTDIR)\CodingSystemKit.obj" \
- "$(INTDIR)\ConsoleOutput.obj" \
- "$(INTDIR)\ContentState.obj" \
- "$(INTDIR)\ContentToken.obj" \
- "$(INTDIR)\DescriptorManager.obj" \
- "$(INTDIR)\Dtd.obj" \
- "$(INTDIR)\ElementType.obj" \
- "$(INTDIR)\Entity.obj" \
- "$(INTDIR)\EntityApp.obj" \
- "$(INTDIR)\EntityCatalog.obj" \
- "$(INTDIR)\EntityDecl.obj" \
- "$(INTDIR)\EntityManager.obj" \
- "$(INTDIR)\entmgr_inst.obj" \
- "$(INTDIR)\ErrnoMessageArg.obj" \
- "$(INTDIR)\ErrorCountEventHandler.obj" \
- "$(INTDIR)\EUCJPCodingSystem.obj" \
- "$(INTDIR)\Event.obj" \
- "$(INTDIR)\EventGenerator.obj" \
- "$(INTDIR)\ExtendEntityManager.obj" \
- "$(INTDIR)\ExternalId.obj" \
- "$(INTDIR)\Fixed2CodingSystem.obj" \
- "$(INTDIR)\GenericEventHandler.obj" \
- "$(INTDIR)\Group.obj" \
- "$(INTDIR)\Hash.obj" \
- "$(INTDIR)\Id.obj" \
- "$(INTDIR)\IdentityCodingSystem.obj" \
- "$(INTDIR)\IListBase.obj" \
- "$(INTDIR)\InputSource.obj" \
- "$(INTDIR)\InternalInputSource.obj" \
- "$(INTDIR)\lib.res" \
- "$(INTDIR)\Link.obj" \
- "$(INTDIR)\LinkProcess.obj" \
- "$(INTDIR)\LiteralStorage.obj" \
- "$(INTDIR)\Location.obj" \
- "$(INTDIR)\Lpd.obj" \
- "$(INTDIR)\Markup.obj" \
- "$(INTDIR)\Message.obj" \
- "$(INTDIR)\MessageArg.obj" \
- "$(INTDIR)\MessageEventHandler.obj" \
- "$(INTDIR)\MessageFormatter.obj" \
- "$(INTDIR)\MessageReporter.obj" \
- "$(INTDIR)\MessageTable.obj" \
- "$(INTDIR)\ModeInfo.obj" \
- "$(INTDIR)\Notation.obj" \
- "$(INTDIR)\NotationStorage.obj" \
- "$(INTDIR)\NumericCharRefOrigin.obj" \
- "$(INTDIR)\OffsetOrderedList.obj" \
- "$(INTDIR)\OpenElement.obj" \
- "$(INTDIR)\OutputByteStream.obj" \
- "$(INTDIR)\OutputCharStream.obj" \
- "$(INTDIR)\OutputState.obj" \
- "$(INTDIR)\Param.obj" \
- "$(INTDIR)\parseAttribute.obj" \
- "$(INTDIR)\parseCommon.obj" \
- "$(INTDIR)\parseDecl.obj" \
- "$(INTDIR)\parseInstance.obj" \
- "$(INTDIR)\parseMode.obj" \
- "$(INTDIR)\parseParam.obj" \
- "$(INTDIR)\Parser.obj" \
- "$(INTDIR)\parser_inst.obj" \
- "$(INTDIR)\ParserApp.obj" \
- "$(INTDIR)\ParserEventGeneratorKit.obj" \
- "$(INTDIR)\ParserMessages.obj" \
- "$(INTDIR)\ParserOptions.obj" \
- "$(INTDIR)\ParserState.obj" \
- "$(INTDIR)\parseSd.obj" \
- "$(INTDIR)\Partition.obj" \
- "$(INTDIR)\PosixStorage.obj" \
- "$(INTDIR)\Recognizer.obj" \
- "$(INTDIR)\RewindStorageObject.obj" \
- "$(INTDIR)\Sd.obj" \
- "$(INTDIR)\SdText.obj" \
- "$(INTDIR)\SearchResultMessageArg.obj" \
- "$(INTDIR)\SGMLApplication.obj" \
- "$(INTDIR)\SgmlParser.obj" \
- "$(INTDIR)\ShortReferenceMap.obj" \
- "$(INTDIR)\SJISCodingSystem.obj" \
- "$(INTDIR)\SOEntityCatalog.obj" \
- "$(INTDIR)\splib.obj" \
- "$(INTDIR)\StdioStorage.obj" \
- "$(INTDIR)\StorageManager.obj" \
- "$(INTDIR)\StringVectorMessageArg.obj" \
- "$(INTDIR)\Syntax.obj" \
- "$(INTDIR)\Text.obj" \
- "$(INTDIR)\TokenMessageArg.obj" \
- "$(INTDIR)\TranslateCodingSystem.obj" \
- "$(INTDIR)\TrieBuilder.obj" \
- "$(INTDIR)\TypeId.obj" \
- "$(INTDIR)\Undo.obj" \
- "$(INTDIR)\UnicodeCodingSystem.obj" \
- "$(INTDIR)\UnivCharsetDesc.obj" \
- "$(INTDIR)\URLStorage.obj" \
- "$(INTDIR)\UTF8CodingSystem.obj" \
- "$(INTDIR)\Win32CodingSystem.obj" \
- "$(INTDIR)\WinApp.obj" \
- "$(INTDIR)\WinInetStorage.obj" \
- "$(INTDIR)\xentmgr_inst.obj" \
- "$(INTDIR)\XMLCodingSystem.obj"
-
-".\bin\sp133.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "lib\Debug"
-# PROP BASE Intermediate_Dir "lib\Debug"
-# PROP BASE Target_Dir "lib"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "lib\Debug"
-# PROP Intermediate_Dir "lib\Debug"
-# PROP Target_Dir "lib"
-OUTDIR=.\lib\Debug
-INTDIR=.\lib\Debug
-
-ALL : ".\dbgbin\sp133d.dll"
-
-CLEAN :
- -@erase "$(INTDIR)\Allocator.obj"
- -@erase "$(INTDIR)\app_inst.obj"
- -@erase "$(INTDIR)\arc_inst.obj"
- -@erase "$(INTDIR)\ArcEngine.obj"
- -@erase "$(INTDIR)\assert.obj"
- -@erase "$(INTDIR)\Attribute.obj"
- -@erase "$(INTDIR)\Big5CodingSystem.obj"
- -@erase "$(INTDIR)\CharsetDecl.obj"
- -@erase "$(INTDIR)\CharsetInfo.obj"
- -@erase "$(INTDIR)\CharsetRegistry.obj"
- -@erase "$(INTDIR)\CmdLineApp.obj"
- -@erase "$(INTDIR)\CodingSystem.obj"
- -@erase "$(INTDIR)\CodingSystemKit.obj"
- -@erase "$(INTDIR)\ConsoleOutput.obj"
- -@erase "$(INTDIR)\ContentState.obj"
- -@erase "$(INTDIR)\ContentToken.obj"
- -@erase "$(INTDIR)\DescriptorManager.obj"
- -@erase "$(INTDIR)\Dtd.obj"
- -@erase "$(INTDIR)\ElementType.obj"
- -@erase "$(INTDIR)\Entity.obj"
- -@erase "$(INTDIR)\EntityApp.obj"
- -@erase "$(INTDIR)\EntityCatalog.obj"
- -@erase "$(INTDIR)\EntityDecl.obj"
- -@erase "$(INTDIR)\EntityManager.obj"
- -@erase "$(INTDIR)\entmgr_inst.obj"
- -@erase "$(INTDIR)\ErrnoMessageArg.obj"
- -@erase "$(INTDIR)\ErrorCountEventHandler.obj"
- -@erase "$(INTDIR)\EUCJPCodingSystem.obj"
- -@erase "$(INTDIR)\Event.obj"
- -@erase "$(INTDIR)\EventGenerator.obj"
- -@erase "$(INTDIR)\ExtendEntityManager.obj"
- -@erase "$(INTDIR)\ExternalId.obj"
- -@erase "$(INTDIR)\Fixed2CodingSystem.obj"
- -@erase "$(INTDIR)\GenericEventHandler.obj"
- -@erase "$(INTDIR)\Group.obj"
- -@erase "$(INTDIR)\Hash.obj"
- -@erase "$(INTDIR)\Id.obj"
- -@erase "$(INTDIR)\IdentityCodingSystem.obj"
- -@erase "$(INTDIR)\IListBase.obj"
- -@erase "$(INTDIR)\InputSource.obj"
- -@erase "$(INTDIR)\InternalInputSource.obj"
- -@erase "$(INTDIR)\lib.pch"
- -@erase "$(INTDIR)\lib.res"
- -@erase "$(INTDIR)\Link.obj"
- -@erase "$(INTDIR)\LinkProcess.obj"
- -@erase "$(INTDIR)\LiteralStorage.obj"
- -@erase "$(INTDIR)\Location.obj"
- -@erase "$(INTDIR)\Lpd.obj"
- -@erase "$(INTDIR)\Markup.obj"
- -@erase "$(INTDIR)\Message.obj"
- -@erase "$(INTDIR)\MessageArg.obj"
- -@erase "$(INTDIR)\MessageEventHandler.obj"
- -@erase "$(INTDIR)\MessageFormatter.obj"
- -@erase "$(INTDIR)\MessageReporter.obj"
- -@erase "$(INTDIR)\MessageTable.obj"
- -@erase "$(INTDIR)\ModeInfo.obj"
- -@erase "$(INTDIR)\Notation.obj"
- -@erase "$(INTDIR)\NotationStorage.obj"
- -@erase "$(INTDIR)\NumericCharRefOrigin.obj"
- -@erase "$(INTDIR)\OffsetOrderedList.obj"
- -@erase "$(INTDIR)\OpenElement.obj"
- -@erase "$(INTDIR)\OutputByteStream.obj"
- -@erase "$(INTDIR)\OutputCharStream.obj"
- -@erase "$(INTDIR)\OutputState.obj"
- -@erase "$(INTDIR)\Param.obj"
- -@erase "$(INTDIR)\parseAttribute.obj"
- -@erase "$(INTDIR)\parseCommon.obj"
- -@erase "$(INTDIR)\parseDecl.obj"
- -@erase "$(INTDIR)\parseInstance.obj"
- -@erase "$(INTDIR)\parseMode.obj"
- -@erase "$(INTDIR)\parseParam.obj"
- -@erase "$(INTDIR)\Parser.obj"
- -@erase "$(INTDIR)\parser_inst.obj"
- -@erase "$(INTDIR)\ParserApp.obj"
- -@erase "$(INTDIR)\ParserEventGeneratorKit.obj"
- -@erase "$(INTDIR)\ParserMessages.obj"
- -@erase "$(INTDIR)\ParserOptions.obj"
- -@erase "$(INTDIR)\ParserState.obj"
- -@erase "$(INTDIR)\parseSd.obj"
- -@erase "$(INTDIR)\Partition.obj"
- -@erase "$(INTDIR)\PosixStorage.obj"
- -@erase "$(INTDIR)\Recognizer.obj"
- -@erase "$(INTDIR)\RewindStorageObject.obj"
- -@erase "$(INTDIR)\Sd.obj"
- -@erase "$(INTDIR)\SdText.obj"
- -@erase "$(INTDIR)\SearchResultMessageArg.obj"
- -@erase "$(INTDIR)\SGMLApplication.obj"
- -@erase "$(INTDIR)\SgmlParser.obj"
- -@erase "$(INTDIR)\ShortReferenceMap.obj"
- -@erase "$(INTDIR)\SJISCodingSystem.obj"
- -@erase "$(INTDIR)\SOEntityCatalog.obj"
- -@erase "$(INTDIR)\splib.obj"
- -@erase "$(INTDIR)\StdioStorage.obj"
- -@erase "$(INTDIR)\StorageManager.obj"
- -@erase "$(INTDIR)\StringVectorMessageArg.obj"
- -@erase "$(INTDIR)\Syntax.obj"
- -@erase "$(INTDIR)\Text.obj"
- -@erase "$(INTDIR)\TokenMessageArg.obj"
- -@erase "$(INTDIR)\TranslateCodingSystem.obj"
- -@erase "$(INTDIR)\TrieBuilder.obj"
- -@erase "$(INTDIR)\TypeId.obj"
- -@erase "$(INTDIR)\Undo.obj"
- -@erase "$(INTDIR)\UnicodeCodingSystem.obj"
- -@erase "$(INTDIR)\UnivCharsetDesc.obj"
- -@erase "$(INTDIR)\URLStorage.obj"
- -@erase "$(INTDIR)\UTF8CodingSystem.obj"
- -@erase "$(INTDIR)\vc40.pdb"
- -@erase "$(INTDIR)\Win32CodingSystem.obj"
- -@erase "$(INTDIR)\WinApp.obj"
- -@erase "$(INTDIR)\WinInetStorage.obj"
- -@erase "$(INTDIR)\xentmgr_inst.obj"
- -@erase "$(INTDIR)\XMLCodingSystem.obj"
- -@erase "$(OUTDIR)\sp133d.exp"
- -@erase "$(OUTDIR)\sp133d.lib"
- -@erase "$(OUTDIR)\sp133d.pdb"
- -@erase ".\dbgbin\sp133d.dll"
- -@erase ".\dbgbin\sp133d.ilk"
-
-"$(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 "_WINDOWS" /YX /c
-# ADD CPP /nologo /MDd /W3 /GX /Zi /Od /I "include" /I "generic" /D "_DEBUG" /D "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /Yu"splib.h" /c
-CPP_PROJ=/nologo /MDd /W3 /GX /Zi /Od /I "include" /I "generic" /D "_DEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/"\
- /Fd"$(INTDIR)/" /c
-CPP_OBJS=.\lib\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 0x809 /d "_DEBUG"
-# ADD RSC /l 0x809 /d "_DEBUG"
-RSC_PROJ=/l 0x809 /fo"$(INTDIR)/lib.res" /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/lib.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 /nologo /subsystem:windows /dll /debug /machine:I386
-# ADD LINK32 wininet.lib wsock32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:windows /dll /debug /machine:I386 /out:"dbgbin/sp133d.dll"
-LINK32_FLAGS=wininet.lib wsock32.lib kernel32.lib user32.lib gdi32.lib\
- winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib\
- uuid.lib /nologo /subsystem:windows /dll /incremental:yes\
- /pdb:"$(OUTDIR)/sp133d.pdb" /debug /machine:I386 /out:"dbgbin/sp133d.dll"\
- /implib:"$(OUTDIR)/sp133d.lib"
-LINK32_OBJS= \
- "$(INTDIR)\Allocator.obj" \
- "$(INTDIR)\app_inst.obj" \
- "$(INTDIR)\arc_inst.obj" \
- "$(INTDIR)\ArcEngine.obj" \
- "$(INTDIR)\assert.obj" \
- "$(INTDIR)\Attribute.obj" \
- "$(INTDIR)\Big5CodingSystem.obj" \
- "$(INTDIR)\CharsetDecl.obj" \
- "$(INTDIR)\CharsetInfo.obj" \
- "$(INTDIR)\CharsetRegistry.obj" \
- "$(INTDIR)\CmdLineApp.obj" \
- "$(INTDIR)\CodingSystem.obj" \
- "$(INTDIR)\CodingSystemKit.obj" \
- "$(INTDIR)\ConsoleOutput.obj" \
- "$(INTDIR)\ContentState.obj" \
- "$(INTDIR)\ContentToken.obj" \
- "$(INTDIR)\DescriptorManager.obj" \
- "$(INTDIR)\Dtd.obj" \
- "$(INTDIR)\ElementType.obj" \
- "$(INTDIR)\Entity.obj" \
- "$(INTDIR)\EntityApp.obj" \
- "$(INTDIR)\EntityCatalog.obj" \
- "$(INTDIR)\EntityDecl.obj" \
- "$(INTDIR)\EntityManager.obj" \
- "$(INTDIR)\entmgr_inst.obj" \
- "$(INTDIR)\ErrnoMessageArg.obj" \
- "$(INTDIR)\ErrorCountEventHandler.obj" \
- "$(INTDIR)\EUCJPCodingSystem.obj" \
- "$(INTDIR)\Event.obj" \
- "$(INTDIR)\EventGenerator.obj" \
- "$(INTDIR)\ExtendEntityManager.obj" \
- "$(INTDIR)\ExternalId.obj" \
- "$(INTDIR)\Fixed2CodingSystem.obj" \
- "$(INTDIR)\GenericEventHandler.obj" \
- "$(INTDIR)\Group.obj" \
- "$(INTDIR)\Hash.obj" \
- "$(INTDIR)\Id.obj" \
- "$(INTDIR)\IdentityCodingSystem.obj" \
- "$(INTDIR)\IListBase.obj" \
- "$(INTDIR)\InputSource.obj" \
- "$(INTDIR)\InternalInputSource.obj" \
- "$(INTDIR)\lib.res" \
- "$(INTDIR)\Link.obj" \
- "$(INTDIR)\LinkProcess.obj" \
- "$(INTDIR)\LiteralStorage.obj" \
- "$(INTDIR)\Location.obj" \
- "$(INTDIR)\Lpd.obj" \
- "$(INTDIR)\Markup.obj" \
- "$(INTDIR)\Message.obj" \
- "$(INTDIR)\MessageArg.obj" \
- "$(INTDIR)\MessageEventHandler.obj" \
- "$(INTDIR)\MessageFormatter.obj" \
- "$(INTDIR)\MessageReporter.obj" \
- "$(INTDIR)\MessageTable.obj" \
- "$(INTDIR)\ModeInfo.obj" \
- "$(INTDIR)\Notation.obj" \
- "$(INTDIR)\NotationStorage.obj" \
- "$(INTDIR)\NumericCharRefOrigin.obj" \
- "$(INTDIR)\OffsetOrderedList.obj" \
- "$(INTDIR)\OpenElement.obj" \
- "$(INTDIR)\OutputByteStream.obj" \
- "$(INTDIR)\OutputCharStream.obj" \
- "$(INTDIR)\OutputState.obj" \
- "$(INTDIR)\Param.obj" \
- "$(INTDIR)\parseAttribute.obj" \
- "$(INTDIR)\parseCommon.obj" \
- "$(INTDIR)\parseDecl.obj" \
- "$(INTDIR)\parseInstance.obj" \
- "$(INTDIR)\parseMode.obj" \
- "$(INTDIR)\parseParam.obj" \
- "$(INTDIR)\Parser.obj" \
- "$(INTDIR)\parser_inst.obj" \
- "$(INTDIR)\ParserApp.obj" \
- "$(INTDIR)\ParserEventGeneratorKit.obj" \
- "$(INTDIR)\ParserMessages.obj" \
- "$(INTDIR)\ParserOptions.obj" \
- "$(INTDIR)\ParserState.obj" \
- "$(INTDIR)\parseSd.obj" \
- "$(INTDIR)\Partition.obj" \
- "$(INTDIR)\PosixStorage.obj" \
- "$(INTDIR)\Recognizer.obj" \
- "$(INTDIR)\RewindStorageObject.obj" \
- "$(INTDIR)\Sd.obj" \
- "$(INTDIR)\SdText.obj" \
- "$(INTDIR)\SearchResultMessageArg.obj" \
- "$(INTDIR)\SGMLApplication.obj" \
- "$(INTDIR)\SgmlParser.obj" \
- "$(INTDIR)\ShortReferenceMap.obj" \
- "$(INTDIR)\SJISCodingSystem.obj" \
- "$(INTDIR)\SOEntityCatalog.obj" \
- "$(INTDIR)\splib.obj" \
- "$(INTDIR)\StdioStorage.obj" \
- "$(INTDIR)\StorageManager.obj" \
- "$(INTDIR)\StringVectorMessageArg.obj" \
- "$(INTDIR)\Syntax.obj" \
- "$(INTDIR)\Text.obj" \
- "$(INTDIR)\TokenMessageArg.obj" \
- "$(INTDIR)\TranslateCodingSystem.obj" \
- "$(INTDIR)\TrieBuilder.obj" \
- "$(INTDIR)\TypeId.obj" \
- "$(INTDIR)\Undo.obj" \
- "$(INTDIR)\UnicodeCodingSystem.obj" \
- "$(INTDIR)\UnivCharsetDesc.obj" \
- "$(INTDIR)\URLStorage.obj" \
- "$(INTDIR)\UTF8CodingSystem.obj" \
- "$(INTDIR)\Win32CodingSystem.obj" \
- "$(INTDIR)\WinApp.obj" \
- "$(INTDIR)\WinInetStorage.obj" \
- "$(INTDIR)\xentmgr_inst.obj" \
- "$(INTDIR)\XMLCodingSystem.obj"
-
-".\dbgbin\sp133d.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "nsgmls - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "nsgmls\Release"
-# PROP BASE Intermediate_Dir "nsgmls\Release"
-# PROP BASE Target_Dir "nsgmls"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "nsgmls\Release"
-# PROP Intermediate_Dir "nsgmls\Release"
-# PROP Target_Dir "nsgmls"
-OUTDIR=.\nsgmls\Release
-INTDIR=.\nsgmls\Release
-
-ALL : "lib - Win32 Release" ".\bin\nsgmls.exe"
-
-CLEAN :
- -@erase "$(INTDIR)\nsgmls.obj"
- -@erase "$(INTDIR)\nsgmls.res"
- -@erase "$(INTDIR)\nsgmls_inst.obj"
- -@erase "$(INTDIR)\RastEventHandler.obj"
- -@erase "$(INTDIR)\SgmlsEventHandler.obj"
- -@erase "$(INTDIR)\StringSet.obj"
- -@erase ".\bin\nsgmls.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 /I "include" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /YX /c
-CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "include" /D "NDEBUG" /D "_CONSOLE" /D\
- "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE"\
- /Fp"$(INTDIR)/nsgmls.pch" /YX /Fo"$(INTDIR)/" /c
-CPP_OBJS=.\nsgmls\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 0x809 /d "NDEBUG"
-# ADD RSC /l 0x809 /d "NDEBUG"
-RSC_PROJ=/l 0x809 /fo"$(INTDIR)/nsgmls.res" /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/nsgmls.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 /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 /nologo /subsystem:console /machine:I386 /out:"bin/nsgmls.exe"
-# SUBTRACT LINK32 /profile
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo\
- /subsystem:console /incremental:no /pdb:"$(OUTDIR)/nsgmls.pdb" /machine:I386\
- /out:"bin/nsgmls.exe"
-LINK32_OBJS= \
- "$(INTDIR)\nsgmls.obj" \
- "$(INTDIR)\nsgmls.res" \
- "$(INTDIR)\nsgmls_inst.obj" \
- "$(INTDIR)\RastEventHandler.obj" \
- "$(INTDIR)\SgmlsEventHandler.obj" \
- "$(INTDIR)\StringSet.obj" \
- ".\lib\Release\sp133.lib"
-
-".\bin\nsgmls.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "nsgmls - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "nsgmls\Debug"
-# PROP BASE Intermediate_Dir "nsgmls\Debug"
-# PROP BASE Target_Dir "nsgmls"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "nsgmls\Debug"
-# PROP Intermediate_Dir "nsgmls\Debug"
-# PROP Target_Dir "nsgmls"
-OUTDIR=.\nsgmls\Debug
-INTDIR=.\nsgmls\Debug
-
-ALL : "lib - Win32 Debug" ".\dbgbin\nsgmls.exe"
-
-CLEAN :
- -@erase "$(INTDIR)\nsgmls.obj"
- -@erase "$(INTDIR)\nsgmls.res"
- -@erase "$(INTDIR)\nsgmls_inst.obj"
- -@erase "$(INTDIR)\RastEventHandler.obj"
- -@erase "$(INTDIR)\SgmlsEventHandler.obj"
- -@erase "$(INTDIR)\StringSet.obj"
- -@erase "$(INTDIR)\vc40.idb"
- -@erase "$(INTDIR)\vc40.pdb"
- -@erase "$(OUTDIR)\nsgmls.pdb"
- -@erase ".\dbgbin\nsgmls.exe"
- -@erase ".\dbgbin\nsgmls.ilk"
-
-"$(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 /I "include" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /YX /c
-CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /I "include" /D "_DEBUG" /D\
- "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE"\
- /Fp"$(INTDIR)/nsgmls.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c
-CPP_OBJS=.\nsgmls\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 0x809 /d "_DEBUG"
-# ADD RSC /l 0x809 /d "_DEBUG"
-RSC_PROJ=/l 0x809 /fo"$(INTDIR)/nsgmls.res" /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/nsgmls.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 /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 /nologo /subsystem:console /debug /machine:I386 /out:"dbgbin/nsgmls.exe"
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo\
- /subsystem:console /incremental:yes /pdb:"$(OUTDIR)/nsgmls.pdb" /debug\
- /machine:I386 /out:"dbgbin/nsgmls.exe"
-LINK32_OBJS= \
- "$(INTDIR)\nsgmls.obj" \
- "$(INTDIR)\nsgmls.res" \
- "$(INTDIR)\nsgmls_inst.obj" \
- "$(INTDIR)\RastEventHandler.obj" \
- "$(INTDIR)\SgmlsEventHandler.obj" \
- "$(INTDIR)\StringSet.obj" \
- ".\lib\Debug\sp133d.lib"
-
-".\dbgbin\nsgmls.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "spam - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "spam\Release"
-# PROP BASE Intermediate_Dir "spam\Release"
-# PROP BASE Target_Dir "spam"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "spam\Release"
-# PROP Intermediate_Dir "spam\Release"
-# PROP Target_Dir "spam"
-OUTDIR=.\spam\Release
-INTDIR=.\spam\Release
-
-ALL : "lib - Win32 Release" ".\bin\spam.exe"
-
-CLEAN :
- -@erase "$(INTDIR)\CopyEventHandler.obj"
- -@erase "$(INTDIR)\MarkupEventHandler.obj"
- -@erase "$(INTDIR)\spam.obj"
- -@erase "$(INTDIR)\spam.res"
- -@erase "$(INTDIR)\spam_inst.obj"
- -@erase ".\bin\spam.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 /I "include" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /YX /c
-CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "include" /D "NDEBUG" /D "_CONSOLE" /D\
- "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE"\
- /Fp"$(INTDIR)/spam.pch" /YX /Fo"$(INTDIR)/" /c
-CPP_OBJS=.\spam\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 0x809 /d "NDEBUG"
-# ADD RSC /l 0x809 /d "NDEBUG"
-RSC_PROJ=/l 0x809 /fo"$(INTDIR)/spam.res" /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/spam.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 /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 /nologo /subsystem:console /machine:I386 /out:"bin/spam.exe"
-# SUBTRACT LINK32 /profile
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo\
- /subsystem:console /incremental:no /pdb:"$(OUTDIR)/spam.pdb" /machine:I386\
- /out:"bin/spam.exe"
-LINK32_OBJS= \
- "$(INTDIR)\CopyEventHandler.obj" \
- "$(INTDIR)\MarkupEventHandler.obj" \
- "$(INTDIR)\spam.obj" \
- "$(INTDIR)\spam.res" \
- "$(INTDIR)\spam_inst.obj" \
- ".\lib\Release\sp133.lib"
-
-".\bin\spam.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "spam - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "spam\Debug"
-# PROP BASE Intermediate_Dir "spam\Debug"
-# PROP BASE Target_Dir "spam"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "spam\Debug"
-# PROP Intermediate_Dir "spam\Debug"
-# PROP Target_Dir "spam"
-OUTDIR=.\spam\Debug
-INTDIR=.\spam\Debug
-
-ALL : "lib - Win32 Debug" ".\dbgbin\spam.exe"
-
-CLEAN :
- -@erase "$(INTDIR)\CopyEventHandler.obj"
- -@erase "$(INTDIR)\MarkupEventHandler.obj"
- -@erase "$(INTDIR)\spam.obj"
- -@erase "$(INTDIR)\spam.res"
- -@erase "$(INTDIR)\spam_inst.obj"
- -@erase "$(INTDIR)\vc40.idb"
- -@erase "$(INTDIR)\vc40.pdb"
- -@erase "$(OUTDIR)\spam.pdb"
- -@erase ".\dbgbin\spam.exe"
- -@erase ".\dbgbin\spam.ilk"
-
-"$(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 /I "include" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /YX /c
-CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /I "include" /D "_DEBUG" /D\
- "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE"\
- /Fp"$(INTDIR)/spam.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c
-CPP_OBJS=.\spam\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 0x809 /d "_DEBUG"
-# ADD RSC /l 0x809 /d "_DEBUG"
-RSC_PROJ=/l 0x809 /fo"$(INTDIR)/spam.res" /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/spam.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 /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 /nologo /subsystem:console /debug /machine:I386 /out:"dbgbin/spam.exe"
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo\
- /subsystem:console /incremental:yes /pdb:"$(OUTDIR)/spam.pdb" /debug\
- /machine:I386 /out:"dbgbin/spam.exe"
-LINK32_OBJS= \
- "$(INTDIR)\CopyEventHandler.obj" \
- "$(INTDIR)\MarkupEventHandler.obj" \
- "$(INTDIR)\spam.obj" \
- "$(INTDIR)\spam.res" \
- "$(INTDIR)\spam_inst.obj" \
- ".\lib\Debug\sp133d.lib"
-
-".\dbgbin\spam.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "spent - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "spent\Release"
-# PROP BASE Intermediate_Dir "spent\Release"
-# PROP BASE Target_Dir "spent"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "spent\Release"
-# PROP Intermediate_Dir "spent\Release"
-# PROP Target_Dir "spent"
-OUTDIR=.\spent\Release
-INTDIR=.\spent\Release
-
-ALL : "lib - Win32 Release" ".\bin\spent.exe"
-
-CLEAN :
- -@erase "$(INTDIR)\spent.obj"
- -@erase ".\bin\spent.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 /I "include" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /YX /c
-CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "include" /D "NDEBUG" /D "_CONSOLE" /D\
- "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE"\
- /Fp"$(INTDIR)/spent.pch" /YX /Fo"$(INTDIR)/" /c
-CPP_OBJS=.\spent\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 0x809 /d "NDEBUG"
-# ADD RSC /l 0x809 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/spent.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 /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 /nologo /subsystem:console /machine:I386 /out:"bin/spent.exe"
-# SUBTRACT LINK32 /profile
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo\
- /subsystem:console /incremental:no /pdb:"$(OUTDIR)/spent.pdb" /machine:I386\
- /out:"bin/spent.exe"
-LINK32_OBJS= \
- "$(INTDIR)\spent.obj" \
- ".\lib\Release\sp133.lib"
-
-".\bin\spent.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "spent - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "spent\Debug"
-# PROP BASE Intermediate_Dir "spent\Debug"
-# PROP BASE Target_Dir "spent"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "spent\Debug"
-# PROP Intermediate_Dir "spent\Debug"
-# PROP Target_Dir "spent"
-OUTDIR=.\spent\Debug
-INTDIR=.\spent\Debug
-
-ALL : "lib - Win32 Debug" ".\dbgbin\spent.exe"
-
-CLEAN :
- -@erase "$(INTDIR)\spent.obj"
- -@erase "$(INTDIR)\vc40.idb"
- -@erase "$(INTDIR)\vc40.pdb"
- -@erase "$(OUTDIR)\spent.pdb"
- -@erase ".\dbgbin\spent.exe"
- -@erase ".\dbgbin\spent.ilk"
-
-"$(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 /I "include" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /YX /c
-CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /I "include" /D "_DEBUG" /D\
- "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE"\
- /Fp"$(INTDIR)/spent.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c
-CPP_OBJS=.\spent\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 0x809 /d "_DEBUG"
-# ADD RSC /l 0x809 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/spent.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 /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 /nologo /subsystem:console /debug /machine:I386 /out:"dbgbin/spent.exe"
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo\
- /subsystem:console /incremental:yes /pdb:"$(OUTDIR)/spent.pdb" /debug\
- /machine:I386 /out:"dbgbin/spent.exe"
-LINK32_OBJS= \
- "$(INTDIR)\spent.obj" \
- ".\lib\Debug\sp133d.lib"
-
-".\dbgbin\spent.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "sgmlnorm - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "sgmlnorm\Release"
-# PROP BASE Intermediate_Dir "sgmlnorm\Release"
-# PROP BASE Target_Dir "sgmlnorm"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "sgmlnorm\Release"
-# PROP Intermediate_Dir "sgmlnorm\Release"
-# PROP Target_Dir "sgmlnorm"
-OUTDIR=.\sgmlnorm\Release
-INTDIR=.\sgmlnorm\Release
-
-ALL : "lib - Win32 Release" ".\bin\sgmlnorm.exe"
-
-CLEAN :
- -@erase "$(INTDIR)\SGMLGenerator.obj"
- -@erase "$(INTDIR)\sgmlnorm.obj"
- -@erase ".\bin\sgmlnorm.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 /I "include" /I "generic" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /YX /c
-CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "include" /I "generic" /D "NDEBUG" /D\
- "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE"\
- /Fp"$(INTDIR)/sgmlnorm.pch" /YX /Fo"$(INTDIR)/" /c
-CPP_OBJS=.\sgmlnorm\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 0x809 /d "NDEBUG"
-# ADD RSC /l 0x809 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/sgmlnorm.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 /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 /nologo /subsystem:console /machine:I386 /out:"bin/sgmlnorm.exe"
-# SUBTRACT LINK32 /profile
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo\
- /subsystem:console /incremental:no /pdb:"$(OUTDIR)/sgmlnorm.pdb" /machine:I386\
- /out:"bin/sgmlnorm.exe"
-LINK32_OBJS= \
- "$(INTDIR)\SGMLGenerator.obj" \
- "$(INTDIR)\sgmlnorm.obj" \
- ".\lib\Release\sp133.lib"
-
-".\bin\sgmlnorm.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "sgmlnorm - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "sgmlnorm\Debug"
-# PROP BASE Intermediate_Dir "sgmlnorm\Debug"
-# PROP BASE Target_Dir "sgmlnorm"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "sgmlnorm\Debug"
-# PROP Intermediate_Dir "sgmlnorm\Debug"
-# PROP Target_Dir "sgmlnorm"
-OUTDIR=.\sgmlnorm\Debug
-INTDIR=.\sgmlnorm\Debug
-
-ALL : "lib - Win32 Debug" ".\dbgbin\sgmlnorm.exe"
-
-CLEAN :
- -@erase "$(INTDIR)\SGMLGenerator.obj"
- -@erase "$(INTDIR)\sgmlnorm.obj"
- -@erase "$(INTDIR)\vc40.idb"
- -@erase "$(INTDIR)\vc40.pdb"
- -@erase "$(OUTDIR)\sgmlnorm.pdb"
- -@erase ".\dbgbin\sgmlnorm.exe"
- -@erase ".\dbgbin\sgmlnorm.ilk"
-
-"$(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 /I "include" /I "generic" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /YX /c
-CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /I "include" /I "generic" /D "_DEBUG"\
- /D "_CONSOLE" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE"\
- /Fp"$(INTDIR)/sgmlnorm.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c
-CPP_OBJS=.\sgmlnorm\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 0x809 /d "_DEBUG"
-# ADD RSC /l 0x809 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/sgmlnorm.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 /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 /nologo /subsystem:console /debug /machine:I386 /out:"dbgbin/sgmlnorm.exe"
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo\
- /subsystem:console /incremental:yes /pdb:"$(OUTDIR)/sgmlnorm.pdb" /debug\
- /machine:I386 /out:"dbgbin/sgmlnorm.exe"
-LINK32_OBJS= \
- "$(INTDIR)\SGMLGenerator.obj" \
- "$(INTDIR)\sgmlnorm.obj" \
- ".\lib\Debug\sp133d.lib"
-
-".\dbgbin\sgmlnorm.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "all - Win32 Release"
-
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "all\Release"
-# PROP BASE Intermediate_Dir "all\Release"
-# PROP BASE Target_Dir "all"
-# PROP BASE Cmd_Line "NMAKE /f all.mak"
-# PROP BASE Rebuild_Opt "/a"
-# PROP BASE Target_File "all\all.exe"
-# PROP BASE Bsc_Name "all\all.bsc"
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "all\Release"
-# PROP Intermediate_Dir "all\Release"
-# PROP Target_Dir "all"
-# PROP Cmd_Line ""
-# PROP Rebuild_Opt ""
-# PROP Target_File "all"
-# PROP Bsc_Name ""
-OUTDIR=.\all\Release
-INTDIR=.\all\Release
-
-ALL : "sx - Win32 Release" "spent - Win32 Release" "spam - Win32 Release"\
- "sgmlnorm - Win32 Release" "nsgmls - Win32 Release" "lib - Win32 Release"
-
-CLEAN :
- -@erase
-
-"$(OUTDIR)" :
- if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-!ELSEIF "$(CFG)" == "all - Win32 Debug"
-
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "all\Debug"
-# PROP BASE Intermediate_Dir "all\Debug"
-# PROP BASE Target_Dir "all"
-# PROP BASE Cmd_Line "NMAKE /f all.mak"
-# PROP BASE Rebuild_Opt "/a"
-# PROP BASE Target_File "all\all.exe"
-# PROP BASE Bsc_Name "all\all.bsc"
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "all\Debug"
-# PROP Intermediate_Dir "all\Debug"
-# PROP Target_Dir "all"
-# PROP Cmd_Line ""
-# PROP Rebuild_Opt ""
-# PROP Target_File "all"
-# PROP Bsc_Name ""
-OUTDIR=.\all\Debug
-INTDIR=.\all\Debug
-
-ALL : "sx - Win32 Debug" "spent - Win32 Debug" "spam - Win32 Debug"\
- "sgmlnorm - Win32 Debug" "nsgmls - Win32 Debug" "lib - Win32 Debug"
-
-CLEAN :
- -@erase
-
-"$(OUTDIR)" :
- if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-!ELSEIF "$(CFG)" == "sx - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "sx\Release"
-# PROP BASE Intermediate_Dir "sx\Release"
-# PROP BASE Target_Dir "sx"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "sx\Release"
-# PROP Intermediate_Dir "sx\Release"
-# PROP Target_Dir "sx"
-OUTDIR=.\sx\Release
-INTDIR=.\sx\Release
-
-ALL : "lib - Win32 Release" ".\bin\sx.exe"
-
-CLEAN :
- -@erase "$(INTDIR)\sx.obj"
- -@erase "$(INTDIR)\sx.res"
- -@erase "$(INTDIR)\sx_inst.obj"
- -@erase "$(INTDIR)\XmlOutputEventHandler.obj"
- -@erase ".\bin\sx.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 /I "include" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /YX /c
-CPP_PROJ=/nologo /MD /W3 /GX /O2 /I "include" /D "NDEBUG" /D "WIN32" /D\
- "_CONSOLE" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE"\
- /Fp"$(INTDIR)/sx.pch" /YX /Fo"$(INTDIR)/" /c
-CPP_OBJS=.\sx\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 0x809 /d "NDEBUG"
-# ADD RSC /l 0x809 /d "NDEBUG"
-RSC_PROJ=/l 0x809 /fo"$(INTDIR)/sx.res" /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/sx.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 /nologo /subsystem:console /machine:I386 /out:"bin/sx.exe"
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo\
- /subsystem:console /incremental:no /pdb:"$(OUTDIR)/sx.pdb" /machine:I386\
- /out:"bin/sx.exe"
-LINK32_OBJS= \
- "$(INTDIR)\sx.obj" \
- "$(INTDIR)\sx.res" \
- "$(INTDIR)\sx_inst.obj" \
- "$(INTDIR)\XmlOutputEventHandler.obj" \
- ".\lib\Release\sp133.lib"
-
-".\bin\sx.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF "$(CFG)" == "sx - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "sx\Debug"
-# PROP BASE Intermediate_Dir "sx\Debug"
-# PROP BASE Target_Dir "sx"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "sx\Debug"
-# PROP Intermediate_Dir "sx\Debug"
-# PROP Target_Dir "sx"
-OUTDIR=.\sx\Debug
-INTDIR=.\sx\Debug
-
-ALL : "lib - Win32 Debug" ".\dbgbin\sx.exe"
-
-CLEAN :
- -@erase "$(INTDIR)\sx.obj"
- -@erase "$(INTDIR)\sx.res"
- -@erase "$(INTDIR)\sx_inst.obj"
- -@erase "$(INTDIR)\vc40.idb"
- -@erase "$(INTDIR)\vc40.pdb"
- -@erase "$(INTDIR)\XmlOutputEventHandler.obj"
- -@erase "$(OUTDIR)\sx.pdb"
- -@erase ".\dbgbin\sx.exe"
- -@erase ".\dbgbin\sx.ilk"
-
-"$(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 /I "include" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE" /YX /c
-CPP_PROJ=/nologo /MDd /W3 /Gm /GX /Zi /Od /I "include" /D "_DEBUG" /D "WIN32"\
- /D "_CONSOLE" /D SP_NAMESPACE=James_Clark_SP /D "SP_MULTI_BYTE"\
- /Fp"$(INTDIR)/sx.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/" /c
-CPP_OBJS=.\sx\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 0x809 /d "_DEBUG"
-# ADD RSC /l 0x809 /d "_DEBUG"
-RSC_PROJ=/l 0x809 /fo"$(INTDIR)/sx.res" /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-BSC32_FLAGS=/nologo /o"$(OUTDIR)/sx.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 /nologo /subsystem:console /debug /machine:I386 /out:"dbgbin/sx.exe"
-LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\
- advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo\
- /subsystem:console /incremental:yes /pdb:"$(OUTDIR)/sx.pdb" /debug\
- /machine:I386 /out:"dbgbin/sx.exe"
-LINK32_OBJS= \
- "$(INTDIR)\sx.obj" \
- "$(INTDIR)\sx.res" \
- "$(INTDIR)\sx_inst.obj" \
- "$(INTDIR)\XmlOutputEventHandler.obj" \
- ".\lib\Debug\sp133d.lib"
-
-".\dbgbin\sx.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
- $(LINK32) @<<
- $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ENDIF
-
-################################################################################
-# Begin Target
-
-# Name "lib - Win32 Release"
-# Name "lib - Win32 Debug"
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\xentmgr_inst.cxx
-DEP_CPP_XENTM=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\Mutex.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OffsetOrderedList.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-# ADD CPP /Yu"splib.h"
-
-"$(INTDIR)\xentmgr_inst.obj" : $(SOURCE) $(DEP_CPP_XENTM) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) /nologo /MD /W3 /GX /O2 /I "include" /I "generic" /D "NDEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/" /c\
- $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-# ADD CPP /Yu"splib.h"
-
-"$(INTDIR)\xentmgr_inst.obj" : $(SOURCE) $(DEP_CPP_XENTM) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) /nologo /MDd /W3 /GX /Zi /Od /I "include" /I "generic" /D "_DEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/"\
- /Fd"$(INTDIR)/" /c $(SOURCE)
-
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\URLStorage.cxx
-DEP_CPP_URLST=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
- ".\lib\URLStorageMessages.h"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-
-"$(INTDIR)\URLStorage.obj" : $(SOURCE) $(DEP_CPP_URLST) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\UnivCharsetDesc.cxx
-DEP_CPP_UNIVC=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\UnivCharsetDesc.obj" : $(SOURCE) $(DEP_CPP_UNIVC) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\UnicodeCodingSystem.cxx
-DEP_CPP_UNICO=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\UnicodeCodingSystem.obj" : $(SOURCE) $(DEP_CPP_UNICO) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Undo.cxx
-DEP_CPP_UNDO_=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Undo.obj" : $(SOURCE) $(DEP_CPP_UNDO_) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\TypeId.cxx
-DEP_CPP_TYPEI=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\TypeId.obj" : $(SOURCE) $(DEP_CPP_TYPEI) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\TrieBuilder.cxx
-DEP_CPP_TRIEB=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\TrieBuilder.obj" : $(SOURCE) $(DEP_CPP_TRIEB) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\TokenMessageArg.h
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\TokenMessageArg.cxx
-DEP_CPP_TOKEN=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\TokenMessageArg.obj" : $(SOURCE) $(DEP_CPP_TOKEN) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\token.h
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Text.cxx
-DEP_CPP_TEXT_=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Text.obj" : $(SOURCE) $(DEP_CPP_TEXT_) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Syntax.cxx
-DEP_CPP_SYNTA=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Syntax.obj" : $(SOURCE) $(DEP_CPP_SYNTA) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\StorageManager.cxx
-DEP_CPP_STORA=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\StorageManager.obj" : $(SOURCE) $(DEP_CPP_STORA) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\StdioStorage.cxx
-DEP_CPP_STDIO=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StdioStorageMessages.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\StdioStorage.obj" : $(SOURCE) $(DEP_CPP_STDIO) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\SOEntityCatalog.cxx
-DEP_CPP_SOENT=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\CatalogMessages.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\SOEntityCatalog.obj" : $(SOURCE) $(DEP_CPP_SOENT) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\SJISCodingSystem.cxx
-DEP_CPP_SJISC=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\SJISCodingSystem.obj" : $(SOURCE) $(DEP_CPP_SJISC) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ShortReferenceMap.cxx
-DEP_CPP_SHORT=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ShortReferenceMap.obj" : $(SOURCE) $(DEP_CPP_SHORT) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\SgmlParser.cxx
-DEP_CPP_SGMLP=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\SgmlParser.obj" : $(SOURCE) $(DEP_CPP_SGMLP) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\SearchResultMessageArg.cxx
-DEP_CPP_SEARC=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\SearchResultMessageArg.obj" : $(SOURCE) $(DEP_CPP_SEARC) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\SdText.cxx
-DEP_CPP_SDTEX=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\SdText.obj" : $(SOURCE) $(DEP_CPP_SDTEX) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Sd.cxx
-DEP_CPP_SD_CX=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Sd.obj" : $(SOURCE) $(DEP_CPP_SD_CX) "$(INTDIR)" "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\RewindStorageObject.cxx
-DEP_CPP_REWIN=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\RewindStorageObject.obj" : $(SOURCE) $(DEP_CPP_REWIN) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Recognizer.cxx
-DEP_CPP_RECOG=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Recognizer.obj" : $(SOURCE) $(DEP_CPP_RECOG) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\PosixStorage.cxx
-DEP_CPP_POSIX=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\PosixStorageMessages.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-
-"$(INTDIR)\PosixStorage.obj" : $(SOURCE) $(DEP_CPP_POSIX) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Partition.cxx
-DEP_CPP_PARTI=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Partition.obj" : $(SOURCE) $(DEP_CPP_PARTI) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\parseSd.cxx
-DEP_CPP_PARSE=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\parseSd.obj" : $(SOURCE) $(DEP_CPP_PARSE) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ParserState.cxx
-DEP_CPP_PARSER=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ParserState.obj" : $(SOURCE) $(DEP_CPP_PARSER) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ParserOptions.cxx
-DEP_CPP_PARSERO=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ParserOptions.obj" : $(SOURCE) $(DEP_CPP_PARSERO) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ParserMessages.cxx
-DEP_CPP_PARSERM=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ParserMessages.obj" : $(SOURCE) $(DEP_CPP_PARSERM) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\parser_inst.cxx
-DEP_CPP_PARSER_=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-# ADD CPP /Yu"splib.h"
-
-"$(INTDIR)\parser_inst.obj" : $(SOURCE) $(DEP_CPP_PARSER_) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) /nologo /MD /W3 /GX /O2 /I "include" /I "generic" /D "NDEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/" /c\
- $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-# ADD CPP /Yu"splib.h"
-
-"$(INTDIR)\parser_inst.obj" : $(SOURCE) $(DEP_CPP_PARSER_) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) /nologo /MDd /W3 /GX /Zi /Od /I "include" /I "generic" /D "_DEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/"\
- /Fd"$(INTDIR)/" /c $(SOURCE)
-
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Parser.cxx
-DEP_CPP_PARSER_C=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Parser.obj" : $(SOURCE) $(DEP_CPP_PARSER_C) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\parseParam.cxx
-DEP_CPP_PARSEP=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\parseParam.obj" : $(SOURCE) $(DEP_CPP_PARSEP) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\parseMode.cxx
-DEP_CPP_PARSEM=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\parseMode.obj" : $(SOURCE) $(DEP_CPP_PARSEM) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\parseInstance.cxx
-DEP_CPP_PARSEI=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\parseInstance.obj" : $(SOURCE) $(DEP_CPP_PARSEI) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\parseDecl.cxx
-DEP_CPP_PARSED=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\parseDecl.obj" : $(SOURCE) $(DEP_CPP_PARSED) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\parseCommon.cxx
-DEP_CPP_PARSEC=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\parseCommon.obj" : $(SOURCE) $(DEP_CPP_PARSEC) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\parseAttribute.cxx
-DEP_CPP_PARSEA=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\parseAttribute.obj" : $(SOURCE) $(DEP_CPP_PARSEA) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Param.cxx
-DEP_CPP_PARAM=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Param.obj" : $(SOURCE) $(DEP_CPP_PARAM) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\OutputState.cxx
-DEP_CPP_OUTPU=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\OutputState.obj" : $(SOURCE) $(DEP_CPP_OUTPU) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\OutputCharStream.cxx
-DEP_CPP_OUTPUT=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\OutputCharStream.obj" : $(SOURCE) $(DEP_CPP_OUTPUT) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\OpenElement.cxx
-DEP_CPP_OPENE=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\OpenElement.obj" : $(SOURCE) $(DEP_CPP_OPENE) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\OffsetOrderedList.h
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\OffsetOrderedList.cxx
-DEP_CPP_OFFSE=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\Mutex.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OffsetOrderedList.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\OffsetOrderedList.obj" : $(SOURCE) $(DEP_CPP_OFFSE) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\NumericCharRefOrigin.cxx
-DEP_CPP_NUMER=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\NumericCharRefOrigin.obj" : $(SOURCE) $(DEP_CPP_NUMER) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Notation.cxx
-DEP_CPP_NOTAT=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Notation.obj" : $(SOURCE) $(DEP_CPP_NOTAT) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ModeInfo.cxx
-DEP_CPP_MODEI=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ModeInfo.obj" : $(SOURCE) $(DEP_CPP_MODEI) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\MessageReporter.cxx
-DEP_CPP_MESSA=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\MessageReporterMessages.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\MessageReporter.obj" : $(SOURCE) $(DEP_CPP_MESSA) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\MessageEventHandler.cxx
-DEP_CPP_MESSAG=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\MessageEventHandler.obj" : $(SOURCE) $(DEP_CPP_MESSAG) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\MessageArg.cxx
-DEP_CPP_MESSAGE=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\MessageArg.obj" : $(SOURCE) $(DEP_CPP_MESSAGE) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Message.cxx
-DEP_CPP_MESSAGE_=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Message.obj" : $(SOURCE) $(DEP_CPP_MESSAGE_) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Markup.cxx
-DEP_CPP_MARKU=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Markup.obj" : $(SOURCE) $(DEP_CPP_MARKU) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Lpd.cxx
-DEP_CPP_LPD_C=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Lpd.obj" : $(SOURCE) $(DEP_CPP_LPD_C) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Location.cxx
-DEP_CPP_LOCAT=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\Mutex.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Location.obj" : $(SOURCE) $(DEP_CPP_LOCAT) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\LiteralStorage.cxx
-DEP_CPP_LITER=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\LiteralStorage.obj" : $(SOURCE) $(DEP_CPP_LITER) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\LinkProcess.cxx
-DEP_CPP_LINKP=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\LinkProcess.obj" : $(SOURCE) $(DEP_CPP_LINKP) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Link.cxx
-DEP_CPP_LINK_=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Link.obj" : $(SOURCE) $(DEP_CPP_LINK_) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\InternalInputSource.cxx
-DEP_CPP_INTER=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\InternalInputSource.obj" : $(SOURCE) $(DEP_CPP_INTER) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\InputSource.cxx
-DEP_CPP_INPUT=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\InputSource.obj" : $(SOURCE) $(DEP_CPP_INPUT) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\IListBase.cxx
-DEP_CPP_ILIST=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\IListBase.obj" : $(SOURCE) $(DEP_CPP_ILIST) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\IdentityCodingSystem.cxx
-DEP_CPP_IDENT=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\IdentityCodingSystem.obj" : $(SOURCE) $(DEP_CPP_IDENT) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Id.cxx
-DEP_CPP_ID_CX=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Id.obj" : $(SOURCE) $(DEP_CPP_ID_CX) "$(INTDIR)" "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Hash.cxx
-DEP_CPP_HASH_=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Hash.obj" : $(SOURCE) $(DEP_CPP_HASH_) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Group.cxx
-DEP_CPP_GROUP=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Group.obj" : $(SOURCE) $(DEP_CPP_GROUP) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Fixed2CodingSystem.cxx
-DEP_CPP_FIXED=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Fixed2CodingSystem.obj" : $(SOURCE) $(DEP_CPP_FIXED) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ExternalId.cxx
-DEP_CPP_EXTER=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ExternalId.obj" : $(SOURCE) $(DEP_CPP_EXTER) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ExtendEntityManager.cxx
-DEP_CPP_EXTEN=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EntityManagerMessages.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\Mutex.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OffsetOrderedList.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ExtendEntityManager.obj" : $(SOURCE) $(DEP_CPP_EXTEN) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Event.cxx
-DEP_CPP_EVENT=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Event.obj" : $(SOURCE) $(DEP_CPP_EVENT) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\EUCJPCodingSystem.cxx
-DEP_CPP_EUCJP=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\EUCJPCodingSystem.obj" : $(SOURCE) $(DEP_CPP_EUCJP) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ErrnoMessageArg.cxx
-DEP_CPP_ERRNO=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ErrnoMessageArg.obj" : $(SOURCE) $(DEP_CPP_ERRNO) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\entmgr_inst.cxx
-DEP_CPP_ENTMG=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-# ADD CPP /Yu"splib.h"
-
-"$(INTDIR)\entmgr_inst.obj" : $(SOURCE) $(DEP_CPP_ENTMG) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) /nologo /MD /W3 /GX /O2 /I "include" /I "generic" /D "NDEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/" /c\
- $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-# ADD CPP /Yu"splib.h"
-
-"$(INTDIR)\entmgr_inst.obj" : $(SOURCE) $(DEP_CPP_ENTMG) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) /nologo /MDd /W3 /GX /Zi /Od /I "include" /I "generic" /D "_DEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/"\
- /Fd"$(INTDIR)/" /c $(SOURCE)
-
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\EntityManager.cxx
-DEP_CPP_ENTIT=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\EntityManager.obj" : $(SOURCE) $(DEP_CPP_ENTIT) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\EntityDecl.cxx
-DEP_CPP_ENTITY=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\EntityDecl.obj" : $(SOURCE) $(DEP_CPP_ENTITY) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\EntityCatalog.cxx
-DEP_CPP_ENTITYC=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\EntityCatalog.obj" : $(SOURCE) $(DEP_CPP_ENTITYC) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Entity.cxx
-DEP_CPP_ENTITY_=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Entity.obj" : $(SOURCE) $(DEP_CPP_ENTITY_) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ElementType.cxx
-DEP_CPP_ELEME=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ElementType.obj" : $(SOURCE) $(DEP_CPP_ELEME) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Dtd.cxx
-DEP_CPP_DTD_C=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Dtd.obj" : $(SOURCE) $(DEP_CPP_DTD_C) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\DescriptorManager.cxx
-DEP_CPP_DESCR=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\DescriptorManager.obj" : $(SOURCE) $(DEP_CPP_DESCR) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ContentToken.cxx
-DEP_CPP_CONTE=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ContentToken.obj" : $(SOURCE) $(DEP_CPP_CONTE) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\CharsetRegistry.cxx
-DEP_CPP_CHARS=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\big5.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\gb2312.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\iso646-jis.h"\
- ".\lib\iso8859-2.h"\
- ".\lib\iso8859-3.h"\
- ".\lib\iso8859-4.h"\
- ".\lib\iso8859-5.h"\
- ".\lib\iso8859-6.h"\
- ".\lib\iso8859-7.h"\
- ".\lib\iso8859-8.h"\
- ".\lib\iso8859-9.h"\
- ".\lib\jis0201.h"\
- ".\lib\jis0208.h"\
- ".\lib\jis0212.h"\
- ".\lib\ksc5601.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\CharsetRegistry.obj" : $(SOURCE) $(DEP_CPP_CHARS) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\CharsetInfo.cxx
-DEP_CPP_CHARSE=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\CharsetInfo.obj" : $(SOURCE) $(DEP_CPP_CHARSE) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\CharsetDecl.cxx
-DEP_CPP_CHARSET=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\CharsetDecl.obj" : $(SOURCE) $(DEP_CPP_CHARSET) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Attribute.cxx
-DEP_CPP_ATTRI=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Attribute.obj" : $(SOURCE) $(DEP_CPP_ATTRI) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\assert.cxx
-DEP_CPP_ASSER=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\assert.obj" : $(SOURCE) $(DEP_CPP_ASSER) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\app_inst.cxx
-DEP_CPP_APP_I=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-# ADD CPP /Yu"splib.h"
-
-"$(INTDIR)\app_inst.obj" : $(SOURCE) $(DEP_CPP_APP_I) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) /nologo /MD /W3 /GX /O2 /I "include" /I "generic" /D "NDEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/" /c\
- $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-# ADD CPP /Yu"splib.h"
-
-"$(INTDIR)\app_inst.obj" : $(SOURCE) $(DEP_CPP_APP_I) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) /nologo /MDd /W3 /GX /Zi /Od /I "include" /I "generic" /D "_DEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/"\
- /Fd"$(INTDIR)/" /c $(SOURCE)
-
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Allocator.cxx
-DEP_CPP_ALLOC=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Allocator.obj" : $(SOURCE) $(DEP_CPP_ALLOC) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ErrorCountEventHandler.cxx
-DEP_CPP_ERROR=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ErrorCountEventHandler.obj" : $(SOURCE) $(DEP_CPP_ERROR) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Win32CodingSystem.cxx
-DEP_CPP_WIN32=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Win32CodingSystem.obj" : $(SOURCE) $(DEP_CPP_WIN32) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\UTF8CodingSystem.cxx
-DEP_CPP_UTF8C=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\UTF8CodingSystem.obj" : $(SOURCE) $(DEP_CPP_UTF8C) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\StringVectorMessageArg.cxx
-DEP_CPP_STRIN=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\StringVectorMessageArg.obj" : $(SOURCE) $(DEP_CPP_STRIN) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ParserApp.cxx
-DEP_CPP_PARSERA=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserAppMessages.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ParserApp.obj" : $(SOURCE) $(DEP_CPP_PARSERA) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\EntityApp.cxx
-DEP_CPP_ENTITYA=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\WinInetStorage.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\EntityApp.obj" : $(SOURCE) $(DEP_CPP_ENTITYA) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\CmdLineApp.cxx
-DEP_CPP_CMDLI=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\MessageTable.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\CmdLineAppMessages.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
- ".\lib\version.h"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-
-"$(INTDIR)\CmdLineApp.obj" : $(SOURCE) $(DEP_CPP_CMDLI) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ConsoleOutput.cxx
-DEP_CPP_CONSO=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ConsoleOutput.obj" : $(SOURCE) $(DEP_CPP_CONSO) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ContentState.cxx
-DEP_CPP_CONTEN=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ContentState.obj" : $(SOURCE) $(DEP_CPP_CONTEN) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ArcEngine.cxx
-DEP_CPP_ARCEN=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcEngineMessages.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ArcEngine.obj" : $(SOURCE) $(DEP_CPP_ARCEN) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\arc_inst.cxx
-DEP_CPP_ARC_I=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-# ADD CPP /Yu"splib.h"
-
-"$(INTDIR)\arc_inst.obj" : $(SOURCE) $(DEP_CPP_ARC_I) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) /nologo /MD /W3 /GX /O2 /I "include" /I "generic" /D "NDEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/" /c\
- $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-# ADD CPP /Yu"splib.h"
-
-"$(INTDIR)\arc_inst.obj" : $(SOURCE) $(DEP_CPP_ARC_I) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) /nologo /MDd /W3 /GX /Zi /Od /I "include" /I "generic" /D "_DEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yu"splib.h" /Fo"$(INTDIR)/"\
- /Fd"$(INTDIR)/" /c $(SOURCE)
-
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\splib.cxx
-DEP_CPP_SPLIB=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-# ADD CPP /Yc"splib.h"
-
-BuildCmds= \
- $(CPP) /nologo /MD /W3 /GX /O2 /I "include" /I "generic" /D "NDEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yc"splib.h" /Fo"$(INTDIR)/" /c\
- $(SOURCE) \
-
-
-"$(INTDIR)\splib.obj" : $(SOURCE) $(DEP_CPP_SPLIB) "$(INTDIR)"
- $(BuildCmds)
-
-"$(INTDIR)\lib.pch" : $(SOURCE) $(DEP_CPP_SPLIB) "$(INTDIR)"
- $(BuildCmds)
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-# ADD CPP /Yc"splib.h"
-
-BuildCmds= \
- $(CPP) /nologo /MDd /W3 /GX /Zi /Od /I "include" /I "generic" /D "_DEBUG" /D\
- "_WINDOWS" /D "WINSOCK" /D "WIN32" /D SP_NAMESPACE=James_Clark_SP /D\
- "SP_MULTI_BYTE" /Fp"$(INTDIR)/lib.pch" /Yc"splib.h" /Fo"$(INTDIR)/"\
- /Fd"$(INTDIR)/" /c $(SOURCE) \
-
-
-"$(INTDIR)\splib.obj" : $(SOURCE) $(DEP_CPP_SPLIB) "$(INTDIR)"
- $(BuildCmds)
-
-"$(INTDIR)\lib.pch" : $(SOURCE) $(DEP_CPP_SPLIB) "$(INTDIR)"
- $(BuildCmds)
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\SGMLApplication.cxx
-DEP_CPP_SGMLA=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\SGMLApplication.obj" : $(SOURCE) $(DEP_CPP_SGMLA) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ParserEventGeneratorKit.cxx
-DEP_CPP_PARSERE=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\ParserEventGeneratorKit.obj" : $(SOURCE) $(DEP_CPP_PARSERE)\
- "$(INTDIR)" "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\GenericEventHandler.cxx
-DEP_CPP_GENER=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\GenericEventHandler.obj" : $(SOURCE) $(DEP_CPP_GENER) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\EventGenerator.cxx
-DEP_CPP_EVENTG=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\EventGenerator.obj" : $(SOURCE) $(DEP_CPP_EVENTG) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\lib.rc
-DEP_RSC_LIB_R=\
- ".\lib\ArcEngineMessages.rc"\
- ".\lib\CatalogMessages.rc"\
- ".\lib\CmdLineAppMessages.rc"\
- ".\lib\EntityManagerMessages.rc"\
- ".\lib\MessageFormatterMessages.rc"\
- ".\lib\MessageReporterMessages.rc"\
- ".\lib\ParserAppMessages.rc"\
- ".\lib\ParserMessages.rc"\
- ".\lib\PosixStorageMessages.rc"\
- ".\lib\StdioStorageMessages.rc"\
- ".\lib\URLStorageMessages.rc"\
-
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-
-"$(INTDIR)\lib.res" : $(SOURCE) $(DEP_RSC_LIB_R) "$(INTDIR)"
- $(RSC) /l 0x809 /fo"$(INTDIR)/lib.res" /i "lib" /d "NDEBUG" $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-
-"$(INTDIR)\lib.res" : $(SOURCE) $(DEP_RSC_LIB_R) "$(INTDIR)"
- $(RSC) /l 0x809 /fo"$(INTDIR)/lib.res" /i "lib" /d "_DEBUG" $(SOURCE)
-
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\MessageTable.cxx
-DEP_CPP_MESSAGET=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\MessageTable.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\MessageTable.obj" : $(SOURCE) $(DEP_CPP_MESSAGET) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\WinInetStorage.cxx
-DEP_CPP_WININ=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\WinInetStorage.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
- ".\lib\WinInetStorageMessages.h"\
-
-
-"$(INTDIR)\WinInetStorage.obj" : $(SOURCE) $(DEP_CPP_WININ) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\ParserMessages.msg
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\arc_inst.m4
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\app_inst.m4
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\entmgr_inst.m4
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\instmac.m4
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\parser_inst.m4
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\xentmgr_inst.m4
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\TranslateCodingSystem.cxx
-DEP_CPP_TRANS=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TranslateCodingSystem.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\TranslateCodingSystem.obj" : $(SOURCE) $(DEP_CPP_TRANS) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\CodingSystemKit.cxx
-DEP_CPP_CODIN=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Big5CodingSystem.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TranslateCodingSystem.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\XMLCodingSystem.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\CodingSystemKit.obj" : $(SOURCE) $(DEP_CPP_CODIN) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\CmdLineAppMessages.msg
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\EntityManagerMessages.msg
-
-!IF "$(CFG)" == "lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "lib - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\CodingSystem.cxx
-DEP_CPP_CODING=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\CodingSystem.obj" : $(SOURCE) $(DEP_CPP_CODING) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\Big5CodingSystem.cxx
-DEP_CPP_BIG5C=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Big5CodingSystem.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\Big5CodingSystem.obj" : $(SOURCE) $(DEP_CPP_BIG5C) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\OutputByteStream.cxx
-DEP_CPP_OUTPUTB=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
- {$(INCLUDE)}"\sys\STAT.H"\
- {$(INCLUDE)}"\sys\TYPES.H"\
-
-
-"$(INTDIR)\OutputByteStream.obj" : $(SOURCE) $(DEP_CPP_OUTPUTB) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\MessageFormatter.cxx
-DEP_CPP_MESSAGEF=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\MessageFormatterMessages.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\MessageFormatter.obj" : $(SOURCE) $(DEP_CPP_MESSAGEF) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\WinApp.cxx
-DEP_CPP_WINAP=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\WinApp.h"\
- ".\include\WinInetStorage.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-# PROP Exclude_From_Build 0
-
-"$(INTDIR)\WinApp.obj" : $(SOURCE) $(DEP_CPP_WINAP) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\NotationStorage.cxx
-DEP_CPP_NOTATI=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\NotationStorage.obj" : $(SOURCE) $(DEP_CPP_NOTATI) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\lib\XMLCodingSystem.cxx
-DEP_CPP_XMLCO=\
- ".\generic\EventGenerator.h"\
- ".\generic\ParserEventGeneratorKit.h"\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\ArcEngine.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CharsetRegistry.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\ConsoleOutput.h"\
- ".\include\constant.h"\
- ".\include\ContentState.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\DescriptorManager.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\EUCJPCodingSystem.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Fixed2CodingSystem.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IdentityCodingSystem.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IListIter.h"\
- ".\include\IListIterBase.h"\
- ".\include\InputSource.h"\
- ".\include\InternalInputSource.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\ISetIter.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\List.cxx"\
- ".\include\List.h"\
- ".\include\ListIter.h"\
- ".\include\LiteralStorage.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\NotationStorage.h"\
- ".\include\OpenElement.h"\
- ".\include\Options.cxx"\
- ".\include\Options.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\PosixStorage.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\RewindStorageObject.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SearchResultMessageArg.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\SJISCodingSystem.h"\
- ".\include\SOEntityCatalog.h"\
- ".\include\sptchar.h"\
- ".\include\StdioStorage.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnicodeCodingSystem.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\URLStorage.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\Win32CodingSystem.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\XMLCodingSystem.h"\
- ".\include\xnew.h"\
- ".\lib\ArcProcessor.h"\
- ".\lib\CatalogEntry.h"\
- ".\lib\EquivClass.h"\
- ".\lib\EventQueue.h"\
- ".\lib\events.h"\
- ".\lib\Group.h"\
- ".\lib\Id.h"\
- ".\lib\LpdEntityRef.h"\
- ".\lib\MarkupScan.h"\
- ".\lib\ModeInfo.h"\
- ".\lib\NameToken.h"\
- ".\lib\NumericCharRefOrigin.h"\
- ".\lib\OutputState.h"\
- ".\lib\Param.h"\
- ".\lib\Parser.h"\
- ".\lib\ParserMessages.h"\
- ".\lib\ParserState.h"\
- ".\lib\Partition.h"\
- ".\lib\Priority.h"\
- ".\lib\Recognizer.h"\
- ".\lib\SdFormalError.h"\
- ".\lib\splib.h"\
- ".\lib\splibpch.h"\
- ".\lib\SrInfo.h"\
- ".\lib\StorageObjectPosition.h"\
- ".\lib\StringVectorMessageArg.h"\
- ".\lib\token.h"\
- ".\lib\TokenMessageArg.h"\
- ".\lib\Trie.h"\
- ".\lib\TrieBuilder.h"\
- ".\lib\Undo.h"\
-
-
-"$(INTDIR)\XMLCodingSystem.obj" : $(SOURCE) $(DEP_CPP_XMLCO) "$(INTDIR)"\
- "$(INTDIR)\lib.pch"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-# End Target
-################################################################################
-# Begin Target
-
-# Name "nsgmls - Win32 Release"
-# Name "nsgmls - Win32 Debug"
-
-!IF "$(CFG)" == "nsgmls - Win32 Release"
-
-!ELSEIF "$(CFG)" == "nsgmls - Win32 Debug"
-
-!ENDIF
-
-################################################################################
-# Begin Project Dependency
-
-# Project_Dep_Name "lib"
-
-!IF "$(CFG)" == "nsgmls - Win32 Release"
-
-"lib - Win32 Release" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "nsgmls - Win32 Debug"
-
-"lib - Win32 Debug" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Debug"
-
-!ENDIF
-
-# End Project Dependency
-################################################################################
-# Begin Source File
-
-SOURCE=.\nsgmls\StringSet.cxx
-DEP_CPP_STRING=\
- ".\include\Boolean.h"\
- ".\include\config.h"\
- ".\include\Hash.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\xnew.h"\
- ".\nsgmls\StringSet.h"\
-
-
-"$(INTDIR)\StringSet.obj" : $(SOURCE) $(DEP_CPP_STRING) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\nsgmls\SgmlsEventHandler.cxx
-DEP_CPP_SGMLS=\
- ".\include\Allocator.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\nsgmls\SgmlsEventHandler.h"\
- ".\nsgmls\StringSet.h"\
-
-
-"$(INTDIR)\SgmlsEventHandler.obj" : $(SOURCE) $(DEP_CPP_SGMLS) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\nsgmls\RastEventHandler.cxx
-DEP_CPP_RASTE=\
- ".\include\Allocator.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CodingSystem.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExternalId.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\nsgmls\RastEventHandler.h"\
- ".\nsgmls\RastEventHandlerMessages.h"\
-
-
-"$(INTDIR)\RastEventHandler.obj" : $(SOURCE) $(DEP_CPP_RASTE) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\nsgmls\nsgmls_inst.cxx
-DEP_CPP_NSGML=\
- ".\include\Allocator.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CodingSystem.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\Event.h"\
- ".\include\ExternalId.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\nsgmls\RastEventHandler.h"\
- ".\nsgmls\StringSet.h"\
-
-
-"$(INTDIR)\nsgmls_inst.obj" : $(SOURCE) $(DEP_CPP_NSGML) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\nsgmls\nsgmls.cxx
-DEP_CPP_NSGMLS=\
- ".\include\Allocator.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrnoMessageArg.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\IList.h"\
- ".\include\IListBase.h"\
- ".\include\IQueue.cxx"\
- ".\include\IQueue.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\LinkProcess.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageEventHandler.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\sptchar.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\nsgmls\NsgmlsMessages.h"\
- ".\nsgmls\RastEventHandler.h"\
- ".\nsgmls\SgmlsEventHandler.h"\
- ".\nsgmls\StringSet.h"\
-
-
-"$(INTDIR)\nsgmls.obj" : $(SOURCE) $(DEP_CPP_NSGMLS) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\nsgmls\nsgmls.rc
-DEP_RSC_NSGMLS_=\
- ".\nsgmls\NsgmlsMessages.rc"\
- ".\nsgmls\RastEventHandlerMessages.rc"\
-
-
-!IF "$(CFG)" == "nsgmls - Win32 Release"
-
-
-"$(INTDIR)\nsgmls.res" : $(SOURCE) $(DEP_RSC_NSGMLS_) "$(INTDIR)"
- $(RSC) /l 0x809 /fo"$(INTDIR)/nsgmls.res" /i "nsgmls" /d "NDEBUG" $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "nsgmls - Win32 Debug"
-
-
-"$(INTDIR)\nsgmls.res" : $(SOURCE) $(DEP_RSC_NSGMLS_) "$(INTDIR)"
- $(RSC) /l 0x809 /fo"$(INTDIR)/nsgmls.res" /i "nsgmls" /d "_DEBUG" $(SOURCE)
-
-
-!ENDIF
-
-# End Source File
-# End Target
-################################################################################
-# Begin Target
-
-# Name "spam - Win32 Release"
-# Name "spam - Win32 Debug"
-
-!IF "$(CFG)" == "spam - Win32 Release"
-
-!ELSEIF "$(CFG)" == "spam - Win32 Debug"
-
-!ENDIF
-
-################################################################################
-# Begin Project Dependency
-
-# Project_Dep_Name "lib"
-
-!IF "$(CFG)" == "spam - Win32 Release"
-
-"lib - Win32 Release" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "spam - Win32 Debug"
-
-"lib - Win32 Debug" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Debug"
-
-!ENDIF
-
-# End Project Dependency
-################################################################################
-# Begin Source File
-
-SOURCE=.\spam\spam_inst.cxx
-DEP_CPP_SPAM_=\
- ".\include\Allocator.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CodingSystem.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\Event.h"\
- ".\include\ExternalId.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\spam\CopyEventHandler.h"\
- ".\spam\MarkupEventHandler.h"\
-
-
-"$(INTDIR)\spam_inst.obj" : $(SOURCE) $(DEP_CPP_SPAM_) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\spam\spam.cxx
-DEP_CPP_SPAM_C=\
- ".\include\Allocator.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\InputSource.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\sptchar.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\spam\CopyEventHandler.h"\
- ".\spam\MarkupEventHandler.h"\
- ".\spam\SpamMessages.h"\
-
-
-"$(INTDIR)\spam.obj" : $(SOURCE) $(DEP_CPP_SPAM_C) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\spam\MarkupEventHandler.cxx
-DEP_CPP_MARKUP=\
- ".\include\Allocator.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\Event.h"\
- ".\include\ExternalId.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\spam\MarkupEventHandler.h"\
-
-
-"$(INTDIR)\MarkupEventHandler.obj" : $(SOURCE) $(DEP_CPP_MARKUP) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\spam\CopyEventHandler.cxx
-DEP_CPP_COPYE=\
- ".\include\Allocator.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CodingSystem.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\Event.h"\
- ".\include\ExternalId.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\spam\CopyEventHandler.h"\
- ".\spam\MarkupEventHandler.h"\
-
-
-"$(INTDIR)\CopyEventHandler.obj" : $(SOURCE) $(DEP_CPP_COPYE) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\spam\SpamMessages.msg
-
-!IF "$(CFG)" == "spam - Win32 Release"
-
-!ELSEIF "$(CFG)" == "spam - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\spam\spam.rc
-DEP_RSC_SPAM_R=\
- ".\spam\SpamMessages.rc"\
-
-
-!IF "$(CFG)" == "spam - Win32 Release"
-
-
-"$(INTDIR)\spam.res" : $(SOURCE) $(DEP_RSC_SPAM_R) "$(INTDIR)"
- $(RSC) /l 0x809 /fo"$(INTDIR)/spam.res" /i "spam" /d "NDEBUG" $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "spam - Win32 Debug"
-
-
-"$(INTDIR)\spam.res" : $(SOURCE) $(DEP_RSC_SPAM_R) "$(INTDIR)"
- $(RSC) /l 0x809 /fo"$(INTDIR)/spam.res" /i "spam" /d "_DEBUG" $(SOURCE)
-
-
-!ENDIF
-
-# End Source File
-# End Target
-################################################################################
-# Begin Target
-
-# Name "spent - Win32 Release"
-# Name "spent - Win32 Debug"
-
-!IF "$(CFG)" == "spent - Win32 Release"
-
-!ELSEIF "$(CFG)" == "spent - Win32 Debug"
-
-!ENDIF
-
-################################################################################
-# Begin Project Dependency
-
-# Project_Dep_Name "lib"
-
-!IF "$(CFG)" == "spent - Win32 Release"
-
-"lib - Win32 Release" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "spent - Win32 Debug"
-
-"lib - Win32 Debug" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Debug"
-
-!ENDIF
-
-# End Project Dependency
-################################################################################
-# Begin Source File
-
-SOURCE=.\spent\spent.cxx
-DEP_CPP_SPENT=\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityManager.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\InputSource.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\Location.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
-
-
-"$(INTDIR)\spent.obj" : $(SOURCE) $(DEP_CPP_SPENT) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\spent\SpentMessages.msg
-
-!IF "$(CFG)" == "spent - Win32 Release"
-
-!ELSEIF "$(CFG)" == "spent - Win32 Debug"
-
-!ENDIF
-
-# End Source File
-# End Target
-################################################################################
-# Begin Target
-
-# Name "sgmlnorm - Win32 Release"
-# Name "sgmlnorm - Win32 Debug"
-
-!IF "$(CFG)" == "sgmlnorm - Win32 Release"
-
-!ELSEIF "$(CFG)" == "sgmlnorm - Win32 Debug"
-
-!ENDIF
-
-################################################################################
-# Begin Project Dependency
-
-# Project_Dep_Name "lib"
-
-!IF "$(CFG)" == "sgmlnorm - Win32 Release"
-
-"lib - Win32 Release" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "sgmlnorm - Win32 Debug"
-
-"lib - Win32 Debug" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Debug"
-
-!ENDIF
-
-# End Project Dependency
-################################################################################
-# Begin Source File
-
-SOURCE=.\sgmlnorm\sgmlnorm.cxx
-DEP_CPP_SGMLN=\
- ".\generic\SGMLApplication.h"\
- ".\include\Allocator.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\GenericEventHandler.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\sgmlnorm\SGMLGenerator.h"\
-
-
-"$(INTDIR)\sgmlnorm.obj" : $(SOURCE) $(DEP_CPP_SGMLN) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\sgmlnorm\SGMLGenerator.cxx
-DEP_CPP_SGMLG=\
- ".\generic\SGMLApplication.h"\
- ".\include\Boolean.h"\
- ".\include\CodingSystem.h"\
- ".\include\config.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\sgmlnorm\SGMLGenerator.h"\
-
-
-"$(INTDIR)\SGMLGenerator.obj" : $(SOURCE) $(DEP_CPP_SGMLG) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-# End Target
-################################################################################
-# Begin Target
-
-# Name "all - Win32 Release"
-# Name "all - Win32 Debug"
-
-!IF "$(CFG)" == "all - Win32 Release"
-
-".\all" :
- CD all
-
-
-!ELSEIF "$(CFG)" == "all - Win32 Debug"
-
-".\all" :
- CD all
-
-
-!ENDIF
-
-################################################################################
-# Begin Project Dependency
-
-# Project_Dep_Name "lib"
-
-!IF "$(CFG)" == "all - Win32 Release"
-
-"lib - Win32 Release" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "all - Win32 Debug"
-
-"lib - Win32 Debug" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Debug"
-
-!ENDIF
-
-# End Project Dependency
-################################################################################
-# Begin Project Dependency
-
-# Project_Dep_Name "nsgmls"
-
-!IF "$(CFG)" == "all - Win32 Release"
-
-"nsgmls - Win32 Release" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="nsgmls - Win32 Release"
-
-!ELSEIF "$(CFG)" == "all - Win32 Debug"
-
-"nsgmls - Win32 Debug" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="nsgmls - Win32 Debug"
-
-!ENDIF
-
-# End Project Dependency
-################################################################################
-# Begin Project Dependency
-
-# Project_Dep_Name "sgmlnorm"
-
-!IF "$(CFG)" == "all - Win32 Release"
-
-"sgmlnorm - Win32 Release" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="sgmlnorm - Win32 Release"
-
-!ELSEIF "$(CFG)" == "all - Win32 Debug"
-
-"sgmlnorm - Win32 Debug" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="sgmlnorm - Win32 Debug"
-
-!ENDIF
-
-# End Project Dependency
-################################################################################
-# Begin Project Dependency
-
-# Project_Dep_Name "spam"
-
-!IF "$(CFG)" == "all - Win32 Release"
-
-"spam - Win32 Release" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="spam - Win32 Release"
-
-!ELSEIF "$(CFG)" == "all - Win32 Debug"
-
-"spam - Win32 Debug" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="spam - Win32 Debug"
-
-!ENDIF
-
-# End Project Dependency
-################################################################################
-# Begin Project Dependency
-
-# Project_Dep_Name "spent"
-
-!IF "$(CFG)" == "all - Win32 Release"
-
-"spent - Win32 Release" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="spent - Win32 Release"
-
-!ELSEIF "$(CFG)" == "all - Win32 Debug"
-
-"spent - Win32 Debug" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="spent - Win32 Debug"
-
-!ENDIF
-
-# End Project Dependency
-################################################################################
-# Begin Project Dependency
-
-# Project_Dep_Name "sx"
-
-!IF "$(CFG)" == "all - Win32 Release"
-
-"sx - Win32 Release" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="sx - Win32 Release"
-
-!ELSEIF "$(CFG)" == "all - Win32 Debug"
-
-"sx - Win32 Debug" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="sx - Win32 Debug"
-
-!ENDIF
-
-# End Project Dependency
-# End Target
-################################################################################
-# Begin Target
-
-# Name "sx - Win32 Release"
-# Name "sx - Win32 Debug"
-
-!IF "$(CFG)" == "sx - Win32 Release"
-
-!ELSEIF "$(CFG)" == "sx - Win32 Debug"
-
-!ENDIF
-
-################################################################################
-# Begin Project Dependency
-
-# Project_Dep_Name "lib"
-
-!IF "$(CFG)" == "sx - Win32 Release"
-
-"lib - Win32 Release" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Release"
-
-!ELSEIF "$(CFG)" == "sx - Win32 Debug"
-
-"lib - Win32 Debug" :
- $(MAKE) /$(MAKEFLAGS) /F ".\SP.mak" CFG="lib - Win32 Debug"
-
-!ENDIF
-
-# End Project Dependency
-################################################################################
-# Begin Source File
-
-SOURCE=.\sx\sx.cxx
-DEP_CPP_SX_CX=\
- ".\include\Allocator.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CmdLineApp.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityApp.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\Event.h"\
- ".\include\EventsWanted.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\MessageBuilder.h"\
- ".\include\MessageFormatter.h"\
- ".\include\MessageReporter.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\ParserApp.h"\
- ".\include\ParserOptions.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\SgmlParser.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\sptchar.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\sx\SxMessages.h"\
- ".\sx\XmlOutputEventHandler.h"\
-
-
-"$(INTDIR)\sx.obj" : $(SOURCE) $(DEP_CPP_SX_CX) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\sx\sx_inst.cxx
-DEP_CPP_SX_IN=\
- ".\include\Boolean.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\InputSource.h"\
- ".\include\Link.h"\
- ".\include\Location.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\TypeId.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
-
-
-"$(INTDIR)\sx_inst.obj" : $(SOURCE) $(DEP_CPP_SX_IN) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\sx\XmlOutputEventHandler.cxx
-DEP_CPP_XMLOU=\
- ".\include\Allocator.h"\
- ".\include\Attribute.h"\
- ".\include\Attributed.h"\
- ".\include\Boolean.h"\
- ".\include\CharMap.cxx"\
- ".\include\CharMap.h"\
- ".\include\CharsetDecl.h"\
- ".\include\CharsetInfo.h"\
- ".\include\CodingSystem.h"\
- ".\include\CodingSystemKit.h"\
- ".\include\config.h"\
- ".\include\constant.h"\
- ".\include\ContentToken.h"\
- ".\include\CopyOwner.cxx"\
- ".\include\CopyOwner.h"\
- ".\include\Dtd.h"\
- ".\include\ElementType.h"\
- ".\include\Entity.h"\
- ".\include\EntityCatalog.h"\
- ".\include\EntityDecl.h"\
- ".\include\EntityManager.h"\
- ".\include\ErrorCountEventHandler.h"\
- ".\include\Event.h"\
- ".\include\ExtendEntityManager.h"\
- ".\include\ExternalId.h"\
- ".\include\Hash.h"\
- ".\include\HashTable.cxx"\
- ".\include\HashTable.h"\
- ".\include\HashTableItemBase.cxx"\
- ".\include\HashTableItemBase.h"\
- ".\include\InputSource.h"\
- ".\include\ISet.cxx"\
- ".\include\ISet.h"\
- ".\include\Link.h"\
- ".\include\Location.h"\
- ".\include\Lpd.h"\
- ".\include\macros.h"\
- ".\include\Markup.h"\
- ".\include\Message.h"\
- ".\include\MessageArg.h"\
- ".\include\Mode.h"\
- ".\include\Named.h"\
- ".\include\NamedResource.h"\
- ".\include\NamedResourceTable.h"\
- ".\include\NamedTable.h"\
- ".\include\NCVector.h"\
- ".\include\Notation.h"\
- ".\include\OutputByteStream.h"\
- ".\include\OutputCharStream.h"\
- ".\include\Owner.cxx"\
- ".\include\Owner.h"\
- ".\include\OwnerTable.cxx"\
- ".\include\OwnerTable.h"\
- ".\include\PointerTable.cxx"\
- ".\include\PointerTable.h"\
- ".\include\Ptr.cxx"\
- ".\include\Ptr.h"\
- ".\include\RangeMap.cxx"\
- ".\include\RangeMap.h"\
- ".\include\Resource.h"\
- ".\include\rtti.h"\
- ".\include\Sd.h"\
- ".\include\SdText.h"\
- ".\include\ShortReferenceMap.h"\
- ".\include\StorageManager.h"\
- ".\include\StringC.h"\
- ".\include\StringOf.cxx"\
- ".\include\StringOf.h"\
- ".\include\StringResource.h"\
- ".\include\SubstTable.cxx"\
- ".\include\SubstTable.h"\
- ".\include\Syntax.h"\
- ".\include\Text.h"\
- ".\include\TypeId.h"\
- ".\include\UnivCharsetDesc.h"\
- ".\include\UTF8CodingSystem.h"\
- ".\include\Vector.cxx"\
- ".\include\Vector.h"\
- ".\include\XcharMap.cxx"\
- ".\include\XcharMap.h"\
- ".\include\xnew.h"\
- ".\sx\XmlOutputEventHandler.h"\
- ".\sx\XmlOutputMessages.h"\
-
-
-"$(INTDIR)\XmlOutputEventHandler.obj" : $(SOURCE) $(DEP_CPP_XMLOU) "$(INTDIR)"
- $(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-# End Source File
-################################################################################
-# Begin Source File
-
-SOURCE=.\sx\sx.rc
-DEP_RSC_SX_RC=\
- ".\sx\SxMessages.rc"\
- ".\sx\XmlOutputMessages.rc"\
-
-
-!IF "$(CFG)" == "sx - Win32 Release"
-
-
-"$(INTDIR)\sx.res" : $(SOURCE) $(DEP_RSC_SX_RC) "$(INTDIR)"
- $(RSC) /l 0x809 /fo"$(INTDIR)/sx.res" /i "sx" /d "NDEBUG" $(SOURCE)
-
-
-!ELSEIF "$(CFG)" == "sx - Win32 Debug"
-
-
-"$(INTDIR)\sx.res" : $(SOURCE) $(DEP_RSC_SX_RC) "$(INTDIR)"
- $(RSC) /l 0x809 /fo"$(INTDIR)/sx.res" /i "sx" /d "_DEBUG" $(SOURCE)
-
-
-!ENDIF
-
-# End Source File
-# End Target
-# End Project
-################################################################################
diff --git a/packages/node-libofx/OpenSP-1.5.2/a.out b/packages/node-libofx/OpenSP-1.5.2/a.out
deleted file mode 100755
index 4f36e8f22ac..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/a.out
+++ /dev/null
@@ -1,5537 +0,0 @@
-#!/Users/james/tmp/emsdk/node/8.9.1_64bit/bin/node
-// Copyright 2010 The Emscripten Authors. All rights reserved.
-// Emscripten is available under two separate licenses, the MIT license and the
-// University of Illinois/NCSA Open Source License. Both these licenses can be
-// found in the LICENSE file.
-
-// The Module object: Our interface to the outside world. We import
-// and export values on it. There are various ways Module can be used:
-// 1. Not defined. We create it here
-// 2. A function parameter, function(Module) { ..generated code.. }
-// 3. pre-run appended it, var Module = {}; ..generated code..
-// 4. External script tag defines var Module.
-// We need to check if Module already exists (e.g. case 3 above).
-// Substitution will be replaced with actual code on later stage of the build,
-// this way Closure Compiler will not mangle it (e.g. case 4. above).
-// Note that if you want to run closure, and also to use Module
-// after the generated code, you will need to define var Module = {};
-// before the code. Then that object will be used in the code, and you
-// can continue to use Module afterwards as well.
-var Module = typeof Module !== 'undefined' ? Module : {};
-
-// --pre-jses are emitted after the Module integration code, so that they can
-// refer to Module (if they choose; they can also define Module)
-// {{PRE_JSES}}
-
-// Sometimes an existing Module object exists with properties
-// meant to overwrite the default module functionality. Here
-// we collect those properties and reapply _after_ we configure
-// the current environment's defaults to avoid having to be so
-// defensive during initialization.
-var moduleOverrides = {};
-var key;
-for (key in Module) {
- if (Module.hasOwnProperty(key)) {
- moduleOverrides[key] = Module[key];
- }
-}
-
-Module['arguments'] = [];
-Module['thisProgram'] = './this.program';
-Module['quit'] = function(status, toThrow) {
- throw toThrow;
-};
-Module['preRun'] = [];
-Module['postRun'] = [];
-
-// Determine the runtime environment we are in. You can customize this by
-// setting the ENVIRONMENT setting at compile time (see settings.js).
-
-var ENVIRONMENT_IS_WEB = false;
-var ENVIRONMENT_IS_WORKER = false;
-var ENVIRONMENT_IS_NODE = false;
-var ENVIRONMENT_HAS_NODE = false;
-var ENVIRONMENT_IS_SHELL = false;
-ENVIRONMENT_IS_WEB = typeof window === 'object';
-ENVIRONMENT_IS_WORKER = typeof importScripts === 'function';
-ENVIRONMENT_HAS_NODE = typeof process === 'object' && typeof require === 'function';
-ENVIRONMENT_IS_NODE = ENVIRONMENT_HAS_NODE && !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_WORKER;
-ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER;
-
-if (Module['ENVIRONMENT']) {
- throw new Error('Module.ENVIRONMENT has been deprecated. To force the environment, use the ENVIRONMENT compile-time option (for example, -s ENVIRONMENT=web or -s ENVIRONMENT=node)');
-}
-
-
-// Three configurations we can be running in:
-// 1) We could be the application main() thread running in the main JS UI thread. (ENVIRONMENT_IS_WORKER == false and ENVIRONMENT_IS_PTHREAD == false)
-// 2) We could be the application main() thread proxied to worker. (with Emscripten -s PROXY_TO_WORKER=1) (ENVIRONMENT_IS_WORKER == true, ENVIRONMENT_IS_PTHREAD == false)
-// 3) We could be an application pthread running in a worker. (ENVIRONMENT_IS_WORKER == true and ENVIRONMENT_IS_PTHREAD == true)
-
-
-
-
-// `/` should be present at the end if `scriptDirectory` is not empty
-var scriptDirectory = '';
-function locateFile(path) {
- if (Module['locateFile']) {
- return Module['locateFile'](path, scriptDirectory);
- } else {
- return scriptDirectory + path;
- }
-}
-
-if (ENVIRONMENT_IS_NODE) {
- scriptDirectory = __dirname + '/';
-
- // Expose functionality in the same simple way that the shells work
- // Note that we pollute the global namespace here, otherwise we break in node
- var nodeFS;
- var nodePath;
-
- Module['read'] = function shell_read(filename, binary) {
- var ret;
- ret = tryParseAsDataURI(filename);
- if (!ret) {
- if (!nodeFS) nodeFS = require('fs');
- if (!nodePath) nodePath = require('path');
- filename = nodePath['normalize'](filename);
- ret = nodeFS['readFileSync'](filename);
- }
- return binary ? ret : ret.toString();
- };
-
- Module['readBinary'] = function readBinary(filename) {
- var ret = Module['read'](filename, true);
- if (!ret.buffer) {
- ret = new Uint8Array(ret);
- }
- assert(ret.buffer);
- return ret;
- };
-
- if (process['argv'].length > 1) {
- Module['thisProgram'] = process['argv'][1].replace(/\\/g, '/');
- }
-
- Module['arguments'] = process['argv'].slice(2);
-
- if (typeof module !== 'undefined') {
- module['exports'] = Module;
- }
-
- process['on']('uncaughtException', function(ex) {
- // suppress ExitStatus exceptions from showing an error
- if (!(ex instanceof ExitStatus)) {
- throw ex;
- }
- });
- // Currently node will swallow unhandled rejections, but this behavior is
- // deprecated, and in the future it will exit with error status.
- process['on']('unhandledRejection', abort);
-
- Module['quit'] = function(status) {
- process['exit'](status);
- };
-
- Module['inspect'] = function () { return '[Emscripten Module object]'; };
-} else
-if (ENVIRONMENT_IS_SHELL) {
-
-
- if (typeof read != 'undefined') {
- Module['read'] = function shell_read(f) {
- var data = tryParseAsDataURI(f);
- if (data) {
- return intArrayToString(data);
- }
- return read(f);
- };
- }
-
- Module['readBinary'] = function readBinary(f) {
- var data;
- data = tryParseAsDataURI(f);
- if (data) {
- return data;
- }
- if (typeof readbuffer === 'function') {
- return new Uint8Array(readbuffer(f));
- }
- data = read(f, 'binary');
- assert(typeof data === 'object');
- return data;
- };
-
- if (typeof scriptArgs != 'undefined') {
- Module['arguments'] = scriptArgs;
- } else if (typeof arguments != 'undefined') {
- Module['arguments'] = arguments;
- }
-
- if (typeof quit === 'function') {
- Module['quit'] = function(status) {
- quit(status);
- }
- }
-} else
-if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) {
- if (ENVIRONMENT_IS_WORKER) { // Check worker, not web, since window could be polyfilled
- scriptDirectory = self.location.href;
- } else if (document.currentScript) { // web
- scriptDirectory = document.currentScript.src;
- }
- // blob urls look like blob:http://site.com/etc/etc and we cannot infer anything from them.
- // otherwise, slice off the final part of the url to find the script directory.
- // if scriptDirectory does not contain a slash, lastIndexOf will return -1,
- // and scriptDirectory will correctly be replaced with an empty string.
- if (scriptDirectory.indexOf('blob:') !== 0) {
- scriptDirectory = scriptDirectory.substr(0, scriptDirectory.lastIndexOf('/')+1);
- } else {
- scriptDirectory = '';
- }
-
-
- Module['read'] = function shell_read(url) {
- try {
- var xhr = new XMLHttpRequest();
- xhr.open('GET', url, false);
- xhr.send(null);
- return xhr.responseText;
- } catch (err) {
- var data = tryParseAsDataURI(url);
- if (data) {
- return intArrayToString(data);
- }
- throw err;
- }
- };
-
- if (ENVIRONMENT_IS_WORKER) {
- Module['readBinary'] = function readBinary(url) {
- try {
- var xhr = new XMLHttpRequest();
- xhr.open('GET', url, false);
- xhr.responseType = 'arraybuffer';
- xhr.send(null);
- return new Uint8Array(xhr.response);
- } catch (err) {
- var data = tryParseAsDataURI(url);
- if (data) {
- return data;
- }
- throw err;
- }
- };
- }
-
- Module['readAsync'] = function readAsync(url, onload, onerror) {
- var xhr = new XMLHttpRequest();
- xhr.open('GET', url, true);
- xhr.responseType = 'arraybuffer';
- xhr.onload = function xhr_onload() {
- if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0
- onload(xhr.response);
- return;
- }
- var data = tryParseAsDataURI(url);
- if (data) {
- onload(data.buffer);
- return;
- }
- onerror();
- };
- xhr.onerror = onerror;
- xhr.send(null);
- };
-
- Module['setWindowTitle'] = function(title) { document.title = title };
-} else
-{
- throw new Error('environment detection error');
-}
-
-// Set up the out() and err() hooks, which are how we can print to stdout or
-// stderr, respectively.
-// If the user provided Module.print or printErr, use that. Otherwise,
-// console.log is checked first, as 'print' on the web will open a print dialogue
-// printErr is preferable to console.warn (works better in shells)
-// bind(console) is necessary to fix IE/Edge closed dev tools panel behavior.
-var out = Module['print'] || (typeof console !== 'undefined' ? console.log.bind(console) : (typeof print !== 'undefined' ? print : null));
-var err = Module['printErr'] || (typeof printErr !== 'undefined' ? printErr : ((typeof console !== 'undefined' && console.warn.bind(console)) || out));
-
-// Merge back in the overrides
-for (key in moduleOverrides) {
- if (moduleOverrides.hasOwnProperty(key)) {
- Module[key] = moduleOverrides[key];
- }
-}
-// Free the object hierarchy contained in the overrides, this lets the GC
-// reclaim data used e.g. in memoryInitializerRequest, which is a large typed array.
-moduleOverrides = undefined;
-
-// perform assertions in shell.js after we set up out() and err(), as otherwise if an assertion fails it cannot print the message
-assert(typeof Module['memoryInitializerPrefixURL'] === 'undefined', 'Module.memoryInitializerPrefixURL option was removed, use Module.locateFile instead');
-assert(typeof Module['pthreadMainPrefixURL'] === 'undefined', 'Module.pthreadMainPrefixURL option was removed, use Module.locateFile instead');
-assert(typeof Module['cdInitializerPrefixURL'] === 'undefined', 'Module.cdInitializerPrefixURL option was removed, use Module.locateFile instead');
-assert(typeof Module['filePackagePrefixURL'] === 'undefined', 'Module.filePackagePrefixURL option was removed, use Module.locateFile instead');
-
-
-
-// Copyright 2017 The Emscripten Authors. All rights reserved.
-// Emscripten is available under two separate licenses, the MIT license and the
-// University of Illinois/NCSA Open Source License. Both these licenses can be
-// found in the LICENSE file.
-
-// {{PREAMBLE_ADDITIONS}}
-
-var STACK_ALIGN = 16;
-
-// stack management, and other functionality that is provided by the compiled code,
-// should not be used before it is ready
-stackSave = stackRestore = stackAlloc = function() {
- abort('cannot use the stack before compiled code is ready to run, and has provided stack access');
-};
-
-function staticAlloc(size) {
- abort('staticAlloc is no longer available at runtime; instead, perform static allocations at compile time (using makeStaticAlloc)');
-}
-
-function dynamicAlloc(size) {
- assert(DYNAMICTOP_PTR);
- var ret = HEAP32[DYNAMICTOP_PTR>>2];
- var end = (ret + size + 15) & -16;
- if (end > _emscripten_get_heap_size()) {
- abort('failure to dynamicAlloc - memory growth etc. is not supported there, call malloc/sbrk directly');
- }
- HEAP32[DYNAMICTOP_PTR>>2] = end;
- return ret;
-}
-
-function alignMemory(size, factor) {
- if (!factor) factor = STACK_ALIGN; // stack alignment (16-byte) by default
- return Math.ceil(size / factor) * factor;
-}
-
-function getNativeTypeSize(type) {
- switch (type) {
- case 'i1': case 'i8': return 1;
- case 'i16': return 2;
- case 'i32': return 4;
- case 'i64': return 8;
- case 'float': return 4;
- case 'double': return 8;
- default: {
- if (type[type.length-1] === '*') {
- return 4; // A pointer
- } else if (type[0] === 'i') {
- var bits = parseInt(type.substr(1));
- assert(bits % 8 === 0, 'getNativeTypeSize invalid bits ' + bits + ', type ' + type);
- return bits / 8;
- } else {
- return 0;
- }
- }
- }
-}
-
-function warnOnce(text) {
- if (!warnOnce.shown) warnOnce.shown = {};
- if (!warnOnce.shown[text]) {
- warnOnce.shown[text] = 1;
- err(text);
- }
-}
-
-var asm2wasmImports = { // special asm2wasm imports
- "f64-rem": function(x, y) {
- return x % y;
- },
- "debugger": function() {
- debugger;
- }
-};
-
-
-
-var jsCallStartIndex = 1;
-var functionPointers = new Array(0);
-
-
-// 'sig' parameter is required for the llvm backend but only when func is not
-// already a WebAssembly function.
-function addFunction(func, sig) {
-
-
- var base = 0;
- for (var i = base; i < base + 0; i++) {
- if (!functionPointers[i]) {
- functionPointers[i] = func;
- return jsCallStartIndex + i;
- }
- }
- throw 'Finished up all reserved function pointers. Use a higher value for RESERVED_FUNCTION_POINTERS.';
-
-}
-
-function removeFunction(index) {
-
- functionPointers[index-jsCallStartIndex] = null;
-}
-
-var funcWrappers = {};
-
-function getFuncWrapper(func, sig) {
- if (!func) return; // on null pointer, return undefined
- assert(sig);
- if (!funcWrappers[sig]) {
- funcWrappers[sig] = {};
- }
- var sigCache = funcWrappers[sig];
- if (!sigCache[func]) {
- // optimize away arguments usage in common cases
- if (sig.length === 1) {
- sigCache[func] = function dynCall_wrapper() {
- return dynCall(sig, func);
- };
- } else if (sig.length === 2) {
- sigCache[func] = function dynCall_wrapper(arg) {
- return dynCall(sig, func, [arg]);
- };
- } else {
- // general case
- sigCache[func] = function dynCall_wrapper() {
- return dynCall(sig, func, Array.prototype.slice.call(arguments));
- };
- }
- }
- return sigCache[func];
-}
-
-
-function makeBigInt(low, high, unsigned) {
- return unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0));
-}
-
-function dynCall(sig, ptr, args) {
- if (args && args.length) {
- assert(args.length == sig.length-1);
- assert(('dynCall_' + sig) in Module, 'bad function pointer type - no table for sig \'' + sig + '\'');
- return Module['dynCall_' + sig].apply(null, [ptr].concat(args));
- } else {
- assert(sig.length == 1);
- assert(('dynCall_' + sig) in Module, 'bad function pointer type - no table for sig \'' + sig + '\'');
- return Module['dynCall_' + sig].call(null, ptr);
- }
-}
-
-var tempRet0 = 0;
-
-var setTempRet0 = function(value) {
- tempRet0 = value;
-}
-
-var getTempRet0 = function() {
- return tempRet0;
-}
-
-function getCompilerSetting(name) {
- throw 'You must build with -s RETAIN_COMPILER_SETTINGS=1 for getCompilerSetting or emscripten_get_compiler_setting to work';
-}
-
-var Runtime = {
- // helpful errors
- getTempRet0: function() { abort('getTempRet0() is now a top-level function, after removing the Runtime object. Remove "Runtime."') },
- staticAlloc: function() { abort('staticAlloc() is now a top-level function, after removing the Runtime object. Remove "Runtime."') },
- stackAlloc: function() { abort('stackAlloc() is now a top-level function, after removing the Runtime object. Remove "Runtime."') },
-};
-
-// The address globals begin at. Very low in memory, for code size and optimization opportunities.
-// Above 0 is static memory, starting with globals.
-// Then the stack.
-// Then 'dynamic' memory for sbrk.
-var GLOBAL_BASE = 8;
-
-
-
-
-// === Preamble library stuff ===
-
-// Documentation for the public APIs defined in this file must be updated in:
-// site/source/docs/api_reference/preamble.js.rst
-// A prebuilt local version of the documentation is available at:
-// site/build/text/docs/api_reference/preamble.js.txt
-// You can also build docs locally as HTML or other formats in site/
-// An online HTML version (which may be of a different version of Emscripten)
-// is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html
-
-
-
-
-
-/** @type {function(number, string, boolean=)} */
-function getValue(ptr, type, noSafe) {
- type = type || 'i8';
- if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit
- switch(type) {
- case 'i1': return HEAP8[((ptr)>>0)];
- case 'i8': return HEAP8[((ptr)>>0)];
- case 'i16': return HEAP16[((ptr)>>1)];
- case 'i32': return HEAP32[((ptr)>>2)];
- case 'i64': return HEAP32[((ptr)>>2)];
- case 'float': return HEAPF32[((ptr)>>2)];
- case 'double': return HEAPF64[((ptr)>>3)];
- default: abort('invalid type for getValue: ' + type);
- }
- return null;
-}
-
-
-
-
-// Wasm globals
-
-var wasmMemory;
-
-// Potentially used for direct table calls.
-var wasmTable;
-
-
-//========================================
-// Runtime essentials
-//========================================
-
-// whether we are quitting the application. no code should run after this.
-// set in exit() and abort()
-var ABORT = false;
-
-// set by exit() and abort(). Passed to 'onExit' handler.
-// NOTE: This is also used as the process return code code in shell environments
-// but only when noExitRuntime is false.
-var EXITSTATUS = 0;
-
-/** @type {function(*, string=)} */
-function assert(condition, text) {
- if (!condition) {
- abort('Assertion failed: ' + text);
- }
-}
-
-// Returns the C function with a specified identifier (for C++, you need to do manual name mangling)
-function getCFunc(ident) {
- var func = Module['_' + ident]; // closure exported function
- assert(func, 'Cannot call unknown function ' + ident + ', make sure it is exported');
- return func;
-}
-
-// C calling interface.
-function ccall(ident, returnType, argTypes, args, opts) {
- // For fast lookup of conversion functions
- var toC = {
- 'string': function(str) {
- var ret = 0;
- if (str !== null && str !== undefined && str !== 0) { // null string
- // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0'
- var len = (str.length << 2) + 1;
- ret = stackAlloc(len);
- stringToUTF8(str, ret, len);
- }
- return ret;
- },
- 'array': function(arr) {
- var ret = stackAlloc(arr.length);
- writeArrayToMemory(arr, ret);
- return ret;
- }
- };
-
- function convertReturnValue(ret) {
- if (returnType === 'string') return UTF8ToString(ret);
- if (returnType === 'boolean') return Boolean(ret);
- return ret;
- }
-
- var func = getCFunc(ident);
- var cArgs = [];
- var stack = 0;
- assert(returnType !== 'array', 'Return type should not be "array".');
- if (args) {
- for (var i = 0; i < args.length; i++) {
- var converter = toC[argTypes[i]];
- if (converter) {
- if (stack === 0) stack = stackSave();
- cArgs[i] = converter(args[i]);
- } else {
- cArgs[i] = args[i];
- }
- }
- }
- var ret = func.apply(null, cArgs);
- ret = convertReturnValue(ret);
- if (stack !== 0) stackRestore(stack);
- return ret;
-}
-
-function cwrap(ident, returnType, argTypes, opts) {
- return function() {
- return ccall(ident, returnType, argTypes, arguments, opts);
- }
-}
-
-/** @type {function(number, number, string, boolean=)} */
-function setValue(ptr, value, type, noSafe) {
- type = type || 'i8';
- if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit
- switch(type) {
- case 'i1': HEAP8[((ptr)>>0)]=value; break;
- case 'i8': HEAP8[((ptr)>>0)]=value; break;
- case 'i16': HEAP16[((ptr)>>1)]=value; break;
- case 'i32': HEAP32[((ptr)>>2)]=value; break;
- case 'i64': (tempI64 = [value>>>0,(tempDouble=value,(+(Math_abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math_min((+(Math_floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math_ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((ptr)>>2)]=tempI64[0],HEAP32[(((ptr)+(4))>>2)]=tempI64[1]); break;
- case 'float': HEAPF32[((ptr)>>2)]=value; break;
- case 'double': HEAPF64[((ptr)>>3)]=value; break;
- default: abort('invalid type for setValue: ' + type);
- }
-}
-
-var ALLOC_NORMAL = 0; // Tries to use _malloc()
-var ALLOC_STACK = 1; // Lives for the duration of the current function call
-var ALLOC_DYNAMIC = 2; // Cannot be freed except through sbrk
-var ALLOC_NONE = 3; // Do not allocate
-
-// allocate(): This is for internal use. You can use it yourself as well, but the interface
-// is a little tricky (see docs right below). The reason is that it is optimized
-// for multiple syntaxes to save space in generated code. So you should
-// normally not use allocate(), and instead allocate memory using _malloc(),
-// initialize it with setValue(), and so forth.
-// @slab: An array of data, or a number. If a number, then the size of the block to allocate,
-// in *bytes* (note that this is sometimes confusing: the next parameter does not
-// affect this!)
-// @types: Either an array of types, one for each byte (or 0 if no type at that position),
-// or a single type which is used for the entire block. This only matters if there
-// is initial data - if @slab is a number, then this does not matter at all and is
-// ignored.
-// @allocator: How to allocate memory, see ALLOC_*
-/** @type {function((TypedArray|Array|number), string, number, number=)} */
-function allocate(slab, types, allocator, ptr) {
- var zeroinit, size;
- if (typeof slab === 'number') {
- zeroinit = true;
- size = slab;
- } else {
- zeroinit = false;
- size = slab.length;
- }
-
- var singleType = typeof types === 'string' ? types : null;
-
- var ret;
- if (allocator == ALLOC_NONE) {
- ret = ptr;
- } else {
- ret = [_malloc,
- stackAlloc,
- dynamicAlloc][allocator](Math.max(size, singleType ? 1 : types.length));
- }
-
- if (zeroinit) {
- var stop;
- ptr = ret;
- assert((ret & 3) == 0);
- stop = ret + (size & ~3);
- for (; ptr < stop; ptr += 4) {
- HEAP32[((ptr)>>2)]=0;
- }
- stop = ret + size;
- while (ptr < stop) {
- HEAP8[((ptr++)>>0)]=0;
- }
- return ret;
- }
-
- if (singleType === 'i8') {
- if (slab.subarray || slab.slice) {
- HEAPU8.set(/** @type {!Uint8Array} */ (slab), ret);
- } else {
- HEAPU8.set(new Uint8Array(slab), ret);
- }
- return ret;
- }
-
- var i = 0, type, typeSize, previousType;
- while (i < size) {
- var curr = slab[i];
-
- type = singleType || types[i];
- if (type === 0) {
- i++;
- continue;
- }
- assert(type, 'Must know what type to store in allocate!');
-
- if (type == 'i64') type = 'i32'; // special case: we have one i32 here, and one i32 later
-
- setValue(ret+i, curr, type);
-
- // no need to look up size unless type changes, so cache it
- if (previousType !== type) {
- typeSize = getNativeTypeSize(type);
- previousType = type;
- }
- i += typeSize;
- }
-
- return ret;
-}
-
-// Allocate memory during any stage of startup - static memory early on, dynamic memory later, malloc when ready
-function getMemory(size) {
- if (!runtimeInitialized) return dynamicAlloc(size);
- return _malloc(size);
-}
-
-
-
-
-/** @type {function(number, number=)} */
-function Pointer_stringify(ptr, length) {
- abort("this function has been removed - you should use UTF8ToString(ptr, maxBytesToRead) instead!");
-}
-
-// Given a pointer 'ptr' to a null-terminated ASCII-encoded string in the emscripten HEAP, returns
-// a copy of that string as a Javascript String object.
-
-function AsciiToString(ptr) {
- var str = '';
- while (1) {
- var ch = HEAPU8[((ptr++)>>0)];
- if (!ch) return str;
- str += String.fromCharCode(ch);
- }
-}
-
-// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr',
-// null-terminated and encoded in ASCII form. The copy will require at most str.length+1 bytes of space in the HEAP.
-
-function stringToAscii(str, outPtr) {
- return writeAsciiToMemory(str, outPtr, false);
-}
-
-
-// Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the given array that contains uint8 values, returns
-// a copy of that string as a Javascript String object.
-
-var UTF8Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf8') : undefined;
-
-/**
- * @param {number} idx
- * @param {number=} maxBytesToRead
- * @return {string}
- */
-function UTF8ArrayToString(u8Array, idx, maxBytesToRead) {
- var endIdx = idx + maxBytesToRead;
- var endPtr = idx;
- // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself.
- // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage.
- // (As a tiny code save trick, compare endPtr against endIdx using a negation, so that undefined means Infinity)
- while (u8Array[endPtr] && !(endPtr >= endIdx)) ++endPtr;
-
- if (endPtr - idx > 16 && u8Array.subarray && UTF8Decoder) {
- return UTF8Decoder.decode(u8Array.subarray(idx, endPtr));
- } else {
- var str = '';
- // If building with TextDecoder, we have already computed the string length above, so test loop end condition against that
- while (idx < endPtr) {
- // For UTF8 byte structure, see:
- // http://en.wikipedia.org/wiki/UTF-8#Description
- // https://www.ietf.org/rfc/rfc2279.txt
- // https://tools.ietf.org/html/rfc3629
- var u0 = u8Array[idx++];
- if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; }
- var u1 = u8Array[idx++] & 63;
- if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; }
- var u2 = u8Array[idx++] & 63;
- if ((u0 & 0xF0) == 0xE0) {
- u0 = ((u0 & 15) << 12) | (u1 << 6) | u2;
- } else {
- if ((u0 & 0xF8) != 0xF0) warnOnce('Invalid UTF-8 leading byte 0x' + u0.toString(16) + ' encountered when deserializing a UTF-8 string on the asm.js/wasm heap to a JS string!');
- u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | (u8Array[idx++] & 63);
- }
-
- if (u0 < 0x10000) {
- str += String.fromCharCode(u0);
- } else {
- var ch = u0 - 0x10000;
- str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF));
- }
- }
- }
- return str;
-}
-
-// Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the emscripten HEAP, returns a
-// copy of that string as a Javascript String object.
-// maxBytesToRead: an optional length that specifies the maximum number of bytes to read. You can omit
-// this parameter to scan the string until the first \0 byte. If maxBytesToRead is
-// passed, and the string at [ptr, ptr+maxBytesToReadr[ contains a null byte in the
-// middle, then the string will cut short at that byte index (i.e. maxBytesToRead will
-// not produce a string of exact length [ptr, ptr+maxBytesToRead[)
-// N.B. mixing frequent uses of UTF8ToString() with and without maxBytesToRead may
-// throw JS JIT optimizations off, so it is worth to consider consistently using one
-// style or the other.
-/**
- * @param {number} ptr
- * @param {number=} maxBytesToRead
- * @return {string}
- */
-function UTF8ToString(ptr, maxBytesToRead) {
- return ptr ? UTF8ArrayToString(HEAPU8, ptr, maxBytesToRead) : '';
-}
-
-// Copies the given Javascript String object 'str' to the given byte array at address 'outIdx',
-// encoded in UTF8 form and null-terminated. The copy will require at most str.length*4+1 bytes of space in the HEAP.
-// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write.
-// Parameters:
-// str: the Javascript string to copy.
-// outU8Array: the array to copy to. Each index in this array is assumed to be one 8-byte element.
-// outIdx: The starting offset in the array to begin the copying.
-// maxBytesToWrite: The maximum number of bytes this function can write to the array.
-// This count should include the null terminator,
-// i.e. if maxBytesToWrite=1, only the null terminator will be written and nothing else.
-// maxBytesToWrite=0 does not write any bytes to the output, not even the null terminator.
-// Returns the number of bytes written, EXCLUDING the null terminator.
-
-function stringToUTF8Array(str, outU8Array, outIdx, maxBytesToWrite) {
- if (!(maxBytesToWrite > 0)) // Parameter maxBytesToWrite is not optional. Negative values, 0, null, undefined and false each don't write out any bytes.
- return 0;
-
- var startIdx = outIdx;
- var endIdx = outIdx + maxBytesToWrite - 1; // -1 for string null terminator.
- for (var i = 0; i < str.length; ++i) {
- // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! So decode UTF16->UTF32->UTF8.
- // See http://unicode.org/faq/utf_bom.html#utf16-3
- // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629
- var u = str.charCodeAt(i); // possibly a lead surrogate
- if (u >= 0xD800 && u <= 0xDFFF) {
- var u1 = str.charCodeAt(++i);
- u = 0x10000 + ((u & 0x3FF) << 10) | (u1 & 0x3FF);
- }
- if (u <= 0x7F) {
- if (outIdx >= endIdx) break;
- outU8Array[outIdx++] = u;
- } else if (u <= 0x7FF) {
- if (outIdx + 1 >= endIdx) break;
- outU8Array[outIdx++] = 0xC0 | (u >> 6);
- outU8Array[outIdx++] = 0x80 | (u & 63);
- } else if (u <= 0xFFFF) {
- if (outIdx + 2 >= endIdx) break;
- outU8Array[outIdx++] = 0xE0 | (u >> 12);
- outU8Array[outIdx++] = 0x80 | ((u >> 6) & 63);
- outU8Array[outIdx++] = 0x80 | (u & 63);
- } else {
- if (outIdx + 3 >= endIdx) break;
- if (u >= 0x200000) warnOnce('Invalid Unicode code point 0x' + u.toString(16) + ' encountered when serializing a JS string to an UTF-8 string on the asm.js/wasm heap! (Valid unicode code points should be in range 0-0x1FFFFF).');
- outU8Array[outIdx++] = 0xF0 | (u >> 18);
- outU8Array[outIdx++] = 0x80 | ((u >> 12) & 63);
- outU8Array[outIdx++] = 0x80 | ((u >> 6) & 63);
- outU8Array[outIdx++] = 0x80 | (u & 63);
- }
- }
- // Null-terminate the pointer to the buffer.
- outU8Array[outIdx] = 0;
- return outIdx - startIdx;
-}
-
-// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr',
-// null-terminated and encoded in UTF8 form. The copy will require at most str.length*4+1 bytes of space in the HEAP.
-// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write.
-// Returns the number of bytes written, EXCLUDING the null terminator.
-
-function stringToUTF8(str, outPtr, maxBytesToWrite) {
- assert(typeof maxBytesToWrite == 'number', 'stringToUTF8(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!');
- return stringToUTF8Array(str, HEAPU8,outPtr, maxBytesToWrite);
-}
-
-// Returns the number of bytes the given Javascript string takes if encoded as a UTF8 byte array, EXCLUDING the null terminator byte.
-function lengthBytesUTF8(str) {
- var len = 0;
- for (var i = 0; i < str.length; ++i) {
- // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! So decode UTF16->UTF32->UTF8.
- // See http://unicode.org/faq/utf_bom.html#utf16-3
- var u = str.charCodeAt(i); // possibly a lead surrogate
- if (u >= 0xD800 && u <= 0xDFFF) u = 0x10000 + ((u & 0x3FF) << 10) | (str.charCodeAt(++i) & 0x3FF);
- if (u <= 0x7F) ++len;
- else if (u <= 0x7FF) len += 2;
- else if (u <= 0xFFFF) len += 3;
- else len += 4;
- }
- return len;
-}
-
-
-// Given a pointer 'ptr' to a null-terminated UTF16LE-encoded string in the emscripten HEAP, returns
-// a copy of that string as a Javascript String object.
-
-var UTF16Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-16le') : undefined;
-function UTF16ToString(ptr) {
- assert(ptr % 2 == 0, 'Pointer passed to UTF16ToString must be aligned to two bytes!');
- var endPtr = ptr;
- // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself.
- // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage.
- var idx = endPtr >> 1;
- while (HEAP16[idx]) ++idx;
- endPtr = idx << 1;
-
- if (endPtr - ptr > 32 && UTF16Decoder) {
- return UTF16Decoder.decode(HEAPU8.subarray(ptr, endPtr));
- } else {
- var i = 0;
-
- var str = '';
- while (1) {
- var codeUnit = HEAP16[(((ptr)+(i*2))>>1)];
- if (codeUnit == 0) return str;
- ++i;
- // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through.
- str += String.fromCharCode(codeUnit);
- }
- }
-}
-
-// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr',
-// null-terminated and encoded in UTF16 form. The copy will require at most str.length*4+2 bytes of space in the HEAP.
-// Use the function lengthBytesUTF16() to compute the exact number of bytes (excluding null terminator) that this function will write.
-// Parameters:
-// str: the Javascript string to copy.
-// outPtr: Byte address in Emscripten HEAP where to write the string to.
-// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null
-// terminator, i.e. if maxBytesToWrite=2, only the null terminator will be written and nothing else.
-// maxBytesToWrite<2 does not write any bytes to the output, not even the null terminator.
-// Returns the number of bytes written, EXCLUDING the null terminator.
-
-function stringToUTF16(str, outPtr, maxBytesToWrite) {
- assert(outPtr % 2 == 0, 'Pointer passed to stringToUTF16 must be aligned to two bytes!');
- assert(typeof maxBytesToWrite == 'number', 'stringToUTF16(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!');
- // Backwards compatibility: if max bytes is not specified, assume unsafe unbounded write is allowed.
- if (maxBytesToWrite === undefined) {
- maxBytesToWrite = 0x7FFFFFFF;
- }
- if (maxBytesToWrite < 2) return 0;
- maxBytesToWrite -= 2; // Null terminator.
- var startPtr = outPtr;
- var numCharsToWrite = (maxBytesToWrite < str.length*2) ? (maxBytesToWrite / 2) : str.length;
- for (var i = 0; i < numCharsToWrite; ++i) {
- // charCodeAt returns a UTF-16 encoded code unit, so it can be directly written to the HEAP.
- var codeUnit = str.charCodeAt(i); // possibly a lead surrogate
- HEAP16[((outPtr)>>1)]=codeUnit;
- outPtr += 2;
- }
- // Null-terminate the pointer to the HEAP.
- HEAP16[((outPtr)>>1)]=0;
- return outPtr - startPtr;
-}
-
-// Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte.
-
-function lengthBytesUTF16(str) {
- return str.length*2;
-}
-
-function UTF32ToString(ptr) {
- assert(ptr % 4 == 0, 'Pointer passed to UTF32ToString must be aligned to four bytes!');
- var i = 0;
-
- var str = '';
- while (1) {
- var utf32 = HEAP32[(((ptr)+(i*4))>>2)];
- if (utf32 == 0)
- return str;
- ++i;
- // Gotcha: fromCharCode constructs a character from a UTF-16 encoded code (pair), not from a Unicode code point! So encode the code point to UTF-16 for constructing.
- // See http://unicode.org/faq/utf_bom.html#utf16-3
- if (utf32 >= 0x10000) {
- var ch = utf32 - 0x10000;
- str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF));
- } else {
- str += String.fromCharCode(utf32);
- }
- }
-}
-
-// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr',
-// null-terminated and encoded in UTF32 form. The copy will require at most str.length*4+4 bytes of space in the HEAP.
-// Use the function lengthBytesUTF32() to compute the exact number of bytes (excluding null terminator) that this function will write.
-// Parameters:
-// str: the Javascript string to copy.
-// outPtr: Byte address in Emscripten HEAP where to write the string to.
-// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null
-// terminator, i.e. if maxBytesToWrite=4, only the null terminator will be written and nothing else.
-// maxBytesToWrite<4 does not write any bytes to the output, not even the null terminator.
-// Returns the number of bytes written, EXCLUDING the null terminator.
-
-function stringToUTF32(str, outPtr, maxBytesToWrite) {
- assert(outPtr % 4 == 0, 'Pointer passed to stringToUTF32 must be aligned to four bytes!');
- assert(typeof maxBytesToWrite == 'number', 'stringToUTF32(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!');
- // Backwards compatibility: if max bytes is not specified, assume unsafe unbounded write is allowed.
- if (maxBytesToWrite === undefined) {
- maxBytesToWrite = 0x7FFFFFFF;
- }
- if (maxBytesToWrite < 4) return 0;
- var startPtr = outPtr;
- var endPtr = startPtr + maxBytesToWrite - 4;
- for (var i = 0; i < str.length; ++i) {
- // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap.
- // See http://unicode.org/faq/utf_bom.html#utf16-3
- var codeUnit = str.charCodeAt(i); // possibly a lead surrogate
- if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) {
- var trailSurrogate = str.charCodeAt(++i);
- codeUnit = 0x10000 + ((codeUnit & 0x3FF) << 10) | (trailSurrogate & 0x3FF);
- }
- HEAP32[((outPtr)>>2)]=codeUnit;
- outPtr += 4;
- if (outPtr + 4 > endPtr) break;
- }
- // Null-terminate the pointer to the HEAP.
- HEAP32[((outPtr)>>2)]=0;
- return outPtr - startPtr;
-}
-
-// Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte.
-
-function lengthBytesUTF32(str) {
- var len = 0;
- for (var i = 0; i < str.length; ++i) {
- // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap.
- // See http://unicode.org/faq/utf_bom.html#utf16-3
- var codeUnit = str.charCodeAt(i);
- if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) ++i; // possibly a lead surrogate, so skip over the tail surrogate.
- len += 4;
- }
-
- return len;
-}
-
-// Allocate heap space for a JS string, and write it there.
-// It is the responsibility of the caller to free() that memory.
-function allocateUTF8(str) {
- var size = lengthBytesUTF8(str) + 1;
- var ret = _malloc(size);
- if (ret) stringToUTF8Array(str, HEAP8, ret, size);
- return ret;
-}
-
-// Allocate stack space for a JS string, and write it there.
-function allocateUTF8OnStack(str) {
- var size = lengthBytesUTF8(str) + 1;
- var ret = stackAlloc(size);
- stringToUTF8Array(str, HEAP8, ret, size);
- return ret;
-}
-
-// Deprecated: This function should not be called because it is unsafe and does not provide
-// a maximum length limit of how many bytes it is allowed to write. Prefer calling the
-// function stringToUTF8Array() instead, which takes in a maximum length that can be used
-// to be secure from out of bounds writes.
-/** @deprecated */
-function writeStringToMemory(string, buffer, dontAddNull) {
- warnOnce('writeStringToMemory is deprecated and should not be called! Use stringToUTF8() instead!');
-
- var /** @type {number} */ lastChar, /** @type {number} */ end;
- if (dontAddNull) {
- // stringToUTF8Array always appends null. If we don't want to do that, remember the
- // character that existed at the location where the null will be placed, and restore
- // that after the write (below).
- end = buffer + lengthBytesUTF8(string);
- lastChar = HEAP8[end];
- }
- stringToUTF8(string, buffer, Infinity);
- if (dontAddNull) HEAP8[end] = lastChar; // Restore the value under the null character.
-}
-
-function writeArrayToMemory(array, buffer) {
- assert(array.length >= 0, 'writeArrayToMemory array must have a length (should be an array or typed array)')
- HEAP8.set(array, buffer);
-}
-
-function writeAsciiToMemory(str, buffer, dontAddNull) {
- for (var i = 0; i < str.length; ++i) {
- assert(str.charCodeAt(i) === str.charCodeAt(i)&0xff);
- HEAP8[((buffer++)>>0)]=str.charCodeAt(i);
- }
- // Null-terminate the pointer to the HEAP.
- if (!dontAddNull) HEAP8[((buffer)>>0)]=0;
-}
-
-
-
-
-
-function demangle(func) {
- return func;
-}
-
-function demangleAll(text) {
- var regex =
- /__Z[\w\d_]+/g;
- return text.replace(regex,
- function(x) {
- var y = demangle(x);
- return x === y ? x : (y + ' [' + x + ']');
- });
-}
-
-function jsStackTrace() {
- var err = new Error();
- if (!err.stack) {
- // IE10+ special cases: It does have callstack info, but it is only populated if an Error object is thrown,
- // so try that as a special-case.
- try {
- throw new Error(0);
- } catch(e) {
- err = e;
- }
- if (!err.stack) {
- return '(no stack trace available)';
- }
- }
- return err.stack.toString();
-}
-
-function stackTrace() {
- var js = jsStackTrace();
- if (Module['extraStackTrace']) js += '\n' + Module['extraStackTrace']();
- return demangleAll(js);
-}
-
-
-
-// Memory management
-
-var PAGE_SIZE = 16384;
-var WASM_PAGE_SIZE = 65536;
-var ASMJS_PAGE_SIZE = 16777216;
-
-function alignUp(x, multiple) {
- if (x % multiple > 0) {
- x += multiple - (x % multiple);
- }
- return x;
-}
-
-var HEAP,
-/** @type {ArrayBuffer} */
- buffer,
-/** @type {Int8Array} */
- HEAP8,
-/** @type {Uint8Array} */
- HEAPU8,
-/** @type {Int16Array} */
- HEAP16,
-/** @type {Uint16Array} */
- HEAPU16,
-/** @type {Int32Array} */
- HEAP32,
-/** @type {Uint32Array} */
- HEAPU32,
-/** @type {Float32Array} */
- HEAPF32,
-/** @type {Float64Array} */
- HEAPF64;
-
-function updateGlobalBufferViews() {
- Module['HEAP8'] = HEAP8 = new Int8Array(buffer);
- Module['HEAP16'] = HEAP16 = new Int16Array(buffer);
- Module['HEAP32'] = HEAP32 = new Int32Array(buffer);
- Module['HEAPU8'] = HEAPU8 = new Uint8Array(buffer);
- Module['HEAPU16'] = HEAPU16 = new Uint16Array(buffer);
- Module['HEAPU32'] = HEAPU32 = new Uint32Array(buffer);
- Module['HEAPF32'] = HEAPF32 = new Float32Array(buffer);
- Module['HEAPF64'] = HEAPF64 = new Float64Array(buffer);
-}
-
-
-var STATIC_BASE = 8,
- STACK_BASE = 1952,
- STACKTOP = STACK_BASE,
- STACK_MAX = 5244832,
- DYNAMIC_BASE = 5244832,
- DYNAMICTOP_PTR = 1920;
-
-assert(STACK_BASE % 16 === 0, 'stack must start aligned');
-assert(DYNAMIC_BASE % 16 === 0, 'heap must start aligned');
-
-
-
-var TOTAL_STACK = 5242880;
-if (Module['TOTAL_STACK']) assert(TOTAL_STACK === Module['TOTAL_STACK'], 'the stack size can no longer be determined at runtime')
-
-var INITIAL_TOTAL_MEMORY = Module['TOTAL_MEMORY'] || 16777216;
-if (INITIAL_TOTAL_MEMORY < TOTAL_STACK) err('TOTAL_MEMORY should be larger than TOTAL_STACK, was ' + INITIAL_TOTAL_MEMORY + '! (TOTAL_STACK=' + TOTAL_STACK + ')');
-
-// Initialize the runtime's memory
-// check for full engine support (use string 'subarray' to avoid closure compiler confusion)
-assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && Int32Array.prototype.subarray !== undefined && Int32Array.prototype.set !== undefined,
- 'JS engine does not provide full typed array support');
-
-
-
-
-
-
-
-// Use a provided buffer, if there is one, or else allocate a new one
-if (Module['buffer']) {
- buffer = Module['buffer'];
- assert(buffer.byteLength === INITIAL_TOTAL_MEMORY, 'provided buffer should be ' + INITIAL_TOTAL_MEMORY + ' bytes, but it is ' + buffer.byteLength);
-} else {
- // Use a WebAssembly memory where available
- {
- buffer = new ArrayBuffer(INITIAL_TOTAL_MEMORY);
- }
- assert(buffer.byteLength === INITIAL_TOTAL_MEMORY);
-}
-updateGlobalBufferViews();
-
-
-HEAP32[DYNAMICTOP_PTR>>2] = DYNAMIC_BASE;
-
-
-// Initializes the stack cookie. Called at the startup of main and at the startup of each thread in pthreads mode.
-function writeStackCookie() {
- assert((STACK_MAX & 3) == 0);
- HEAPU32[(STACK_MAX >> 2)-1] = 0x02135467;
- HEAPU32[(STACK_MAX >> 2)-2] = 0x89BACDFE;
-}
-
-function checkStackCookie() {
- if (HEAPU32[(STACK_MAX >> 2)-1] != 0x02135467 || HEAPU32[(STACK_MAX >> 2)-2] != 0x89BACDFE) {
- abort('Stack overflow! Stack cookie has been overwritten, expected hex dwords 0x89BACDFE and 0x02135467, but received 0x' + HEAPU32[(STACK_MAX >> 2)-2].toString(16) + ' ' + HEAPU32[(STACK_MAX >> 2)-1].toString(16));
- }
- // Also test the global address 0 for integrity.
- if (HEAP32[0] !== 0x63736d65 /* 'emsc' */) abort('Runtime error: The application has corrupted its heap memory area (address zero)!');
-}
-
-function abortStackOverflow(allocSize) {
- abort('Stack overflow! Attempted to allocate ' + allocSize + ' bytes on the stack, but stack has only ' + (STACK_MAX - stackSave() + allocSize) + ' bytes available!');
-}
-
-
- HEAP32[0] = 0x63736d65; /* 'emsc' */
-
-
-
-// Endianness check (note: assumes compiler arch was little-endian)
-HEAP16[1] = 0x6373;
-if (HEAPU8[2] !== 0x73 || HEAPU8[3] !== 0x63) throw 'Runtime error: expected the system to be little-endian!';
-
-function callRuntimeCallbacks(callbacks) {
- while(callbacks.length > 0) {
- var callback = callbacks.shift();
- if (typeof callback == 'function') {
- callback();
- continue;
- }
- var func = callback.func;
- if (typeof func === 'number') {
- if (callback.arg === undefined) {
- Module['dynCall_v'](func);
- } else {
- Module['dynCall_vi'](func, callback.arg);
- }
- } else {
- func(callback.arg === undefined ? null : callback.arg);
- }
- }
-}
-
-var __ATPRERUN__ = []; // functions called before the runtime is initialized
-var __ATINIT__ = []; // functions called during startup
-var __ATMAIN__ = []; // functions called when main() is to be run
-var __ATEXIT__ = []; // functions called during shutdown
-var __ATPOSTRUN__ = []; // functions called after the main() is called
-
-var runtimeInitialized = false;
-var runtimeExited = false;
-
-
-function preRun() {
- // compatibility - merge in anything from Module['preRun'] at this time
- if (Module['preRun']) {
- if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']];
- while (Module['preRun'].length) {
- addOnPreRun(Module['preRun'].shift());
- }
- }
- callRuntimeCallbacks(__ATPRERUN__);
-}
-
-function ensureInitRuntime() {
- checkStackCookie();
- if (runtimeInitialized) return;
- runtimeInitialized = true;
-
- callRuntimeCallbacks(__ATINIT__);
-}
-
-function preMain() {
- checkStackCookie();
-
- callRuntimeCallbacks(__ATMAIN__);
-}
-
-function exitRuntime() {
- checkStackCookie();
- callRuntimeCallbacks(__ATEXIT__);
-
- runtimeExited = true;
-}
-
-function postRun() {
- checkStackCookie();
- // compatibility - merge in anything from Module['postRun'] at this time
- if (Module['postRun']) {
- if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']];
- while (Module['postRun'].length) {
- addOnPostRun(Module['postRun'].shift());
- }
- }
- callRuntimeCallbacks(__ATPOSTRUN__);
-}
-
-function addOnPreRun(cb) {
- __ATPRERUN__.unshift(cb);
-}
-
-function addOnInit(cb) {
- __ATINIT__.unshift(cb);
-}
-
-function addOnPreMain(cb) {
- __ATMAIN__.unshift(cb);
-}
-
-function addOnExit(cb) {
- __ATEXIT__.unshift(cb);
-}
-
-function addOnPostRun(cb) {
- __ATPOSTRUN__.unshift(cb);
-}
-
-function unSign(value, bits, ignore) {
- if (value >= 0) {
- return value;
- }
- return bits <= 32 ? 2*Math.abs(1 << (bits-1)) + value // Need some trickery, since if bits == 32, we are right at the limit of the bits JS uses in bitshifts
- : Math.pow(2, bits) + value;
-}
-function reSign(value, bits, ignore) {
- if (value <= 0) {
- return value;
- }
- var half = bits <= 32 ? Math.abs(1 << (bits-1)) // abs is needed if bits == 32
- : Math.pow(2, bits-1);
- if (value >= half && (bits <= 32 || value > half)) { // for huge values, we can hit the precision limit and always get true here. so don't do that
- // but, in general there is no perfect solution here. With 64-bit ints, we get rounding and errors
- // TODO: In i64 mode 1, resign the two parts separately and safely
- value = -2*half + value; // Cannot bitshift half, as it may be at the limit of the bits JS uses in bitshifts
- }
- return value;
-}
-
-
-assert(Math.imul, 'This browser does not support Math.imul(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
-assert(Math.fround, 'This browser does not support Math.fround(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
-assert(Math.clz32, 'This browser does not support Math.clz32(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
-assert(Math.trunc, 'This browser does not support Math.trunc(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
-
-var Math_abs = Math.abs;
-var Math_cos = Math.cos;
-var Math_sin = Math.sin;
-var Math_tan = Math.tan;
-var Math_acos = Math.acos;
-var Math_asin = Math.asin;
-var Math_atan = Math.atan;
-var Math_atan2 = Math.atan2;
-var Math_exp = Math.exp;
-var Math_log = Math.log;
-var Math_sqrt = Math.sqrt;
-var Math_ceil = Math.ceil;
-var Math_floor = Math.floor;
-var Math_pow = Math.pow;
-var Math_imul = Math.imul;
-var Math_fround = Math.fround;
-var Math_round = Math.round;
-var Math_min = Math.min;
-var Math_max = Math.max;
-var Math_clz32 = Math.clz32;
-var Math_trunc = Math.trunc;
-
-
-
-// A counter of dependencies for calling run(). If we need to
-// do asynchronous work before running, increment this and
-// decrement it. Incrementing must happen in a place like
-// Module.preRun (used by emcc to add file preloading).
-// Note that you can add dependencies in preRun, even though
-// it happens right before run - run will be postponed until
-// the dependencies are met.
-var runDependencies = 0;
-var runDependencyWatcher = null;
-var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled
-var runDependencyTracking = {};
-
-function getUniqueRunDependency(id) {
- var orig = id;
- while (1) {
- if (!runDependencyTracking[id]) return id;
- id = orig + Math.random();
- }
- return id;
-}
-
-function addRunDependency(id) {
- runDependencies++;
- if (Module['monitorRunDependencies']) {
- Module['monitorRunDependencies'](runDependencies);
- }
- if (id) {
- assert(!runDependencyTracking[id]);
- runDependencyTracking[id] = 1;
- if (runDependencyWatcher === null && typeof setInterval !== 'undefined') {
- // Check for missing dependencies every few seconds
- runDependencyWatcher = setInterval(function() {
- if (ABORT) {
- clearInterval(runDependencyWatcher);
- runDependencyWatcher = null;
- return;
- }
- var shown = false;
- for (var dep in runDependencyTracking) {
- if (!shown) {
- shown = true;
- err('still waiting on run dependencies:');
- }
- err('dependency: ' + dep);
- }
- if (shown) {
- err('(end of list)');
- }
- }, 10000);
- }
- } else {
- err('warning: run dependency added without ID');
- }
-}
-
-function removeRunDependency(id) {
- runDependencies--;
- if (Module['monitorRunDependencies']) {
- Module['monitorRunDependencies'](runDependencies);
- }
- if (id) {
- assert(runDependencyTracking[id]);
- delete runDependencyTracking[id];
- } else {
- err('warning: run dependency removed without ID');
- }
- if (runDependencies == 0) {
- if (runDependencyWatcher !== null) {
- clearInterval(runDependencyWatcher);
- runDependencyWatcher = null;
- }
- if (dependenciesFulfilled) {
- var callback = dependenciesFulfilled;
- dependenciesFulfilled = null;
- callback(); // can add another dependenciesFulfilled
- }
- }
-}
-
-Module["preloadedImages"] = {}; // maps url to image data
-Module["preloadedAudios"] = {}; // maps url to audio data
-
-
-var memoryInitializer = null;
-
-
-
-// show errors on likely calls to FS when it was not included
-var FS = {
- error: function() {
- abort('Filesystem support (FS) was not included. The problem is that you are using files from JS, but files were not used from C/C++, so filesystem support was not auto-included. You can force-include filesystem support with -s FORCE_FILESYSTEM=1');
- },
- init: function() { FS.error() },
- createDataFile: function() { FS.error() },
- createPreloadedFile: function() { FS.error() },
- createLazyFile: function() { FS.error() },
- open: function() { FS.error() },
- mkdev: function() { FS.error() },
- registerDevice: function() { FS.error() },
- analyzePath: function() { FS.error() },
- loadFilesFromDB: function() { FS.error() },
-
- ErrnoError: function ErrnoError() { FS.error() },
-};
-Module['FS_createDataFile'] = FS.createDataFile;
-Module['FS_createPreloadedFile'] = FS.createPreloadedFile;
-
-
-
-// Copyright 2017 The Emscripten Authors. All rights reserved.
-// Emscripten is available under two separate licenses, the MIT license and the
-// University of Illinois/NCSA Open Source License. Both these licenses can be
-// found in the LICENSE file.
-
-// Prefix of data URIs emitted by SINGLE_FILE and related options.
-var dataURIPrefix = 'data:application/octet-stream;base64,';
-
-// Indicates whether filename is a base64 data URI.
-function isDataURI(filename) {
- return String.prototype.startsWith ?
- filename.startsWith(dataURIPrefix) :
- filename.indexOf(dataURIPrefix) === 0;
-}
-
-
-
-
-
-// === Body ===
-
-var ASM_CONSTS = [];
-
-
-
-
-
-// STATICTOP = STATIC_BASE + 1944;
-/* global initializers */ /*__ATINIT__.push();*/
-
-
-memoryInitializer = "data:application/octet-stream;base64,AAAAAAAAAAAFAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAwAAALgAAAAABAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAK/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ";
-
-
-
-
-
-/* no memory initializer */
-var tempDoublePtr = 1936
-assert(tempDoublePtr % 8 == 0);
-
-function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much
- HEAP8[tempDoublePtr] = HEAP8[ptr];
- HEAP8[tempDoublePtr+1] = HEAP8[ptr+1];
- HEAP8[tempDoublePtr+2] = HEAP8[ptr+2];
- HEAP8[tempDoublePtr+3] = HEAP8[ptr+3];
-}
-
-function copyTempDouble(ptr) {
- HEAP8[tempDoublePtr] = HEAP8[ptr];
- HEAP8[tempDoublePtr+1] = HEAP8[ptr+1];
- HEAP8[tempDoublePtr+2] = HEAP8[ptr+2];
- HEAP8[tempDoublePtr+3] = HEAP8[ptr+3];
- HEAP8[tempDoublePtr+4] = HEAP8[ptr+4];
- HEAP8[tempDoublePtr+5] = HEAP8[ptr+5];
- HEAP8[tempDoublePtr+6] = HEAP8[ptr+6];
- HEAP8[tempDoublePtr+7] = HEAP8[ptr+7];
-}
-
-// {{PRE_LIBRARY}}
-
-
- function ___lock() {}
-
-
-
- var PATH={splitPath:function (filename) {
- var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;
- return splitPathRe.exec(filename).slice(1);
- },normalizeArray:function (parts, allowAboveRoot) {
- // if the path tries to go above the root, `up` ends up > 0
- var up = 0;
- for (var i = parts.length - 1; i >= 0; i--) {
- var last = parts[i];
- if (last === '.') {
- parts.splice(i, 1);
- } else if (last === '..') {
- parts.splice(i, 1);
- up++;
- } else if (up) {
- parts.splice(i, 1);
- up--;
- }
- }
- // if the path is allowed to go above the root, restore leading ..s
- if (allowAboveRoot) {
- for (; up; up--) {
- parts.unshift('..');
- }
- }
- return parts;
- },normalize:function (path) {
- var isAbsolute = path.charAt(0) === '/',
- trailingSlash = path.substr(-1) === '/';
- // Normalize the path
- path = PATH.normalizeArray(path.split('/').filter(function(p) {
- return !!p;
- }), !isAbsolute).join('/');
- if (!path && !isAbsolute) {
- path = '.';
- }
- if (path && trailingSlash) {
- path += '/';
- }
- return (isAbsolute ? '/' : '') + path;
- },dirname:function (path) {
- var result = PATH.splitPath(path),
- root = result[0],
- dir = result[1];
- if (!root && !dir) {
- // No dirname whatsoever
- return '.';
- }
- if (dir) {
- // It has a dirname, strip trailing slash
- dir = dir.substr(0, dir.length - 1);
- }
- return root + dir;
- },basename:function (path) {
- // EMSCRIPTEN return '/'' for '/', not an empty string
- if (path === '/') return '/';
- var lastSlash = path.lastIndexOf('/');
- if (lastSlash === -1) return path;
- return path.substr(lastSlash+1);
- },extname:function (path) {
- return PATH.splitPath(path)[3];
- },join:function () {
- var paths = Array.prototype.slice.call(arguments, 0);
- return PATH.normalize(paths.join('/'));
- },join2:function (l, r) {
- return PATH.normalize(l + '/' + r);
- }};var SYSCALLS={buffers:[null,[],[]],printChar:function (stream, curr) {
- var buffer = SYSCALLS.buffers[stream];
- assert(buffer);
- if (curr === 0 || curr === 10) {
- (stream === 1 ? out : err)(UTF8ArrayToString(buffer, 0));
- buffer.length = 0;
- } else {
- buffer.push(curr);
- }
- },varargs:0,get:function (varargs) {
- SYSCALLS.varargs += 4;
- var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)];
- return ret;
- },getStr:function () {
- var ret = UTF8ToString(SYSCALLS.get());
- return ret;
- },get64:function () {
- var low = SYSCALLS.get(), high = SYSCALLS.get();
- if (low >= 0) assert(high === 0);
- else assert(high === -1);
- return low;
- },getZero:function () {
- assert(SYSCALLS.get() === 0);
- }};function ___syscall140(which, varargs) {SYSCALLS.varargs = varargs;
- try {
- // llseek
- var stream = SYSCALLS.getStreamFromFD(), offset_high = SYSCALLS.get(), offset_low = SYSCALLS.get(), result = SYSCALLS.get(), whence = SYSCALLS.get();
- abort('it should not be possible to operate on streams when !SYSCALLS_REQUIRE_FILESYSTEM');
- return 0;
- } catch (e) {
- if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
- return -e.errno;
- }
- }
-
-
- function flush_NO_FILESYSTEM() {
- // flush anything remaining in the buffers during shutdown
- var fflush = Module["_fflush"];
- if (fflush) fflush(0);
- var buffers = SYSCALLS.buffers;
- if (buffers[1].length) SYSCALLS.printChar(1, 10);
- if (buffers[2].length) SYSCALLS.printChar(2, 10);
- }function ___syscall146(which, varargs) {SYSCALLS.varargs = varargs;
- try {
- // writev
- // hack to support printf in SYSCALLS_REQUIRE_FILESYSTEM=0
- var stream = SYSCALLS.get(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get();
- var ret = 0;
- for (var i = 0; i < iovcnt; i++) {
- var ptr = HEAP32[(((iov)+(i*8))>>2)];
- var len = HEAP32[(((iov)+(i*8 + 4))>>2)];
- for (var j = 0; j < len; j++) {
- SYSCALLS.printChar(stream, HEAPU8[ptr+j]);
- }
- ret += len;
- }
- return ret;
- } catch (e) {
- if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
- return -e.errno;
- }
- }
-
- function ___syscall54(which, varargs) {SYSCALLS.varargs = varargs;
- try {
- // ioctl
- return 0;
- } catch (e) {
- if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
- return -e.errno;
- }
- }
-
- function ___syscall6(which, varargs) {SYSCALLS.varargs = varargs;
- try {
- // close
- var stream = SYSCALLS.getStreamFromFD();
- abort('it should not be possible to operate on streams when !SYSCALLS_REQUIRE_FILESYSTEM');
- return 0;
- } catch (e) {
- if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
- return -e.errno;
- }
- }
-
- function ___unlock() {}
-
- function _emscripten_get_heap_size() {
- return HEAP8.length;
- }
-
-
- function _emscripten_memcpy_big(dest, src, num) {
- HEAPU8.set(HEAPU8.subarray(src, src+num), dest);
- }
-
-
-
-
-
-
- function ___setErrNo(value) {
- if (Module['___errno_location']) HEAP32[((Module['___errno_location']())>>2)]=value;
- else err('failed to set errno from JS');
- return value;
- }
-
-
- function abortOnCannotGrowMemory(requestedSize) {
- abort('Cannot enlarge memory arrays to size ' + requestedSize + ' bytes (OOM). Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + HEAP8.length + ', (2) compile with -s ALLOW_MEMORY_GROWTH=1 which allows increasing the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or (4) if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 ');
- }function _emscripten_resize_heap(requestedSize) {
- abortOnCannotGrowMemory(requestedSize);
- }
-__ATEXIT__.push(flush_NO_FILESYSTEM);;
-var ASSERTIONS = true;
-
-// Copyright 2017 The Emscripten Authors. All rights reserved.
-// Emscripten is available under two separate licenses, the MIT license and the
-// University of Illinois/NCSA Open Source License. Both these licenses can be
-// found in the LICENSE file.
-
-/** @type {function(string, boolean=, number=)} */
-function intArrayFromString(stringy, dontAddNull, length) {
- var len = length > 0 ? length : lengthBytesUTF8(stringy)+1;
- var u8array = new Array(len);
- var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length);
- if (dontAddNull) u8array.length = numBytesWritten;
- return u8array;
-}
-
-function intArrayToString(array) {
- var ret = [];
- for (var i = 0; i < array.length; i++) {
- var chr = array[i];
- if (chr > 0xFF) {
- if (ASSERTIONS) {
- assert(false, 'Character code ' + chr + ' (' + String.fromCharCode(chr) + ') at offset ' + i + ' not in 0x00-0xFF.');
- }
- chr &= 0xFF;
- }
- ret.push(String.fromCharCode(chr));
- }
- return ret.join('');
-}
-
-
-// Copied from https://github.com/strophe/strophejs/blob/e06d027/src/polyfills.js#L149
-
-// This code was written by Tyler Akins and has been placed in the
-// public domain. It would be nice if you left this header intact.
-// Base64 code from Tyler Akins -- http://rumkin.com
-
-/**
- * Decodes a base64 string.
- * @param {String} input The string to decode.
- */
-var decodeBase64 = typeof atob === 'function' ? atob : function (input) {
- var keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
-
- var output = '';
- var chr1, chr2, chr3;
- var enc1, enc2, enc3, enc4;
- var i = 0;
- // remove all characters that are not A-Z, a-z, 0-9, +, /, or =
- input = input.replace(/[^A-Za-z0-9\+\/\=]/g, '');
- do {
- enc1 = keyStr.indexOf(input.charAt(i++));
- enc2 = keyStr.indexOf(input.charAt(i++));
- enc3 = keyStr.indexOf(input.charAt(i++));
- enc4 = keyStr.indexOf(input.charAt(i++));
-
- chr1 = (enc1 << 2) | (enc2 >> 4);
- chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
- chr3 = ((enc3 & 3) << 6) | enc4;
-
- output = output + String.fromCharCode(chr1);
-
- if (enc3 !== 64) {
- output = output + String.fromCharCode(chr2);
- }
- if (enc4 !== 64) {
- output = output + String.fromCharCode(chr3);
- }
- } while (i < input.length);
- return output;
-};
-
-// Converts a string of base64 into a byte array.
-// Throws error on invalid input.
-function intArrayFromBase64(s) {
- if (typeof ENVIRONMENT_IS_NODE === 'boolean' && ENVIRONMENT_IS_NODE) {
- var buf;
- try {
- buf = Buffer.from(s, 'base64');
- } catch (_) {
- buf = new Buffer(s, 'base64');
- }
- return new Uint8Array(buf.buffer, buf.byteOffset, buf.byteLength);
- }
-
- try {
- var decoded = decodeBase64(s);
- var bytes = new Uint8Array(decoded.length);
- for (var i = 0 ; i < decoded.length ; ++i) {
- bytes[i] = decoded.charCodeAt(i);
- }
- return bytes;
- } catch (_) {
- throw new Error('Converting base64 string to bytes failed.');
- }
-}
-
-// If filename is a base64 data URI, parses and returns data (Buffer on node,
-// Uint8Array otherwise). If filename is not a base64 data URI, returns undefined.
-function tryParseAsDataURI(filename) {
- if (!isDataURI(filename)) {
- return;
- }
-
- return intArrayFromBase64(filename.slice(dataURIPrefix.length));
-}
-
-
-// ASM_LIBRARY EXTERN PRIMITIVES: Int8Array,Int32Array
-
-
-function nullFunc_ii(x) { err("Invalid function pointer called with signature 'ii'. Perhaps this is an invalid value (e.g. caused by calling a virtual method on a NULL pointer)? Or calling a function with an incorrect type, which will fail? (it is worth building your source files with -Werror (warnings are errors), as warnings can indicate undefined behavior which can cause this)"); err("Build with ASSERTIONS=2 for more info.");abort(x) }
-
-function nullFunc_iiii(x) { err("Invalid function pointer called with signature 'iiii'. Perhaps this is an invalid value (e.g. caused by calling a virtual method on a NULL pointer)? Or calling a function with an incorrect type, which will fail? (it is worth building your source files with -Werror (warnings are errors), as warnings can indicate undefined behavior which can cause this)"); err("Build with ASSERTIONS=2 for more info.");abort(x) }
-
-function nullFunc_iiiii(x) { err("Invalid function pointer called with signature 'iiiii'. Perhaps this is an invalid value (e.g. caused by calling a virtual method on a NULL pointer)? Or calling a function with an incorrect type, which will fail? (it is worth building your source files with -Werror (warnings are errors), as warnings can indicate undefined behavior which can cause this)"); err("Build with ASSERTIONS=2 for more info.");abort(x) }
-
-var asmGlobalArg = { "Int8Array": Int8Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array }
-
-var asmLibraryArg = {
- "abort": abort,
- "setTempRet0": setTempRet0,
- "getTempRet0": getTempRet0,
- "abortStackOverflow": abortStackOverflow,
- "nullFunc_ii": nullFunc_ii,
- "nullFunc_iiii": nullFunc_iiii,
- "nullFunc_iiiii": nullFunc_iiiii,
- "___lock": ___lock,
- "___setErrNo": ___setErrNo,
- "___syscall140": ___syscall140,
- "___syscall146": ___syscall146,
- "___syscall54": ___syscall54,
- "___syscall6": ___syscall6,
- "___unlock": ___unlock,
- "_emscripten_get_heap_size": _emscripten_get_heap_size,
- "_emscripten_memcpy_big": _emscripten_memcpy_big,
- "_emscripten_resize_heap": _emscripten_resize_heap,
- "abortOnCannotGrowMemory": abortOnCannotGrowMemory,
- "flush_NO_FILESYSTEM": flush_NO_FILESYSTEM,
- "tempDoublePtr": tempDoublePtr,
- "DYNAMICTOP_PTR": DYNAMICTOP_PTR
-}
-// EMSCRIPTEN_START_ASM
-var asm = (/** @suppress {uselessCode} */ function(global, env, buffer) {
-'almost asm';
-
- var HEAP8 = new global.Int8Array(buffer),
- HEAP32 = new global.Int32Array(buffer),
- HEAPU8 = new global.Uint8Array(buffer),
- tempDoublePtr=env.tempDoublePtr|0,
- DYNAMICTOP_PTR=env.DYNAMICTOP_PTR|0,
- __THREW__ = 0,
- threwValue = 0,
- setjmpId = 0,
- tempInt = 0,
- tempBigInt = 0,
- tempBigIntS = 0,
- tempValue = 0,
- tempDouble = 0.0,
- abort=env.abort,
- setTempRet0=env.setTempRet0,
- getTempRet0=env.getTempRet0,
- abortStackOverflow=env.abortStackOverflow,
- nullFunc_ii=env.nullFunc_ii,
- nullFunc_iiii=env.nullFunc_iiii,
- nullFunc_iiiii=env.nullFunc_iiiii,
- ___lock=env.___lock,
- ___setErrNo=env.___setErrNo,
- ___syscall140=env.___syscall140,
- ___syscall146=env.___syscall146,
- ___syscall54=env.___syscall54,
- ___syscall6=env.___syscall6,
- ___unlock=env.___unlock,
- _emscripten_get_heap_size=env._emscripten_get_heap_size,
- _emscripten_memcpy_big=env._emscripten_memcpy_big,
- _emscripten_resize_heap=env._emscripten_resize_heap,
- abortOnCannotGrowMemory=env.abortOnCannotGrowMemory,
- flush_NO_FILESYSTEM=env.flush_NO_FILESYSTEM,
- STACKTOP = 1952,
- STACK_MAX = 5244832,
- tempFloat = 0.0;
-
-// EMSCRIPTEN_START_FUNCS
-
-function stackAlloc(size) {
- size = size|0;
- var ret = 0;
- ret = STACKTOP;
- STACKTOP = (STACKTOP + size)|0;
- STACKTOP = (STACKTOP + 15)&-16;
- if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(size|0);
-
- return ret|0;
-}
-function stackSave() {
- return STACKTOP|0;
-}
-function stackRestore(top) {
- top = top|0;
- STACKTOP = top;
-}
-function establishStackSpace(stackBase, stackMax) {
- stackBase = stackBase|0;
- stackMax = stackMax|0;
- STACKTOP = stackBase;
- STACK_MAX = stackMax;
-}
-
-function _main() {
- var $retval = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 16|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(16|0);
- $retval = 0;
- STACKTOP = sp;return 0;
-}
-function _malloc($bytes) {
- $bytes = $bytes|0;
- var $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i134 = 0, $$pre$i194 = 0, $$pre$i31$i = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i195Z2D = 0, $$pre$phi$i32$iZ2D = 0, $$pre$phi$iZ2D = 0, $$pre$phiZ2D = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0;
- var $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0;
- var $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0;
- var $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0;
- var $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0;
- var $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0;
- var $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0;
- var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0;
- var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $F$0$i$i = 0, $F104$0 = 0, $F197$0$i = 0, $F224$0$i$i = 0, $F290$0$i = 0, $I252$0$i$i = 0, $I316$0$i = 0, $I57$0$i$i = 0, $K105$010$i$i = 0;
- var $K305$08$i$i = 0, $K373$015$i = 0, $R$1$i = 0, $R$1$i$be = 0, $R$1$i$i = 0, $R$1$i$i$be = 0, $R$1$i$i$ph = 0, $R$1$i$ph = 0, $R$1$i183 = 0, $R$1$i183$be = 0, $R$1$i183$ph = 0, $R$3$i = 0, $R$3$i$i = 0, $R$3$i188 = 0, $RP$1$i = 0, $RP$1$i$be = 0, $RP$1$i$i = 0, $RP$1$i$i$be = 0, $RP$1$i$i$ph = 0, $RP$1$i$ph = 0;
- var $RP$1$i182 = 0, $RP$1$i182$be = 0, $RP$1$i182$ph = 0, $T$0$lcssa$i = 0, $T$0$lcssa$i$i = 0, $T$0$lcssa$i34$i = 0, $T$014$i = 0, $T$07$i$i = 0, $T$09$i$i = 0, $add$i = 0, $add$i$i = 0, $add$i135 = 0, $add$i155 = 0, $add$ptr = 0, $add$ptr$i = 0, $add$ptr$i$i = 0, $add$ptr$i$i$i = 0, $add$ptr$i141 = 0, $add$ptr$i174 = 0, $add$ptr$i2$i$i = 0;
- var $add$ptr$i35$i = 0, $add$ptr$i43$i = 0, $add$ptr$i57$i = 0, $add$ptr14$i$i = 0, $add$ptr15$i$i = 0, $add$ptr16$i$i = 0, $add$ptr166 = 0, $add$ptr169 = 0, $add$ptr17$i$i = 0, $add$ptr178 = 0, $add$ptr181$i = 0, $add$ptr182 = 0, $add$ptr189$i = 0, $add$ptr190$i = 0, $add$ptr193 = 0, $add$ptr199 = 0, $add$ptr2$i$i = 0, $add$ptr205$i$i = 0, $add$ptr212$i$i = 0, $add$ptr225$i = 0;
- var $add$ptr227$i = 0, $add$ptr24$i$i = 0, $add$ptr262$i = 0, $add$ptr269$i = 0, $add$ptr273$i = 0, $add$ptr282$i = 0, $add$ptr3$i$i = 0, $add$ptr30$i$i = 0, $add$ptr369$i$i = 0, $add$ptr4$i$i = 0, $add$ptr4$i$i$i = 0, $add$ptr4$i41$i = 0, $add$ptr4$i49$i = 0, $add$ptr441$i = 0, $add$ptr5$i$i = 0, $add$ptr6$i$i = 0, $add$ptr6$i$i$i = 0, $add$ptr6$i53$i = 0, $add$ptr7$i$i = 0, $add$ptr81$i$i = 0;
- var $add$ptr95 = 0, $add$ptr98 = 0, $add10$i = 0, $add101$i = 0, $add110$i = 0, $add13$i = 0, $add14$i = 0, $add140$i = 0, $add144 = 0, $add150$i = 0, $add17$i = 0, $add17$i158 = 0, $add177$i = 0, $add18$i = 0, $add19$i = 0, $add2 = 0, $add20$i = 0, $add206$i$i = 0, $add212$i = 0, $add215$i = 0;
- var $add22$i = 0, $add246$i = 0, $add26$i$i = 0, $add268$i = 0, $add269$i$i = 0, $add274$i$i = 0, $add278$i$i = 0, $add280$i$i = 0, $add283$i$i = 0, $add337$i = 0, $add342$i = 0, $add346$i = 0, $add348$i = 0, $add351$i = 0, $add46$i = 0, $add50 = 0, $add51$i = 0, $add54 = 0, $add54$i = 0, $add58 = 0;
- var $add62 = 0, $add64 = 0, $add74$i$i = 0, $add77$i = 0, $add78$i = 0, $add79$i$i = 0, $add8 = 0, $add82$i = 0, $add83$i$i = 0, $add85$i$i = 0, $add86$i = 0, $add88$i$i = 0, $add9$i = 0, $add90$i = 0, $add92$i = 0, $and = 0, $and$i = 0, $and$i$i = 0, $and$i$i$i = 0, $and$i14$i = 0;
- var $and$i152 = 0, $and$i36$i = 0, $and$i44$i = 0, $and100$i = 0, $and103$i = 0, $and104$i = 0, $and106 = 0, $and11$i = 0, $and119$i$i = 0, $and1197$i$i = 0, $and12$i = 0, $and13$i = 0, $and13$i$i = 0, $and133$i$i = 0, $and14 = 0, $and145 = 0, $and17$i = 0, $and194$i = 0, $and194$i191 = 0, $and199$i = 0;
- var $and209$i$i = 0, $and21$i = 0, $and21$i159 = 0, $and227$i$i = 0, $and236$i = 0, $and264$i$i = 0, $and268$i$i = 0, $and273$i$i = 0, $and282$i$i = 0, $and29$i = 0, $and292$i = 0, $and295$i$i = 0, $and3$i = 0, $and3$i$i = 0, $and3$i$i$i = 0, $and3$i39$i = 0, $and3$i47$i = 0, $and30$i = 0, $and318$i$i = 0, $and3185$i$i = 0;
- var $and32$i = 0, $and32$i$i = 0, $and33$i$i = 0, $and331$i = 0, $and336$i = 0, $and341$i = 0, $and350$i = 0, $and363$i = 0, $and37$i$i = 0, $and387$i = 0, $and38712$i = 0, $and4 = 0, $and40$i$i = 0, $and41 = 0, $and42$i = 0, $and43 = 0, $and46 = 0, $and49 = 0, $and49$i = 0, $and49$i$i = 0;
- var $and53 = 0, $and57 = 0, $and6$i = 0, $and6$i$i = 0, $and6$i13$i = 0, $and6$i18$i = 0, $and61 = 0, $and64$i = 0, $and68$i = 0, $and69$i$i = 0, $and7 = 0, $and73$i = 0, $and73$i$i = 0, $and74 = 0, $and77$i = 0, $and78$i$i = 0, $and8$i = 0, $and80$i = 0, $and81$i = 0, $and85$i = 0;
- var $and87$i$i = 0, $and89$i = 0, $and9$i = 0, $and96$i$i = 0, $arrayidx = 0, $arrayidx$i = 0, $arrayidx$i$i = 0, $arrayidx$i160 = 0, $arrayidx103 = 0, $arrayidx103$i$i = 0, $arrayidx106$i = 0, $arrayidx107$i$i = 0, $arrayidx113$i = 0, $arrayidx113$i173 = 0, $arrayidx121$i = 0, $arrayidx121$i$sink = 0, $arrayidx123$i$i = 0, $arrayidx126$i$i = 0, $arrayidx137$i = 0, $arrayidx143$i$i = 0;
- var $arrayidx148$i = 0, $arrayidx151$i = 0, $arrayidx151$i$i = 0, $arrayidx151$i$i$sink = 0, $arrayidx154$i = 0, $arrayidx155$i = 0, $arrayidx161$i = 0, $arrayidx165$i = 0, $arrayidx165$i185 = 0, $arrayidx178$i$i = 0, $arrayidx184$i = 0, $arrayidx184$i$i = 0, $arrayidx195$i$i = 0, $arrayidx196$i = 0, $arrayidx204$i = 0, $arrayidx212$i = 0, $arrayidx212$i$sink = 0, $arrayidx223$i$i = 0, $arrayidx228$i = 0, $arrayidx23$i = 0;
- var $arrayidx239$i = 0, $arrayidx245$i = 0, $arrayidx256$i = 0, $arrayidx27$i = 0, $arrayidx287$i$i = 0, $arrayidx289$i = 0, $arrayidx290$i$i = 0, $arrayidx325$i$i = 0, $arrayidx355$i = 0, $arrayidx358$i = 0, $arrayidx394$i = 0, $arrayidx40$i = 0, $arrayidx44$i = 0, $arrayidx61$i = 0, $arrayidx65$i = 0, $arrayidx66 = 0, $arrayidx71$i = 0, $arrayidx75$i = 0, $arrayidx91$i$i = 0, $arrayidx92$i$i = 0;
- var $arrayidx94$i = 0, $arrayidx94$i170 = 0, $arrayidx96$i$i = 0, $bk$i = 0, $bk$i$i = 0, $bk$i176 = 0, $bk$i26$i = 0, $bk102$i$i = 0, $bk122 = 0, $bk124 = 0, $bk139$i$i = 0, $bk145$i = 0, $bk158$i$i = 0, $bk161$i$i = 0, $bk18 = 0, $bk218$i = 0, $bk220$i = 0, $bk246$i$i = 0, $bk248$i$i = 0, $bk302$i$i = 0;
- var $bk311$i = 0, $bk313$i = 0, $bk338$i$i = 0, $bk357$i$i = 0, $bk360$i$i = 0, $bk370$i = 0, $bk407$i = 0, $bk429$i = 0, $bk432$i = 0, $bk55$i$i = 0, $bk56$i = 0, $bk67$i$i = 0, $bk74$i$i = 0, $bk85 = 0, $bk91$i$i = 0, $br$2$ph$i = 0, $call107$i = 0, $call131$i = 0, $call132$i = 0, $call275$i = 0;
- var $call37$i = 0, $call68$i = 0, $call83$i = 0, $child$i$i = 0, $child166$i$i = 0, $child289$i$i = 0, $child357$i = 0, $cmp = 0, $cmp$i = 0, $cmp$i$i$i = 0, $cmp$i12$i = 0, $cmp$i133 = 0, $cmp$i149 = 0, $cmp$i15$i = 0, $cmp$i3$i$i = 0, $cmp$i37$i = 0, $cmp$i45$i = 0, $cmp$i55$i = 0, $cmp1 = 0, $cmp1$i = 0;
- var $cmp10 = 0, $cmp100$i$i = 0, $cmp102$i = 0, $cmp104$i$i = 0, $cmp105$i = 0, $cmp106$i$i = 0, $cmp107$i = 0, $cmp108$i = 0, $cmp108$i$i = 0, $cmp114$i = 0, $cmp116$i = 0, $cmp118$i = 0, $cmp119$i = 0, $cmp12$i = 0, $cmp120$i$i = 0, $cmp120$i28$i = 0, $cmp1208$i$i = 0, $cmp123$i = 0, $cmp124$i$i = 0, $cmp126$i = 0;
- var $cmp127$i = 0, $cmp128 = 0, $cmp128$i = 0, $cmp128$i$i = 0, $cmp133$i = 0, $cmp135$i = 0, $cmp137$i = 0, $cmp138$i = 0, $cmp139 = 0, $cmp141$i = 0, $cmp144$i$i = 0, $cmp146 = 0, $cmp147$i = 0, $cmp14799$i = 0, $cmp15$i = 0, $cmp151$i = 0, $cmp152$i = 0, $cmp155$i = 0, $cmp156 = 0, $cmp156$i = 0;
- var $cmp156$i$i = 0, $cmp157$i = 0, $cmp159$i = 0, $cmp162 = 0, $cmp162$i = 0, $cmp162$i184 = 0, $cmp166$i = 0, $cmp168$i$i = 0, $cmp174$i = 0, $cmp180$i = 0, $cmp185$i = 0, $cmp185$i$i = 0, $cmp186 = 0, $cmp186$i = 0, $cmp19$i = 0, $cmp190$i = 0, $cmp191$i = 0, $cmp2$i$i = 0, $cmp2$i$i$i = 0, $cmp20$i$i = 0;
- var $cmp203$i = 0, $cmp205$i = 0, $cmp209$i = 0, $cmp21$i = 0, $cmp215$i$i = 0, $cmp217$i = 0, $cmp218$i = 0, $cmp224$i = 0, $cmp228$i = 0, $cmp229$i = 0, $cmp24$i = 0, $cmp24$i$i = 0, $cmp246$i = 0, $cmp254$i$i = 0, $cmp257$i = 0, $cmp258$i$i = 0, $cmp26$i = 0, $cmp265$i = 0, $cmp27$i$i = 0, $cmp28$i = 0;
- var $cmp28$i$i = 0, $cmp284$i = 0, $cmp29 = 0, $cmp3$i$i = 0, $cmp306$i$i = 0, $cmp31 = 0, $cmp319$i = 0, $cmp319$i$i = 0, $cmp3196$i$i = 0, $cmp32$i = 0, $cmp32$i138 = 0, $cmp323$i = 0, $cmp327$i$i = 0, $cmp34$i = 0, $cmp34$i$i = 0, $cmp35$i = 0, $cmp36$i = 0, $cmp36$i$i = 0, $cmp374$i = 0, $cmp38$i = 0;
- var $cmp38$i$i = 0, $cmp388$i = 0, $cmp38813$i = 0, $cmp396$i = 0, $cmp40$i = 0, $cmp43$i = 0, $cmp45$i = 0, $cmp46$i = 0, $cmp46$i$i = 0, $cmp49$i = 0, $cmp5 = 0, $cmp55$i = 0, $cmp55$i166 = 0, $cmp57$i = 0, $cmp57$i167 = 0, $cmp59$i$i = 0, $cmp60$i = 0, $cmp62$i = 0, $cmp63$i = 0, $cmp63$i$i = 0;
- var $cmp65$i = 0, $cmp66$i = 0, $cmp66$i140 = 0, $cmp69$i = 0, $cmp7$i$i = 0, $cmp70 = 0, $cmp72$i = 0, $cmp75$i$i = 0, $cmp76$i = 0, $cmp81$i = 0, $cmp85$i = 0, $cmp89$i = 0, $cmp9$i$i = 0, $cmp90$i = 0, $cmp91$i = 0, $cmp93$i = 0, $cmp95$i = 0, $cmp96$i = 0, $cmp97$i = 0, $cmp97$i$i = 0;
- var $cmp9716$i = 0, $cmp99 = 0, $cond = 0, $cond$i = 0, $cond$i$i = 0, $cond$i$i$i = 0, $cond$i17$i = 0, $cond$i40$i = 0, $cond$i48$i = 0, $cond1$i$i = 0, $cond115$i = 0, $cond115$i$i = 0, $cond13$i$i = 0, $cond15$i$i = 0, $cond2$i = 0, $cond3$i = 0, $cond315$i$i = 0, $cond383$i = 0, $cond4$i = 0, $fd$i = 0;
- var $fd$i$i = 0, $fd$i177 = 0, $fd103$i$i = 0, $fd123 = 0, $fd140$i$i = 0, $fd146$i = 0, $fd148$i$i = 0, $fd160$i$i = 0, $fd219$i = 0, $fd247$i$i = 0, $fd303$i$i = 0, $fd312$i = 0, $fd339$i$i = 0, $fd344$i$i = 0, $fd359$i$i = 0, $fd371$i = 0, $fd408$i = 0, $fd416$i = 0, $fd431$i = 0, $fd54$i$i = 0;
- var $fd57$i = 0, $fd68$i$i = 0, $fd69 = 0, $fd78$i$i = 0, $fd9 = 0, $fd92$i$i = 0, $head = 0, $head$i = 0, $head$i$i = 0, $head$i$i$i = 0, $head$i164 = 0, $head$i22$i = 0, $head$i42$i = 0, $head$i52$i = 0, $head118$i$i = 0, $head1186$i$i = 0, $head168 = 0, $head173 = 0, $head177 = 0, $head179 = 0;
- var $head179$i = 0, $head182$i = 0, $head187$i = 0, $head189$i = 0, $head195 = 0, $head198 = 0, $head208$i$i = 0, $head211$i$i = 0, $head23$i$i = 0, $head25 = 0, $head26$i$i = 0, $head265$i = 0, $head268$i = 0, $head271$i = 0, $head274$i = 0, $head279$i = 0, $head281$i = 0, $head29$i = 0, $head29$i$i = 0, $head317$i$i = 0;
- var $head3174$i$i = 0, $head32$i$i = 0, $head34$i$i = 0, $head386$i = 0, $head38611$i = 0, $head7$i$i = 0, $head7$i$i$i = 0, $head7$i54$i = 0, $head94 = 0, $head97 = 0, $head99$i = 0, $idx$0$i = 0, $index$i = 0, $index$i$i = 0, $index$i189 = 0, $index$i29$i = 0, $index288$i$i = 0, $index356$i = 0, $magic$i$i = 0, $nb$0 = 0;
- var $neg = 0, $neg$i = 0, $neg$i$i = 0, $neg$i137 = 0, $neg$i190 = 0, $neg103$i = 0, $neg13 = 0, $neg132$i$i = 0, $neg48$i = 0, $neg73 = 0, $next$i = 0, $next$i$i = 0, $next$i$i$i = 0, $next231$i = 0, $not$cmp141$i = 0, $oldfirst$0$i$i = 0, $or$cond$i = 0, $or$cond$i168 = 0, $or$cond1$i = 0, $or$cond1$i165 = 0;
- var $or$cond11$i = 0, $or$cond2$i = 0, $or$cond4$i = 0, $or$cond5$i = 0, $or$cond7$i = 0, $or$cond8$i = 0, $or$cond8$not$i = 0, $or$cond97$i = 0, $or$cond98$i = 0, $or$i = 0, $or$i$i = 0, $or$i$i$i = 0, $or$i169 = 0, $or$i51$i = 0, $or101$i$i = 0, $or110 = 0, $or167 = 0, $or172 = 0, $or176 = 0, $or178$i = 0;
- var $or180 = 0, $or183$i = 0, $or186$i = 0, $or188$i = 0, $or19$i$i = 0, $or194 = 0, $or197 = 0, $or204$i = 0, $or210$i$i = 0, $or22$i$i = 0, $or23 = 0, $or232$i$i = 0, $or26 = 0, $or264$i = 0, $or267$i = 0, $or270$i = 0, $or275$i = 0, $or278$i = 0, $or28$i$i = 0, $or280$i = 0;
- var $or297$i = 0, $or300$i$i = 0, $or33$i$i = 0, $or368$i = 0, $or40 = 0, $or44$i$i = 0, $or93 = 0, $or96 = 0, $parent$i = 0, $parent$i$i = 0, $parent$i175 = 0, $parent$i27$i = 0, $parent135$i = 0, $parent138$i$i = 0, $parent149$i = 0, $parent162$i$i = 0, $parent165$i$i = 0, $parent166$i = 0, $parent179$i$i = 0, $parent196$i$i = 0;
- var $parent226$i = 0, $parent240$i = 0, $parent257$i = 0, $parent301$i$i = 0, $parent337$i$i = 0, $parent361$i$i = 0, $parent369$i = 0, $parent406$i = 0, $parent433$i = 0, $qsize$0$i$i = 0, $retval$0 = 0, $rsize$0$i = 0, $rsize$0$i162 = 0, $rsize$1$i = 0, $rsize$3$i = 0, $rsize$4$lcssa$i = 0, $rsize$418$i = 0, $rsize$418$i$ph = 0, $rst$0$i = 0, $rst$1$i = 0;
- var $sflags193$i = 0, $sflags235$i = 0, $shl = 0, $shl$i = 0, $shl$i$i = 0, $shl$i153 = 0, $shl102 = 0, $shl105 = 0, $shl116$i$i = 0, $shl12 = 0, $shl127$i$i = 0, $shl131$i$i = 0, $shl15$i = 0, $shl18$i = 0, $shl192$i = 0, $shl195$i = 0, $shl198$i = 0, $shl22 = 0, $shl222$i$i = 0, $shl226$i$i = 0;
- var $shl265$i$i = 0, $shl270$i$i = 0, $shl276$i$i = 0, $shl279$i$i = 0, $shl288$i = 0, $shl291$i = 0, $shl294$i$i = 0, $shl31$i = 0, $shl316$i$i = 0, $shl326$i$i = 0, $shl333$i = 0, $shl338$i = 0, $shl344$i = 0, $shl347$i = 0, $shl35 = 0, $shl362$i = 0, $shl37 = 0, $shl384$i = 0, $shl39$i$i = 0, $shl395$i = 0;
- var $shl48$i$i = 0, $shl60$i = 0, $shl65 = 0, $shl70$i$i = 0, $shl72 = 0, $shl75$i$i = 0, $shl81$i$i = 0, $shl84$i$i = 0, $shl9$i = 0, $shl90 = 0, $shl95$i$i = 0, $shr = 0, $shr$i = 0, $shr$i$i = 0, $shr$i148 = 0, $shr$i25$i = 0, $shr101 = 0, $shr11$i = 0, $shr11$i156 = 0, $shr110$i$i = 0;
- var $shr12$i = 0, $shr124$i$i = 0, $shr15$i = 0, $shr16$i = 0, $shr16$i157 = 0, $shr19$i = 0, $shr194$i = 0, $shr20$i = 0, $shr214$i$i = 0, $shr253$i$i = 0, $shr263$i$i = 0, $shr267$i$i = 0, $shr27$i = 0, $shr272$i$i = 0, $shr277$i$i = 0, $shr281$i$i = 0, $shr283$i = 0, $shr3 = 0, $shr310$i$i = 0, $shr318$i = 0;
- var $shr323$i$i = 0, $shr330$i = 0, $shr335$i = 0, $shr340$i = 0, $shr345$i = 0, $shr349$i = 0, $shr378$i = 0, $shr392$i = 0, $shr4$i = 0, $shr42$i = 0, $shr45 = 0, $shr47 = 0, $shr48 = 0, $shr5$i = 0, $shr5$i151 = 0, $shr51 = 0, $shr52 = 0, $shr55 = 0, $shr56 = 0, $shr58$i$i = 0;
- var $shr59 = 0, $shr60 = 0, $shr63 = 0, $shr68$i$i = 0, $shr7$i = 0, $shr7$i154 = 0, $shr72$i = 0, $shr72$i$i = 0, $shr75$i = 0, $shr76$i = 0, $shr77$i$i = 0, $shr79$i = 0, $shr8$i = 0, $shr80$i = 0, $shr82$i$i = 0, $shr83$i = 0, $shr84$i = 0, $shr86$i$i = 0, $shr87$i = 0, $shr88$i = 0;
- var $shr91$i = 0, $size$i$i = 0, $size$i$i$i = 0, $size$i$i$le = 0, $size188$i = 0, $size188$i$le = 0, $size245$i = 0, $sizebits$0$i = 0, $sp$0$i$i = 0, $sp$0$i$i$i = 0, $sp$0112$i = 0, $sp$1111$i = 0, $spec$select$i = 0, $spec$select$i171 = 0, $spec$select1$i = 0, $spec$select2$i = 0, $spec$select5$i = 0, $spec$select9$i = 0, $spec$select96$i = 0, $ssize$2$ph$i = 0;
- var $sub = 0, $sub$i = 0, $sub$i$i = 0, $sub$i$i$i = 0, $sub$i136 = 0, $sub$i147 = 0, $sub$i16$i = 0, $sub$i38$i = 0, $sub$i46$i = 0, $sub$ptr$lhs$cast$i = 0, $sub$ptr$lhs$cast$i$i = 0, $sub$ptr$lhs$cast$i19$i = 0, $sub$ptr$rhs$cast$i = 0, $sub$ptr$rhs$cast$i$i = 0, $sub$ptr$rhs$cast$i20$i = 0, $sub$ptr$sub$i = 0, $sub$ptr$sub$i$i = 0, $sub$ptr$sub$i21$i = 0, $sub10$i = 0, $sub101$i = 0;
- var $sub112$i = 0, $sub113$i$i = 0, $sub118$i = 0, $sub12$i$i = 0, $sub14$i = 0, $sub16$i$i = 0, $sub160 = 0, $sub172$i = 0, $sub18$i$i = 0, $sub190 = 0, $sub2$i = 0, $sub22$i = 0, $sub260$i = 0, $sub262$i$i = 0, $sub266$i$i = 0, $sub271$i$i = 0, $sub275$i$i = 0, $sub30$i = 0, $sub31$i = 0, $sub313$i$i = 0;
- var $sub329$i = 0, $sub33$i = 0, $sub334$i = 0, $sub339$i = 0, $sub343$i = 0, $sub381$i = 0, $sub4$i = 0, $sub41$i = 0, $sub42 = 0, $sub44 = 0, $sub5$i$i = 0, $sub5$i$i$i = 0, $sub5$i50$i = 0, $sub50$i = 0, $sub6$i = 0, $sub63$i = 0, $sub67$i = 0, $sub67$i$i = 0, $sub70$i = 0, $sub71$i$i = 0;
- var $sub76$i$i = 0, $sub80$i$i = 0, $sub91 = 0, $sub99$i = 0, $t$0$i = 0, $t$0$i161 = 0, $t$2$i = 0, $t$4$i = 0, $t$517$i = 0, $t$517$i$ph = 0, $tbase$795$i = 0, $tobool$i$i = 0, $tobool107 = 0, $tobool195$i = 0, $tobool200$i = 0, $tobool228$i$i = 0, $tobool237$i = 0, $tobool293$i = 0, $tobool296$i$i = 0, $tobool30$i = 0;
- var $tobool364$i = 0, $tobool97$i$i = 0, $tsize$2647482$i = 0, $tsize$4$i = 0, $tsize$794$i = 0, $v$0$i = 0, $v$0$i163 = 0, $v$1$i = 0, $v$3$i = 0, $v$3$i204 = 0, $v$4$lcssa$i = 0, $v$419$i = 0, $v$419$i$ph = 0, $xor$i$i = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 16|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(16|0);
- $magic$i$i = sp;
- $cmp = ($bytes>>>0)<(245);
- do {
- if ($cmp) {
- $cmp1 = ($bytes>>>0)<(11);
- $add2 = (($bytes) + 11)|0;
- $and = $add2 & -8;
- $cond = $cmp1 ? 16 : $and;
- $shr = $cond >>> 3;
- $0 = HEAP32[304]|0;
- $shr3 = $0 >>> $shr;
- $and4 = $shr3 & 3;
- $cmp5 = ($and4|0)==(0);
- if (!($cmp5)) {
- $neg = $shr3 & 1;
- $and7 = $neg ^ 1;
- $add8 = (($and7) + ($shr))|0;
- $shl = $add8 << 1;
- $arrayidx = (1256 + ($shl<<2)|0);
- $1 = ((($arrayidx)) + 8|0);
- $2 = HEAP32[$1>>2]|0;
- $fd9 = ((($2)) + 8|0);
- $3 = HEAP32[$fd9>>2]|0;
- $cmp10 = ($3|0)==($arrayidx|0);
- if ($cmp10) {
- $shl12 = 1 << $add8;
- $neg13 = $shl12 ^ -1;
- $and14 = $0 & $neg13;
- HEAP32[304] = $and14;
- } else {
- $bk18 = ((($3)) + 12|0);
- HEAP32[$bk18>>2] = $arrayidx;
- HEAP32[$1>>2] = $3;
- }
- $shl22 = $add8 << 3;
- $or23 = $shl22 | 3;
- $head = ((($2)) + 4|0);
- HEAP32[$head>>2] = $or23;
- $add$ptr = (($2) + ($shl22)|0);
- $head25 = ((($add$ptr)) + 4|0);
- $4 = HEAP32[$head25>>2]|0;
- $or26 = $4 | 1;
- HEAP32[$head25>>2] = $or26;
- $retval$0 = $fd9;
- STACKTOP = sp;return ($retval$0|0);
- }
- $5 = HEAP32[(1224)>>2]|0;
- $cmp29 = ($cond>>>0)>($5>>>0);
- if ($cmp29) {
- $cmp31 = ($shr3|0)==(0);
- if (!($cmp31)) {
- $shl35 = $shr3 << $shr;
- $shl37 = 2 << $shr;
- $sub = (0 - ($shl37))|0;
- $or40 = $shl37 | $sub;
- $and41 = $shl35 & $or40;
- $sub42 = (0 - ($and41))|0;
- $and43 = $and41 & $sub42;
- $sub44 = (($and43) + -1)|0;
- $shr45 = $sub44 >>> 12;
- $and46 = $shr45 & 16;
- $shr47 = $sub44 >>> $and46;
- $shr48 = $shr47 >>> 5;
- $and49 = $shr48 & 8;
- $add50 = $and49 | $and46;
- $shr51 = $shr47 >>> $and49;
- $shr52 = $shr51 >>> 2;
- $and53 = $shr52 & 4;
- $add54 = $add50 | $and53;
- $shr55 = $shr51 >>> $and53;
- $shr56 = $shr55 >>> 1;
- $and57 = $shr56 & 2;
- $add58 = $add54 | $and57;
- $shr59 = $shr55 >>> $and57;
- $shr60 = $shr59 >>> 1;
- $and61 = $shr60 & 1;
- $add62 = $add58 | $and61;
- $shr63 = $shr59 >>> $and61;
- $add64 = (($add62) + ($shr63))|0;
- $shl65 = $add64 << 1;
- $arrayidx66 = (1256 + ($shl65<<2)|0);
- $6 = ((($arrayidx66)) + 8|0);
- $7 = HEAP32[$6>>2]|0;
- $fd69 = ((($7)) + 8|0);
- $8 = HEAP32[$fd69>>2]|0;
- $cmp70 = ($8|0)==($arrayidx66|0);
- if ($cmp70) {
- $shl72 = 1 << $add64;
- $neg73 = $shl72 ^ -1;
- $and74 = $0 & $neg73;
- HEAP32[304] = $and74;
- $10 = $and74;
- } else {
- $bk85 = ((($8)) + 12|0);
- HEAP32[$bk85>>2] = $arrayidx66;
- HEAP32[$6>>2] = $8;
- $10 = $0;
- }
- $shl90 = $add64 << 3;
- $sub91 = (($shl90) - ($cond))|0;
- $or93 = $cond | 3;
- $head94 = ((($7)) + 4|0);
- HEAP32[$head94>>2] = $or93;
- $add$ptr95 = (($7) + ($cond)|0);
- $or96 = $sub91 | 1;
- $head97 = ((($add$ptr95)) + 4|0);
- HEAP32[$head97>>2] = $or96;
- $add$ptr98 = (($7) + ($shl90)|0);
- HEAP32[$add$ptr98>>2] = $sub91;
- $cmp99 = ($5|0)==(0);
- if (!($cmp99)) {
- $9 = HEAP32[(1236)>>2]|0;
- $shr101 = $5 >>> 3;
- $shl102 = $shr101 << 1;
- $arrayidx103 = (1256 + ($shl102<<2)|0);
- $shl105 = 1 << $shr101;
- $and106 = $10 & $shl105;
- $tobool107 = ($and106|0)==(0);
- if ($tobool107) {
- $or110 = $10 | $shl105;
- HEAP32[304] = $or110;
- $$pre = ((($arrayidx103)) + 8|0);
- $$pre$phiZ2D = $$pre;$F104$0 = $arrayidx103;
- } else {
- $11 = ((($arrayidx103)) + 8|0);
- $12 = HEAP32[$11>>2]|0;
- $$pre$phiZ2D = $11;$F104$0 = $12;
- }
- HEAP32[$$pre$phiZ2D>>2] = $9;
- $bk122 = ((($F104$0)) + 12|0);
- HEAP32[$bk122>>2] = $9;
- $fd123 = ((($9)) + 8|0);
- HEAP32[$fd123>>2] = $F104$0;
- $bk124 = ((($9)) + 12|0);
- HEAP32[$bk124>>2] = $arrayidx103;
- }
- HEAP32[(1224)>>2] = $sub91;
- HEAP32[(1236)>>2] = $add$ptr95;
- $retval$0 = $fd69;
- STACKTOP = sp;return ($retval$0|0);
- }
- $13 = HEAP32[(1220)>>2]|0;
- $cmp128 = ($13|0)==(0);
- if ($cmp128) {
- $nb$0 = $cond;
- } else {
- $sub$i = (0 - ($13))|0;
- $and$i = $13 & $sub$i;
- $sub2$i = (($and$i) + -1)|0;
- $shr$i = $sub2$i >>> 12;
- $and3$i = $shr$i & 16;
- $shr4$i = $sub2$i >>> $and3$i;
- $shr5$i = $shr4$i >>> 5;
- $and6$i = $shr5$i & 8;
- $add$i = $and6$i | $and3$i;
- $shr7$i = $shr4$i >>> $and6$i;
- $shr8$i = $shr7$i >>> 2;
- $and9$i = $shr8$i & 4;
- $add10$i = $add$i | $and9$i;
- $shr11$i = $shr7$i >>> $and9$i;
- $shr12$i = $shr11$i >>> 1;
- $and13$i = $shr12$i & 2;
- $add14$i = $add10$i | $and13$i;
- $shr15$i = $shr11$i >>> $and13$i;
- $shr16$i = $shr15$i >>> 1;
- $and17$i = $shr16$i & 1;
- $add18$i = $add14$i | $and17$i;
- $shr19$i = $shr15$i >>> $and17$i;
- $add20$i = (($add18$i) + ($shr19$i))|0;
- $arrayidx$i = (1520 + ($add20$i<<2)|0);
- $14 = HEAP32[$arrayidx$i>>2]|0;
- $head$i = ((($14)) + 4|0);
- $15 = HEAP32[$head$i>>2]|0;
- $and21$i = $15 & -8;
- $sub22$i = (($and21$i) - ($cond))|0;
- $rsize$0$i = $sub22$i;$t$0$i = $14;$v$0$i = $14;
- while(1) {
- $arrayidx23$i = ((($t$0$i)) + 16|0);
- $16 = HEAP32[$arrayidx23$i>>2]|0;
- $cmp$i = ($16|0)==(0|0);
- if ($cmp$i) {
- $arrayidx27$i = ((($t$0$i)) + 20|0);
- $17 = HEAP32[$arrayidx27$i>>2]|0;
- $cmp28$i = ($17|0)==(0|0);
- if ($cmp28$i) {
- break;
- } else {
- $cond4$i = $17;
- }
- } else {
- $cond4$i = $16;
- }
- $head29$i = ((($cond4$i)) + 4|0);
- $18 = HEAP32[$head29$i>>2]|0;
- $and30$i = $18 & -8;
- $sub31$i = (($and30$i) - ($cond))|0;
- $cmp32$i = ($sub31$i>>>0)<($rsize$0$i>>>0);
- $spec$select$i = $cmp32$i ? $sub31$i : $rsize$0$i;
- $spec$select1$i = $cmp32$i ? $cond4$i : $v$0$i;
- $rsize$0$i = $spec$select$i;$t$0$i = $cond4$i;$v$0$i = $spec$select1$i;
- }
- $add$ptr$i = (($v$0$i) + ($cond)|0);
- $cmp35$i = ($add$ptr$i>>>0)>($v$0$i>>>0);
- if ($cmp35$i) {
- $parent$i = ((($v$0$i)) + 24|0);
- $19 = HEAP32[$parent$i>>2]|0;
- $bk$i = ((($v$0$i)) + 12|0);
- $20 = HEAP32[$bk$i>>2]|0;
- $cmp40$i = ($20|0)==($v$0$i|0);
- do {
- if ($cmp40$i) {
- $arrayidx61$i = ((($v$0$i)) + 20|0);
- $22 = HEAP32[$arrayidx61$i>>2]|0;
- $cmp62$i = ($22|0)==(0|0);
- if ($cmp62$i) {
- $arrayidx65$i = ((($v$0$i)) + 16|0);
- $23 = HEAP32[$arrayidx65$i>>2]|0;
- $cmp66$i = ($23|0)==(0|0);
- if ($cmp66$i) {
- $R$3$i = 0;
- break;
- } else {
- $R$1$i$ph = $23;$RP$1$i$ph = $arrayidx65$i;
- }
- } else {
- $R$1$i$ph = $22;$RP$1$i$ph = $arrayidx61$i;
- }
- $R$1$i = $R$1$i$ph;$RP$1$i = $RP$1$i$ph;
- while(1) {
- $arrayidx71$i = ((($R$1$i)) + 20|0);
- $24 = HEAP32[$arrayidx71$i>>2]|0;
- $cmp72$i = ($24|0)==(0|0);
- if ($cmp72$i) {
- $arrayidx75$i = ((($R$1$i)) + 16|0);
- $25 = HEAP32[$arrayidx75$i>>2]|0;
- $cmp76$i = ($25|0)==(0|0);
- if ($cmp76$i) {
- break;
- } else {
- $R$1$i$be = $25;$RP$1$i$be = $arrayidx75$i;
- }
- } else {
- $R$1$i$be = $24;$RP$1$i$be = $arrayidx71$i;
- }
- $R$1$i = $R$1$i$be;$RP$1$i = $RP$1$i$be;
- }
- HEAP32[$RP$1$i>>2] = 0;
- $R$3$i = $R$1$i;
- } else {
- $fd$i = ((($v$0$i)) + 8|0);
- $21 = HEAP32[$fd$i>>2]|0;
- $bk56$i = ((($21)) + 12|0);
- HEAP32[$bk56$i>>2] = $20;
- $fd57$i = ((($20)) + 8|0);
- HEAP32[$fd57$i>>2] = $21;
- $R$3$i = $20;
- }
- } while(0);
- $cmp90$i = ($19|0)==(0|0);
- do {
- if (!($cmp90$i)) {
- $index$i = ((($v$0$i)) + 28|0);
- $26 = HEAP32[$index$i>>2]|0;
- $arrayidx94$i = (1520 + ($26<<2)|0);
- $27 = HEAP32[$arrayidx94$i>>2]|0;
- $cmp95$i = ($v$0$i|0)==($27|0);
- if ($cmp95$i) {
- HEAP32[$arrayidx94$i>>2] = $R$3$i;
- $cond2$i = ($R$3$i|0)==(0|0);
- if ($cond2$i) {
- $shl$i = 1 << $26;
- $neg$i = $shl$i ^ -1;
- $and103$i = $13 & $neg$i;
- HEAP32[(1220)>>2] = $and103$i;
- break;
- }
- } else {
- $arrayidx113$i = ((($19)) + 16|0);
- $28 = HEAP32[$arrayidx113$i>>2]|0;
- $cmp114$i = ($28|0)==($v$0$i|0);
- $arrayidx121$i = ((($19)) + 20|0);
- $arrayidx121$i$sink = $cmp114$i ? $arrayidx113$i : $arrayidx121$i;
- HEAP32[$arrayidx121$i$sink>>2] = $R$3$i;
- $cmp126$i = ($R$3$i|0)==(0|0);
- if ($cmp126$i) {
- break;
- }
- }
- $parent135$i = ((($R$3$i)) + 24|0);
- HEAP32[$parent135$i>>2] = $19;
- $arrayidx137$i = ((($v$0$i)) + 16|0);
- $29 = HEAP32[$arrayidx137$i>>2]|0;
- $cmp138$i = ($29|0)==(0|0);
- if (!($cmp138$i)) {
- $arrayidx148$i = ((($R$3$i)) + 16|0);
- HEAP32[$arrayidx148$i>>2] = $29;
- $parent149$i = ((($29)) + 24|0);
- HEAP32[$parent149$i>>2] = $R$3$i;
- }
- $arrayidx154$i = ((($v$0$i)) + 20|0);
- $30 = HEAP32[$arrayidx154$i>>2]|0;
- $cmp155$i = ($30|0)==(0|0);
- if (!($cmp155$i)) {
- $arrayidx165$i = ((($R$3$i)) + 20|0);
- HEAP32[$arrayidx165$i>>2] = $30;
- $parent166$i = ((($30)) + 24|0);
- HEAP32[$parent166$i>>2] = $R$3$i;
- }
- }
- } while(0);
- $cmp174$i = ($rsize$0$i>>>0)<(16);
- if ($cmp174$i) {
- $add177$i = (($rsize$0$i) + ($cond))|0;
- $or178$i = $add177$i | 3;
- $head179$i = ((($v$0$i)) + 4|0);
- HEAP32[$head179$i>>2] = $or178$i;
- $add$ptr181$i = (($v$0$i) + ($add177$i)|0);
- $head182$i = ((($add$ptr181$i)) + 4|0);
- $31 = HEAP32[$head182$i>>2]|0;
- $or183$i = $31 | 1;
- HEAP32[$head182$i>>2] = $or183$i;
- } else {
- $or186$i = $cond | 3;
- $head187$i = ((($v$0$i)) + 4|0);
- HEAP32[$head187$i>>2] = $or186$i;
- $or188$i = $rsize$0$i | 1;
- $head189$i = ((($add$ptr$i)) + 4|0);
- HEAP32[$head189$i>>2] = $or188$i;
- $add$ptr190$i = (($add$ptr$i) + ($rsize$0$i)|0);
- HEAP32[$add$ptr190$i>>2] = $rsize$0$i;
- $cmp191$i = ($5|0)==(0);
- if (!($cmp191$i)) {
- $32 = HEAP32[(1236)>>2]|0;
- $shr194$i = $5 >>> 3;
- $shl195$i = $shr194$i << 1;
- $arrayidx196$i = (1256 + ($shl195$i<<2)|0);
- $shl198$i = 1 << $shr194$i;
- $and199$i = $shl198$i & $0;
- $tobool200$i = ($and199$i|0)==(0);
- if ($tobool200$i) {
- $or204$i = $shl198$i | $0;
- HEAP32[304] = $or204$i;
- $$pre$i = ((($arrayidx196$i)) + 8|0);
- $$pre$phi$iZ2D = $$pre$i;$F197$0$i = $arrayidx196$i;
- } else {
- $33 = ((($arrayidx196$i)) + 8|0);
- $34 = HEAP32[$33>>2]|0;
- $$pre$phi$iZ2D = $33;$F197$0$i = $34;
- }
- HEAP32[$$pre$phi$iZ2D>>2] = $32;
- $bk218$i = ((($F197$0$i)) + 12|0);
- HEAP32[$bk218$i>>2] = $32;
- $fd219$i = ((($32)) + 8|0);
- HEAP32[$fd219$i>>2] = $F197$0$i;
- $bk220$i = ((($32)) + 12|0);
- HEAP32[$bk220$i>>2] = $arrayidx196$i;
- }
- HEAP32[(1224)>>2] = $rsize$0$i;
- HEAP32[(1236)>>2] = $add$ptr$i;
- }
- $add$ptr225$i = ((($v$0$i)) + 8|0);
- $retval$0 = $add$ptr225$i;
- STACKTOP = sp;return ($retval$0|0);
- } else {
- $nb$0 = $cond;
- }
- }
- } else {
- $nb$0 = $cond;
- }
- } else {
- $cmp139 = ($bytes>>>0)>(4294967231);
- if ($cmp139) {
- $nb$0 = -1;
- } else {
- $add144 = (($bytes) + 11)|0;
- $and145 = $add144 & -8;
- $35 = HEAP32[(1220)>>2]|0;
- $cmp146 = ($35|0)==(0);
- if ($cmp146) {
- $nb$0 = $and145;
- } else {
- $sub$i147 = (0 - ($and145))|0;
- $shr$i148 = $add144 >>> 8;
- $cmp$i149 = ($shr$i148|0)==(0);
- if ($cmp$i149) {
- $idx$0$i = 0;
- } else {
- $cmp1$i = ($and145>>>0)>(16777215);
- if ($cmp1$i) {
- $idx$0$i = 31;
- } else {
- $sub4$i = (($shr$i148) + 1048320)|0;
- $shr5$i151 = $sub4$i >>> 16;
- $and$i152 = $shr5$i151 & 8;
- $shl$i153 = $shr$i148 << $and$i152;
- $sub6$i = (($shl$i153) + 520192)|0;
- $shr7$i154 = $sub6$i >>> 16;
- $and8$i = $shr7$i154 & 4;
- $add$i155 = $and8$i | $and$i152;
- $shl9$i = $shl$i153 << $and8$i;
- $sub10$i = (($shl9$i) + 245760)|0;
- $shr11$i156 = $sub10$i >>> 16;
- $and12$i = $shr11$i156 & 2;
- $add13$i = $add$i155 | $and12$i;
- $sub14$i = (14 - ($add13$i))|0;
- $shl15$i = $shl9$i << $and12$i;
- $shr16$i157 = $shl15$i >>> 15;
- $add17$i158 = (($sub14$i) + ($shr16$i157))|0;
- $shl18$i = $add17$i158 << 1;
- $add19$i = (($add17$i158) + 7)|0;
- $shr20$i = $and145 >>> $add19$i;
- $and21$i159 = $shr20$i & 1;
- $add22$i = $and21$i159 | $shl18$i;
- $idx$0$i = $add22$i;
- }
- }
- $arrayidx$i160 = (1520 + ($idx$0$i<<2)|0);
- $36 = HEAP32[$arrayidx$i160>>2]|0;
- $cmp24$i = ($36|0)==(0|0);
- L79: do {
- if ($cmp24$i) {
- $rsize$3$i = $sub$i147;$t$2$i = 0;$v$3$i = 0;
- label = 61;
- } else {
- $cmp26$i = ($idx$0$i|0)==(31);
- $shr27$i = $idx$0$i >>> 1;
- $sub30$i = (25 - ($shr27$i))|0;
- $cond$i = $cmp26$i ? 0 : $sub30$i;
- $shl31$i = $and145 << $cond$i;
- $rsize$0$i162 = $sub$i147;$rst$0$i = 0;$sizebits$0$i = $shl31$i;$t$0$i161 = $36;$v$0$i163 = 0;
- while(1) {
- $head$i164 = ((($t$0$i161)) + 4|0);
- $37 = HEAP32[$head$i164>>2]|0;
- $and32$i = $37 & -8;
- $sub33$i = (($and32$i) - ($and145))|0;
- $cmp34$i = ($sub33$i>>>0)<($rsize$0$i162>>>0);
- if ($cmp34$i) {
- $cmp36$i = ($sub33$i|0)==(0);
- if ($cmp36$i) {
- $rsize$418$i$ph = 0;$t$517$i$ph = $t$0$i161;$v$419$i$ph = $t$0$i161;
- label = 65;
- break L79;
- } else {
- $rsize$1$i = $sub33$i;$v$1$i = $t$0$i161;
- }
- } else {
- $rsize$1$i = $rsize$0$i162;$v$1$i = $v$0$i163;
- }
- $arrayidx40$i = ((($t$0$i161)) + 20|0);
- $38 = HEAP32[$arrayidx40$i>>2]|0;
- $shr42$i = $sizebits$0$i >>> 31;
- $arrayidx44$i = (((($t$0$i161)) + 16|0) + ($shr42$i<<2)|0);
- $39 = HEAP32[$arrayidx44$i>>2]|0;
- $cmp45$i = ($38|0)==(0|0);
- $cmp46$i = ($38|0)==($39|0);
- $or$cond1$i165 = $cmp45$i | $cmp46$i;
- $rst$1$i = $or$cond1$i165 ? $rst$0$i : $38;
- $cmp49$i = ($39|0)==(0|0);
- $spec$select5$i = $sizebits$0$i << 1;
- if ($cmp49$i) {
- $rsize$3$i = $rsize$1$i;$t$2$i = $rst$1$i;$v$3$i = $v$1$i;
- label = 61;
- break;
- } else {
- $rsize$0$i162 = $rsize$1$i;$rst$0$i = $rst$1$i;$sizebits$0$i = $spec$select5$i;$t$0$i161 = $39;$v$0$i163 = $v$1$i;
- }
- }
- }
- } while(0);
- if ((label|0) == 61) {
- $cmp55$i166 = ($t$2$i|0)==(0|0);
- $cmp57$i167 = ($v$3$i|0)==(0|0);
- $or$cond$i168 = $cmp55$i166 & $cmp57$i167;
- if ($or$cond$i168) {
- $shl60$i = 2 << $idx$0$i;
- $sub63$i = (0 - ($shl60$i))|0;
- $or$i169 = $shl60$i | $sub63$i;
- $and64$i = $or$i169 & $35;
- $cmp65$i = ($and64$i|0)==(0);
- if ($cmp65$i) {
- $nb$0 = $and145;
- break;
- }
- $sub67$i = (0 - ($and64$i))|0;
- $and68$i = $and64$i & $sub67$i;
- $sub70$i = (($and68$i) + -1)|0;
- $shr72$i = $sub70$i >>> 12;
- $and73$i = $shr72$i & 16;
- $shr75$i = $sub70$i >>> $and73$i;
- $shr76$i = $shr75$i >>> 5;
- $and77$i = $shr76$i & 8;
- $add78$i = $and77$i | $and73$i;
- $shr79$i = $shr75$i >>> $and77$i;
- $shr80$i = $shr79$i >>> 2;
- $and81$i = $shr80$i & 4;
- $add82$i = $add78$i | $and81$i;
- $shr83$i = $shr79$i >>> $and81$i;
- $shr84$i = $shr83$i >>> 1;
- $and85$i = $shr84$i & 2;
- $add86$i = $add82$i | $and85$i;
- $shr87$i = $shr83$i >>> $and85$i;
- $shr88$i = $shr87$i >>> 1;
- $and89$i = $shr88$i & 1;
- $add90$i = $add86$i | $and89$i;
- $shr91$i = $shr87$i >>> $and89$i;
- $add92$i = (($add90$i) + ($shr91$i))|0;
- $arrayidx94$i170 = (1520 + ($add92$i<<2)|0);
- $40 = HEAP32[$arrayidx94$i170>>2]|0;
- $t$4$i = $40;$v$3$i204 = 0;
- } else {
- $t$4$i = $t$2$i;$v$3$i204 = $v$3$i;
- }
- $cmp9716$i = ($t$4$i|0)==(0|0);
- if ($cmp9716$i) {
- $rsize$4$lcssa$i = $rsize$3$i;$v$4$lcssa$i = $v$3$i204;
- } else {
- $rsize$418$i$ph = $rsize$3$i;$t$517$i$ph = $t$4$i;$v$419$i$ph = $v$3$i204;
- label = 65;
- }
- }
- if ((label|0) == 65) {
- $rsize$418$i = $rsize$418$i$ph;$t$517$i = $t$517$i$ph;$v$419$i = $v$419$i$ph;
- while(1) {
- $head99$i = ((($t$517$i)) + 4|0);
- $41 = HEAP32[$head99$i>>2]|0;
- $and100$i = $41 & -8;
- $sub101$i = (($and100$i) - ($and145))|0;
- $cmp102$i = ($sub101$i>>>0)<($rsize$418$i>>>0);
- $spec$select$i171 = $cmp102$i ? $sub101$i : $rsize$418$i;
- $spec$select2$i = $cmp102$i ? $t$517$i : $v$419$i;
- $arrayidx106$i = ((($t$517$i)) + 16|0);
- $42 = HEAP32[$arrayidx106$i>>2]|0;
- $cmp107$i = ($42|0)==(0|0);
- if ($cmp107$i) {
- $arrayidx113$i173 = ((($t$517$i)) + 20|0);
- $43 = HEAP32[$arrayidx113$i173>>2]|0;
- $cond115$i = $43;
- } else {
- $cond115$i = $42;
- }
- $cmp97$i = ($cond115$i|0)==(0|0);
- if ($cmp97$i) {
- $rsize$4$lcssa$i = $spec$select$i171;$v$4$lcssa$i = $spec$select2$i;
- break;
- } else {
- $rsize$418$i = $spec$select$i171;$t$517$i = $cond115$i;$v$419$i = $spec$select2$i;
- }
- }
- }
- $cmp116$i = ($v$4$lcssa$i|0)==(0|0);
- if ($cmp116$i) {
- $nb$0 = $and145;
- } else {
- $44 = HEAP32[(1224)>>2]|0;
- $sub118$i = (($44) - ($and145))|0;
- $cmp119$i = ($rsize$4$lcssa$i>>>0)<($sub118$i>>>0);
- if ($cmp119$i) {
- $add$ptr$i174 = (($v$4$lcssa$i) + ($and145)|0);
- $cmp123$i = ($add$ptr$i174>>>0)>($v$4$lcssa$i>>>0);
- if ($cmp123$i) {
- $parent$i175 = ((($v$4$lcssa$i)) + 24|0);
- $45 = HEAP32[$parent$i175>>2]|0;
- $bk$i176 = ((($v$4$lcssa$i)) + 12|0);
- $46 = HEAP32[$bk$i176>>2]|0;
- $cmp128$i = ($46|0)==($v$4$lcssa$i|0);
- do {
- if ($cmp128$i) {
- $arrayidx151$i = ((($v$4$lcssa$i)) + 20|0);
- $48 = HEAP32[$arrayidx151$i>>2]|0;
- $cmp152$i = ($48|0)==(0|0);
- if ($cmp152$i) {
- $arrayidx155$i = ((($v$4$lcssa$i)) + 16|0);
- $49 = HEAP32[$arrayidx155$i>>2]|0;
- $cmp156$i = ($49|0)==(0|0);
- if ($cmp156$i) {
- $R$3$i188 = 0;
- break;
- } else {
- $R$1$i183$ph = $49;$RP$1$i182$ph = $arrayidx155$i;
- }
- } else {
- $R$1$i183$ph = $48;$RP$1$i182$ph = $arrayidx151$i;
- }
- $R$1$i183 = $R$1$i183$ph;$RP$1$i182 = $RP$1$i182$ph;
- while(1) {
- $arrayidx161$i = ((($R$1$i183)) + 20|0);
- $50 = HEAP32[$arrayidx161$i>>2]|0;
- $cmp162$i184 = ($50|0)==(0|0);
- if ($cmp162$i184) {
- $arrayidx165$i185 = ((($R$1$i183)) + 16|0);
- $51 = HEAP32[$arrayidx165$i185>>2]|0;
- $cmp166$i = ($51|0)==(0|0);
- if ($cmp166$i) {
- break;
- } else {
- $R$1$i183$be = $51;$RP$1$i182$be = $arrayidx165$i185;
- }
- } else {
- $R$1$i183$be = $50;$RP$1$i182$be = $arrayidx161$i;
- }
- $R$1$i183 = $R$1$i183$be;$RP$1$i182 = $RP$1$i182$be;
- }
- HEAP32[$RP$1$i182>>2] = 0;
- $R$3$i188 = $R$1$i183;
- } else {
- $fd$i177 = ((($v$4$lcssa$i)) + 8|0);
- $47 = HEAP32[$fd$i177>>2]|0;
- $bk145$i = ((($47)) + 12|0);
- HEAP32[$bk145$i>>2] = $46;
- $fd146$i = ((($46)) + 8|0);
- HEAP32[$fd146$i>>2] = $47;
- $R$3$i188 = $46;
- }
- } while(0);
- $cmp180$i = ($45|0)==(0|0);
- do {
- if ($cmp180$i) {
- $61 = $35;
- } else {
- $index$i189 = ((($v$4$lcssa$i)) + 28|0);
- $52 = HEAP32[$index$i189>>2]|0;
- $arrayidx184$i = (1520 + ($52<<2)|0);
- $53 = HEAP32[$arrayidx184$i>>2]|0;
- $cmp185$i = ($v$4$lcssa$i|0)==($53|0);
- if ($cmp185$i) {
- HEAP32[$arrayidx184$i>>2] = $R$3$i188;
- $cond3$i = ($R$3$i188|0)==(0|0);
- if ($cond3$i) {
- $shl192$i = 1 << $52;
- $neg$i190 = $shl192$i ^ -1;
- $and194$i191 = $35 & $neg$i190;
- HEAP32[(1220)>>2] = $and194$i191;
- $61 = $and194$i191;
- break;
- }
- } else {
- $arrayidx204$i = ((($45)) + 16|0);
- $54 = HEAP32[$arrayidx204$i>>2]|0;
- $cmp205$i = ($54|0)==($v$4$lcssa$i|0);
- $arrayidx212$i = ((($45)) + 20|0);
- $arrayidx212$i$sink = $cmp205$i ? $arrayidx204$i : $arrayidx212$i;
- HEAP32[$arrayidx212$i$sink>>2] = $R$3$i188;
- $cmp217$i = ($R$3$i188|0)==(0|0);
- if ($cmp217$i) {
- $61 = $35;
- break;
- }
- }
- $parent226$i = ((($R$3$i188)) + 24|0);
- HEAP32[$parent226$i>>2] = $45;
- $arrayidx228$i = ((($v$4$lcssa$i)) + 16|0);
- $55 = HEAP32[$arrayidx228$i>>2]|0;
- $cmp229$i = ($55|0)==(0|0);
- if (!($cmp229$i)) {
- $arrayidx239$i = ((($R$3$i188)) + 16|0);
- HEAP32[$arrayidx239$i>>2] = $55;
- $parent240$i = ((($55)) + 24|0);
- HEAP32[$parent240$i>>2] = $R$3$i188;
- }
- $arrayidx245$i = ((($v$4$lcssa$i)) + 20|0);
- $56 = HEAP32[$arrayidx245$i>>2]|0;
- $cmp246$i = ($56|0)==(0|0);
- if ($cmp246$i) {
- $61 = $35;
- } else {
- $arrayidx256$i = ((($R$3$i188)) + 20|0);
- HEAP32[$arrayidx256$i>>2] = $56;
- $parent257$i = ((($56)) + 24|0);
- HEAP32[$parent257$i>>2] = $R$3$i188;
- $61 = $35;
- }
- }
- } while(0);
- $cmp265$i = ($rsize$4$lcssa$i>>>0)<(16);
- L128: do {
- if ($cmp265$i) {
- $add268$i = (($rsize$4$lcssa$i) + ($and145))|0;
- $or270$i = $add268$i | 3;
- $head271$i = ((($v$4$lcssa$i)) + 4|0);
- HEAP32[$head271$i>>2] = $or270$i;
- $add$ptr273$i = (($v$4$lcssa$i) + ($add268$i)|0);
- $head274$i = ((($add$ptr273$i)) + 4|0);
- $57 = HEAP32[$head274$i>>2]|0;
- $or275$i = $57 | 1;
- HEAP32[$head274$i>>2] = $or275$i;
- } else {
- $or278$i = $and145 | 3;
- $head279$i = ((($v$4$lcssa$i)) + 4|0);
- HEAP32[$head279$i>>2] = $or278$i;
- $or280$i = $rsize$4$lcssa$i | 1;
- $head281$i = ((($add$ptr$i174)) + 4|0);
- HEAP32[$head281$i>>2] = $or280$i;
- $add$ptr282$i = (($add$ptr$i174) + ($rsize$4$lcssa$i)|0);
- HEAP32[$add$ptr282$i>>2] = $rsize$4$lcssa$i;
- $shr283$i = $rsize$4$lcssa$i >>> 3;
- $cmp284$i = ($rsize$4$lcssa$i>>>0)<(256);
- if ($cmp284$i) {
- $shl288$i = $shr283$i << 1;
- $arrayidx289$i = (1256 + ($shl288$i<<2)|0);
- $58 = HEAP32[304]|0;
- $shl291$i = 1 << $shr283$i;
- $and292$i = $58 & $shl291$i;
- $tobool293$i = ($and292$i|0)==(0);
- if ($tobool293$i) {
- $or297$i = $58 | $shl291$i;
- HEAP32[304] = $or297$i;
- $$pre$i194 = ((($arrayidx289$i)) + 8|0);
- $$pre$phi$i195Z2D = $$pre$i194;$F290$0$i = $arrayidx289$i;
- } else {
- $59 = ((($arrayidx289$i)) + 8|0);
- $60 = HEAP32[$59>>2]|0;
- $$pre$phi$i195Z2D = $59;$F290$0$i = $60;
- }
- HEAP32[$$pre$phi$i195Z2D>>2] = $add$ptr$i174;
- $bk311$i = ((($F290$0$i)) + 12|0);
- HEAP32[$bk311$i>>2] = $add$ptr$i174;
- $fd312$i = ((($add$ptr$i174)) + 8|0);
- HEAP32[$fd312$i>>2] = $F290$0$i;
- $bk313$i = ((($add$ptr$i174)) + 12|0);
- HEAP32[$bk313$i>>2] = $arrayidx289$i;
- break;
- }
- $shr318$i = $rsize$4$lcssa$i >>> 8;
- $cmp319$i = ($shr318$i|0)==(0);
- if ($cmp319$i) {
- $I316$0$i = 0;
- } else {
- $cmp323$i = ($rsize$4$lcssa$i>>>0)>(16777215);
- if ($cmp323$i) {
- $I316$0$i = 31;
- } else {
- $sub329$i = (($shr318$i) + 1048320)|0;
- $shr330$i = $sub329$i >>> 16;
- $and331$i = $shr330$i & 8;
- $shl333$i = $shr318$i << $and331$i;
- $sub334$i = (($shl333$i) + 520192)|0;
- $shr335$i = $sub334$i >>> 16;
- $and336$i = $shr335$i & 4;
- $add337$i = $and336$i | $and331$i;
- $shl338$i = $shl333$i << $and336$i;
- $sub339$i = (($shl338$i) + 245760)|0;
- $shr340$i = $sub339$i >>> 16;
- $and341$i = $shr340$i & 2;
- $add342$i = $add337$i | $and341$i;
- $sub343$i = (14 - ($add342$i))|0;
- $shl344$i = $shl338$i << $and341$i;
- $shr345$i = $shl344$i >>> 15;
- $add346$i = (($sub343$i) + ($shr345$i))|0;
- $shl347$i = $add346$i << 1;
- $add348$i = (($add346$i) + 7)|0;
- $shr349$i = $rsize$4$lcssa$i >>> $add348$i;
- $and350$i = $shr349$i & 1;
- $add351$i = $and350$i | $shl347$i;
- $I316$0$i = $add351$i;
- }
- }
- $arrayidx355$i = (1520 + ($I316$0$i<<2)|0);
- $index356$i = ((($add$ptr$i174)) + 28|0);
- HEAP32[$index356$i>>2] = $I316$0$i;
- $child357$i = ((($add$ptr$i174)) + 16|0);
- $arrayidx358$i = ((($child357$i)) + 4|0);
- HEAP32[$arrayidx358$i>>2] = 0;
- HEAP32[$child357$i>>2] = 0;
- $shl362$i = 1 << $I316$0$i;
- $and363$i = $61 & $shl362$i;
- $tobool364$i = ($and363$i|0)==(0);
- if ($tobool364$i) {
- $or368$i = $61 | $shl362$i;
- HEAP32[(1220)>>2] = $or368$i;
- HEAP32[$arrayidx355$i>>2] = $add$ptr$i174;
- $parent369$i = ((($add$ptr$i174)) + 24|0);
- HEAP32[$parent369$i>>2] = $arrayidx355$i;
- $bk370$i = ((($add$ptr$i174)) + 12|0);
- HEAP32[$bk370$i>>2] = $add$ptr$i174;
- $fd371$i = ((($add$ptr$i174)) + 8|0);
- HEAP32[$fd371$i>>2] = $add$ptr$i174;
- break;
- }
- $62 = HEAP32[$arrayidx355$i>>2]|0;
- $head38611$i = ((($62)) + 4|0);
- $63 = HEAP32[$head38611$i>>2]|0;
- $and38712$i = $63 & -8;
- $cmp38813$i = ($and38712$i|0)==($rsize$4$lcssa$i|0);
- L145: do {
- if ($cmp38813$i) {
- $T$0$lcssa$i = $62;
- } else {
- $cmp374$i = ($I316$0$i|0)==(31);
- $shr378$i = $I316$0$i >>> 1;
- $sub381$i = (25 - ($shr378$i))|0;
- $cond383$i = $cmp374$i ? 0 : $sub381$i;
- $shl384$i = $rsize$4$lcssa$i << $cond383$i;
- $K373$015$i = $shl384$i;$T$014$i = $62;
- while(1) {
- $shr392$i = $K373$015$i >>> 31;
- $arrayidx394$i = (((($T$014$i)) + 16|0) + ($shr392$i<<2)|0);
- $64 = HEAP32[$arrayidx394$i>>2]|0;
- $cmp396$i = ($64|0)==(0|0);
- if ($cmp396$i) {
- break;
- }
- $shl395$i = $K373$015$i << 1;
- $head386$i = ((($64)) + 4|0);
- $65 = HEAP32[$head386$i>>2]|0;
- $and387$i = $65 & -8;
- $cmp388$i = ($and387$i|0)==($rsize$4$lcssa$i|0);
- if ($cmp388$i) {
- $T$0$lcssa$i = $64;
- break L145;
- } else {
- $K373$015$i = $shl395$i;$T$014$i = $64;
- }
- }
- HEAP32[$arrayidx394$i>>2] = $add$ptr$i174;
- $parent406$i = ((($add$ptr$i174)) + 24|0);
- HEAP32[$parent406$i>>2] = $T$014$i;
- $bk407$i = ((($add$ptr$i174)) + 12|0);
- HEAP32[$bk407$i>>2] = $add$ptr$i174;
- $fd408$i = ((($add$ptr$i174)) + 8|0);
- HEAP32[$fd408$i>>2] = $add$ptr$i174;
- break L128;
- }
- } while(0);
- $fd416$i = ((($T$0$lcssa$i)) + 8|0);
- $66 = HEAP32[$fd416$i>>2]|0;
- $bk429$i = ((($66)) + 12|0);
- HEAP32[$bk429$i>>2] = $add$ptr$i174;
- HEAP32[$fd416$i>>2] = $add$ptr$i174;
- $fd431$i = ((($add$ptr$i174)) + 8|0);
- HEAP32[$fd431$i>>2] = $66;
- $bk432$i = ((($add$ptr$i174)) + 12|0);
- HEAP32[$bk432$i>>2] = $T$0$lcssa$i;
- $parent433$i = ((($add$ptr$i174)) + 24|0);
- HEAP32[$parent433$i>>2] = 0;
- }
- } while(0);
- $add$ptr441$i = ((($v$4$lcssa$i)) + 8|0);
- $retval$0 = $add$ptr441$i;
- STACKTOP = sp;return ($retval$0|0);
- } else {
- $nb$0 = $and145;
- }
- } else {
- $nb$0 = $and145;
- }
- }
- }
- }
- }
- } while(0);
- $67 = HEAP32[(1224)>>2]|0;
- $cmp156 = ($67>>>0)<($nb$0>>>0);
- if (!($cmp156)) {
- $sub160 = (($67) - ($nb$0))|0;
- $68 = HEAP32[(1236)>>2]|0;
- $cmp162 = ($sub160>>>0)>(15);
- if ($cmp162) {
- $add$ptr166 = (($68) + ($nb$0)|0);
- HEAP32[(1236)>>2] = $add$ptr166;
- HEAP32[(1224)>>2] = $sub160;
- $or167 = $sub160 | 1;
- $head168 = ((($add$ptr166)) + 4|0);
- HEAP32[$head168>>2] = $or167;
- $add$ptr169 = (($68) + ($67)|0);
- HEAP32[$add$ptr169>>2] = $sub160;
- $or172 = $nb$0 | 3;
- $head173 = ((($68)) + 4|0);
- HEAP32[$head173>>2] = $or172;
- } else {
- HEAP32[(1224)>>2] = 0;
- HEAP32[(1236)>>2] = 0;
- $or176 = $67 | 3;
- $head177 = ((($68)) + 4|0);
- HEAP32[$head177>>2] = $or176;
- $add$ptr178 = (($68) + ($67)|0);
- $head179 = ((($add$ptr178)) + 4|0);
- $69 = HEAP32[$head179>>2]|0;
- $or180 = $69 | 1;
- HEAP32[$head179>>2] = $or180;
- }
- $add$ptr182 = ((($68)) + 8|0);
- $retval$0 = $add$ptr182;
- STACKTOP = sp;return ($retval$0|0);
- }
- $70 = HEAP32[(1228)>>2]|0;
- $cmp186 = ($70>>>0)>($nb$0>>>0);
- if ($cmp186) {
- $sub190 = (($70) - ($nb$0))|0;
- HEAP32[(1228)>>2] = $sub190;
- $71 = HEAP32[(1240)>>2]|0;
- $add$ptr193 = (($71) + ($nb$0)|0);
- HEAP32[(1240)>>2] = $add$ptr193;
- $or194 = $sub190 | 1;
- $head195 = ((($add$ptr193)) + 4|0);
- HEAP32[$head195>>2] = $or194;
- $or197 = $nb$0 | 3;
- $head198 = ((($71)) + 4|0);
- HEAP32[$head198>>2] = $or197;
- $add$ptr199 = ((($71)) + 8|0);
- $retval$0 = $add$ptr199;
- STACKTOP = sp;return ($retval$0|0);
- }
- $72 = HEAP32[422]|0;
- $cmp$i133 = ($72|0)==(0);
- if ($cmp$i133) {
- HEAP32[(1696)>>2] = 4096;
- HEAP32[(1692)>>2] = 4096;
- HEAP32[(1700)>>2] = -1;
- HEAP32[(1704)>>2] = -1;
- HEAP32[(1708)>>2] = 0;
- HEAP32[(1660)>>2] = 0;
- $73 = $magic$i$i;
- $xor$i$i = $73 & -16;
- $and6$i$i = $xor$i$i ^ 1431655768;
- HEAP32[422] = $and6$i$i;
- $74 = 4096;
- } else {
- $$pre$i134 = HEAP32[(1696)>>2]|0;
- $74 = $$pre$i134;
- }
- $add$i135 = (($nb$0) + 48)|0;
- $sub$i136 = (($nb$0) + 47)|0;
- $add9$i = (($74) + ($sub$i136))|0;
- $neg$i137 = (0 - ($74))|0;
- $and11$i = $add9$i & $neg$i137;
- $cmp12$i = ($and11$i>>>0)>($nb$0>>>0);
- if (!($cmp12$i)) {
- $retval$0 = 0;
- STACKTOP = sp;return ($retval$0|0);
- }
- $75 = HEAP32[(1656)>>2]|0;
- $cmp15$i = ($75|0)==(0);
- if (!($cmp15$i)) {
- $76 = HEAP32[(1648)>>2]|0;
- $add17$i = (($76) + ($and11$i))|0;
- $cmp19$i = ($add17$i>>>0)<=($76>>>0);
- $cmp21$i = ($add17$i>>>0)>($75>>>0);
- $or$cond1$i = $cmp19$i | $cmp21$i;
- if ($or$cond1$i) {
- $retval$0 = 0;
- STACKTOP = sp;return ($retval$0|0);
- }
- }
- $77 = HEAP32[(1660)>>2]|0;
- $and29$i = $77 & 4;
- $tobool30$i = ($and29$i|0)==(0);
- L178: do {
- if ($tobool30$i) {
- $78 = HEAP32[(1240)>>2]|0;
- $cmp32$i138 = ($78|0)==(0|0);
- L180: do {
- if ($cmp32$i138) {
- label = 128;
- } else {
- $sp$0$i$i = (1664);
- while(1) {
- $79 = HEAP32[$sp$0$i$i>>2]|0;
- $cmp$i55$i = ($79>>>0)>($78>>>0);
- if (!($cmp$i55$i)) {
- $size$i$i = ((($sp$0$i$i)) + 4|0);
- $80 = HEAP32[$size$i$i>>2]|0;
- $add$ptr$i57$i = (($79) + ($80)|0);
- $cmp2$i$i = ($add$ptr$i57$i>>>0)>($78>>>0);
- if ($cmp2$i$i) {
- break;
- }
- }
- $next$i$i = ((($sp$0$i$i)) + 8|0);
- $81 = HEAP32[$next$i$i>>2]|0;
- $cmp3$i$i = ($81|0)==(0|0);
- if ($cmp3$i$i) {
- label = 128;
- break L180;
- } else {
- $sp$0$i$i = $81;
- }
- }
- $add77$i = (($add9$i) - ($70))|0;
- $and80$i = $add77$i & $neg$i137;
- $cmp81$i = ($and80$i>>>0)<(2147483647);
- if ($cmp81$i) {
- $size$i$i$le = ((($sp$0$i$i)) + 4|0);
- $call83$i = (_sbrk(($and80$i|0))|0);
- $86 = HEAP32[$sp$0$i$i>>2]|0;
- $87 = HEAP32[$size$i$i$le>>2]|0;
- $add$ptr$i141 = (($86) + ($87)|0);
- $cmp85$i = ($call83$i|0)==($add$ptr$i141|0);
- if ($cmp85$i) {
- $cmp89$i = ($call83$i|0)==((-1)|0);
- if ($cmp89$i) {
- $tsize$2647482$i = $and80$i;
- } else {
- $tbase$795$i = $call83$i;$tsize$794$i = $and80$i;
- label = 145;
- break L178;
- }
- } else {
- $br$2$ph$i = $call83$i;$ssize$2$ph$i = $and80$i;
- label = 136;
- }
- } else {
- $tsize$2647482$i = 0;
- }
- }
- } while(0);
- do {
- if ((label|0) == 128) {
- $call37$i = (_sbrk(0)|0);
- $cmp38$i = ($call37$i|0)==((-1)|0);
- if ($cmp38$i) {
- $tsize$2647482$i = 0;
- } else {
- $82 = $call37$i;
- $83 = HEAP32[(1692)>>2]|0;
- $sub41$i = (($83) + -1)|0;
- $and42$i = $sub41$i & $82;
- $cmp43$i = ($and42$i|0)==(0);
- $add46$i = (($sub41$i) + ($82))|0;
- $neg48$i = (0 - ($83))|0;
- $and49$i = $add46$i & $neg48$i;
- $sub50$i = (($and49$i) - ($82))|0;
- $add51$i = $cmp43$i ? 0 : $sub50$i;
- $spec$select96$i = (($add51$i) + ($and11$i))|0;
- $84 = HEAP32[(1648)>>2]|0;
- $add54$i = (($spec$select96$i) + ($84))|0;
- $cmp55$i = ($spec$select96$i>>>0)>($nb$0>>>0);
- $cmp57$i = ($spec$select96$i>>>0)<(2147483647);
- $or$cond$i = $cmp55$i & $cmp57$i;
- if ($or$cond$i) {
- $85 = HEAP32[(1656)>>2]|0;
- $cmp60$i = ($85|0)==(0);
- if (!($cmp60$i)) {
- $cmp63$i = ($add54$i>>>0)<=($84>>>0);
- $cmp66$i140 = ($add54$i>>>0)>($85>>>0);
- $or$cond2$i = $cmp63$i | $cmp66$i140;
- if ($or$cond2$i) {
- $tsize$2647482$i = 0;
- break;
- }
- }
- $call68$i = (_sbrk(($spec$select96$i|0))|0);
- $cmp69$i = ($call68$i|0)==($call37$i|0);
- if ($cmp69$i) {
- $tbase$795$i = $call37$i;$tsize$794$i = $spec$select96$i;
- label = 145;
- break L178;
- } else {
- $br$2$ph$i = $call68$i;$ssize$2$ph$i = $spec$select96$i;
- label = 136;
- }
- } else {
- $tsize$2647482$i = 0;
- }
- }
- }
- } while(0);
- do {
- if ((label|0) == 136) {
- $sub112$i = (0 - ($ssize$2$ph$i))|0;
- $cmp91$i = ($br$2$ph$i|0)!=((-1)|0);
- $cmp93$i = ($ssize$2$ph$i>>>0)<(2147483647);
- $or$cond5$i = $cmp93$i & $cmp91$i;
- $cmp96$i = ($add$i135>>>0)>($ssize$2$ph$i>>>0);
- $or$cond7$i = $cmp96$i & $or$cond5$i;
- if (!($or$cond7$i)) {
- $cmp118$i = ($br$2$ph$i|0)==((-1)|0);
- if ($cmp118$i) {
- $tsize$2647482$i = 0;
- break;
- } else {
- $tbase$795$i = $br$2$ph$i;$tsize$794$i = $ssize$2$ph$i;
- label = 145;
- break L178;
- }
- }
- $88 = HEAP32[(1696)>>2]|0;
- $sub99$i = (($sub$i136) - ($ssize$2$ph$i))|0;
- $add101$i = (($sub99$i) + ($88))|0;
- $neg103$i = (0 - ($88))|0;
- $and104$i = $add101$i & $neg103$i;
- $cmp105$i = ($and104$i>>>0)<(2147483647);
- if (!($cmp105$i)) {
- $tbase$795$i = $br$2$ph$i;$tsize$794$i = $ssize$2$ph$i;
- label = 145;
- break L178;
- }
- $call107$i = (_sbrk(($and104$i|0))|0);
- $cmp108$i = ($call107$i|0)==((-1)|0);
- if ($cmp108$i) {
- (_sbrk(($sub112$i|0))|0);
- $tsize$2647482$i = 0;
- break;
- } else {
- $add110$i = (($and104$i) + ($ssize$2$ph$i))|0;
- $tbase$795$i = $br$2$ph$i;$tsize$794$i = $add110$i;
- label = 145;
- break L178;
- }
- }
- } while(0);
- $89 = HEAP32[(1660)>>2]|0;
- $or$i = $89 | 4;
- HEAP32[(1660)>>2] = $or$i;
- $tsize$4$i = $tsize$2647482$i;
- label = 143;
- } else {
- $tsize$4$i = 0;
- label = 143;
- }
- } while(0);
- if ((label|0) == 143) {
- $cmp127$i = ($and11$i>>>0)<(2147483647);
- if ($cmp127$i) {
- $call131$i = (_sbrk(($and11$i|0))|0);
- $call132$i = (_sbrk(0)|0);
- $cmp133$i = ($call131$i|0)!=((-1)|0);
- $cmp135$i = ($call132$i|0)!=((-1)|0);
- $or$cond4$i = $cmp133$i & $cmp135$i;
- $cmp137$i = ($call131$i>>>0)<($call132$i>>>0);
- $or$cond8$i = $cmp137$i & $or$cond4$i;
- $sub$ptr$lhs$cast$i = $call132$i;
- $sub$ptr$rhs$cast$i = $call131$i;
- $sub$ptr$sub$i = (($sub$ptr$lhs$cast$i) - ($sub$ptr$rhs$cast$i))|0;
- $add140$i = (($nb$0) + 40)|0;
- $cmp141$i = ($sub$ptr$sub$i>>>0)>($add140$i>>>0);
- $spec$select9$i = $cmp141$i ? $sub$ptr$sub$i : $tsize$4$i;
- $or$cond8$not$i = $or$cond8$i ^ 1;
- $cmp14799$i = ($call131$i|0)==((-1)|0);
- $not$cmp141$i = $cmp141$i ^ 1;
- $cmp147$i = $cmp14799$i | $not$cmp141$i;
- $or$cond97$i = $cmp147$i | $or$cond8$not$i;
- if (!($or$cond97$i)) {
- $tbase$795$i = $call131$i;$tsize$794$i = $spec$select9$i;
- label = 145;
- }
- }
- }
- if ((label|0) == 145) {
- $90 = HEAP32[(1648)>>2]|0;
- $add150$i = (($90) + ($tsize$794$i))|0;
- HEAP32[(1648)>>2] = $add150$i;
- $91 = HEAP32[(1652)>>2]|0;
- $cmp151$i = ($add150$i>>>0)>($91>>>0);
- if ($cmp151$i) {
- HEAP32[(1652)>>2] = $add150$i;
- }
- $92 = HEAP32[(1240)>>2]|0;
- $cmp157$i = ($92|0)==(0|0);
- L215: do {
- if ($cmp157$i) {
- $93 = HEAP32[(1232)>>2]|0;
- $cmp159$i = ($93|0)==(0|0);
- $cmp162$i = ($tbase$795$i>>>0)<($93>>>0);
- $or$cond11$i = $cmp159$i | $cmp162$i;
- if ($or$cond11$i) {
- HEAP32[(1232)>>2] = $tbase$795$i;
- }
- HEAP32[(1664)>>2] = $tbase$795$i;
- HEAP32[(1668)>>2] = $tsize$794$i;
- HEAP32[(1676)>>2] = 0;
- $94 = HEAP32[422]|0;
- HEAP32[(1252)>>2] = $94;
- HEAP32[(1248)>>2] = -1;
- HEAP32[(1268)>>2] = (1256);
- HEAP32[(1264)>>2] = (1256);
- HEAP32[(1276)>>2] = (1264);
- HEAP32[(1272)>>2] = (1264);
- HEAP32[(1284)>>2] = (1272);
- HEAP32[(1280)>>2] = (1272);
- HEAP32[(1292)>>2] = (1280);
- HEAP32[(1288)>>2] = (1280);
- HEAP32[(1300)>>2] = (1288);
- HEAP32[(1296)>>2] = (1288);
- HEAP32[(1308)>>2] = (1296);
- HEAP32[(1304)>>2] = (1296);
- HEAP32[(1316)>>2] = (1304);
- HEAP32[(1312)>>2] = (1304);
- HEAP32[(1324)>>2] = (1312);
- HEAP32[(1320)>>2] = (1312);
- HEAP32[(1332)>>2] = (1320);
- HEAP32[(1328)>>2] = (1320);
- HEAP32[(1340)>>2] = (1328);
- HEAP32[(1336)>>2] = (1328);
- HEAP32[(1348)>>2] = (1336);
- HEAP32[(1344)>>2] = (1336);
- HEAP32[(1356)>>2] = (1344);
- HEAP32[(1352)>>2] = (1344);
- HEAP32[(1364)>>2] = (1352);
- HEAP32[(1360)>>2] = (1352);
- HEAP32[(1372)>>2] = (1360);
- HEAP32[(1368)>>2] = (1360);
- HEAP32[(1380)>>2] = (1368);
- HEAP32[(1376)>>2] = (1368);
- HEAP32[(1388)>>2] = (1376);
- HEAP32[(1384)>>2] = (1376);
- HEAP32[(1396)>>2] = (1384);
- HEAP32[(1392)>>2] = (1384);
- HEAP32[(1404)>>2] = (1392);
- HEAP32[(1400)>>2] = (1392);
- HEAP32[(1412)>>2] = (1400);
- HEAP32[(1408)>>2] = (1400);
- HEAP32[(1420)>>2] = (1408);
- HEAP32[(1416)>>2] = (1408);
- HEAP32[(1428)>>2] = (1416);
- HEAP32[(1424)>>2] = (1416);
- HEAP32[(1436)>>2] = (1424);
- HEAP32[(1432)>>2] = (1424);
- HEAP32[(1444)>>2] = (1432);
- HEAP32[(1440)>>2] = (1432);
- HEAP32[(1452)>>2] = (1440);
- HEAP32[(1448)>>2] = (1440);
- HEAP32[(1460)>>2] = (1448);
- HEAP32[(1456)>>2] = (1448);
- HEAP32[(1468)>>2] = (1456);
- HEAP32[(1464)>>2] = (1456);
- HEAP32[(1476)>>2] = (1464);
- HEAP32[(1472)>>2] = (1464);
- HEAP32[(1484)>>2] = (1472);
- HEAP32[(1480)>>2] = (1472);
- HEAP32[(1492)>>2] = (1480);
- HEAP32[(1488)>>2] = (1480);
- HEAP32[(1500)>>2] = (1488);
- HEAP32[(1496)>>2] = (1488);
- HEAP32[(1508)>>2] = (1496);
- HEAP32[(1504)>>2] = (1496);
- HEAP32[(1516)>>2] = (1504);
- HEAP32[(1512)>>2] = (1504);
- $sub172$i = (($tsize$794$i) + -40)|0;
- $add$ptr$i43$i = ((($tbase$795$i)) + 8|0);
- $95 = $add$ptr$i43$i;
- $and$i44$i = $95 & 7;
- $cmp$i45$i = ($and$i44$i|0)==(0);
- $sub$i46$i = (0 - ($95))|0;
- $and3$i47$i = $sub$i46$i & 7;
- $cond$i48$i = $cmp$i45$i ? 0 : $and3$i47$i;
- $add$ptr4$i49$i = (($tbase$795$i) + ($cond$i48$i)|0);
- $sub5$i50$i = (($sub172$i) - ($cond$i48$i))|0;
- HEAP32[(1240)>>2] = $add$ptr4$i49$i;
- HEAP32[(1228)>>2] = $sub5$i50$i;
- $or$i51$i = $sub5$i50$i | 1;
- $head$i52$i = ((($add$ptr4$i49$i)) + 4|0);
- HEAP32[$head$i52$i>>2] = $or$i51$i;
- $add$ptr6$i53$i = (($tbase$795$i) + ($sub172$i)|0);
- $head7$i54$i = ((($add$ptr6$i53$i)) + 4|0);
- HEAP32[$head7$i54$i>>2] = 40;
- $96 = HEAP32[(1704)>>2]|0;
- HEAP32[(1244)>>2] = $96;
- } else {
- $sp$0112$i = (1664);
- while(1) {
- $97 = HEAP32[$sp$0112$i>>2]|0;
- $size188$i = ((($sp$0112$i)) + 4|0);
- $98 = HEAP32[$size188$i>>2]|0;
- $add$ptr189$i = (($97) + ($98)|0);
- $cmp190$i = ($tbase$795$i|0)==($add$ptr189$i|0);
- if ($cmp190$i) {
- label = 154;
- break;
- }
- $next$i = ((($sp$0112$i)) + 8|0);
- $99 = HEAP32[$next$i>>2]|0;
- $cmp186$i = ($99|0)==(0|0);
- if ($cmp186$i) {
- break;
- } else {
- $sp$0112$i = $99;
- }
- }
- if ((label|0) == 154) {
- $size188$i$le = ((($sp$0112$i)) + 4|0);
- $sflags193$i = ((($sp$0112$i)) + 12|0);
- $100 = HEAP32[$sflags193$i>>2]|0;
- $and194$i = $100 & 8;
- $tobool195$i = ($and194$i|0)==(0);
- if ($tobool195$i) {
- $cmp203$i = ($97>>>0)<=($92>>>0);
- $cmp209$i = ($tbase$795$i>>>0)>($92>>>0);
- $or$cond98$i = $cmp209$i & $cmp203$i;
- if ($or$cond98$i) {
- $add212$i = (($98) + ($tsize$794$i))|0;
- HEAP32[$size188$i$le>>2] = $add212$i;
- $101 = HEAP32[(1228)>>2]|0;
- $add215$i = (($101) + ($tsize$794$i))|0;
- $add$ptr$i35$i = ((($92)) + 8|0);
- $102 = $add$ptr$i35$i;
- $and$i36$i = $102 & 7;
- $cmp$i37$i = ($and$i36$i|0)==(0);
- $sub$i38$i = (0 - ($102))|0;
- $and3$i39$i = $sub$i38$i & 7;
- $cond$i40$i = $cmp$i37$i ? 0 : $and3$i39$i;
- $add$ptr4$i41$i = (($92) + ($cond$i40$i)|0);
- $sub5$i$i = (($add215$i) - ($cond$i40$i))|0;
- HEAP32[(1240)>>2] = $add$ptr4$i41$i;
- HEAP32[(1228)>>2] = $sub5$i$i;
- $or$i$i = $sub5$i$i | 1;
- $head$i42$i = ((($add$ptr4$i41$i)) + 4|0);
- HEAP32[$head$i42$i>>2] = $or$i$i;
- $add$ptr6$i$i = (($92) + ($add215$i)|0);
- $head7$i$i = ((($add$ptr6$i$i)) + 4|0);
- HEAP32[$head7$i$i>>2] = 40;
- $103 = HEAP32[(1704)>>2]|0;
- HEAP32[(1244)>>2] = $103;
- break;
- }
- }
- }
- $104 = HEAP32[(1232)>>2]|0;
- $cmp218$i = ($tbase$795$i>>>0)<($104>>>0);
- if ($cmp218$i) {
- HEAP32[(1232)>>2] = $tbase$795$i;
- }
- $add$ptr227$i = (($tbase$795$i) + ($tsize$794$i)|0);
- $sp$1111$i = (1664);
- while(1) {
- $105 = HEAP32[$sp$1111$i>>2]|0;
- $cmp228$i = ($105|0)==($add$ptr227$i|0);
- if ($cmp228$i) {
- label = 162;
- break;
- }
- $next231$i = ((($sp$1111$i)) + 8|0);
- $106 = HEAP32[$next231$i>>2]|0;
- $cmp224$i = ($106|0)==(0|0);
- if ($cmp224$i) {
- break;
- } else {
- $sp$1111$i = $106;
- }
- }
- if ((label|0) == 162) {
- $sflags235$i = ((($sp$1111$i)) + 12|0);
- $107 = HEAP32[$sflags235$i>>2]|0;
- $and236$i = $107 & 8;
- $tobool237$i = ($and236$i|0)==(0);
- if ($tobool237$i) {
- HEAP32[$sp$1111$i>>2] = $tbase$795$i;
- $size245$i = ((($sp$1111$i)) + 4|0);
- $108 = HEAP32[$size245$i>>2]|0;
- $add246$i = (($108) + ($tsize$794$i))|0;
- HEAP32[$size245$i>>2] = $add246$i;
- $add$ptr$i$i = ((($tbase$795$i)) + 8|0);
- $109 = $add$ptr$i$i;
- $and$i14$i = $109 & 7;
- $cmp$i15$i = ($and$i14$i|0)==(0);
- $sub$i16$i = (0 - ($109))|0;
- $and3$i$i = $sub$i16$i & 7;
- $cond$i17$i = $cmp$i15$i ? 0 : $and3$i$i;
- $add$ptr4$i$i = (($tbase$795$i) + ($cond$i17$i)|0);
- $add$ptr5$i$i = ((($add$ptr227$i)) + 8|0);
- $110 = $add$ptr5$i$i;
- $and6$i18$i = $110 & 7;
- $cmp7$i$i = ($and6$i18$i|0)==(0);
- $sub12$i$i = (0 - ($110))|0;
- $and13$i$i = $sub12$i$i & 7;
- $cond15$i$i = $cmp7$i$i ? 0 : $and13$i$i;
- $add$ptr16$i$i = (($add$ptr227$i) + ($cond15$i$i)|0);
- $sub$ptr$lhs$cast$i19$i = $add$ptr16$i$i;
- $sub$ptr$rhs$cast$i20$i = $add$ptr4$i$i;
- $sub$ptr$sub$i21$i = (($sub$ptr$lhs$cast$i19$i) - ($sub$ptr$rhs$cast$i20$i))|0;
- $add$ptr17$i$i = (($add$ptr4$i$i) + ($nb$0)|0);
- $sub18$i$i = (($sub$ptr$sub$i21$i) - ($nb$0))|0;
- $or19$i$i = $nb$0 | 3;
- $head$i22$i = ((($add$ptr4$i$i)) + 4|0);
- HEAP32[$head$i22$i>>2] = $or19$i$i;
- $cmp20$i$i = ($92|0)==($add$ptr16$i$i|0);
- L238: do {
- if ($cmp20$i$i) {
- $111 = HEAP32[(1228)>>2]|0;
- $add$i$i = (($111) + ($sub18$i$i))|0;
- HEAP32[(1228)>>2] = $add$i$i;
- HEAP32[(1240)>>2] = $add$ptr17$i$i;
- $or22$i$i = $add$i$i | 1;
- $head23$i$i = ((($add$ptr17$i$i)) + 4|0);
- HEAP32[$head23$i$i>>2] = $or22$i$i;
- } else {
- $112 = HEAP32[(1236)>>2]|0;
- $cmp24$i$i = ($112|0)==($add$ptr16$i$i|0);
- if ($cmp24$i$i) {
- $113 = HEAP32[(1224)>>2]|0;
- $add26$i$i = (($113) + ($sub18$i$i))|0;
- HEAP32[(1224)>>2] = $add26$i$i;
- HEAP32[(1236)>>2] = $add$ptr17$i$i;
- $or28$i$i = $add26$i$i | 1;
- $head29$i$i = ((($add$ptr17$i$i)) + 4|0);
- HEAP32[$head29$i$i>>2] = $or28$i$i;
- $add$ptr30$i$i = (($add$ptr17$i$i) + ($add26$i$i)|0);
- HEAP32[$add$ptr30$i$i>>2] = $add26$i$i;
- break;
- }
- $head32$i$i = ((($add$ptr16$i$i)) + 4|0);
- $114 = HEAP32[$head32$i$i>>2]|0;
- $and33$i$i = $114 & 3;
- $cmp34$i$i = ($and33$i$i|0)==(1);
- if ($cmp34$i$i) {
- $and37$i$i = $114 & -8;
- $shr$i25$i = $114 >>> 3;
- $cmp38$i$i = ($114>>>0)<(256);
- L246: do {
- if ($cmp38$i$i) {
- $fd$i$i = ((($add$ptr16$i$i)) + 8|0);
- $115 = HEAP32[$fd$i$i>>2]|0;
- $bk$i26$i = ((($add$ptr16$i$i)) + 12|0);
- $116 = HEAP32[$bk$i26$i>>2]|0;
- $cmp46$i$i = ($116|0)==($115|0);
- if ($cmp46$i$i) {
- $shl48$i$i = 1 << $shr$i25$i;
- $neg$i$i = $shl48$i$i ^ -1;
- $117 = HEAP32[304]|0;
- $and49$i$i = $117 & $neg$i$i;
- HEAP32[304] = $and49$i$i;
- break;
- } else {
- $bk67$i$i = ((($115)) + 12|0);
- HEAP32[$bk67$i$i>>2] = $116;
- $fd68$i$i = ((($116)) + 8|0);
- HEAP32[$fd68$i$i>>2] = $115;
- break;
- }
- } else {
- $parent$i27$i = ((($add$ptr16$i$i)) + 24|0);
- $118 = HEAP32[$parent$i27$i>>2]|0;
- $bk74$i$i = ((($add$ptr16$i$i)) + 12|0);
- $119 = HEAP32[$bk74$i$i>>2]|0;
- $cmp75$i$i = ($119|0)==($add$ptr16$i$i|0);
- do {
- if ($cmp75$i$i) {
- $child$i$i = ((($add$ptr16$i$i)) + 16|0);
- $arrayidx96$i$i = ((($child$i$i)) + 4|0);
- $121 = HEAP32[$arrayidx96$i$i>>2]|0;
- $cmp97$i$i = ($121|0)==(0|0);
- if ($cmp97$i$i) {
- $122 = HEAP32[$child$i$i>>2]|0;
- $cmp100$i$i = ($122|0)==(0|0);
- if ($cmp100$i$i) {
- $R$3$i$i = 0;
- break;
- } else {
- $R$1$i$i$ph = $122;$RP$1$i$i$ph = $child$i$i;
- }
- } else {
- $R$1$i$i$ph = $121;$RP$1$i$i$ph = $arrayidx96$i$i;
- }
- $R$1$i$i = $R$1$i$i$ph;$RP$1$i$i = $RP$1$i$i$ph;
- while(1) {
- $arrayidx103$i$i = ((($R$1$i$i)) + 20|0);
- $123 = HEAP32[$arrayidx103$i$i>>2]|0;
- $cmp104$i$i = ($123|0)==(0|0);
- if ($cmp104$i$i) {
- $arrayidx107$i$i = ((($R$1$i$i)) + 16|0);
- $124 = HEAP32[$arrayidx107$i$i>>2]|0;
- $cmp108$i$i = ($124|0)==(0|0);
- if ($cmp108$i$i) {
- break;
- } else {
- $R$1$i$i$be = $124;$RP$1$i$i$be = $arrayidx107$i$i;
- }
- } else {
- $R$1$i$i$be = $123;$RP$1$i$i$be = $arrayidx103$i$i;
- }
- $R$1$i$i = $R$1$i$i$be;$RP$1$i$i = $RP$1$i$i$be;
- }
- HEAP32[$RP$1$i$i>>2] = 0;
- $R$3$i$i = $R$1$i$i;
- } else {
- $fd78$i$i = ((($add$ptr16$i$i)) + 8|0);
- $120 = HEAP32[$fd78$i$i>>2]|0;
- $bk91$i$i = ((($120)) + 12|0);
- HEAP32[$bk91$i$i>>2] = $119;
- $fd92$i$i = ((($119)) + 8|0);
- HEAP32[$fd92$i$i>>2] = $120;
- $R$3$i$i = $119;
- }
- } while(0);
- $cmp120$i28$i = ($118|0)==(0|0);
- if ($cmp120$i28$i) {
- break;
- }
- $index$i29$i = ((($add$ptr16$i$i)) + 28|0);
- $125 = HEAP32[$index$i29$i>>2]|0;
- $arrayidx123$i$i = (1520 + ($125<<2)|0);
- $126 = HEAP32[$arrayidx123$i$i>>2]|0;
- $cmp124$i$i = ($126|0)==($add$ptr16$i$i|0);
- do {
- if ($cmp124$i$i) {
- HEAP32[$arrayidx123$i$i>>2] = $R$3$i$i;
- $cond1$i$i = ($R$3$i$i|0)==(0|0);
- if (!($cond1$i$i)) {
- break;
- }
- $shl131$i$i = 1 << $125;
- $neg132$i$i = $shl131$i$i ^ -1;
- $127 = HEAP32[(1220)>>2]|0;
- $and133$i$i = $127 & $neg132$i$i;
- HEAP32[(1220)>>2] = $and133$i$i;
- break L246;
- } else {
- $arrayidx143$i$i = ((($118)) + 16|0);
- $128 = HEAP32[$arrayidx143$i$i>>2]|0;
- $cmp144$i$i = ($128|0)==($add$ptr16$i$i|0);
- $arrayidx151$i$i = ((($118)) + 20|0);
- $arrayidx151$i$i$sink = $cmp144$i$i ? $arrayidx143$i$i : $arrayidx151$i$i;
- HEAP32[$arrayidx151$i$i$sink>>2] = $R$3$i$i;
- $cmp156$i$i = ($R$3$i$i|0)==(0|0);
- if ($cmp156$i$i) {
- break L246;
- }
- }
- } while(0);
- $parent165$i$i = ((($R$3$i$i)) + 24|0);
- HEAP32[$parent165$i$i>>2] = $118;
- $child166$i$i = ((($add$ptr16$i$i)) + 16|0);
- $129 = HEAP32[$child166$i$i>>2]|0;
- $cmp168$i$i = ($129|0)==(0|0);
- if (!($cmp168$i$i)) {
- $arrayidx178$i$i = ((($R$3$i$i)) + 16|0);
- HEAP32[$arrayidx178$i$i>>2] = $129;
- $parent179$i$i = ((($129)) + 24|0);
- HEAP32[$parent179$i$i>>2] = $R$3$i$i;
- }
- $arrayidx184$i$i = ((($child166$i$i)) + 4|0);
- $130 = HEAP32[$arrayidx184$i$i>>2]|0;
- $cmp185$i$i = ($130|0)==(0|0);
- if ($cmp185$i$i) {
- break;
- }
- $arrayidx195$i$i = ((($R$3$i$i)) + 20|0);
- HEAP32[$arrayidx195$i$i>>2] = $130;
- $parent196$i$i = ((($130)) + 24|0);
- HEAP32[$parent196$i$i>>2] = $R$3$i$i;
- }
- } while(0);
- $add$ptr205$i$i = (($add$ptr16$i$i) + ($and37$i$i)|0);
- $add206$i$i = (($and37$i$i) + ($sub18$i$i))|0;
- $oldfirst$0$i$i = $add$ptr205$i$i;$qsize$0$i$i = $add206$i$i;
- } else {
- $oldfirst$0$i$i = $add$ptr16$i$i;$qsize$0$i$i = $sub18$i$i;
- }
- $head208$i$i = ((($oldfirst$0$i$i)) + 4|0);
- $131 = HEAP32[$head208$i$i>>2]|0;
- $and209$i$i = $131 & -2;
- HEAP32[$head208$i$i>>2] = $and209$i$i;
- $or210$i$i = $qsize$0$i$i | 1;
- $head211$i$i = ((($add$ptr17$i$i)) + 4|0);
- HEAP32[$head211$i$i>>2] = $or210$i$i;
- $add$ptr212$i$i = (($add$ptr17$i$i) + ($qsize$0$i$i)|0);
- HEAP32[$add$ptr212$i$i>>2] = $qsize$0$i$i;
- $shr214$i$i = $qsize$0$i$i >>> 3;
- $cmp215$i$i = ($qsize$0$i$i>>>0)<(256);
- if ($cmp215$i$i) {
- $shl222$i$i = $shr214$i$i << 1;
- $arrayidx223$i$i = (1256 + ($shl222$i$i<<2)|0);
- $132 = HEAP32[304]|0;
- $shl226$i$i = 1 << $shr214$i$i;
- $and227$i$i = $132 & $shl226$i$i;
- $tobool228$i$i = ($and227$i$i|0)==(0);
- if ($tobool228$i$i) {
- $or232$i$i = $132 | $shl226$i$i;
- HEAP32[304] = $or232$i$i;
- $$pre$i31$i = ((($arrayidx223$i$i)) + 8|0);
- $$pre$phi$i32$iZ2D = $$pre$i31$i;$F224$0$i$i = $arrayidx223$i$i;
- } else {
- $133 = ((($arrayidx223$i$i)) + 8|0);
- $134 = HEAP32[$133>>2]|0;
- $$pre$phi$i32$iZ2D = $133;$F224$0$i$i = $134;
- }
- HEAP32[$$pre$phi$i32$iZ2D>>2] = $add$ptr17$i$i;
- $bk246$i$i = ((($F224$0$i$i)) + 12|0);
- HEAP32[$bk246$i$i>>2] = $add$ptr17$i$i;
- $fd247$i$i = ((($add$ptr17$i$i)) + 8|0);
- HEAP32[$fd247$i$i>>2] = $F224$0$i$i;
- $bk248$i$i = ((($add$ptr17$i$i)) + 12|0);
- HEAP32[$bk248$i$i>>2] = $arrayidx223$i$i;
- break;
- }
- $shr253$i$i = $qsize$0$i$i >>> 8;
- $cmp254$i$i = ($shr253$i$i|0)==(0);
- do {
- if ($cmp254$i$i) {
- $I252$0$i$i = 0;
- } else {
- $cmp258$i$i = ($qsize$0$i$i>>>0)>(16777215);
- if ($cmp258$i$i) {
- $I252$0$i$i = 31;
- break;
- }
- $sub262$i$i = (($shr253$i$i) + 1048320)|0;
- $shr263$i$i = $sub262$i$i >>> 16;
- $and264$i$i = $shr263$i$i & 8;
- $shl265$i$i = $shr253$i$i << $and264$i$i;
- $sub266$i$i = (($shl265$i$i) + 520192)|0;
- $shr267$i$i = $sub266$i$i >>> 16;
- $and268$i$i = $shr267$i$i & 4;
- $add269$i$i = $and268$i$i | $and264$i$i;
- $shl270$i$i = $shl265$i$i << $and268$i$i;
- $sub271$i$i = (($shl270$i$i) + 245760)|0;
- $shr272$i$i = $sub271$i$i >>> 16;
- $and273$i$i = $shr272$i$i & 2;
- $add274$i$i = $add269$i$i | $and273$i$i;
- $sub275$i$i = (14 - ($add274$i$i))|0;
- $shl276$i$i = $shl270$i$i << $and273$i$i;
- $shr277$i$i = $shl276$i$i >>> 15;
- $add278$i$i = (($sub275$i$i) + ($shr277$i$i))|0;
- $shl279$i$i = $add278$i$i << 1;
- $add280$i$i = (($add278$i$i) + 7)|0;
- $shr281$i$i = $qsize$0$i$i >>> $add280$i$i;
- $and282$i$i = $shr281$i$i & 1;
- $add283$i$i = $and282$i$i | $shl279$i$i;
- $I252$0$i$i = $add283$i$i;
- }
- } while(0);
- $arrayidx287$i$i = (1520 + ($I252$0$i$i<<2)|0);
- $index288$i$i = ((($add$ptr17$i$i)) + 28|0);
- HEAP32[$index288$i$i>>2] = $I252$0$i$i;
- $child289$i$i = ((($add$ptr17$i$i)) + 16|0);
- $arrayidx290$i$i = ((($child289$i$i)) + 4|0);
- HEAP32[$arrayidx290$i$i>>2] = 0;
- HEAP32[$child289$i$i>>2] = 0;
- $135 = HEAP32[(1220)>>2]|0;
- $shl294$i$i = 1 << $I252$0$i$i;
- $and295$i$i = $135 & $shl294$i$i;
- $tobool296$i$i = ($and295$i$i|0)==(0);
- if ($tobool296$i$i) {
- $or300$i$i = $135 | $shl294$i$i;
- HEAP32[(1220)>>2] = $or300$i$i;
- HEAP32[$arrayidx287$i$i>>2] = $add$ptr17$i$i;
- $parent301$i$i = ((($add$ptr17$i$i)) + 24|0);
- HEAP32[$parent301$i$i>>2] = $arrayidx287$i$i;
- $bk302$i$i = ((($add$ptr17$i$i)) + 12|0);
- HEAP32[$bk302$i$i>>2] = $add$ptr17$i$i;
- $fd303$i$i = ((($add$ptr17$i$i)) + 8|0);
- HEAP32[$fd303$i$i>>2] = $add$ptr17$i$i;
- break;
- }
- $136 = HEAP32[$arrayidx287$i$i>>2]|0;
- $head3174$i$i = ((($136)) + 4|0);
- $137 = HEAP32[$head3174$i$i>>2]|0;
- $and3185$i$i = $137 & -8;
- $cmp3196$i$i = ($and3185$i$i|0)==($qsize$0$i$i|0);
- L291: do {
- if ($cmp3196$i$i) {
- $T$0$lcssa$i34$i = $136;
- } else {
- $cmp306$i$i = ($I252$0$i$i|0)==(31);
- $shr310$i$i = $I252$0$i$i >>> 1;
- $sub313$i$i = (25 - ($shr310$i$i))|0;
- $cond315$i$i = $cmp306$i$i ? 0 : $sub313$i$i;
- $shl316$i$i = $qsize$0$i$i << $cond315$i$i;
- $K305$08$i$i = $shl316$i$i;$T$07$i$i = $136;
- while(1) {
- $shr323$i$i = $K305$08$i$i >>> 31;
- $arrayidx325$i$i = (((($T$07$i$i)) + 16|0) + ($shr323$i$i<<2)|0);
- $138 = HEAP32[$arrayidx325$i$i>>2]|0;
- $cmp327$i$i = ($138|0)==(0|0);
- if ($cmp327$i$i) {
- break;
- }
- $shl326$i$i = $K305$08$i$i << 1;
- $head317$i$i = ((($138)) + 4|0);
- $139 = HEAP32[$head317$i$i>>2]|0;
- $and318$i$i = $139 & -8;
- $cmp319$i$i = ($and318$i$i|0)==($qsize$0$i$i|0);
- if ($cmp319$i$i) {
- $T$0$lcssa$i34$i = $138;
- break L291;
- } else {
- $K305$08$i$i = $shl326$i$i;$T$07$i$i = $138;
- }
- }
- HEAP32[$arrayidx325$i$i>>2] = $add$ptr17$i$i;
- $parent337$i$i = ((($add$ptr17$i$i)) + 24|0);
- HEAP32[$parent337$i$i>>2] = $T$07$i$i;
- $bk338$i$i = ((($add$ptr17$i$i)) + 12|0);
- HEAP32[$bk338$i$i>>2] = $add$ptr17$i$i;
- $fd339$i$i = ((($add$ptr17$i$i)) + 8|0);
- HEAP32[$fd339$i$i>>2] = $add$ptr17$i$i;
- break L238;
- }
- } while(0);
- $fd344$i$i = ((($T$0$lcssa$i34$i)) + 8|0);
- $140 = HEAP32[$fd344$i$i>>2]|0;
- $bk357$i$i = ((($140)) + 12|0);
- HEAP32[$bk357$i$i>>2] = $add$ptr17$i$i;
- HEAP32[$fd344$i$i>>2] = $add$ptr17$i$i;
- $fd359$i$i = ((($add$ptr17$i$i)) + 8|0);
- HEAP32[$fd359$i$i>>2] = $140;
- $bk360$i$i = ((($add$ptr17$i$i)) + 12|0);
- HEAP32[$bk360$i$i>>2] = $T$0$lcssa$i34$i;
- $parent361$i$i = ((($add$ptr17$i$i)) + 24|0);
- HEAP32[$parent361$i$i>>2] = 0;
- }
- } while(0);
- $add$ptr369$i$i = ((($add$ptr4$i$i)) + 8|0);
- $retval$0 = $add$ptr369$i$i;
- STACKTOP = sp;return ($retval$0|0);
- }
- }
- $sp$0$i$i$i = (1664);
- while(1) {
- $141 = HEAP32[$sp$0$i$i$i>>2]|0;
- $cmp$i$i$i = ($141>>>0)>($92>>>0);
- if (!($cmp$i$i$i)) {
- $size$i$i$i = ((($sp$0$i$i$i)) + 4|0);
- $142 = HEAP32[$size$i$i$i>>2]|0;
- $add$ptr$i$i$i = (($141) + ($142)|0);
- $cmp2$i$i$i = ($add$ptr$i$i$i>>>0)>($92>>>0);
- if ($cmp2$i$i$i) {
- break;
- }
- }
- $next$i$i$i = ((($sp$0$i$i$i)) + 8|0);
- $143 = HEAP32[$next$i$i$i>>2]|0;
- $sp$0$i$i$i = $143;
- }
- $add$ptr2$i$i = ((($add$ptr$i$i$i)) + -47|0);
- $add$ptr3$i$i = ((($add$ptr2$i$i)) + 8|0);
- $144 = $add$ptr3$i$i;
- $and$i$i = $144 & 7;
- $cmp$i12$i = ($and$i$i|0)==(0);
- $sub$i$i = (0 - ($144))|0;
- $and6$i13$i = $sub$i$i & 7;
- $cond$i$i = $cmp$i12$i ? 0 : $and6$i13$i;
- $add$ptr7$i$i = (($add$ptr2$i$i) + ($cond$i$i)|0);
- $add$ptr81$i$i = ((($92)) + 16|0);
- $cmp9$i$i = ($add$ptr7$i$i>>>0)<($add$ptr81$i$i>>>0);
- $cond13$i$i = $cmp9$i$i ? $92 : $add$ptr7$i$i;
- $add$ptr14$i$i = ((($cond13$i$i)) + 8|0);
- $add$ptr15$i$i = ((($cond13$i$i)) + 24|0);
- $sub16$i$i = (($tsize$794$i) + -40)|0;
- $add$ptr$i2$i$i = ((($tbase$795$i)) + 8|0);
- $145 = $add$ptr$i2$i$i;
- $and$i$i$i = $145 & 7;
- $cmp$i3$i$i = ($and$i$i$i|0)==(0);
- $sub$i$i$i = (0 - ($145))|0;
- $and3$i$i$i = $sub$i$i$i & 7;
- $cond$i$i$i = $cmp$i3$i$i ? 0 : $and3$i$i$i;
- $add$ptr4$i$i$i = (($tbase$795$i) + ($cond$i$i$i)|0);
- $sub5$i$i$i = (($sub16$i$i) - ($cond$i$i$i))|0;
- HEAP32[(1240)>>2] = $add$ptr4$i$i$i;
- HEAP32[(1228)>>2] = $sub5$i$i$i;
- $or$i$i$i = $sub5$i$i$i | 1;
- $head$i$i$i = ((($add$ptr4$i$i$i)) + 4|0);
- HEAP32[$head$i$i$i>>2] = $or$i$i$i;
- $add$ptr6$i$i$i = (($tbase$795$i) + ($sub16$i$i)|0);
- $head7$i$i$i = ((($add$ptr6$i$i$i)) + 4|0);
- HEAP32[$head7$i$i$i>>2] = 40;
- $146 = HEAP32[(1704)>>2]|0;
- HEAP32[(1244)>>2] = $146;
- $head$i$i = ((($cond13$i$i)) + 4|0);
- HEAP32[$head$i$i>>2] = 27;
- ;HEAP32[$add$ptr14$i$i>>2]=HEAP32[(1664)>>2]|0;HEAP32[$add$ptr14$i$i+4>>2]=HEAP32[(1664)+4>>2]|0;HEAP32[$add$ptr14$i$i+8>>2]=HEAP32[(1664)+8>>2]|0;HEAP32[$add$ptr14$i$i+12>>2]=HEAP32[(1664)+12>>2]|0;
- HEAP32[(1664)>>2] = $tbase$795$i;
- HEAP32[(1668)>>2] = $tsize$794$i;
- HEAP32[(1676)>>2] = 0;
- HEAP32[(1672)>>2] = $add$ptr14$i$i;
- $147 = $add$ptr15$i$i;
- while(1) {
- $add$ptr24$i$i = ((($147)) + 4|0);
- HEAP32[$add$ptr24$i$i>>2] = 7;
- $head26$i$i = ((($147)) + 8|0);
- $cmp27$i$i = ($head26$i$i>>>0)<($add$ptr$i$i$i>>>0);
- if ($cmp27$i$i) {
- $147 = $add$ptr24$i$i;
- } else {
- break;
- }
- }
- $cmp28$i$i = ($cond13$i$i|0)==($92|0);
- if (!($cmp28$i$i)) {
- $sub$ptr$lhs$cast$i$i = $cond13$i$i;
- $sub$ptr$rhs$cast$i$i = $92;
- $sub$ptr$sub$i$i = (($sub$ptr$lhs$cast$i$i) - ($sub$ptr$rhs$cast$i$i))|0;
- $148 = HEAP32[$head$i$i>>2]|0;
- $and32$i$i = $148 & -2;
- HEAP32[$head$i$i>>2] = $and32$i$i;
- $or33$i$i = $sub$ptr$sub$i$i | 1;
- $head34$i$i = ((($92)) + 4|0);
- HEAP32[$head34$i$i>>2] = $or33$i$i;
- HEAP32[$cond13$i$i>>2] = $sub$ptr$sub$i$i;
- $shr$i$i = $sub$ptr$sub$i$i >>> 3;
- $cmp36$i$i = ($sub$ptr$sub$i$i>>>0)<(256);
- if ($cmp36$i$i) {
- $shl$i$i = $shr$i$i << 1;
- $arrayidx$i$i = (1256 + ($shl$i$i<<2)|0);
- $149 = HEAP32[304]|0;
- $shl39$i$i = 1 << $shr$i$i;
- $and40$i$i = $149 & $shl39$i$i;
- $tobool$i$i = ($and40$i$i|0)==(0);
- if ($tobool$i$i) {
- $or44$i$i = $149 | $shl39$i$i;
- HEAP32[304] = $or44$i$i;
- $$pre$i$i = ((($arrayidx$i$i)) + 8|0);
- $$pre$phi$i$iZ2D = $$pre$i$i;$F$0$i$i = $arrayidx$i$i;
- } else {
- $150 = ((($arrayidx$i$i)) + 8|0);
- $151 = HEAP32[$150>>2]|0;
- $$pre$phi$i$iZ2D = $150;$F$0$i$i = $151;
- }
- HEAP32[$$pre$phi$i$iZ2D>>2] = $92;
- $bk$i$i = ((($F$0$i$i)) + 12|0);
- HEAP32[$bk$i$i>>2] = $92;
- $fd54$i$i = ((($92)) + 8|0);
- HEAP32[$fd54$i$i>>2] = $F$0$i$i;
- $bk55$i$i = ((($92)) + 12|0);
- HEAP32[$bk55$i$i>>2] = $arrayidx$i$i;
- break;
- }
- $shr58$i$i = $sub$ptr$sub$i$i >>> 8;
- $cmp59$i$i = ($shr58$i$i|0)==(0);
- if ($cmp59$i$i) {
- $I57$0$i$i = 0;
- } else {
- $cmp63$i$i = ($sub$ptr$sub$i$i>>>0)>(16777215);
- if ($cmp63$i$i) {
- $I57$0$i$i = 31;
- } else {
- $sub67$i$i = (($shr58$i$i) + 1048320)|0;
- $shr68$i$i = $sub67$i$i >>> 16;
- $and69$i$i = $shr68$i$i & 8;
- $shl70$i$i = $shr58$i$i << $and69$i$i;
- $sub71$i$i = (($shl70$i$i) + 520192)|0;
- $shr72$i$i = $sub71$i$i >>> 16;
- $and73$i$i = $shr72$i$i & 4;
- $add74$i$i = $and73$i$i | $and69$i$i;
- $shl75$i$i = $shl70$i$i << $and73$i$i;
- $sub76$i$i = (($shl75$i$i) + 245760)|0;
- $shr77$i$i = $sub76$i$i >>> 16;
- $and78$i$i = $shr77$i$i & 2;
- $add79$i$i = $add74$i$i | $and78$i$i;
- $sub80$i$i = (14 - ($add79$i$i))|0;
- $shl81$i$i = $shl75$i$i << $and78$i$i;
- $shr82$i$i = $shl81$i$i >>> 15;
- $add83$i$i = (($sub80$i$i) + ($shr82$i$i))|0;
- $shl84$i$i = $add83$i$i << 1;
- $add85$i$i = (($add83$i$i) + 7)|0;
- $shr86$i$i = $sub$ptr$sub$i$i >>> $add85$i$i;
- $and87$i$i = $shr86$i$i & 1;
- $add88$i$i = $and87$i$i | $shl84$i$i;
- $I57$0$i$i = $add88$i$i;
- }
- }
- $arrayidx91$i$i = (1520 + ($I57$0$i$i<<2)|0);
- $index$i$i = ((($92)) + 28|0);
- HEAP32[$index$i$i>>2] = $I57$0$i$i;
- $arrayidx92$i$i = ((($92)) + 20|0);
- HEAP32[$arrayidx92$i$i>>2] = 0;
- HEAP32[$add$ptr81$i$i>>2] = 0;
- $152 = HEAP32[(1220)>>2]|0;
- $shl95$i$i = 1 << $I57$0$i$i;
- $and96$i$i = $152 & $shl95$i$i;
- $tobool97$i$i = ($and96$i$i|0)==(0);
- if ($tobool97$i$i) {
- $or101$i$i = $152 | $shl95$i$i;
- HEAP32[(1220)>>2] = $or101$i$i;
- HEAP32[$arrayidx91$i$i>>2] = $92;
- $parent$i$i = ((($92)) + 24|0);
- HEAP32[$parent$i$i>>2] = $arrayidx91$i$i;
- $bk102$i$i = ((($92)) + 12|0);
- HEAP32[$bk102$i$i>>2] = $92;
- $fd103$i$i = ((($92)) + 8|0);
- HEAP32[$fd103$i$i>>2] = $92;
- break;
- }
- $153 = HEAP32[$arrayidx91$i$i>>2]|0;
- $head1186$i$i = ((($153)) + 4|0);
- $154 = HEAP32[$head1186$i$i>>2]|0;
- $and1197$i$i = $154 & -8;
- $cmp1208$i$i = ($and1197$i$i|0)==($sub$ptr$sub$i$i|0);
- L325: do {
- if ($cmp1208$i$i) {
- $T$0$lcssa$i$i = $153;
- } else {
- $cmp106$i$i = ($I57$0$i$i|0)==(31);
- $shr110$i$i = $I57$0$i$i >>> 1;
- $sub113$i$i = (25 - ($shr110$i$i))|0;
- $cond115$i$i = $cmp106$i$i ? 0 : $sub113$i$i;
- $shl116$i$i = $sub$ptr$sub$i$i << $cond115$i$i;
- $K105$010$i$i = $shl116$i$i;$T$09$i$i = $153;
- while(1) {
- $shr124$i$i = $K105$010$i$i >>> 31;
- $arrayidx126$i$i = (((($T$09$i$i)) + 16|0) + ($shr124$i$i<<2)|0);
- $155 = HEAP32[$arrayidx126$i$i>>2]|0;
- $cmp128$i$i = ($155|0)==(0|0);
- if ($cmp128$i$i) {
- break;
- }
- $shl127$i$i = $K105$010$i$i << 1;
- $head118$i$i = ((($155)) + 4|0);
- $156 = HEAP32[$head118$i$i>>2]|0;
- $and119$i$i = $156 & -8;
- $cmp120$i$i = ($and119$i$i|0)==($sub$ptr$sub$i$i|0);
- if ($cmp120$i$i) {
- $T$0$lcssa$i$i = $155;
- break L325;
- } else {
- $K105$010$i$i = $shl127$i$i;$T$09$i$i = $155;
- }
- }
- HEAP32[$arrayidx126$i$i>>2] = $92;
- $parent138$i$i = ((($92)) + 24|0);
- HEAP32[$parent138$i$i>>2] = $T$09$i$i;
- $bk139$i$i = ((($92)) + 12|0);
- HEAP32[$bk139$i$i>>2] = $92;
- $fd140$i$i = ((($92)) + 8|0);
- HEAP32[$fd140$i$i>>2] = $92;
- break L215;
- }
- } while(0);
- $fd148$i$i = ((($T$0$lcssa$i$i)) + 8|0);
- $157 = HEAP32[$fd148$i$i>>2]|0;
- $bk158$i$i = ((($157)) + 12|0);
- HEAP32[$bk158$i$i>>2] = $92;
- HEAP32[$fd148$i$i>>2] = $92;
- $fd160$i$i = ((($92)) + 8|0);
- HEAP32[$fd160$i$i>>2] = $157;
- $bk161$i$i = ((($92)) + 12|0);
- HEAP32[$bk161$i$i>>2] = $T$0$lcssa$i$i;
- $parent162$i$i = ((($92)) + 24|0);
- HEAP32[$parent162$i$i>>2] = 0;
- }
- }
- } while(0);
- $158 = HEAP32[(1228)>>2]|0;
- $cmp257$i = ($158>>>0)>($nb$0>>>0);
- if ($cmp257$i) {
- $sub260$i = (($158) - ($nb$0))|0;
- HEAP32[(1228)>>2] = $sub260$i;
- $159 = HEAP32[(1240)>>2]|0;
- $add$ptr262$i = (($159) + ($nb$0)|0);
- HEAP32[(1240)>>2] = $add$ptr262$i;
- $or264$i = $sub260$i | 1;
- $head265$i = ((($add$ptr262$i)) + 4|0);
- HEAP32[$head265$i>>2] = $or264$i;
- $or267$i = $nb$0 | 3;
- $head268$i = ((($159)) + 4|0);
- HEAP32[$head268$i>>2] = $or267$i;
- $add$ptr269$i = ((($159)) + 8|0);
- $retval$0 = $add$ptr269$i;
- STACKTOP = sp;return ($retval$0|0);
- }
- }
- $call275$i = (___errno_location()|0);
- HEAP32[$call275$i>>2] = 12;
- $retval$0 = 0;
- STACKTOP = sp;return ($retval$0|0);
-}
-function _free($mem) {
- $mem = $mem|0;
- var $$pre = 0, $$pre$phiZ2D = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0;
- var $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0;
- var $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $F510$0 = 0, $I534$0 = 0, $K583$0266 = 0;
- var $R$1 = 0, $R$1$be = 0, $R$1$ph = 0, $R$3 = 0, $R332$1 = 0, $R332$1$be = 0, $R332$1$ph = 0, $R332$3 = 0, $RP$1 = 0, $RP$1$be = 0, $RP$1$ph = 0, $RP360$1 = 0, $RP360$1$be = 0, $RP360$1$ph = 0, $T$0$lcssa = 0, $T$0265 = 0, $add$ptr = 0, $add$ptr16 = 0, $add$ptr217 = 0, $add$ptr261 = 0;
- var $add$ptr482 = 0, $add$ptr498 = 0, $add$ptr6 = 0, $add17 = 0, $add246 = 0, $add258 = 0, $add267 = 0, $add550 = 0, $add555 = 0, $add559 = 0, $add561 = 0, $add564 = 0, $and12 = 0, $and140 = 0, $and210 = 0, $and215 = 0, $and232 = 0, $and240 = 0, $and266 = 0, $and301 = 0;
- var $and410 = 0, $and46 = 0, $and495 = 0, $and5 = 0, $and512 = 0, $and545 = 0, $and549 = 0, $and554 = 0, $and563 = 0, $and574 = 0, $and592 = 0, $and592263 = 0, $and8 = 0, $arrayidx108 = 0, $arrayidx113 = 0, $arrayidx130 = 0, $arrayidx149 = 0, $arrayidx157 = 0, $arrayidx157$sink = 0, $arrayidx182 = 0;
- var $arrayidx188 = 0, $arrayidx198 = 0, $arrayidx362 = 0, $arrayidx374 = 0, $arrayidx379 = 0, $arrayidx400 = 0, $arrayidx419 = 0, $arrayidx427 = 0, $arrayidx427$sink = 0, $arrayidx454 = 0, $arrayidx460 = 0, $arrayidx470 = 0, $arrayidx509 = 0, $arrayidx567 = 0, $arrayidx570 = 0, $arrayidx599 = 0, $arrayidx99 = 0, $bk = 0, $bk275 = 0, $bk321 = 0;
- var $bk333 = 0, $bk355 = 0, $bk529 = 0, $bk531 = 0, $bk580 = 0, $bk611 = 0, $bk631 = 0, $bk634 = 0, $bk66 = 0, $bk73 = 0, $bk94 = 0, $child = 0, $child171 = 0, $child361 = 0, $child443 = 0, $child569 = 0, $cmp = 0, $cmp$i = 0, $cmp100 = 0, $cmp104 = 0;
- var $cmp109 = 0, $cmp114 = 0, $cmp127 = 0, $cmp13 = 0, $cmp131 = 0, $cmp150 = 0, $cmp162 = 0, $cmp173 = 0, $cmp18 = 0, $cmp189 = 0, $cmp211 = 0, $cmp22 = 0, $cmp228 = 0, $cmp243 = 0, $cmp249 = 0, $cmp25 = 0, $cmp255 = 0, $cmp269 = 0, $cmp296 = 0, $cmp334 = 0;
- var $cmp363 = 0, $cmp368 = 0, $cmp375 = 0, $cmp380 = 0, $cmp395 = 0, $cmp401 = 0, $cmp42 = 0, $cmp420 = 0, $cmp432 = 0, $cmp445 = 0, $cmp461 = 0, $cmp484 = 0, $cmp502 = 0, $cmp536 = 0, $cmp540 = 0, $cmp584 = 0, $cmp593 = 0, $cmp593264 = 0, $cmp601 = 0, $cmp640 = 0;
- var $cmp74 = 0, $cond = 0, $cond254 = 0, $cond255 = 0, $dec = 0, $fd = 0, $fd273 = 0, $fd322 = 0, $fd338 = 0, $fd356 = 0, $fd530 = 0, $fd581 = 0, $fd612 = 0, $fd620 = 0, $fd633 = 0, $fd67 = 0, $fd78 = 0, $fd95 = 0, $head209 = 0, $head216 = 0;
- var $head231 = 0, $head248 = 0, $head260 = 0, $head4 = 0, $head481 = 0, $head497 = 0, $head591 = 0, $head591262 = 0, $idx$neg = 0, $index = 0, $index399 = 0, $index568 = 0, $neg = 0, $neg139 = 0, $neg300 = 0, $neg409 = 0, $next4$i = 0, $or = 0, $or247 = 0, $or259 = 0;
- var $or480 = 0, $or496 = 0, $or516 = 0, $or578 = 0, $p$1 = 0, $parent = 0, $parent170 = 0, $parent183 = 0, $parent199 = 0, $parent331 = 0, $parent442 = 0, $parent455 = 0, $parent471 = 0, $parent579 = 0, $parent610 = 0, $parent635 = 0, $psize$1 = 0, $psize$2 = 0, $shl138 = 0, $shl299 = 0;
- var $shl408 = 0, $shl45 = 0, $shl508 = 0, $shl511 = 0, $shl546 = 0, $shl551 = 0, $shl557 = 0, $shl560 = 0, $shl573 = 0, $shl590 = 0, $shl600 = 0, $shr = 0, $shr268 = 0, $shr501 = 0, $shr535 = 0, $shr544 = 0, $shr548 = 0, $shr553 = 0, $shr558 = 0, $shr562 = 0;
- var $shr586 = 0, $shr597 = 0, $sp$0$i = 0, $sp$0$in$i = 0, $sub = 0, $sub547 = 0, $sub552 = 0, $sub556 = 0, $sub589 = 0, $tobool233 = 0, $tobool241 = 0, $tobool513 = 0, $tobool575 = 0, $tobool9 = 0, label = 0, sp = 0;
- sp = STACKTOP;
- $cmp = ($mem|0)==(0|0);
- if ($cmp) {
- return;
- }
- $add$ptr = ((($mem)) + -8|0);
- $0 = HEAP32[(1232)>>2]|0;
- $head4 = ((($mem)) + -4|0);
- $1 = HEAP32[$head4>>2]|0;
- $and5 = $1 & -8;
- $add$ptr6 = (($add$ptr) + ($and5)|0);
- $and8 = $1 & 1;
- $tobool9 = ($and8|0)==(0);
- do {
- if ($tobool9) {
- $2 = HEAP32[$add$ptr>>2]|0;
- $and12 = $1 & 3;
- $cmp13 = ($and12|0)==(0);
- if ($cmp13) {
- return;
- }
- $idx$neg = (0 - ($2))|0;
- $add$ptr16 = (($add$ptr) + ($idx$neg)|0);
- $add17 = (($2) + ($and5))|0;
- $cmp18 = ($add$ptr16>>>0)<($0>>>0);
- if ($cmp18) {
- return;
- }
- $3 = HEAP32[(1236)>>2]|0;
- $cmp22 = ($3|0)==($add$ptr16|0);
- if ($cmp22) {
- $head209 = ((($add$ptr6)) + 4|0);
- $20 = HEAP32[$head209>>2]|0;
- $and210 = $20 & 3;
- $cmp211 = ($and210|0)==(3);
- if (!($cmp211)) {
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- break;
- }
- $add$ptr217 = (($add$ptr16) + ($add17)|0);
- $head216 = ((($add$ptr16)) + 4|0);
- $or = $add17 | 1;
- $and215 = $20 & -2;
- HEAP32[(1224)>>2] = $add17;
- HEAP32[$head209>>2] = $and215;
- HEAP32[$head216>>2] = $or;
- HEAP32[$add$ptr217>>2] = $add17;
- return;
- }
- $shr = $2 >>> 3;
- $cmp25 = ($2>>>0)<(256);
- if ($cmp25) {
- $fd = ((($add$ptr16)) + 8|0);
- $4 = HEAP32[$fd>>2]|0;
- $bk = ((($add$ptr16)) + 12|0);
- $5 = HEAP32[$bk>>2]|0;
- $cmp42 = ($5|0)==($4|0);
- if ($cmp42) {
- $shl45 = 1 << $shr;
- $neg = $shl45 ^ -1;
- $6 = HEAP32[304]|0;
- $and46 = $6 & $neg;
- HEAP32[304] = $and46;
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- break;
- } else {
- $bk66 = ((($4)) + 12|0);
- HEAP32[$bk66>>2] = $5;
- $fd67 = ((($5)) + 8|0);
- HEAP32[$fd67>>2] = $4;
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- break;
- }
- }
- $parent = ((($add$ptr16)) + 24|0);
- $7 = HEAP32[$parent>>2]|0;
- $bk73 = ((($add$ptr16)) + 12|0);
- $8 = HEAP32[$bk73>>2]|0;
- $cmp74 = ($8|0)==($add$ptr16|0);
- do {
- if ($cmp74) {
- $child = ((($add$ptr16)) + 16|0);
- $arrayidx99 = ((($child)) + 4|0);
- $10 = HEAP32[$arrayidx99>>2]|0;
- $cmp100 = ($10|0)==(0|0);
- if ($cmp100) {
- $11 = HEAP32[$child>>2]|0;
- $cmp104 = ($11|0)==(0|0);
- if ($cmp104) {
- $R$3 = 0;
- break;
- } else {
- $R$1$ph = $11;$RP$1$ph = $child;
- }
- } else {
- $R$1$ph = $10;$RP$1$ph = $arrayidx99;
- }
- $R$1 = $R$1$ph;$RP$1 = $RP$1$ph;
- while(1) {
- $arrayidx108 = ((($R$1)) + 20|0);
- $12 = HEAP32[$arrayidx108>>2]|0;
- $cmp109 = ($12|0)==(0|0);
- if ($cmp109) {
- $arrayidx113 = ((($R$1)) + 16|0);
- $13 = HEAP32[$arrayidx113>>2]|0;
- $cmp114 = ($13|0)==(0|0);
- if ($cmp114) {
- break;
- } else {
- $R$1$be = $13;$RP$1$be = $arrayidx113;
- }
- } else {
- $R$1$be = $12;$RP$1$be = $arrayidx108;
- }
- $R$1 = $R$1$be;$RP$1 = $RP$1$be;
- }
- HEAP32[$RP$1>>2] = 0;
- $R$3 = $R$1;
- } else {
- $fd78 = ((($add$ptr16)) + 8|0);
- $9 = HEAP32[$fd78>>2]|0;
- $bk94 = ((($9)) + 12|0);
- HEAP32[$bk94>>2] = $8;
- $fd95 = ((($8)) + 8|0);
- HEAP32[$fd95>>2] = $9;
- $R$3 = $8;
- }
- } while(0);
- $cmp127 = ($7|0)==(0|0);
- if ($cmp127) {
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- } else {
- $index = ((($add$ptr16)) + 28|0);
- $14 = HEAP32[$index>>2]|0;
- $arrayidx130 = (1520 + ($14<<2)|0);
- $15 = HEAP32[$arrayidx130>>2]|0;
- $cmp131 = ($15|0)==($add$ptr16|0);
- if ($cmp131) {
- HEAP32[$arrayidx130>>2] = $R$3;
- $cond254 = ($R$3|0)==(0|0);
- if ($cond254) {
- $shl138 = 1 << $14;
- $neg139 = $shl138 ^ -1;
- $16 = HEAP32[(1220)>>2]|0;
- $and140 = $16 & $neg139;
- HEAP32[(1220)>>2] = $and140;
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- break;
- }
- } else {
- $arrayidx149 = ((($7)) + 16|0);
- $17 = HEAP32[$arrayidx149>>2]|0;
- $cmp150 = ($17|0)==($add$ptr16|0);
- $arrayidx157 = ((($7)) + 20|0);
- $arrayidx157$sink = $cmp150 ? $arrayidx149 : $arrayidx157;
- HEAP32[$arrayidx157$sink>>2] = $R$3;
- $cmp162 = ($R$3|0)==(0|0);
- if ($cmp162) {
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- break;
- }
- }
- $parent170 = ((($R$3)) + 24|0);
- HEAP32[$parent170>>2] = $7;
- $child171 = ((($add$ptr16)) + 16|0);
- $18 = HEAP32[$child171>>2]|0;
- $cmp173 = ($18|0)==(0|0);
- if (!($cmp173)) {
- $arrayidx182 = ((($R$3)) + 16|0);
- HEAP32[$arrayidx182>>2] = $18;
- $parent183 = ((($18)) + 24|0);
- HEAP32[$parent183>>2] = $R$3;
- }
- $arrayidx188 = ((($child171)) + 4|0);
- $19 = HEAP32[$arrayidx188>>2]|0;
- $cmp189 = ($19|0)==(0|0);
- if ($cmp189) {
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- } else {
- $arrayidx198 = ((($R$3)) + 20|0);
- HEAP32[$arrayidx198>>2] = $19;
- $parent199 = ((($19)) + 24|0);
- HEAP32[$parent199>>2] = $R$3;
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- }
- }
- } else {
- $21 = $add$ptr;$p$1 = $add$ptr;$psize$1 = $and5;
- }
- } while(0);
- $cmp228 = ($21>>>0)<($add$ptr6>>>0);
- if (!($cmp228)) {
- return;
- }
- $head231 = ((($add$ptr6)) + 4|0);
- $22 = HEAP32[$head231>>2]|0;
- $and232 = $22 & 1;
- $tobool233 = ($and232|0)==(0);
- if ($tobool233) {
- return;
- }
- $and240 = $22 & 2;
- $tobool241 = ($and240|0)==(0);
- if ($tobool241) {
- $23 = HEAP32[(1240)>>2]|0;
- $cmp243 = ($23|0)==($add$ptr6|0);
- if ($cmp243) {
- $24 = HEAP32[(1228)>>2]|0;
- $add246 = (($24) + ($psize$1))|0;
- HEAP32[(1228)>>2] = $add246;
- HEAP32[(1240)>>2] = $p$1;
- $or247 = $add246 | 1;
- $head248 = ((($p$1)) + 4|0);
- HEAP32[$head248>>2] = $or247;
- $25 = HEAP32[(1236)>>2]|0;
- $cmp249 = ($p$1|0)==($25|0);
- if (!($cmp249)) {
- return;
- }
- HEAP32[(1236)>>2] = 0;
- HEAP32[(1224)>>2] = 0;
- return;
- }
- $26 = HEAP32[(1236)>>2]|0;
- $cmp255 = ($26|0)==($add$ptr6|0);
- if ($cmp255) {
- $27 = HEAP32[(1224)>>2]|0;
- $add258 = (($27) + ($psize$1))|0;
- HEAP32[(1224)>>2] = $add258;
- HEAP32[(1236)>>2] = $21;
- $or259 = $add258 | 1;
- $head260 = ((($p$1)) + 4|0);
- HEAP32[$head260>>2] = $or259;
- $add$ptr261 = (($21) + ($add258)|0);
- HEAP32[$add$ptr261>>2] = $add258;
- return;
- }
- $and266 = $22 & -8;
- $add267 = (($and266) + ($psize$1))|0;
- $shr268 = $22 >>> 3;
- $cmp269 = ($22>>>0)<(256);
- do {
- if ($cmp269) {
- $fd273 = ((($add$ptr6)) + 8|0);
- $28 = HEAP32[$fd273>>2]|0;
- $bk275 = ((($add$ptr6)) + 12|0);
- $29 = HEAP32[$bk275>>2]|0;
- $cmp296 = ($29|0)==($28|0);
- if ($cmp296) {
- $shl299 = 1 << $shr268;
- $neg300 = $shl299 ^ -1;
- $30 = HEAP32[304]|0;
- $and301 = $30 & $neg300;
- HEAP32[304] = $and301;
- break;
- } else {
- $bk321 = ((($28)) + 12|0);
- HEAP32[$bk321>>2] = $29;
- $fd322 = ((($29)) + 8|0);
- HEAP32[$fd322>>2] = $28;
- break;
- }
- } else {
- $parent331 = ((($add$ptr6)) + 24|0);
- $31 = HEAP32[$parent331>>2]|0;
- $bk333 = ((($add$ptr6)) + 12|0);
- $32 = HEAP32[$bk333>>2]|0;
- $cmp334 = ($32|0)==($add$ptr6|0);
- do {
- if ($cmp334) {
- $child361 = ((($add$ptr6)) + 16|0);
- $arrayidx362 = ((($child361)) + 4|0);
- $34 = HEAP32[$arrayidx362>>2]|0;
- $cmp363 = ($34|0)==(0|0);
- if ($cmp363) {
- $35 = HEAP32[$child361>>2]|0;
- $cmp368 = ($35|0)==(0|0);
- if ($cmp368) {
- $R332$3 = 0;
- break;
- } else {
- $R332$1$ph = $35;$RP360$1$ph = $child361;
- }
- } else {
- $R332$1$ph = $34;$RP360$1$ph = $arrayidx362;
- }
- $R332$1 = $R332$1$ph;$RP360$1 = $RP360$1$ph;
- while(1) {
- $arrayidx374 = ((($R332$1)) + 20|0);
- $36 = HEAP32[$arrayidx374>>2]|0;
- $cmp375 = ($36|0)==(0|0);
- if ($cmp375) {
- $arrayidx379 = ((($R332$1)) + 16|0);
- $37 = HEAP32[$arrayidx379>>2]|0;
- $cmp380 = ($37|0)==(0|0);
- if ($cmp380) {
- break;
- } else {
- $R332$1$be = $37;$RP360$1$be = $arrayidx379;
- }
- } else {
- $R332$1$be = $36;$RP360$1$be = $arrayidx374;
- }
- $R332$1 = $R332$1$be;$RP360$1 = $RP360$1$be;
- }
- HEAP32[$RP360$1>>2] = 0;
- $R332$3 = $R332$1;
- } else {
- $fd338 = ((($add$ptr6)) + 8|0);
- $33 = HEAP32[$fd338>>2]|0;
- $bk355 = ((($33)) + 12|0);
- HEAP32[$bk355>>2] = $32;
- $fd356 = ((($32)) + 8|0);
- HEAP32[$fd356>>2] = $33;
- $R332$3 = $32;
- }
- } while(0);
- $cmp395 = ($31|0)==(0|0);
- if (!($cmp395)) {
- $index399 = ((($add$ptr6)) + 28|0);
- $38 = HEAP32[$index399>>2]|0;
- $arrayidx400 = (1520 + ($38<<2)|0);
- $39 = HEAP32[$arrayidx400>>2]|0;
- $cmp401 = ($39|0)==($add$ptr6|0);
- if ($cmp401) {
- HEAP32[$arrayidx400>>2] = $R332$3;
- $cond255 = ($R332$3|0)==(0|0);
- if ($cond255) {
- $shl408 = 1 << $38;
- $neg409 = $shl408 ^ -1;
- $40 = HEAP32[(1220)>>2]|0;
- $and410 = $40 & $neg409;
- HEAP32[(1220)>>2] = $and410;
- break;
- }
- } else {
- $arrayidx419 = ((($31)) + 16|0);
- $41 = HEAP32[$arrayidx419>>2]|0;
- $cmp420 = ($41|0)==($add$ptr6|0);
- $arrayidx427 = ((($31)) + 20|0);
- $arrayidx427$sink = $cmp420 ? $arrayidx419 : $arrayidx427;
- HEAP32[$arrayidx427$sink>>2] = $R332$3;
- $cmp432 = ($R332$3|0)==(0|0);
- if ($cmp432) {
- break;
- }
- }
- $parent442 = ((($R332$3)) + 24|0);
- HEAP32[$parent442>>2] = $31;
- $child443 = ((($add$ptr6)) + 16|0);
- $42 = HEAP32[$child443>>2]|0;
- $cmp445 = ($42|0)==(0|0);
- if (!($cmp445)) {
- $arrayidx454 = ((($R332$3)) + 16|0);
- HEAP32[$arrayidx454>>2] = $42;
- $parent455 = ((($42)) + 24|0);
- HEAP32[$parent455>>2] = $R332$3;
- }
- $arrayidx460 = ((($child443)) + 4|0);
- $43 = HEAP32[$arrayidx460>>2]|0;
- $cmp461 = ($43|0)==(0|0);
- if (!($cmp461)) {
- $arrayidx470 = ((($R332$3)) + 20|0);
- HEAP32[$arrayidx470>>2] = $43;
- $parent471 = ((($43)) + 24|0);
- HEAP32[$parent471>>2] = $R332$3;
- }
- }
- }
- } while(0);
- $or480 = $add267 | 1;
- $head481 = ((($p$1)) + 4|0);
- HEAP32[$head481>>2] = $or480;
- $add$ptr482 = (($21) + ($add267)|0);
- HEAP32[$add$ptr482>>2] = $add267;
- $44 = HEAP32[(1236)>>2]|0;
- $cmp484 = ($p$1|0)==($44|0);
- if ($cmp484) {
- HEAP32[(1224)>>2] = $add267;
- return;
- } else {
- $psize$2 = $add267;
- }
- } else {
- $and495 = $22 & -2;
- HEAP32[$head231>>2] = $and495;
- $or496 = $psize$1 | 1;
- $head497 = ((($p$1)) + 4|0);
- HEAP32[$head497>>2] = $or496;
- $add$ptr498 = (($21) + ($psize$1)|0);
- HEAP32[$add$ptr498>>2] = $psize$1;
- $psize$2 = $psize$1;
- }
- $shr501 = $psize$2 >>> 3;
- $cmp502 = ($psize$2>>>0)<(256);
- if ($cmp502) {
- $shl508 = $shr501 << 1;
- $arrayidx509 = (1256 + ($shl508<<2)|0);
- $45 = HEAP32[304]|0;
- $shl511 = 1 << $shr501;
- $and512 = $45 & $shl511;
- $tobool513 = ($and512|0)==(0);
- if ($tobool513) {
- $or516 = $45 | $shl511;
- HEAP32[304] = $or516;
- $$pre = ((($arrayidx509)) + 8|0);
- $$pre$phiZ2D = $$pre;$F510$0 = $arrayidx509;
- } else {
- $46 = ((($arrayidx509)) + 8|0);
- $47 = HEAP32[$46>>2]|0;
- $$pre$phiZ2D = $46;$F510$0 = $47;
- }
- HEAP32[$$pre$phiZ2D>>2] = $p$1;
- $bk529 = ((($F510$0)) + 12|0);
- HEAP32[$bk529>>2] = $p$1;
- $fd530 = ((($p$1)) + 8|0);
- HEAP32[$fd530>>2] = $F510$0;
- $bk531 = ((($p$1)) + 12|0);
- HEAP32[$bk531>>2] = $arrayidx509;
- return;
- }
- $shr535 = $psize$2 >>> 8;
- $cmp536 = ($shr535|0)==(0);
- if ($cmp536) {
- $I534$0 = 0;
- } else {
- $cmp540 = ($psize$2>>>0)>(16777215);
- if ($cmp540) {
- $I534$0 = 31;
- } else {
- $sub = (($shr535) + 1048320)|0;
- $shr544 = $sub >>> 16;
- $and545 = $shr544 & 8;
- $shl546 = $shr535 << $and545;
- $sub547 = (($shl546) + 520192)|0;
- $shr548 = $sub547 >>> 16;
- $and549 = $shr548 & 4;
- $add550 = $and549 | $and545;
- $shl551 = $shl546 << $and549;
- $sub552 = (($shl551) + 245760)|0;
- $shr553 = $sub552 >>> 16;
- $and554 = $shr553 & 2;
- $add555 = $add550 | $and554;
- $sub556 = (14 - ($add555))|0;
- $shl557 = $shl551 << $and554;
- $shr558 = $shl557 >>> 15;
- $add559 = (($sub556) + ($shr558))|0;
- $shl560 = $add559 << 1;
- $add561 = (($add559) + 7)|0;
- $shr562 = $psize$2 >>> $add561;
- $and563 = $shr562 & 1;
- $add564 = $and563 | $shl560;
- $I534$0 = $add564;
- }
- }
- $arrayidx567 = (1520 + ($I534$0<<2)|0);
- $index568 = ((($p$1)) + 28|0);
- HEAP32[$index568>>2] = $I534$0;
- $child569 = ((($p$1)) + 16|0);
- $arrayidx570 = ((($p$1)) + 20|0);
- HEAP32[$arrayidx570>>2] = 0;
- HEAP32[$child569>>2] = 0;
- $48 = HEAP32[(1220)>>2]|0;
- $shl573 = 1 << $I534$0;
- $and574 = $48 & $shl573;
- $tobool575 = ($and574|0)==(0);
- L112: do {
- if ($tobool575) {
- $or578 = $48 | $shl573;
- HEAP32[(1220)>>2] = $or578;
- HEAP32[$arrayidx567>>2] = $p$1;
- $parent579 = ((($p$1)) + 24|0);
- HEAP32[$parent579>>2] = $arrayidx567;
- $bk580 = ((($p$1)) + 12|0);
- HEAP32[$bk580>>2] = $p$1;
- $fd581 = ((($p$1)) + 8|0);
- HEAP32[$fd581>>2] = $p$1;
- } else {
- $49 = HEAP32[$arrayidx567>>2]|0;
- $head591262 = ((($49)) + 4|0);
- $50 = HEAP32[$head591262>>2]|0;
- $and592263 = $50 & -8;
- $cmp593264 = ($and592263|0)==($psize$2|0);
- L115: do {
- if ($cmp593264) {
- $T$0$lcssa = $49;
- } else {
- $cmp584 = ($I534$0|0)==(31);
- $shr586 = $I534$0 >>> 1;
- $sub589 = (25 - ($shr586))|0;
- $cond = $cmp584 ? 0 : $sub589;
- $shl590 = $psize$2 << $cond;
- $K583$0266 = $shl590;$T$0265 = $49;
- while(1) {
- $shr597 = $K583$0266 >>> 31;
- $arrayidx599 = (((($T$0265)) + 16|0) + ($shr597<<2)|0);
- $51 = HEAP32[$arrayidx599>>2]|0;
- $cmp601 = ($51|0)==(0|0);
- if ($cmp601) {
- break;
- }
- $shl600 = $K583$0266 << 1;
- $head591 = ((($51)) + 4|0);
- $52 = HEAP32[$head591>>2]|0;
- $and592 = $52 & -8;
- $cmp593 = ($and592|0)==($psize$2|0);
- if ($cmp593) {
- $T$0$lcssa = $51;
- break L115;
- } else {
- $K583$0266 = $shl600;$T$0265 = $51;
- }
- }
- HEAP32[$arrayidx599>>2] = $p$1;
- $parent610 = ((($p$1)) + 24|0);
- HEAP32[$parent610>>2] = $T$0265;
- $bk611 = ((($p$1)) + 12|0);
- HEAP32[$bk611>>2] = $p$1;
- $fd612 = ((($p$1)) + 8|0);
- HEAP32[$fd612>>2] = $p$1;
- break L112;
- }
- } while(0);
- $fd620 = ((($T$0$lcssa)) + 8|0);
- $53 = HEAP32[$fd620>>2]|0;
- $bk631 = ((($53)) + 12|0);
- HEAP32[$bk631>>2] = $p$1;
- HEAP32[$fd620>>2] = $p$1;
- $fd633 = ((($p$1)) + 8|0);
- HEAP32[$fd633>>2] = $53;
- $bk634 = ((($p$1)) + 12|0);
- HEAP32[$bk634>>2] = $T$0$lcssa;
- $parent635 = ((($p$1)) + 24|0);
- HEAP32[$parent635>>2] = 0;
- }
- } while(0);
- $54 = HEAP32[(1248)>>2]|0;
- $dec = (($54) + -1)|0;
- HEAP32[(1248)>>2] = $dec;
- $cmp640 = ($dec|0)==(0);
- if (!($cmp640)) {
- return;
- }
- $sp$0$in$i = (1672);
- while(1) {
- $sp$0$i = HEAP32[$sp$0$in$i>>2]|0;
- $cmp$i = ($sp$0$i|0)==(0|0);
- $next4$i = ((($sp$0$i)) + 8|0);
- if ($cmp$i) {
- break;
- } else {
- $sp$0$in$i = $next4$i;
- }
- }
- HEAP32[(1248)>>2] = -1;
- return;
-}
-function ___stdio_close($f) {
- $f = $f|0;
- var $0 = 0, $call = 0, $call1 = 0, $call2 = 0, $fd = 0, $vararg_buffer = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 16|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(16|0);
- $vararg_buffer = sp;
- $fd = ((($f)) + 60|0);
- $0 = HEAP32[$fd>>2]|0;
- $call = (_dummy($0)|0);
- HEAP32[$vararg_buffer>>2] = $call;
- $call1 = (___syscall6(6,($vararg_buffer|0))|0);
- $call2 = (___syscall_ret($call1)|0);
- STACKTOP = sp;return ($call2|0);
-}
-function ___stdio_write($f,$buf,$len) {
- $f = $f|0;
- $buf = $buf|0;
- $len = $len|0;
- var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $add = 0, $add$ptr = 0, $add$ptr32 = 0, $buf8 = 0, $buf_size = 0, $call = 0;
- var $call40 = 0, $call7 = 0, $call741 = 0, $call746 = 0, $cmp = 0, $cmp12 = 0, $cmp17 = 0, $cmp24 = 0, $cmp42 = 0, $cnt$0 = 0, $dec = 0, $fd = 0, $incdec$ptr = 0, $iov$043 = 0, $iov$1 = 0, $iov_base2 = 0, $iov_len = 0, $iov_len19 = 0, $iov_len23 = 0, $iov_len3 = 0;
- var $iov_len36 = 0, $iovcnt$045 = 0, $iovcnt$1 = 0, $iovs = 0, $or = 0, $rem$044 = 0, $retval$0 = 0, $sub = 0, $sub$ptr$sub = 0, $sub21 = 0, $sub28 = 0, $sub37 = 0, $vararg_buffer = 0, $vararg_buffer3 = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr6 = 0, $vararg_ptr7 = 0, $wbase = 0, $wend = 0;
- var $wend14 = 0, $wpos = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 48|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(48|0);
- $vararg_buffer3 = sp + 32|0;
- $vararg_buffer = sp + 16|0;
- $iovs = sp;
- $wbase = ((($f)) + 28|0);
- $0 = HEAP32[$wbase>>2]|0;
- HEAP32[$iovs>>2] = $0;
- $iov_len = ((($iovs)) + 4|0);
- $wpos = ((($f)) + 20|0);
- $1 = HEAP32[$wpos>>2]|0;
- $sub$ptr$sub = (($1) - ($0))|0;
- HEAP32[$iov_len>>2] = $sub$ptr$sub;
- $iov_base2 = ((($iovs)) + 8|0);
- HEAP32[$iov_base2>>2] = $buf;
- $iov_len3 = ((($iovs)) + 12|0);
- HEAP32[$iov_len3>>2] = $len;
- $add = (($sub$ptr$sub) + ($len))|0;
- $fd = ((($f)) + 60|0);
- $2 = HEAP32[$fd>>2]|0;
- $3 = $iovs;
- HEAP32[$vararg_buffer>>2] = $2;
- $vararg_ptr1 = ((($vararg_buffer)) + 4|0);
- HEAP32[$vararg_ptr1>>2] = $3;
- $vararg_ptr2 = ((($vararg_buffer)) + 8|0);
- HEAP32[$vararg_ptr2>>2] = 2;
- $call40 = (___syscall146(146,($vararg_buffer|0))|0);
- $call741 = (___syscall_ret($call40)|0);
- $cmp42 = ($add|0)==($call741|0);
- L1: do {
- if ($cmp42) {
- label = 3;
- } else {
- $call746 = $call741;$iov$043 = $iovs;$iovcnt$045 = 2;$rem$044 = $add;
- while(1) {
- $cmp12 = ($call746|0)<(0);
- if ($cmp12) {
- break;
- }
- $sub21 = (($rem$044) - ($call746))|0;
- $iov_len23 = ((($iov$043)) + 4|0);
- $9 = HEAP32[$iov_len23>>2]|0;
- $cmp24 = ($call746>>>0)>($9>>>0);
- $incdec$ptr = ((($iov$043)) + 8|0);
- $iov$1 = $cmp24 ? $incdec$ptr : $iov$043;
- $dec = $cmp24 << 31 >> 31;
- $iovcnt$1 = (($iovcnt$045) + ($dec))|0;
- $sub28 = $cmp24 ? $9 : 0;
- $cnt$0 = (($call746) - ($sub28))|0;
- $10 = HEAP32[$iov$1>>2]|0;
- $add$ptr32 = (($10) + ($cnt$0)|0);
- HEAP32[$iov$1>>2] = $add$ptr32;
- $iov_len36 = ((($iov$1)) + 4|0);
- $11 = HEAP32[$iov_len36>>2]|0;
- $sub37 = (($11) - ($cnt$0))|0;
- HEAP32[$iov_len36>>2] = $sub37;
- $12 = HEAP32[$fd>>2]|0;
- $13 = $iov$1;
- HEAP32[$vararg_buffer3>>2] = $12;
- $vararg_ptr6 = ((($vararg_buffer3)) + 4|0);
- HEAP32[$vararg_ptr6>>2] = $13;
- $vararg_ptr7 = ((($vararg_buffer3)) + 8|0);
- HEAP32[$vararg_ptr7>>2] = $iovcnt$1;
- $call = (___syscall146(146,($vararg_buffer3|0))|0);
- $call7 = (___syscall_ret($call)|0);
- $cmp = ($sub21|0)==($call7|0);
- if ($cmp) {
- label = 3;
- break L1;
- } else {
- $call746 = $call7;$iov$043 = $iov$1;$iovcnt$045 = $iovcnt$1;$rem$044 = $sub21;
- }
- }
- $wend14 = ((($f)) + 16|0);
- HEAP32[$wend14>>2] = 0;
- HEAP32[$wbase>>2] = 0;
- HEAP32[$wpos>>2] = 0;
- $7 = HEAP32[$f>>2]|0;
- $or = $7 | 32;
- HEAP32[$f>>2] = $or;
- $cmp17 = ($iovcnt$045|0)==(2);
- if ($cmp17) {
- $retval$0 = 0;
- } else {
- $iov_len19 = ((($iov$043)) + 4|0);
- $8 = HEAP32[$iov_len19>>2]|0;
- $sub = (($len) - ($8))|0;
- $retval$0 = $sub;
- }
- }
- } while(0);
- if ((label|0) == 3) {
- $buf8 = ((($f)) + 44|0);
- $4 = HEAP32[$buf8>>2]|0;
- $buf_size = ((($f)) + 48|0);
- $5 = HEAP32[$buf_size>>2]|0;
- $add$ptr = (($4) + ($5)|0);
- $wend = ((($f)) + 16|0);
- HEAP32[$wend>>2] = $add$ptr;
- $6 = $4;
- HEAP32[$wbase>>2] = $6;
- HEAP32[$wpos>>2] = $6;
- $retval$0 = $len;
- }
- STACKTOP = sp;return ($retval$0|0);
-}
-function ___stdio_seek($f,$0,$1,$whence) {
- $f = $f|0;
- $0 = $0|0;
- $1 = $1|0;
- $whence = $whence|0;
- var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $call = 0, $call2 = 0, $cmp = 0, $fd = 0, $ret = 0, $vararg_buffer = 0;
- var $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr3 = 0, $vararg_ptr4 = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 32|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(32|0);
- $vararg_buffer = sp + 8|0;
- $ret = sp;
- $fd = ((($f)) + 60|0);
- $2 = HEAP32[$fd>>2]|0;
- $3 = $ret;
- HEAP32[$vararg_buffer>>2] = $2;
- $vararg_ptr1 = ((($vararg_buffer)) + 4|0);
- HEAP32[$vararg_ptr1>>2] = $1;
- $vararg_ptr2 = ((($vararg_buffer)) + 8|0);
- HEAP32[$vararg_ptr2>>2] = $0;
- $vararg_ptr3 = ((($vararg_buffer)) + 12|0);
- HEAP32[$vararg_ptr3>>2] = $3;
- $vararg_ptr4 = ((($vararg_buffer)) + 16|0);
- HEAP32[$vararg_ptr4>>2] = $whence;
- $call = (___syscall140(140,($vararg_buffer|0))|0);
- $call2 = (___syscall_ret($call)|0);
- $cmp = ($call2|0)<(0);
- if ($cmp) {
- $10 = $ret;
- $11 = $10;
- HEAP32[$11>>2] = -1;
- $12 = (($10) + 4)|0;
- $13 = $12;
- HEAP32[$13>>2] = -1;
- $14 = -1;$15 = -1;
- } else {
- $4 = $ret;
- $5 = $4;
- $6 = HEAP32[$5>>2]|0;
- $7 = (($4) + 4)|0;
- $8 = $7;
- $9 = HEAP32[$8>>2]|0;
- $14 = $9;$15 = $6;
- }
- setTempRet0(($14) | 0);
- STACKTOP = sp;return ($15|0);
-}
-function ___syscall_ret($r) {
- $r = $r|0;
- var $call = 0, $cmp = 0, $retval$0 = 0, $sub = 0, label = 0, sp = 0;
- sp = STACKTOP;
- $cmp = ($r>>>0)>(4294963200);
- if ($cmp) {
- $sub = (0 - ($r))|0;
- $call = (___errno_location()|0);
- HEAP32[$call>>2] = $sub;
- $retval$0 = -1;
- } else {
- $retval$0 = $r;
- }
- return ($retval$0|0);
-}
-function ___errno_location() {
- var label = 0, sp = 0;
- sp = STACKTOP;
- return (1712|0);
-}
-function _dummy($fd) {
- $fd = $fd|0;
- var label = 0, sp = 0;
- sp = STACKTOP;
- return ($fd|0);
-}
-function ___stdout_write($f,$buf,$len) {
- $f = $f|0;
- $buf = $buf|0;
- $len = $len|0;
- var $0 = 0, $1 = 0, $2 = 0, $and = 0, $call = 0, $call3 = 0, $fd = 0, $lbf = 0, $tobool = 0, $tobool2 = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $write = 0, $wsz = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 32|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(32|0);
- $vararg_buffer = sp;
- $wsz = sp + 16|0;
- $write = ((($f)) + 36|0);
- HEAP32[$write>>2] = 4;
- $0 = HEAP32[$f>>2]|0;
- $and = $0 & 64;
- $tobool = ($and|0)==(0);
- if ($tobool) {
- $fd = ((($f)) + 60|0);
- $1 = HEAP32[$fd>>2]|0;
- $2 = $wsz;
- HEAP32[$vararg_buffer>>2] = $1;
- $vararg_ptr1 = ((($vararg_buffer)) + 4|0);
- HEAP32[$vararg_ptr1>>2] = 21523;
- $vararg_ptr2 = ((($vararg_buffer)) + 8|0);
- HEAP32[$vararg_ptr2>>2] = $2;
- $call = (___syscall54(54,($vararg_buffer|0))|0);
- $tobool2 = ($call|0)==(0);
- if (!($tobool2)) {
- $lbf = ((($f)) + 75|0);
- HEAP8[$lbf>>0] = -1;
- }
- }
- $call3 = (___stdio_write($f,$buf,$len)|0);
- STACKTOP = sp;return ($call3|0);
-}
-function ___unlockfile($f) {
- $f = $f|0;
- var label = 0, sp = 0;
- sp = STACKTOP;
- return;
-}
-function ___lockfile($f) {
- $f = $f|0;
- var label = 0, sp = 0;
- sp = STACKTOP;
- return 1;
-}
-function ___ofl_lock() {
- var label = 0, sp = 0;
- sp = STACKTOP;
- ___lock((1716|0));
- return (1724|0);
-}
-function ___ofl_unlock() {
- var label = 0, sp = 0;
- sp = STACKTOP;
- ___unlock((1716|0));
- return;
-}
-function _fflush($f) {
- $f = $f|0;
- var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $call = 0, $call1 = 0, $call11 = 0, $call118 = 0, $call17 = 0, $call23 = 0, $call7 = 0, $cmp = 0, $cmp15 = 0, $cmp21 = 0, $cond10 = 0, $cond20 = 0, $f$addr$0 = 0, $f$addr$019 = 0;
- var $f$addr$022 = 0, $lock = 0, $lock14 = 0, $next = 0, $or = 0, $phitmp = 0, $r$0$lcssa = 0, $r$021 = 0, $r$1 = 0, $retval$0 = 0, $tobool = 0, $tobool12 = 0, $tobool1220 = 0, $tobool25 = 0, $tobool5 = 0, $wbase = 0, $wpos = 0, label = 0, sp = 0;
- sp = STACKTOP;
- $tobool = ($f|0)==(0|0);
- do {
- if ($tobool) {
- $1 = HEAP32[40]|0;
- $tobool5 = ($1|0)==(0|0);
- if ($tobool5) {
- $cond10 = 0;
- } else {
- $2 = HEAP32[40]|0;
- $call7 = (_fflush($2)|0);
- $cond10 = $call7;
- }
- $call11 = (___ofl_lock()|0);
- $f$addr$019 = HEAP32[$call11>>2]|0;
- $tobool1220 = ($f$addr$019|0)==(0|0);
- if ($tobool1220) {
- $r$0$lcssa = $cond10;
- } else {
- $f$addr$022 = $f$addr$019;$r$021 = $cond10;
- while(1) {
- $lock14 = ((($f$addr$022)) + 76|0);
- $3 = HEAP32[$lock14>>2]|0;
- $cmp15 = ($3|0)>(-1);
- if ($cmp15) {
- $call17 = (___lockfile($f$addr$022)|0);
- $cond20 = $call17;
- } else {
- $cond20 = 0;
- }
- $wpos = ((($f$addr$022)) + 20|0);
- $4 = HEAP32[$wpos>>2]|0;
- $wbase = ((($f$addr$022)) + 28|0);
- $5 = HEAP32[$wbase>>2]|0;
- $cmp21 = ($4>>>0)>($5>>>0);
- if ($cmp21) {
- $call23 = (___fflush_unlocked($f$addr$022)|0);
- $or = $call23 | $r$021;
- $r$1 = $or;
- } else {
- $r$1 = $r$021;
- }
- $tobool25 = ($cond20|0)==(0);
- if (!($tobool25)) {
- ___unlockfile($f$addr$022);
- }
- $next = ((($f$addr$022)) + 56|0);
- $f$addr$0 = HEAP32[$next>>2]|0;
- $tobool12 = ($f$addr$0|0)==(0|0);
- if ($tobool12) {
- $r$0$lcssa = $r$1;
- break;
- } else {
- $f$addr$022 = $f$addr$0;$r$021 = $r$1;
- }
- }
- }
- ___ofl_unlock();
- $retval$0 = $r$0$lcssa;
- } else {
- $lock = ((($f)) + 76|0);
- $0 = HEAP32[$lock>>2]|0;
- $cmp = ($0|0)>(-1);
- if (!($cmp)) {
- $call118 = (___fflush_unlocked($f)|0);
- $retval$0 = $call118;
- break;
- }
- $call = (___lockfile($f)|0);
- $phitmp = ($call|0)==(0);
- $call1 = (___fflush_unlocked($f)|0);
- if ($phitmp) {
- $retval$0 = $call1;
- } else {
- ___unlockfile($f);
- $retval$0 = $call1;
- }
- }
- } while(0);
- return ($retval$0|0);
-}
-function ___fflush_unlocked($f) {
- $f = $f|0;
- var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $cmp = 0, $cmp4 = 0, $rend = 0, $retval$0 = 0, $rpos = 0, $seek = 0, $sub$ptr$lhs$cast = 0, $sub$ptr$rhs$cast = 0, $sub$ptr$sub = 0, $tobool = 0;
- var $wbase = 0, $wend = 0, $wpos = 0, $write = 0, label = 0, sp = 0;
- sp = STACKTOP;
- $wpos = ((($f)) + 20|0);
- $0 = HEAP32[$wpos>>2]|0;
- $wbase = ((($f)) + 28|0);
- $1 = HEAP32[$wbase>>2]|0;
- $cmp = ($0>>>0)>($1>>>0);
- if ($cmp) {
- $write = ((($f)) + 36|0);
- $2 = HEAP32[$write>>2]|0;
- (FUNCTION_TABLE_iiii[$2 & 7]($f,0,0)|0);
- $3 = HEAP32[$wpos>>2]|0;
- $tobool = ($3|0)==(0|0);
- if ($tobool) {
- $retval$0 = -1;
- } else {
- label = 3;
- }
- } else {
- label = 3;
- }
- if ((label|0) == 3) {
- $rpos = ((($f)) + 4|0);
- $4 = HEAP32[$rpos>>2]|0;
- $rend = ((($f)) + 8|0);
- $5 = HEAP32[$rend>>2]|0;
- $cmp4 = ($4>>>0)<($5>>>0);
- if ($cmp4) {
- $sub$ptr$lhs$cast = $4;
- $sub$ptr$rhs$cast = $5;
- $sub$ptr$sub = (($sub$ptr$lhs$cast) - ($sub$ptr$rhs$cast))|0;
- $6 = ($sub$ptr$sub|0)<(0);
- $7 = $6 << 31 >> 31;
- $seek = ((($f)) + 40|0);
- $8 = HEAP32[$seek>>2]|0;
- (FUNCTION_TABLE_iiiii[$8 & 3]($f,$sub$ptr$sub,$7,1)|0);
- $9 = (getTempRet0() | 0);
- }
- $wend = ((($f)) + 16|0);
- HEAP32[$wend>>2] = 0;
- HEAP32[$wbase>>2] = 0;
- HEAP32[$wpos>>2] = 0;
- HEAP32[$rend>>2] = 0;
- HEAP32[$rpos>>2] = 0;
- $retval$0 = 0;
- }
- return ($retval$0|0);
-}
-function _memcpy(dest, src, num) {
- dest = dest|0; src = src|0; num = num|0;
- var ret = 0;
- var aligned_dest_end = 0;
- var block_aligned_dest_end = 0;
- var dest_end = 0;
- // Test against a benchmarked cutoff limit for when HEAPU8.set() becomes faster to use.
- if ((num|0) >= 8192) {
- _emscripten_memcpy_big(dest|0, src|0, num|0)|0;
- return dest|0;
- }
-
- ret = dest|0;
- dest_end = (dest + num)|0;
- if ((dest&3) == (src&3)) {
- // The initial unaligned < 4-byte front.
- while (dest & 3) {
- if ((num|0) == 0) return ret|0;
- HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0);
- dest = (dest+1)|0;
- src = (src+1)|0;
- num = (num-1)|0;
- }
- aligned_dest_end = (dest_end & -4)|0;
- block_aligned_dest_end = (aligned_dest_end - 64)|0;
- while ((dest|0) <= (block_aligned_dest_end|0) ) {
- HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0);
- HEAP32[(((dest)+(4))>>2)]=((HEAP32[(((src)+(4))>>2)])|0);
- HEAP32[(((dest)+(8))>>2)]=((HEAP32[(((src)+(8))>>2)])|0);
- HEAP32[(((dest)+(12))>>2)]=((HEAP32[(((src)+(12))>>2)])|0);
- HEAP32[(((dest)+(16))>>2)]=((HEAP32[(((src)+(16))>>2)])|0);
- HEAP32[(((dest)+(20))>>2)]=((HEAP32[(((src)+(20))>>2)])|0);
- HEAP32[(((dest)+(24))>>2)]=((HEAP32[(((src)+(24))>>2)])|0);
- HEAP32[(((dest)+(28))>>2)]=((HEAP32[(((src)+(28))>>2)])|0);
- HEAP32[(((dest)+(32))>>2)]=((HEAP32[(((src)+(32))>>2)])|0);
- HEAP32[(((dest)+(36))>>2)]=((HEAP32[(((src)+(36))>>2)])|0);
- HEAP32[(((dest)+(40))>>2)]=((HEAP32[(((src)+(40))>>2)])|0);
- HEAP32[(((dest)+(44))>>2)]=((HEAP32[(((src)+(44))>>2)])|0);
- HEAP32[(((dest)+(48))>>2)]=((HEAP32[(((src)+(48))>>2)])|0);
- HEAP32[(((dest)+(52))>>2)]=((HEAP32[(((src)+(52))>>2)])|0);
- HEAP32[(((dest)+(56))>>2)]=((HEAP32[(((src)+(56))>>2)])|0);
- HEAP32[(((dest)+(60))>>2)]=((HEAP32[(((src)+(60))>>2)])|0);
- dest = (dest+64)|0;
- src = (src+64)|0;
- }
- while ((dest|0) < (aligned_dest_end|0) ) {
- HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0);
- dest = (dest+4)|0;
- src = (src+4)|0;
- }
- } else {
- // In the unaligned copy case, unroll a bit as well.
- aligned_dest_end = (dest_end - 4)|0;
- while ((dest|0) < (aligned_dest_end|0) ) {
- HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0);
- HEAP8[(((dest)+(1))>>0)]=((HEAP8[(((src)+(1))>>0)])|0);
- HEAP8[(((dest)+(2))>>0)]=((HEAP8[(((src)+(2))>>0)])|0);
- HEAP8[(((dest)+(3))>>0)]=((HEAP8[(((src)+(3))>>0)])|0);
- dest = (dest+4)|0;
- src = (src+4)|0;
- }
- }
- // The remaining unaligned < 4 byte tail.
- while ((dest|0) < (dest_end|0)) {
- HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0);
- dest = (dest+1)|0;
- src = (src+1)|0;
- }
- return ret|0;
-}
-function _memset(ptr, value, num) {
- ptr = ptr|0; value = value|0; num = num|0;
- var end = 0, aligned_end = 0, block_aligned_end = 0, value4 = 0;
- end = (ptr + num)|0;
-
- value = value & 0xff;
- if ((num|0) >= 67 /* 64 bytes for an unrolled loop + 3 bytes for unaligned head*/) {
- while ((ptr&3) != 0) {
- HEAP8[((ptr)>>0)]=value;
- ptr = (ptr+1)|0;
- }
-
- aligned_end = (end & -4)|0;
- value4 = value | (value << 8) | (value << 16) | (value << 24);
-
- block_aligned_end = (aligned_end - 64)|0;
-
- while((ptr|0) <= (block_aligned_end|0)) {
- HEAP32[((ptr)>>2)]=value4;
- HEAP32[(((ptr)+(4))>>2)]=value4;
- HEAP32[(((ptr)+(8))>>2)]=value4;
- HEAP32[(((ptr)+(12))>>2)]=value4;
- HEAP32[(((ptr)+(16))>>2)]=value4;
- HEAP32[(((ptr)+(20))>>2)]=value4;
- HEAP32[(((ptr)+(24))>>2)]=value4;
- HEAP32[(((ptr)+(28))>>2)]=value4;
- HEAP32[(((ptr)+(32))>>2)]=value4;
- HEAP32[(((ptr)+(36))>>2)]=value4;
- HEAP32[(((ptr)+(40))>>2)]=value4;
- HEAP32[(((ptr)+(44))>>2)]=value4;
- HEAP32[(((ptr)+(48))>>2)]=value4;
- HEAP32[(((ptr)+(52))>>2)]=value4;
- HEAP32[(((ptr)+(56))>>2)]=value4;
- HEAP32[(((ptr)+(60))>>2)]=value4;
- ptr = (ptr + 64)|0;
- }
-
- while ((ptr|0) < (aligned_end|0) ) {
- HEAP32[((ptr)>>2)]=value4;
- ptr = (ptr+4)|0;
- }
- }
- // The remaining bytes.
- while ((ptr|0) < (end|0)) {
- HEAP8[((ptr)>>0)]=value;
- ptr = (ptr+1)|0;
- }
- return (end-num)|0;
-}
-function _sbrk(increment) {
- increment = increment|0;
- var oldDynamicTop = 0;
- var oldDynamicTopOnChange = 0;
- var newDynamicTop = 0;
- var totalMemory = 0;
- totalMemory = _emscripten_get_heap_size()|0;
-
- oldDynamicTop = HEAP32[DYNAMICTOP_PTR>>2]|0;
- newDynamicTop = oldDynamicTop + increment | 0;
-
- if (((increment|0) > 0 & (newDynamicTop|0) < (oldDynamicTop|0)) // Detect and fail if we would wrap around signed 32-bit int.
- | (newDynamicTop|0) < 0) { // Also underflow, sbrk() should be able to be used to subtract.
- abortOnCannotGrowMemory(newDynamicTop|0)|0;
- ___setErrNo(12);
- return -1;
- }
-
- if ((newDynamicTop|0) > (totalMemory|0)) {
- if (_emscripten_resize_heap(newDynamicTop|0)|0) {
- // We resized the heap. Start another loop iteration if we need to.
- } else {
- // We failed to resize the heap.
- ___setErrNo(12);
- return -1;
- }
- }
-
- HEAP32[DYNAMICTOP_PTR>>2] = newDynamicTop|0;
-
- return oldDynamicTop|0;
-}
-
-
-function dynCall_ii(index,a1) {
- index = index|0;
- a1=a1|0;
- return FUNCTION_TABLE_ii[index&1](a1|0)|0;
-}
-
-
-function dynCall_iiii(index,a1,a2,a3) {
- index = index|0;
- a1=a1|0; a2=a2|0; a3=a3|0;
- return FUNCTION_TABLE_iiii[index&7](a1|0,a2|0,a3|0)|0;
-}
-
-
-function dynCall_iiiii(index,a1,a2,a3,a4) {
- index = index|0;
- a1=a1|0; a2=a2|0; a3=a3|0; a4=a4|0;
- return FUNCTION_TABLE_iiiii[index&3](a1|0,a2|0,a3|0,a4|0)|0;
-}
-
-function b0(p0) {
- p0 = p0|0; nullFunc_ii(0);return 0;
-}
-function b1(p0,p1,p2) {
- p0 = p0|0;p1 = p1|0;p2 = p2|0; nullFunc_iiii(1);return 0;
-}
-function b2(p0,p1,p2,p3) {
- p0 = p0|0;p1 = p1|0;p2 = p2|0;p3 = p3|0; nullFunc_iiiii(2);return 0;
-}
-
-// EMSCRIPTEN_END_FUNCS
-var FUNCTION_TABLE_ii = [b0,___stdio_close];
-var FUNCTION_TABLE_iiii = [b1,b1,___stdout_write,b1,___stdio_write,b1,b1,b1];
-var FUNCTION_TABLE_iiiii = [b2,b2,b2,___stdio_seek];
-
- return { ___errno_location: ___errno_location, _fflush: _fflush, _free: _free, _main: _main, _malloc: _malloc, _memcpy: _memcpy, _memset: _memset, _sbrk: _sbrk, dynCall_ii: dynCall_ii, dynCall_iiii: dynCall_iiii, dynCall_iiiii: dynCall_iiiii, establishStackSpace: establishStackSpace, stackAlloc: stackAlloc, stackRestore: stackRestore, stackSave: stackSave };
-})
-// EMSCRIPTEN_END_ASM
-(asmGlobalArg, asmLibraryArg, buffer);
-
-var real____errno_location = asm["___errno_location"];
-asm["___errno_location"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real____errno_location.apply(null, arguments);
-};
-
-var real__fflush = asm["_fflush"];
-asm["_fflush"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real__fflush.apply(null, arguments);
-};
-
-var real__free = asm["_free"];
-asm["_free"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real__free.apply(null, arguments);
-};
-
-var real__main = asm["_main"];
-asm["_main"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real__main.apply(null, arguments);
-};
-
-var real__malloc = asm["_malloc"];
-asm["_malloc"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real__malloc.apply(null, arguments);
-};
-
-var real__sbrk = asm["_sbrk"];
-asm["_sbrk"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real__sbrk.apply(null, arguments);
-};
-
-var real_establishStackSpace = asm["establishStackSpace"];
-asm["establishStackSpace"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real_establishStackSpace.apply(null, arguments);
-};
-
-var real_stackAlloc = asm["stackAlloc"];
-asm["stackAlloc"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real_stackAlloc.apply(null, arguments);
-};
-
-var real_stackRestore = asm["stackRestore"];
-asm["stackRestore"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real_stackRestore.apply(null, arguments);
-};
-
-var real_stackSave = asm["stackSave"];
-asm["stackSave"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real_stackSave.apply(null, arguments);
-};
-var ___errno_location = Module["___errno_location"] = asm["___errno_location"];
-var _fflush = Module["_fflush"] = asm["_fflush"];
-var _free = Module["_free"] = asm["_free"];
-var _main = Module["_main"] = asm["_main"];
-var _malloc = Module["_malloc"] = asm["_malloc"];
-var _memcpy = Module["_memcpy"] = asm["_memcpy"];
-var _memset = Module["_memset"] = asm["_memset"];
-var _sbrk = Module["_sbrk"] = asm["_sbrk"];
-var establishStackSpace = Module["establishStackSpace"] = asm["establishStackSpace"];
-var stackAlloc = Module["stackAlloc"] = asm["stackAlloc"];
-var stackRestore = Module["stackRestore"] = asm["stackRestore"];
-var stackSave = Module["stackSave"] = asm["stackSave"];
-var dynCall_ii = Module["dynCall_ii"] = asm["dynCall_ii"];
-var dynCall_iiii = Module["dynCall_iiii"] = asm["dynCall_iiii"];
-var dynCall_iiiii = Module["dynCall_iiiii"] = asm["dynCall_iiiii"];
-;
-
-
-
-// === Auto-generated postamble setup entry stuff ===
-
-Module['asm'] = asm;
-
-if (!Module["intArrayFromString"]) Module["intArrayFromString"] = function() { abort("'intArrayFromString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["intArrayToString"]) Module["intArrayToString"] = function() { abort("'intArrayToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["ccall"]) Module["ccall"] = function() { abort("'ccall' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["cwrap"]) Module["cwrap"] = function() { abort("'cwrap' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["setValue"]) Module["setValue"] = function() { abort("'setValue' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getValue"]) Module["getValue"] = function() { abort("'getValue' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["allocate"]) Module["allocate"] = function() { abort("'allocate' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getMemory"]) Module["getMemory"] = function() { abort("'getMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["AsciiToString"]) Module["AsciiToString"] = function() { abort("'AsciiToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stringToAscii"]) Module["stringToAscii"] = function() { abort("'stringToAscii' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["UTF8ArrayToString"]) Module["UTF8ArrayToString"] = function() { abort("'UTF8ArrayToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["UTF8ToString"]) Module["UTF8ToString"] = function() { abort("'UTF8ToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stringToUTF8Array"]) Module["stringToUTF8Array"] = function() { abort("'stringToUTF8Array' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stringToUTF8"]) Module["stringToUTF8"] = function() { abort("'stringToUTF8' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["lengthBytesUTF8"]) Module["lengthBytesUTF8"] = function() { abort("'lengthBytesUTF8' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["UTF16ToString"]) Module["UTF16ToString"] = function() { abort("'UTF16ToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stringToUTF16"]) Module["stringToUTF16"] = function() { abort("'stringToUTF16' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["lengthBytesUTF16"]) Module["lengthBytesUTF16"] = function() { abort("'lengthBytesUTF16' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["UTF32ToString"]) Module["UTF32ToString"] = function() { abort("'UTF32ToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stringToUTF32"]) Module["stringToUTF32"] = function() { abort("'stringToUTF32' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["lengthBytesUTF32"]) Module["lengthBytesUTF32"] = function() { abort("'lengthBytesUTF32' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["allocateUTF8"]) Module["allocateUTF8"] = function() { abort("'allocateUTF8' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stackTrace"]) Module["stackTrace"] = function() { abort("'stackTrace' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addOnPreRun"]) Module["addOnPreRun"] = function() { abort("'addOnPreRun' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addOnInit"]) Module["addOnInit"] = function() { abort("'addOnInit' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addOnPreMain"]) Module["addOnPreMain"] = function() { abort("'addOnPreMain' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addOnExit"]) Module["addOnExit"] = function() { abort("'addOnExit' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addOnPostRun"]) Module["addOnPostRun"] = function() { abort("'addOnPostRun' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["writeStringToMemory"]) Module["writeStringToMemory"] = function() { abort("'writeStringToMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["writeArrayToMemory"]) Module["writeArrayToMemory"] = function() { abort("'writeArrayToMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["writeAsciiToMemory"]) Module["writeAsciiToMemory"] = function() { abort("'writeAsciiToMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addRunDependency"]) Module["addRunDependency"] = function() { abort("'addRunDependency' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["removeRunDependency"]) Module["removeRunDependency"] = function() { abort("'removeRunDependency' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["ENV"]) Module["ENV"] = function() { abort("'ENV' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["FS"]) Module["FS"] = function() { abort("'FS' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["FS_createFolder"]) Module["FS_createFolder"] = function() { abort("'FS_createFolder' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createPath"]) Module["FS_createPath"] = function() { abort("'FS_createPath' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createDataFile"]) Module["FS_createDataFile"] = function() { abort("'FS_createDataFile' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createPreloadedFile"]) Module["FS_createPreloadedFile"] = function() { abort("'FS_createPreloadedFile' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createLazyFile"]) Module["FS_createLazyFile"] = function() { abort("'FS_createLazyFile' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createLink"]) Module["FS_createLink"] = function() { abort("'FS_createLink' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createDevice"]) Module["FS_createDevice"] = function() { abort("'FS_createDevice' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_unlink"]) Module["FS_unlink"] = function() { abort("'FS_unlink' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["GL"]) Module["GL"] = function() { abort("'GL' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["dynamicAlloc"]) Module["dynamicAlloc"] = function() { abort("'dynamicAlloc' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["warnOnce"]) Module["warnOnce"] = function() { abort("'warnOnce' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["loadDynamicLibrary"]) Module["loadDynamicLibrary"] = function() { abort("'loadDynamicLibrary' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["loadWebAssemblyModule"]) Module["loadWebAssemblyModule"] = function() { abort("'loadWebAssemblyModule' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getLEB"]) Module["getLEB"] = function() { abort("'getLEB' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getFunctionTables"]) Module["getFunctionTables"] = function() { abort("'getFunctionTables' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["alignFunctionTables"]) Module["alignFunctionTables"] = function() { abort("'alignFunctionTables' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["registerFunctions"]) Module["registerFunctions"] = function() { abort("'registerFunctions' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addFunction"]) Module["addFunction"] = function() { abort("'addFunction' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["removeFunction"]) Module["removeFunction"] = function() { abort("'removeFunction' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getFuncWrapper"]) Module["getFuncWrapper"] = function() { abort("'getFuncWrapper' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["prettyPrint"]) Module["prettyPrint"] = function() { abort("'prettyPrint' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["makeBigInt"]) Module["makeBigInt"] = function() { abort("'makeBigInt' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["dynCall"]) Module["dynCall"] = function() { abort("'dynCall' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getCompilerSetting"]) Module["getCompilerSetting"] = function() { abort("'getCompilerSetting' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stackSave"]) Module["stackSave"] = function() { abort("'stackSave' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stackRestore"]) Module["stackRestore"] = function() { abort("'stackRestore' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stackAlloc"]) Module["stackAlloc"] = function() { abort("'stackAlloc' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["establishStackSpace"]) Module["establishStackSpace"] = function() { abort("'establishStackSpace' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["print"]) Module["print"] = function() { abort("'print' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["printErr"]) Module["printErr"] = function() { abort("'printErr' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getTempRet0"]) Module["getTempRet0"] = function() { abort("'getTempRet0' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["setTempRet0"]) Module["setTempRet0"] = function() { abort("'setTempRet0' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["Pointer_stringify"]) Module["Pointer_stringify"] = function() { abort("'Pointer_stringify' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["intArrayFromBase64"]) Module["intArrayFromBase64"] = function() { abort("'intArrayFromBase64' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["tryParseAsDataURI"]) Module["tryParseAsDataURI"] = function() { abort("'tryParseAsDataURI' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };if (!Module["ALLOC_NORMAL"]) Object.defineProperty(Module, "ALLOC_NORMAL", { get: function() { abort("'ALLOC_NORMAL' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
-if (!Module["ALLOC_STACK"]) Object.defineProperty(Module, "ALLOC_STACK", { get: function() { abort("'ALLOC_STACK' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
-if (!Module["ALLOC_DYNAMIC"]) Object.defineProperty(Module, "ALLOC_DYNAMIC", { get: function() { abort("'ALLOC_DYNAMIC' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
-if (!Module["ALLOC_NONE"]) Object.defineProperty(Module, "ALLOC_NONE", { get: function() { abort("'ALLOC_NONE' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
-
-if (memoryInitializer) {
- if (!isDataURI(memoryInitializer)) {
- memoryInitializer = locateFile(memoryInitializer);
- }
- if (ENVIRONMENT_IS_NODE || ENVIRONMENT_IS_SHELL) {
- var data = Module['readBinary'](memoryInitializer);
- HEAPU8.set(data, GLOBAL_BASE);
- } else {
- addRunDependency('memory initializer');
- var applyMemoryInitializer = function(data) {
- if (data.byteLength) data = new Uint8Array(data);
- for (var i = 0; i < data.length; i++) {
- assert(HEAPU8[GLOBAL_BASE + i] === 0, "area for memory initializer should not have been touched before it's loaded");
- }
- HEAPU8.set(data, GLOBAL_BASE);
- // Delete the typed array that contains the large blob of the memory initializer request response so that
- // we won't keep unnecessary memory lying around. However, keep the XHR object itself alive so that e.g.
- // its .status field can still be accessed later.
- if (Module['memoryInitializerRequest']) delete Module['memoryInitializerRequest'].response;
- removeRunDependency('memory initializer');
- }
- var doBrowserLoad = function() {
- Module['readAsync'](memoryInitializer, applyMemoryInitializer, function() {
- throw 'could not load memory initializer ' + memoryInitializer;
- });
- }
- var memoryInitializerBytes = tryParseAsDataURI(memoryInitializer);
- if (memoryInitializerBytes) {
- applyMemoryInitializer(memoryInitializerBytes.buffer);
- } else
- if (Module['memoryInitializerRequest']) {
- // a network request has already been created, just use that
- var useRequest = function() {
- var request = Module['memoryInitializerRequest'];
- var response = request.response;
- if (request.status !== 200 && request.status !== 0) {
- var data = tryParseAsDataURI(Module['memoryInitializerRequestURL']);
- if (data) {
- response = data.buffer;
- } else {
- // If you see this warning, the issue may be that you are using locateFile and defining it in JS. That
- // means that the HTML file doesn't know about it, and when it tries to create the mem init request early, does it to the wrong place.
- // Look in your browser's devtools network console to see what's going on.
- console.warn('a problem seems to have happened with Module.memoryInitializerRequest, status: ' + request.status + ', retrying ' + memoryInitializer);
- doBrowserLoad();
- return;
- }
- }
- applyMemoryInitializer(response);
- }
- if (Module['memoryInitializerRequest'].response) {
- setTimeout(useRequest, 0); // it's already here; but, apply it asynchronously
- } else {
- Module['memoryInitializerRequest'].addEventListener('load', useRequest); // wait for it
- }
- } else {
- // fetch it from the network ourselves
- doBrowserLoad();
- }
- }
-}
-
-
-
-/**
- * @constructor
- * @extends {Error}
- * @this {ExitStatus}
- */
-function ExitStatus(status) {
- this.name = "ExitStatus";
- this.message = "Program terminated with exit(" + status + ")";
- this.status = status;
-};
-ExitStatus.prototype = new Error();
-ExitStatus.prototype.constructor = ExitStatus;
-
-var calledMain = false;
-
-dependenciesFulfilled = function runCaller() {
- // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false)
- if (!Module['calledRun']) run();
- if (!Module['calledRun']) dependenciesFulfilled = runCaller; // try this again later, after new deps are fulfilled
-}
-
-Module['callMain'] = function callMain(args) {
- assert(runDependencies == 0, 'cannot call main when async dependencies remain! (listen on Module["onRuntimeInitialized"])');
- assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called');
-
- args = args || [];
-
- ensureInitRuntime();
-
- var argc = args.length+1;
- var argv = stackAlloc((argc + 1) * 4);
- HEAP32[argv >> 2] = allocateUTF8OnStack(Module['thisProgram']);
- for (var i = 1; i < argc; i++) {
- HEAP32[(argv >> 2) + i] = allocateUTF8OnStack(args[i - 1]);
- }
- HEAP32[(argv >> 2) + argc] = 0;
-
-
- try {
-
- var ret = Module['_main'](argc, argv, 0);
-
-
- // if we're not running an evented main loop, it's time to exit
- exit(ret, /* implicit = */ true);
- }
- catch(e) {
- if (e instanceof ExitStatus) {
- // exit() throws this once it's done to make sure execution
- // has been stopped completely
- return;
- } else if (e == 'SimulateInfiniteLoop') {
- // running an evented main loop, don't immediately exit
- Module['noExitRuntime'] = true;
- return;
- } else {
- var toLog = e;
- if (e && typeof e === 'object' && e.stack) {
- toLog = [e, e.stack];
- }
- err('exception thrown: ' + toLog);
- Module['quit'](1, e);
- }
- } finally {
- calledMain = true;
- }
-}
-
-
-
-
-/** @type {function(Array=)} */
-function run(args) {
- args = args || Module['arguments'];
-
- if (runDependencies > 0) {
- return;
- }
-
- writeStackCookie();
-
- preRun();
-
- if (runDependencies > 0) return; // a preRun added a dependency, run will be called later
- if (Module['calledRun']) return; // run may have just been called through dependencies being fulfilled just in this very frame
-
- function doRun() {
- if (Module['calledRun']) return; // run may have just been called while the async setStatus time below was happening
- Module['calledRun'] = true;
-
- if (ABORT) return;
-
- ensureInitRuntime();
-
- preMain();
-
- if (Module['onRuntimeInitialized']) Module['onRuntimeInitialized']();
-
- if (Module['_main'] && shouldRunNow) Module['callMain'](args);
-
- postRun();
- }
-
- if (Module['setStatus']) {
- Module['setStatus']('Running...');
- setTimeout(function() {
- setTimeout(function() {
- Module['setStatus']('');
- }, 1);
- doRun();
- }, 1);
- } else {
- doRun();
- }
- checkStackCookie();
-}
-Module['run'] = run;
-
-
-function exit(status, implicit) {
-
- // if this is just main exit-ing implicitly, and the status is 0, then we
- // don't need to do anything here and can just leave. if the status is
- // non-zero, though, then we need to report it.
- // (we may have warned about this earlier, if a situation justifies doing so)
- if (implicit && Module['noExitRuntime'] && status === 0) {
- return;
- }
-
- if (Module['noExitRuntime']) {
- // if exit() was called, we may warn the user if the runtime isn't actually being shut down
- if (!implicit) {
- err('exit(' + status + ') called, but noExitRuntime is set due to an async operation, so halting execution but not exiting the runtime or preventing further async execution (you can use emscripten_force_exit, if you want to force a true shutdown)');
- }
- } else {
-
- ABORT = true;
- EXITSTATUS = status;
-
- exitRuntime();
-
- if (Module['onExit']) Module['onExit'](status);
- }
-
- Module['quit'](status, new ExitStatus(status));
-}
-
-var abortDecorators = [];
-
-function abort(what) {
- if (Module['onAbort']) {
- Module['onAbort'](what);
- }
-
- if (what !== undefined) {
- out(what);
- err(what);
- what = JSON.stringify(what)
- } else {
- what = '';
- }
-
- ABORT = true;
- EXITSTATUS = 1;
-
- var extra = '';
- var output = 'abort(' + what + ') at ' + stackTrace() + extra;
- if (abortDecorators) {
- abortDecorators.forEach(function(decorator) {
- output = decorator(output, what);
- });
- }
- throw output;
-}
-Module['abort'] = abort;
-
-if (Module['preInit']) {
- if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']];
- while (Module['preInit'].length > 0) {
- Module['preInit'].pop()();
- }
-}
-
-// shouldRunNow refers to calling main(), not run().
-var shouldRunNow = true;
-if (Module['noInitialRun']) {
- shouldRunNow = false;
-}
-
-
-run();
-
-
-
-
-
-// {{MODULE_ADDITIONS}}
-
-
-
diff --git a/packages/node-libofx/OpenSP-1.5.2/a.out.js b/packages/node-libofx/OpenSP-1.5.2/a.out.js
deleted file mode 100644
index 99af1caa692..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/a.out.js
+++ /dev/null
@@ -1,5536 +0,0 @@
-// Copyright 2010 The Emscripten Authors. All rights reserved.
-// Emscripten is available under two separate licenses, the MIT license and the
-// University of Illinois/NCSA Open Source License. Both these licenses can be
-// found in the LICENSE file.
-
-// The Module object: Our interface to the outside world. We import
-// and export values on it. There are various ways Module can be used:
-// 1. Not defined. We create it here
-// 2. A function parameter, function(Module) { ..generated code.. }
-// 3. pre-run appended it, var Module = {}; ..generated code..
-// 4. External script tag defines var Module.
-// We need to check if Module already exists (e.g. case 3 above).
-// Substitution will be replaced with actual code on later stage of the build,
-// this way Closure Compiler will not mangle it (e.g. case 4. above).
-// Note that if you want to run closure, and also to use Module
-// after the generated code, you will need to define var Module = {};
-// before the code. Then that object will be used in the code, and you
-// can continue to use Module afterwards as well.
-var Module = typeof Module !== 'undefined' ? Module : {};
-
-// --pre-jses are emitted after the Module integration code, so that they can
-// refer to Module (if they choose; they can also define Module)
-// {{PRE_JSES}}
-
-// Sometimes an existing Module object exists with properties
-// meant to overwrite the default module functionality. Here
-// we collect those properties and reapply _after_ we configure
-// the current environment's defaults to avoid having to be so
-// defensive during initialization.
-var moduleOverrides = {};
-var key;
-for (key in Module) {
- if (Module.hasOwnProperty(key)) {
- moduleOverrides[key] = Module[key];
- }
-}
-
-Module['arguments'] = [];
-Module['thisProgram'] = './this.program';
-Module['quit'] = function(status, toThrow) {
- throw toThrow;
-};
-Module['preRun'] = [];
-Module['postRun'] = [];
-
-// Determine the runtime environment we are in. You can customize this by
-// setting the ENVIRONMENT setting at compile time (see settings.js).
-
-var ENVIRONMENT_IS_WEB = false;
-var ENVIRONMENT_IS_WORKER = false;
-var ENVIRONMENT_IS_NODE = false;
-var ENVIRONMENT_HAS_NODE = false;
-var ENVIRONMENT_IS_SHELL = false;
-ENVIRONMENT_IS_WEB = typeof window === 'object';
-ENVIRONMENT_IS_WORKER = typeof importScripts === 'function';
-ENVIRONMENT_HAS_NODE = typeof process === 'object' && typeof require === 'function';
-ENVIRONMENT_IS_NODE = ENVIRONMENT_HAS_NODE && !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_WORKER;
-ENVIRONMENT_IS_SHELL = !ENVIRONMENT_IS_WEB && !ENVIRONMENT_IS_NODE && !ENVIRONMENT_IS_WORKER;
-
-if (Module['ENVIRONMENT']) {
- throw new Error('Module.ENVIRONMENT has been deprecated. To force the environment, use the ENVIRONMENT compile-time option (for example, -s ENVIRONMENT=web or -s ENVIRONMENT=node)');
-}
-
-
-// Three configurations we can be running in:
-// 1) We could be the application main() thread running in the main JS UI thread. (ENVIRONMENT_IS_WORKER == false and ENVIRONMENT_IS_PTHREAD == false)
-// 2) We could be the application main() thread proxied to worker. (with Emscripten -s PROXY_TO_WORKER=1) (ENVIRONMENT_IS_WORKER == true, ENVIRONMENT_IS_PTHREAD == false)
-// 3) We could be an application pthread running in a worker. (ENVIRONMENT_IS_WORKER == true and ENVIRONMENT_IS_PTHREAD == true)
-
-
-
-
-// `/` should be present at the end if `scriptDirectory` is not empty
-var scriptDirectory = '';
-function locateFile(path) {
- if (Module['locateFile']) {
- return Module['locateFile'](path, scriptDirectory);
- } else {
- return scriptDirectory + path;
- }
-}
-
-if (ENVIRONMENT_IS_NODE) {
- scriptDirectory = __dirname + '/';
-
- // Expose functionality in the same simple way that the shells work
- // Note that we pollute the global namespace here, otherwise we break in node
- var nodeFS;
- var nodePath;
-
- Module['read'] = function shell_read(filename, binary) {
- var ret;
- ret = tryParseAsDataURI(filename);
- if (!ret) {
- if (!nodeFS) nodeFS = require('fs');
- if (!nodePath) nodePath = require('path');
- filename = nodePath['normalize'](filename);
- ret = nodeFS['readFileSync'](filename);
- }
- return binary ? ret : ret.toString();
- };
-
- Module['readBinary'] = function readBinary(filename) {
- var ret = Module['read'](filename, true);
- if (!ret.buffer) {
- ret = new Uint8Array(ret);
- }
- assert(ret.buffer);
- return ret;
- };
-
- if (process['argv'].length > 1) {
- Module['thisProgram'] = process['argv'][1].replace(/\\/g, '/');
- }
-
- Module['arguments'] = process['argv'].slice(2);
-
- if (typeof module !== 'undefined') {
- module['exports'] = Module;
- }
-
- process['on']('uncaughtException', function(ex) {
- // suppress ExitStatus exceptions from showing an error
- if (!(ex instanceof ExitStatus)) {
- throw ex;
- }
- });
- // Currently node will swallow unhandled rejections, but this behavior is
- // deprecated, and in the future it will exit with error status.
- process['on']('unhandledRejection', abort);
-
- Module['quit'] = function(status) {
- process['exit'](status);
- };
-
- Module['inspect'] = function () { return '[Emscripten Module object]'; };
-} else
-if (ENVIRONMENT_IS_SHELL) {
-
-
- if (typeof read != 'undefined') {
- Module['read'] = function shell_read(f) {
- var data = tryParseAsDataURI(f);
- if (data) {
- return intArrayToString(data);
- }
- return read(f);
- };
- }
-
- Module['readBinary'] = function readBinary(f) {
- var data;
- data = tryParseAsDataURI(f);
- if (data) {
- return data;
- }
- if (typeof readbuffer === 'function') {
- return new Uint8Array(readbuffer(f));
- }
- data = read(f, 'binary');
- assert(typeof data === 'object');
- return data;
- };
-
- if (typeof scriptArgs != 'undefined') {
- Module['arguments'] = scriptArgs;
- } else if (typeof arguments != 'undefined') {
- Module['arguments'] = arguments;
- }
-
- if (typeof quit === 'function') {
- Module['quit'] = function(status) {
- quit(status);
- }
- }
-} else
-if (ENVIRONMENT_IS_WEB || ENVIRONMENT_IS_WORKER) {
- if (ENVIRONMENT_IS_WORKER) { // Check worker, not web, since window could be polyfilled
- scriptDirectory = self.location.href;
- } else if (document.currentScript) { // web
- scriptDirectory = document.currentScript.src;
- }
- // blob urls look like blob:http://site.com/etc/etc and we cannot infer anything from them.
- // otherwise, slice off the final part of the url to find the script directory.
- // if scriptDirectory does not contain a slash, lastIndexOf will return -1,
- // and scriptDirectory will correctly be replaced with an empty string.
- if (scriptDirectory.indexOf('blob:') !== 0) {
- scriptDirectory = scriptDirectory.substr(0, scriptDirectory.lastIndexOf('/')+1);
- } else {
- scriptDirectory = '';
- }
-
-
- Module['read'] = function shell_read(url) {
- try {
- var xhr = new XMLHttpRequest();
- xhr.open('GET', url, false);
- xhr.send(null);
- return xhr.responseText;
- } catch (err) {
- var data = tryParseAsDataURI(url);
- if (data) {
- return intArrayToString(data);
- }
- throw err;
- }
- };
-
- if (ENVIRONMENT_IS_WORKER) {
- Module['readBinary'] = function readBinary(url) {
- try {
- var xhr = new XMLHttpRequest();
- xhr.open('GET', url, false);
- xhr.responseType = 'arraybuffer';
- xhr.send(null);
- return new Uint8Array(xhr.response);
- } catch (err) {
- var data = tryParseAsDataURI(url);
- if (data) {
- return data;
- }
- throw err;
- }
- };
- }
-
- Module['readAsync'] = function readAsync(url, onload, onerror) {
- var xhr = new XMLHttpRequest();
- xhr.open('GET', url, true);
- xhr.responseType = 'arraybuffer';
- xhr.onload = function xhr_onload() {
- if (xhr.status == 200 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0
- onload(xhr.response);
- return;
- }
- var data = tryParseAsDataURI(url);
- if (data) {
- onload(data.buffer);
- return;
- }
- onerror();
- };
- xhr.onerror = onerror;
- xhr.send(null);
- };
-
- Module['setWindowTitle'] = function(title) { document.title = title };
-} else
-{
- throw new Error('environment detection error');
-}
-
-// Set up the out() and err() hooks, which are how we can print to stdout or
-// stderr, respectively.
-// If the user provided Module.print or printErr, use that. Otherwise,
-// console.log is checked first, as 'print' on the web will open a print dialogue
-// printErr is preferable to console.warn (works better in shells)
-// bind(console) is necessary to fix IE/Edge closed dev tools panel behavior.
-var out = Module['print'] || (typeof console !== 'undefined' ? console.log.bind(console) : (typeof print !== 'undefined' ? print : null));
-var err = Module['printErr'] || (typeof printErr !== 'undefined' ? printErr : ((typeof console !== 'undefined' && console.warn.bind(console)) || out));
-
-// Merge back in the overrides
-for (key in moduleOverrides) {
- if (moduleOverrides.hasOwnProperty(key)) {
- Module[key] = moduleOverrides[key];
- }
-}
-// Free the object hierarchy contained in the overrides, this lets the GC
-// reclaim data used e.g. in memoryInitializerRequest, which is a large typed array.
-moduleOverrides = undefined;
-
-// perform assertions in shell.js after we set up out() and err(), as otherwise if an assertion fails it cannot print the message
-assert(typeof Module['memoryInitializerPrefixURL'] === 'undefined', 'Module.memoryInitializerPrefixURL option was removed, use Module.locateFile instead');
-assert(typeof Module['pthreadMainPrefixURL'] === 'undefined', 'Module.pthreadMainPrefixURL option was removed, use Module.locateFile instead');
-assert(typeof Module['cdInitializerPrefixURL'] === 'undefined', 'Module.cdInitializerPrefixURL option was removed, use Module.locateFile instead');
-assert(typeof Module['filePackagePrefixURL'] === 'undefined', 'Module.filePackagePrefixURL option was removed, use Module.locateFile instead');
-
-
-
-// Copyright 2017 The Emscripten Authors. All rights reserved.
-// Emscripten is available under two separate licenses, the MIT license and the
-// University of Illinois/NCSA Open Source License. Both these licenses can be
-// found in the LICENSE file.
-
-// {{PREAMBLE_ADDITIONS}}
-
-var STACK_ALIGN = 16;
-
-// stack management, and other functionality that is provided by the compiled code,
-// should not be used before it is ready
-stackSave = stackRestore = stackAlloc = function() {
- abort('cannot use the stack before compiled code is ready to run, and has provided stack access');
-};
-
-function staticAlloc(size) {
- abort('staticAlloc is no longer available at runtime; instead, perform static allocations at compile time (using makeStaticAlloc)');
-}
-
-function dynamicAlloc(size) {
- assert(DYNAMICTOP_PTR);
- var ret = HEAP32[DYNAMICTOP_PTR>>2];
- var end = (ret + size + 15) & -16;
- if (end > _emscripten_get_heap_size()) {
- abort('failure to dynamicAlloc - memory growth etc. is not supported there, call malloc/sbrk directly');
- }
- HEAP32[DYNAMICTOP_PTR>>2] = end;
- return ret;
-}
-
-function alignMemory(size, factor) {
- if (!factor) factor = STACK_ALIGN; // stack alignment (16-byte) by default
- return Math.ceil(size / factor) * factor;
-}
-
-function getNativeTypeSize(type) {
- switch (type) {
- case 'i1': case 'i8': return 1;
- case 'i16': return 2;
- case 'i32': return 4;
- case 'i64': return 8;
- case 'float': return 4;
- case 'double': return 8;
- default: {
- if (type[type.length-1] === '*') {
- return 4; // A pointer
- } else if (type[0] === 'i') {
- var bits = parseInt(type.substr(1));
- assert(bits % 8 === 0, 'getNativeTypeSize invalid bits ' + bits + ', type ' + type);
- return bits / 8;
- } else {
- return 0;
- }
- }
- }
-}
-
-function warnOnce(text) {
- if (!warnOnce.shown) warnOnce.shown = {};
- if (!warnOnce.shown[text]) {
- warnOnce.shown[text] = 1;
- err(text);
- }
-}
-
-var asm2wasmImports = { // special asm2wasm imports
- "f64-rem": function(x, y) {
- return x % y;
- },
- "debugger": function() {
- debugger;
- }
-};
-
-
-
-var jsCallStartIndex = 1;
-var functionPointers = new Array(0);
-
-
-// 'sig' parameter is required for the llvm backend but only when func is not
-// already a WebAssembly function.
-function addFunction(func, sig) {
-
-
- var base = 0;
- for (var i = base; i < base + 0; i++) {
- if (!functionPointers[i]) {
- functionPointers[i] = func;
- return jsCallStartIndex + i;
- }
- }
- throw 'Finished up all reserved function pointers. Use a higher value for RESERVED_FUNCTION_POINTERS.';
-
-}
-
-function removeFunction(index) {
-
- functionPointers[index-jsCallStartIndex] = null;
-}
-
-var funcWrappers = {};
-
-function getFuncWrapper(func, sig) {
- if (!func) return; // on null pointer, return undefined
- assert(sig);
- if (!funcWrappers[sig]) {
- funcWrappers[sig] = {};
- }
- var sigCache = funcWrappers[sig];
- if (!sigCache[func]) {
- // optimize away arguments usage in common cases
- if (sig.length === 1) {
- sigCache[func] = function dynCall_wrapper() {
- return dynCall(sig, func);
- };
- } else if (sig.length === 2) {
- sigCache[func] = function dynCall_wrapper(arg) {
- return dynCall(sig, func, [arg]);
- };
- } else {
- // general case
- sigCache[func] = function dynCall_wrapper() {
- return dynCall(sig, func, Array.prototype.slice.call(arguments));
- };
- }
- }
- return sigCache[func];
-}
-
-
-function makeBigInt(low, high, unsigned) {
- return unsigned ? ((+((low>>>0)))+((+((high>>>0)))*4294967296.0)) : ((+((low>>>0)))+((+((high|0)))*4294967296.0));
-}
-
-function dynCall(sig, ptr, args) {
- if (args && args.length) {
- assert(args.length == sig.length-1);
- assert(('dynCall_' + sig) in Module, 'bad function pointer type - no table for sig \'' + sig + '\'');
- return Module['dynCall_' + sig].apply(null, [ptr].concat(args));
- } else {
- assert(sig.length == 1);
- assert(('dynCall_' + sig) in Module, 'bad function pointer type - no table for sig \'' + sig + '\'');
- return Module['dynCall_' + sig].call(null, ptr);
- }
-}
-
-var tempRet0 = 0;
-
-var setTempRet0 = function(value) {
- tempRet0 = value;
-}
-
-var getTempRet0 = function() {
- return tempRet0;
-}
-
-function getCompilerSetting(name) {
- throw 'You must build with -s RETAIN_COMPILER_SETTINGS=1 for getCompilerSetting or emscripten_get_compiler_setting to work';
-}
-
-var Runtime = {
- // helpful errors
- getTempRet0: function() { abort('getTempRet0() is now a top-level function, after removing the Runtime object. Remove "Runtime."') },
- staticAlloc: function() { abort('staticAlloc() is now a top-level function, after removing the Runtime object. Remove "Runtime."') },
- stackAlloc: function() { abort('stackAlloc() is now a top-level function, after removing the Runtime object. Remove "Runtime."') },
-};
-
-// The address globals begin at. Very low in memory, for code size and optimization opportunities.
-// Above 0 is static memory, starting with globals.
-// Then the stack.
-// Then 'dynamic' memory for sbrk.
-var GLOBAL_BASE = 8;
-
-
-
-
-// === Preamble library stuff ===
-
-// Documentation for the public APIs defined in this file must be updated in:
-// site/source/docs/api_reference/preamble.js.rst
-// A prebuilt local version of the documentation is available at:
-// site/build/text/docs/api_reference/preamble.js.txt
-// You can also build docs locally as HTML or other formats in site/
-// An online HTML version (which may be of a different version of Emscripten)
-// is up at http://kripken.github.io/emscripten-site/docs/api_reference/preamble.js.html
-
-
-
-
-
-/** @type {function(number, string, boolean=)} */
-function getValue(ptr, type, noSafe) {
- type = type || 'i8';
- if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit
- switch(type) {
- case 'i1': return HEAP8[((ptr)>>0)];
- case 'i8': return HEAP8[((ptr)>>0)];
- case 'i16': return HEAP16[((ptr)>>1)];
- case 'i32': return HEAP32[((ptr)>>2)];
- case 'i64': return HEAP32[((ptr)>>2)];
- case 'float': return HEAPF32[((ptr)>>2)];
- case 'double': return HEAPF64[((ptr)>>3)];
- default: abort('invalid type for getValue: ' + type);
- }
- return null;
-}
-
-
-
-
-// Wasm globals
-
-var wasmMemory;
-
-// Potentially used for direct table calls.
-var wasmTable;
-
-
-//========================================
-// Runtime essentials
-//========================================
-
-// whether we are quitting the application. no code should run after this.
-// set in exit() and abort()
-var ABORT = false;
-
-// set by exit() and abort(). Passed to 'onExit' handler.
-// NOTE: This is also used as the process return code code in shell environments
-// but only when noExitRuntime is false.
-var EXITSTATUS = 0;
-
-/** @type {function(*, string=)} */
-function assert(condition, text) {
- if (!condition) {
- abort('Assertion failed: ' + text);
- }
-}
-
-// Returns the C function with a specified identifier (for C++, you need to do manual name mangling)
-function getCFunc(ident) {
- var func = Module['_' + ident]; // closure exported function
- assert(func, 'Cannot call unknown function ' + ident + ', make sure it is exported');
- return func;
-}
-
-// C calling interface.
-function ccall(ident, returnType, argTypes, args, opts) {
- // For fast lookup of conversion functions
- var toC = {
- 'string': function(str) {
- var ret = 0;
- if (str !== null && str !== undefined && str !== 0) { // null string
- // at most 4 bytes per UTF-8 code point, +1 for the trailing '\0'
- var len = (str.length << 2) + 1;
- ret = stackAlloc(len);
- stringToUTF8(str, ret, len);
- }
- return ret;
- },
- 'array': function(arr) {
- var ret = stackAlloc(arr.length);
- writeArrayToMemory(arr, ret);
- return ret;
- }
- };
-
- function convertReturnValue(ret) {
- if (returnType === 'string') return UTF8ToString(ret);
- if (returnType === 'boolean') return Boolean(ret);
- return ret;
- }
-
- var func = getCFunc(ident);
- var cArgs = [];
- var stack = 0;
- assert(returnType !== 'array', 'Return type should not be "array".');
- if (args) {
- for (var i = 0; i < args.length; i++) {
- var converter = toC[argTypes[i]];
- if (converter) {
- if (stack === 0) stack = stackSave();
- cArgs[i] = converter(args[i]);
- } else {
- cArgs[i] = args[i];
- }
- }
- }
- var ret = func.apply(null, cArgs);
- ret = convertReturnValue(ret);
- if (stack !== 0) stackRestore(stack);
- return ret;
-}
-
-function cwrap(ident, returnType, argTypes, opts) {
- return function() {
- return ccall(ident, returnType, argTypes, arguments, opts);
- }
-}
-
-/** @type {function(number, number, string, boolean=)} */
-function setValue(ptr, value, type, noSafe) {
- type = type || 'i8';
- if (type.charAt(type.length-1) === '*') type = 'i32'; // pointers are 32-bit
- switch(type) {
- case 'i1': HEAP8[((ptr)>>0)]=value; break;
- case 'i8': HEAP8[((ptr)>>0)]=value; break;
- case 'i16': HEAP16[((ptr)>>1)]=value; break;
- case 'i32': HEAP32[((ptr)>>2)]=value; break;
- case 'i64': (tempI64 = [value>>>0,(tempDouble=value,(+(Math_abs(tempDouble))) >= 1.0 ? (tempDouble > 0.0 ? ((Math_min((+(Math_floor((tempDouble)/4294967296.0))), 4294967295.0))|0)>>>0 : (~~((+(Math_ceil((tempDouble - +(((~~(tempDouble)))>>>0))/4294967296.0)))))>>>0) : 0)],HEAP32[((ptr)>>2)]=tempI64[0],HEAP32[(((ptr)+(4))>>2)]=tempI64[1]); break;
- case 'float': HEAPF32[((ptr)>>2)]=value; break;
- case 'double': HEAPF64[((ptr)>>3)]=value; break;
- default: abort('invalid type for setValue: ' + type);
- }
-}
-
-var ALLOC_NORMAL = 0; // Tries to use _malloc()
-var ALLOC_STACK = 1; // Lives for the duration of the current function call
-var ALLOC_DYNAMIC = 2; // Cannot be freed except through sbrk
-var ALLOC_NONE = 3; // Do not allocate
-
-// allocate(): This is for internal use. You can use it yourself as well, but the interface
-// is a little tricky (see docs right below). The reason is that it is optimized
-// for multiple syntaxes to save space in generated code. So you should
-// normally not use allocate(), and instead allocate memory using _malloc(),
-// initialize it with setValue(), and so forth.
-// @slab: An array of data, or a number. If a number, then the size of the block to allocate,
-// in *bytes* (note that this is sometimes confusing: the next parameter does not
-// affect this!)
-// @types: Either an array of types, one for each byte (or 0 if no type at that position),
-// or a single type which is used for the entire block. This only matters if there
-// is initial data - if @slab is a number, then this does not matter at all and is
-// ignored.
-// @allocator: How to allocate memory, see ALLOC_*
-/** @type {function((TypedArray|Array|number), string, number, number=)} */
-function allocate(slab, types, allocator, ptr) {
- var zeroinit, size;
- if (typeof slab === 'number') {
- zeroinit = true;
- size = slab;
- } else {
- zeroinit = false;
- size = slab.length;
- }
-
- var singleType = typeof types === 'string' ? types : null;
-
- var ret;
- if (allocator == ALLOC_NONE) {
- ret = ptr;
- } else {
- ret = [_malloc,
- stackAlloc,
- dynamicAlloc][allocator](Math.max(size, singleType ? 1 : types.length));
- }
-
- if (zeroinit) {
- var stop;
- ptr = ret;
- assert((ret & 3) == 0);
- stop = ret + (size & ~3);
- for (; ptr < stop; ptr += 4) {
- HEAP32[((ptr)>>2)]=0;
- }
- stop = ret + size;
- while (ptr < stop) {
- HEAP8[((ptr++)>>0)]=0;
- }
- return ret;
- }
-
- if (singleType === 'i8') {
- if (slab.subarray || slab.slice) {
- HEAPU8.set(/** @type {!Uint8Array} */ (slab), ret);
- } else {
- HEAPU8.set(new Uint8Array(slab), ret);
- }
- return ret;
- }
-
- var i = 0, type, typeSize, previousType;
- while (i < size) {
- var curr = slab[i];
-
- type = singleType || types[i];
- if (type === 0) {
- i++;
- continue;
- }
- assert(type, 'Must know what type to store in allocate!');
-
- if (type == 'i64') type = 'i32'; // special case: we have one i32 here, and one i32 later
-
- setValue(ret+i, curr, type);
-
- // no need to look up size unless type changes, so cache it
- if (previousType !== type) {
- typeSize = getNativeTypeSize(type);
- previousType = type;
- }
- i += typeSize;
- }
-
- return ret;
-}
-
-// Allocate memory during any stage of startup - static memory early on, dynamic memory later, malloc when ready
-function getMemory(size) {
- if (!runtimeInitialized) return dynamicAlloc(size);
- return _malloc(size);
-}
-
-
-
-
-/** @type {function(number, number=)} */
-function Pointer_stringify(ptr, length) {
- abort("this function has been removed - you should use UTF8ToString(ptr, maxBytesToRead) instead!");
-}
-
-// Given a pointer 'ptr' to a null-terminated ASCII-encoded string in the emscripten HEAP, returns
-// a copy of that string as a Javascript String object.
-
-function AsciiToString(ptr) {
- var str = '';
- while (1) {
- var ch = HEAPU8[((ptr++)>>0)];
- if (!ch) return str;
- str += String.fromCharCode(ch);
- }
-}
-
-// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr',
-// null-terminated and encoded in ASCII form. The copy will require at most str.length+1 bytes of space in the HEAP.
-
-function stringToAscii(str, outPtr) {
- return writeAsciiToMemory(str, outPtr, false);
-}
-
-
-// Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the given array that contains uint8 values, returns
-// a copy of that string as a Javascript String object.
-
-var UTF8Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf8') : undefined;
-
-/**
- * @param {number} idx
- * @param {number=} maxBytesToRead
- * @return {string}
- */
-function UTF8ArrayToString(u8Array, idx, maxBytesToRead) {
- var endIdx = idx + maxBytesToRead;
- var endPtr = idx;
- // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself.
- // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage.
- // (As a tiny code save trick, compare endPtr against endIdx using a negation, so that undefined means Infinity)
- while (u8Array[endPtr] && !(endPtr >= endIdx)) ++endPtr;
-
- if (endPtr - idx > 16 && u8Array.subarray && UTF8Decoder) {
- return UTF8Decoder.decode(u8Array.subarray(idx, endPtr));
- } else {
- var str = '';
- // If building with TextDecoder, we have already computed the string length above, so test loop end condition against that
- while (idx < endPtr) {
- // For UTF8 byte structure, see:
- // http://en.wikipedia.org/wiki/UTF-8#Description
- // https://www.ietf.org/rfc/rfc2279.txt
- // https://tools.ietf.org/html/rfc3629
- var u0 = u8Array[idx++];
- if (!(u0 & 0x80)) { str += String.fromCharCode(u0); continue; }
- var u1 = u8Array[idx++] & 63;
- if ((u0 & 0xE0) == 0xC0) { str += String.fromCharCode(((u0 & 31) << 6) | u1); continue; }
- var u2 = u8Array[idx++] & 63;
- if ((u0 & 0xF0) == 0xE0) {
- u0 = ((u0 & 15) << 12) | (u1 << 6) | u2;
- } else {
- if ((u0 & 0xF8) != 0xF0) warnOnce('Invalid UTF-8 leading byte 0x' + u0.toString(16) + ' encountered when deserializing a UTF-8 string on the asm.js/wasm heap to a JS string!');
- u0 = ((u0 & 7) << 18) | (u1 << 12) | (u2 << 6) | (u8Array[idx++] & 63);
- }
-
- if (u0 < 0x10000) {
- str += String.fromCharCode(u0);
- } else {
- var ch = u0 - 0x10000;
- str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF));
- }
- }
- }
- return str;
-}
-
-// Given a pointer 'ptr' to a null-terminated UTF8-encoded string in the emscripten HEAP, returns a
-// copy of that string as a Javascript String object.
-// maxBytesToRead: an optional length that specifies the maximum number of bytes to read. You can omit
-// this parameter to scan the string until the first \0 byte. If maxBytesToRead is
-// passed, and the string at [ptr, ptr+maxBytesToReadr[ contains a null byte in the
-// middle, then the string will cut short at that byte index (i.e. maxBytesToRead will
-// not produce a string of exact length [ptr, ptr+maxBytesToRead[)
-// N.B. mixing frequent uses of UTF8ToString() with and without maxBytesToRead may
-// throw JS JIT optimizations off, so it is worth to consider consistently using one
-// style or the other.
-/**
- * @param {number} ptr
- * @param {number=} maxBytesToRead
- * @return {string}
- */
-function UTF8ToString(ptr, maxBytesToRead) {
- return ptr ? UTF8ArrayToString(HEAPU8, ptr, maxBytesToRead) : '';
-}
-
-// Copies the given Javascript String object 'str' to the given byte array at address 'outIdx',
-// encoded in UTF8 form and null-terminated. The copy will require at most str.length*4+1 bytes of space in the HEAP.
-// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write.
-// Parameters:
-// str: the Javascript string to copy.
-// outU8Array: the array to copy to. Each index in this array is assumed to be one 8-byte element.
-// outIdx: The starting offset in the array to begin the copying.
-// maxBytesToWrite: The maximum number of bytes this function can write to the array.
-// This count should include the null terminator,
-// i.e. if maxBytesToWrite=1, only the null terminator will be written and nothing else.
-// maxBytesToWrite=0 does not write any bytes to the output, not even the null terminator.
-// Returns the number of bytes written, EXCLUDING the null terminator.
-
-function stringToUTF8Array(str, outU8Array, outIdx, maxBytesToWrite) {
- if (!(maxBytesToWrite > 0)) // Parameter maxBytesToWrite is not optional. Negative values, 0, null, undefined and false each don't write out any bytes.
- return 0;
-
- var startIdx = outIdx;
- var endIdx = outIdx + maxBytesToWrite - 1; // -1 for string null terminator.
- for (var i = 0; i < str.length; ++i) {
- // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! So decode UTF16->UTF32->UTF8.
- // See http://unicode.org/faq/utf_bom.html#utf16-3
- // For UTF8 byte structure, see http://en.wikipedia.org/wiki/UTF-8#Description and https://www.ietf.org/rfc/rfc2279.txt and https://tools.ietf.org/html/rfc3629
- var u = str.charCodeAt(i); // possibly a lead surrogate
- if (u >= 0xD800 && u <= 0xDFFF) {
- var u1 = str.charCodeAt(++i);
- u = 0x10000 + ((u & 0x3FF) << 10) | (u1 & 0x3FF);
- }
- if (u <= 0x7F) {
- if (outIdx >= endIdx) break;
- outU8Array[outIdx++] = u;
- } else if (u <= 0x7FF) {
- if (outIdx + 1 >= endIdx) break;
- outU8Array[outIdx++] = 0xC0 | (u >> 6);
- outU8Array[outIdx++] = 0x80 | (u & 63);
- } else if (u <= 0xFFFF) {
- if (outIdx + 2 >= endIdx) break;
- outU8Array[outIdx++] = 0xE0 | (u >> 12);
- outU8Array[outIdx++] = 0x80 | ((u >> 6) & 63);
- outU8Array[outIdx++] = 0x80 | (u & 63);
- } else {
- if (outIdx + 3 >= endIdx) break;
- if (u >= 0x200000) warnOnce('Invalid Unicode code point 0x' + u.toString(16) + ' encountered when serializing a JS string to an UTF-8 string on the asm.js/wasm heap! (Valid unicode code points should be in range 0-0x1FFFFF).');
- outU8Array[outIdx++] = 0xF0 | (u >> 18);
- outU8Array[outIdx++] = 0x80 | ((u >> 12) & 63);
- outU8Array[outIdx++] = 0x80 | ((u >> 6) & 63);
- outU8Array[outIdx++] = 0x80 | (u & 63);
- }
- }
- // Null-terminate the pointer to the buffer.
- outU8Array[outIdx] = 0;
- return outIdx - startIdx;
-}
-
-// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr',
-// null-terminated and encoded in UTF8 form. The copy will require at most str.length*4+1 bytes of space in the HEAP.
-// Use the function lengthBytesUTF8 to compute the exact number of bytes (excluding null terminator) that this function will write.
-// Returns the number of bytes written, EXCLUDING the null terminator.
-
-function stringToUTF8(str, outPtr, maxBytesToWrite) {
- assert(typeof maxBytesToWrite == 'number', 'stringToUTF8(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!');
- return stringToUTF8Array(str, HEAPU8,outPtr, maxBytesToWrite);
-}
-
-// Returns the number of bytes the given Javascript string takes if encoded as a UTF8 byte array, EXCLUDING the null terminator byte.
-function lengthBytesUTF8(str) {
- var len = 0;
- for (var i = 0; i < str.length; ++i) {
- // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! So decode UTF16->UTF32->UTF8.
- // See http://unicode.org/faq/utf_bom.html#utf16-3
- var u = str.charCodeAt(i); // possibly a lead surrogate
- if (u >= 0xD800 && u <= 0xDFFF) u = 0x10000 + ((u & 0x3FF) << 10) | (str.charCodeAt(++i) & 0x3FF);
- if (u <= 0x7F) ++len;
- else if (u <= 0x7FF) len += 2;
- else if (u <= 0xFFFF) len += 3;
- else len += 4;
- }
- return len;
-}
-
-
-// Given a pointer 'ptr' to a null-terminated UTF16LE-encoded string in the emscripten HEAP, returns
-// a copy of that string as a Javascript String object.
-
-var UTF16Decoder = typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-16le') : undefined;
-function UTF16ToString(ptr) {
- assert(ptr % 2 == 0, 'Pointer passed to UTF16ToString must be aligned to two bytes!');
- var endPtr = ptr;
- // TextDecoder needs to know the byte length in advance, it doesn't stop on null terminator by itself.
- // Also, use the length info to avoid running tiny strings through TextDecoder, since .subarray() allocates garbage.
- var idx = endPtr >> 1;
- while (HEAP16[idx]) ++idx;
- endPtr = idx << 1;
-
- if (endPtr - ptr > 32 && UTF16Decoder) {
- return UTF16Decoder.decode(HEAPU8.subarray(ptr, endPtr));
- } else {
- var i = 0;
-
- var str = '';
- while (1) {
- var codeUnit = HEAP16[(((ptr)+(i*2))>>1)];
- if (codeUnit == 0) return str;
- ++i;
- // fromCharCode constructs a character from a UTF-16 code unit, so we can pass the UTF16 string right through.
- str += String.fromCharCode(codeUnit);
- }
- }
-}
-
-// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr',
-// null-terminated and encoded in UTF16 form. The copy will require at most str.length*4+2 bytes of space in the HEAP.
-// Use the function lengthBytesUTF16() to compute the exact number of bytes (excluding null terminator) that this function will write.
-// Parameters:
-// str: the Javascript string to copy.
-// outPtr: Byte address in Emscripten HEAP where to write the string to.
-// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null
-// terminator, i.e. if maxBytesToWrite=2, only the null terminator will be written and nothing else.
-// maxBytesToWrite<2 does not write any bytes to the output, not even the null terminator.
-// Returns the number of bytes written, EXCLUDING the null terminator.
-
-function stringToUTF16(str, outPtr, maxBytesToWrite) {
- assert(outPtr % 2 == 0, 'Pointer passed to stringToUTF16 must be aligned to two bytes!');
- assert(typeof maxBytesToWrite == 'number', 'stringToUTF16(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!');
- // Backwards compatibility: if max bytes is not specified, assume unsafe unbounded write is allowed.
- if (maxBytesToWrite === undefined) {
- maxBytesToWrite = 0x7FFFFFFF;
- }
- if (maxBytesToWrite < 2) return 0;
- maxBytesToWrite -= 2; // Null terminator.
- var startPtr = outPtr;
- var numCharsToWrite = (maxBytesToWrite < str.length*2) ? (maxBytesToWrite / 2) : str.length;
- for (var i = 0; i < numCharsToWrite; ++i) {
- // charCodeAt returns a UTF-16 encoded code unit, so it can be directly written to the HEAP.
- var codeUnit = str.charCodeAt(i); // possibly a lead surrogate
- HEAP16[((outPtr)>>1)]=codeUnit;
- outPtr += 2;
- }
- // Null-terminate the pointer to the HEAP.
- HEAP16[((outPtr)>>1)]=0;
- return outPtr - startPtr;
-}
-
-// Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte.
-
-function lengthBytesUTF16(str) {
- return str.length*2;
-}
-
-function UTF32ToString(ptr) {
- assert(ptr % 4 == 0, 'Pointer passed to UTF32ToString must be aligned to four bytes!');
- var i = 0;
-
- var str = '';
- while (1) {
- var utf32 = HEAP32[(((ptr)+(i*4))>>2)];
- if (utf32 == 0)
- return str;
- ++i;
- // Gotcha: fromCharCode constructs a character from a UTF-16 encoded code (pair), not from a Unicode code point! So encode the code point to UTF-16 for constructing.
- // See http://unicode.org/faq/utf_bom.html#utf16-3
- if (utf32 >= 0x10000) {
- var ch = utf32 - 0x10000;
- str += String.fromCharCode(0xD800 | (ch >> 10), 0xDC00 | (ch & 0x3FF));
- } else {
- str += String.fromCharCode(utf32);
- }
- }
-}
-
-// Copies the given Javascript String object 'str' to the emscripten HEAP at address 'outPtr',
-// null-terminated and encoded in UTF32 form. The copy will require at most str.length*4+4 bytes of space in the HEAP.
-// Use the function lengthBytesUTF32() to compute the exact number of bytes (excluding null terminator) that this function will write.
-// Parameters:
-// str: the Javascript string to copy.
-// outPtr: Byte address in Emscripten HEAP where to write the string to.
-// maxBytesToWrite: The maximum number of bytes this function can write to the array. This count should include the null
-// terminator, i.e. if maxBytesToWrite=4, only the null terminator will be written and nothing else.
-// maxBytesToWrite<4 does not write any bytes to the output, not even the null terminator.
-// Returns the number of bytes written, EXCLUDING the null terminator.
-
-function stringToUTF32(str, outPtr, maxBytesToWrite) {
- assert(outPtr % 4 == 0, 'Pointer passed to stringToUTF32 must be aligned to four bytes!');
- assert(typeof maxBytesToWrite == 'number', 'stringToUTF32(str, outPtr, maxBytesToWrite) is missing the third parameter that specifies the length of the output buffer!');
- // Backwards compatibility: if max bytes is not specified, assume unsafe unbounded write is allowed.
- if (maxBytesToWrite === undefined) {
- maxBytesToWrite = 0x7FFFFFFF;
- }
- if (maxBytesToWrite < 4) return 0;
- var startPtr = outPtr;
- var endPtr = startPtr + maxBytesToWrite - 4;
- for (var i = 0; i < str.length; ++i) {
- // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap.
- // See http://unicode.org/faq/utf_bom.html#utf16-3
- var codeUnit = str.charCodeAt(i); // possibly a lead surrogate
- if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) {
- var trailSurrogate = str.charCodeAt(++i);
- codeUnit = 0x10000 + ((codeUnit & 0x3FF) << 10) | (trailSurrogate & 0x3FF);
- }
- HEAP32[((outPtr)>>2)]=codeUnit;
- outPtr += 4;
- if (outPtr + 4 > endPtr) break;
- }
- // Null-terminate the pointer to the HEAP.
- HEAP32[((outPtr)>>2)]=0;
- return outPtr - startPtr;
-}
-
-// Returns the number of bytes the given Javascript string takes if encoded as a UTF16 byte array, EXCLUDING the null terminator byte.
-
-function lengthBytesUTF32(str) {
- var len = 0;
- for (var i = 0; i < str.length; ++i) {
- // Gotcha: charCodeAt returns a 16-bit word that is a UTF-16 encoded code unit, not a Unicode code point of the character! We must decode the string to UTF-32 to the heap.
- // See http://unicode.org/faq/utf_bom.html#utf16-3
- var codeUnit = str.charCodeAt(i);
- if (codeUnit >= 0xD800 && codeUnit <= 0xDFFF) ++i; // possibly a lead surrogate, so skip over the tail surrogate.
- len += 4;
- }
-
- return len;
-}
-
-// Allocate heap space for a JS string, and write it there.
-// It is the responsibility of the caller to free() that memory.
-function allocateUTF8(str) {
- var size = lengthBytesUTF8(str) + 1;
- var ret = _malloc(size);
- if (ret) stringToUTF8Array(str, HEAP8, ret, size);
- return ret;
-}
-
-// Allocate stack space for a JS string, and write it there.
-function allocateUTF8OnStack(str) {
- var size = lengthBytesUTF8(str) + 1;
- var ret = stackAlloc(size);
- stringToUTF8Array(str, HEAP8, ret, size);
- return ret;
-}
-
-// Deprecated: This function should not be called because it is unsafe and does not provide
-// a maximum length limit of how many bytes it is allowed to write. Prefer calling the
-// function stringToUTF8Array() instead, which takes in a maximum length that can be used
-// to be secure from out of bounds writes.
-/** @deprecated */
-function writeStringToMemory(string, buffer, dontAddNull) {
- warnOnce('writeStringToMemory is deprecated and should not be called! Use stringToUTF8() instead!');
-
- var /** @type {number} */ lastChar, /** @type {number} */ end;
- if (dontAddNull) {
- // stringToUTF8Array always appends null. If we don't want to do that, remember the
- // character that existed at the location where the null will be placed, and restore
- // that after the write (below).
- end = buffer + lengthBytesUTF8(string);
- lastChar = HEAP8[end];
- }
- stringToUTF8(string, buffer, Infinity);
- if (dontAddNull) HEAP8[end] = lastChar; // Restore the value under the null character.
-}
-
-function writeArrayToMemory(array, buffer) {
- assert(array.length >= 0, 'writeArrayToMemory array must have a length (should be an array or typed array)')
- HEAP8.set(array, buffer);
-}
-
-function writeAsciiToMemory(str, buffer, dontAddNull) {
- for (var i = 0; i < str.length; ++i) {
- assert(str.charCodeAt(i) === str.charCodeAt(i)&0xff);
- HEAP8[((buffer++)>>0)]=str.charCodeAt(i);
- }
- // Null-terminate the pointer to the HEAP.
- if (!dontAddNull) HEAP8[((buffer)>>0)]=0;
-}
-
-
-
-
-
-function demangle(func) {
- return func;
-}
-
-function demangleAll(text) {
- var regex =
- /__Z[\w\d_]+/g;
- return text.replace(regex,
- function(x) {
- var y = demangle(x);
- return x === y ? x : (y + ' [' + x + ']');
- });
-}
-
-function jsStackTrace() {
- var err = new Error();
- if (!err.stack) {
- // IE10+ special cases: It does have callstack info, but it is only populated if an Error object is thrown,
- // so try that as a special-case.
- try {
- throw new Error(0);
- } catch(e) {
- err = e;
- }
- if (!err.stack) {
- return '(no stack trace available)';
- }
- }
- return err.stack.toString();
-}
-
-function stackTrace() {
- var js = jsStackTrace();
- if (Module['extraStackTrace']) js += '\n' + Module['extraStackTrace']();
- return demangleAll(js);
-}
-
-
-
-// Memory management
-
-var PAGE_SIZE = 16384;
-var WASM_PAGE_SIZE = 65536;
-var ASMJS_PAGE_SIZE = 16777216;
-
-function alignUp(x, multiple) {
- if (x % multiple > 0) {
- x += multiple - (x % multiple);
- }
- return x;
-}
-
-var HEAP,
-/** @type {ArrayBuffer} */
- buffer,
-/** @type {Int8Array} */
- HEAP8,
-/** @type {Uint8Array} */
- HEAPU8,
-/** @type {Int16Array} */
- HEAP16,
-/** @type {Uint16Array} */
- HEAPU16,
-/** @type {Int32Array} */
- HEAP32,
-/** @type {Uint32Array} */
- HEAPU32,
-/** @type {Float32Array} */
- HEAPF32,
-/** @type {Float64Array} */
- HEAPF64;
-
-function updateGlobalBufferViews() {
- Module['HEAP8'] = HEAP8 = new Int8Array(buffer);
- Module['HEAP16'] = HEAP16 = new Int16Array(buffer);
- Module['HEAP32'] = HEAP32 = new Int32Array(buffer);
- Module['HEAPU8'] = HEAPU8 = new Uint8Array(buffer);
- Module['HEAPU16'] = HEAPU16 = new Uint16Array(buffer);
- Module['HEAPU32'] = HEAPU32 = new Uint32Array(buffer);
- Module['HEAPF32'] = HEAPF32 = new Float32Array(buffer);
- Module['HEAPF64'] = HEAPF64 = new Float64Array(buffer);
-}
-
-
-var STATIC_BASE = 8,
- STACK_BASE = 1952,
- STACKTOP = STACK_BASE,
- STACK_MAX = 5244832,
- DYNAMIC_BASE = 5244832,
- DYNAMICTOP_PTR = 1920;
-
-assert(STACK_BASE % 16 === 0, 'stack must start aligned');
-assert(DYNAMIC_BASE % 16 === 0, 'heap must start aligned');
-
-
-
-var TOTAL_STACK = 5242880;
-if (Module['TOTAL_STACK']) assert(TOTAL_STACK === Module['TOTAL_STACK'], 'the stack size can no longer be determined at runtime')
-
-var INITIAL_TOTAL_MEMORY = Module['TOTAL_MEMORY'] || 16777216;
-if (INITIAL_TOTAL_MEMORY < TOTAL_STACK) err('TOTAL_MEMORY should be larger than TOTAL_STACK, was ' + INITIAL_TOTAL_MEMORY + '! (TOTAL_STACK=' + TOTAL_STACK + ')');
-
-// Initialize the runtime's memory
-// check for full engine support (use string 'subarray' to avoid closure compiler confusion)
-assert(typeof Int32Array !== 'undefined' && typeof Float64Array !== 'undefined' && Int32Array.prototype.subarray !== undefined && Int32Array.prototype.set !== undefined,
- 'JS engine does not provide full typed array support');
-
-
-
-
-
-
-
-// Use a provided buffer, if there is one, or else allocate a new one
-if (Module['buffer']) {
- buffer = Module['buffer'];
- assert(buffer.byteLength === INITIAL_TOTAL_MEMORY, 'provided buffer should be ' + INITIAL_TOTAL_MEMORY + ' bytes, but it is ' + buffer.byteLength);
-} else {
- // Use a WebAssembly memory where available
- {
- buffer = new ArrayBuffer(INITIAL_TOTAL_MEMORY);
- }
- assert(buffer.byteLength === INITIAL_TOTAL_MEMORY);
-}
-updateGlobalBufferViews();
-
-
-HEAP32[DYNAMICTOP_PTR>>2] = DYNAMIC_BASE;
-
-
-// Initializes the stack cookie. Called at the startup of main and at the startup of each thread in pthreads mode.
-function writeStackCookie() {
- assert((STACK_MAX & 3) == 0);
- HEAPU32[(STACK_MAX >> 2)-1] = 0x02135467;
- HEAPU32[(STACK_MAX >> 2)-2] = 0x89BACDFE;
-}
-
-function checkStackCookie() {
- if (HEAPU32[(STACK_MAX >> 2)-1] != 0x02135467 || HEAPU32[(STACK_MAX >> 2)-2] != 0x89BACDFE) {
- abort('Stack overflow! Stack cookie has been overwritten, expected hex dwords 0x89BACDFE and 0x02135467, but received 0x' + HEAPU32[(STACK_MAX >> 2)-2].toString(16) + ' ' + HEAPU32[(STACK_MAX >> 2)-1].toString(16));
- }
- // Also test the global address 0 for integrity.
- if (HEAP32[0] !== 0x63736d65 /* 'emsc' */) abort('Runtime error: The application has corrupted its heap memory area (address zero)!');
-}
-
-function abortStackOverflow(allocSize) {
- abort('Stack overflow! Attempted to allocate ' + allocSize + ' bytes on the stack, but stack has only ' + (STACK_MAX - stackSave() + allocSize) + ' bytes available!');
-}
-
-
- HEAP32[0] = 0x63736d65; /* 'emsc' */
-
-
-
-// Endianness check (note: assumes compiler arch was little-endian)
-HEAP16[1] = 0x6373;
-if (HEAPU8[2] !== 0x73 || HEAPU8[3] !== 0x63) throw 'Runtime error: expected the system to be little-endian!';
-
-function callRuntimeCallbacks(callbacks) {
- while(callbacks.length > 0) {
- var callback = callbacks.shift();
- if (typeof callback == 'function') {
- callback();
- continue;
- }
- var func = callback.func;
- if (typeof func === 'number') {
- if (callback.arg === undefined) {
- Module['dynCall_v'](func);
- } else {
- Module['dynCall_vi'](func, callback.arg);
- }
- } else {
- func(callback.arg === undefined ? null : callback.arg);
- }
- }
-}
-
-var __ATPRERUN__ = []; // functions called before the runtime is initialized
-var __ATINIT__ = []; // functions called during startup
-var __ATMAIN__ = []; // functions called when main() is to be run
-var __ATEXIT__ = []; // functions called during shutdown
-var __ATPOSTRUN__ = []; // functions called after the main() is called
-
-var runtimeInitialized = false;
-var runtimeExited = false;
-
-
-function preRun() {
- // compatibility - merge in anything from Module['preRun'] at this time
- if (Module['preRun']) {
- if (typeof Module['preRun'] == 'function') Module['preRun'] = [Module['preRun']];
- while (Module['preRun'].length) {
- addOnPreRun(Module['preRun'].shift());
- }
- }
- callRuntimeCallbacks(__ATPRERUN__);
-}
-
-function ensureInitRuntime() {
- checkStackCookie();
- if (runtimeInitialized) return;
- runtimeInitialized = true;
-
- callRuntimeCallbacks(__ATINIT__);
-}
-
-function preMain() {
- checkStackCookie();
-
- callRuntimeCallbacks(__ATMAIN__);
-}
-
-function exitRuntime() {
- checkStackCookie();
- callRuntimeCallbacks(__ATEXIT__);
-
- runtimeExited = true;
-}
-
-function postRun() {
- checkStackCookie();
- // compatibility - merge in anything from Module['postRun'] at this time
- if (Module['postRun']) {
- if (typeof Module['postRun'] == 'function') Module['postRun'] = [Module['postRun']];
- while (Module['postRun'].length) {
- addOnPostRun(Module['postRun'].shift());
- }
- }
- callRuntimeCallbacks(__ATPOSTRUN__);
-}
-
-function addOnPreRun(cb) {
- __ATPRERUN__.unshift(cb);
-}
-
-function addOnInit(cb) {
- __ATINIT__.unshift(cb);
-}
-
-function addOnPreMain(cb) {
- __ATMAIN__.unshift(cb);
-}
-
-function addOnExit(cb) {
- __ATEXIT__.unshift(cb);
-}
-
-function addOnPostRun(cb) {
- __ATPOSTRUN__.unshift(cb);
-}
-
-function unSign(value, bits, ignore) {
- if (value >= 0) {
- return value;
- }
- return bits <= 32 ? 2*Math.abs(1 << (bits-1)) + value // Need some trickery, since if bits == 32, we are right at the limit of the bits JS uses in bitshifts
- : Math.pow(2, bits) + value;
-}
-function reSign(value, bits, ignore) {
- if (value <= 0) {
- return value;
- }
- var half = bits <= 32 ? Math.abs(1 << (bits-1)) // abs is needed if bits == 32
- : Math.pow(2, bits-1);
- if (value >= half && (bits <= 32 || value > half)) { // for huge values, we can hit the precision limit and always get true here. so don't do that
- // but, in general there is no perfect solution here. With 64-bit ints, we get rounding and errors
- // TODO: In i64 mode 1, resign the two parts separately and safely
- value = -2*half + value; // Cannot bitshift half, as it may be at the limit of the bits JS uses in bitshifts
- }
- return value;
-}
-
-
-assert(Math.imul, 'This browser does not support Math.imul(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
-assert(Math.fround, 'This browser does not support Math.fround(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
-assert(Math.clz32, 'This browser does not support Math.clz32(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
-assert(Math.trunc, 'This browser does not support Math.trunc(), build with LEGACY_VM_SUPPORT or POLYFILL_OLD_MATH_FUNCTIONS to add in a polyfill');
-
-var Math_abs = Math.abs;
-var Math_cos = Math.cos;
-var Math_sin = Math.sin;
-var Math_tan = Math.tan;
-var Math_acos = Math.acos;
-var Math_asin = Math.asin;
-var Math_atan = Math.atan;
-var Math_atan2 = Math.atan2;
-var Math_exp = Math.exp;
-var Math_log = Math.log;
-var Math_sqrt = Math.sqrt;
-var Math_ceil = Math.ceil;
-var Math_floor = Math.floor;
-var Math_pow = Math.pow;
-var Math_imul = Math.imul;
-var Math_fround = Math.fround;
-var Math_round = Math.round;
-var Math_min = Math.min;
-var Math_max = Math.max;
-var Math_clz32 = Math.clz32;
-var Math_trunc = Math.trunc;
-
-
-
-// A counter of dependencies for calling run(). If we need to
-// do asynchronous work before running, increment this and
-// decrement it. Incrementing must happen in a place like
-// Module.preRun (used by emcc to add file preloading).
-// Note that you can add dependencies in preRun, even though
-// it happens right before run - run will be postponed until
-// the dependencies are met.
-var runDependencies = 0;
-var runDependencyWatcher = null;
-var dependenciesFulfilled = null; // overridden to take different actions when all run dependencies are fulfilled
-var runDependencyTracking = {};
-
-function getUniqueRunDependency(id) {
- var orig = id;
- while (1) {
- if (!runDependencyTracking[id]) return id;
- id = orig + Math.random();
- }
- return id;
-}
-
-function addRunDependency(id) {
- runDependencies++;
- if (Module['monitorRunDependencies']) {
- Module['monitorRunDependencies'](runDependencies);
- }
- if (id) {
- assert(!runDependencyTracking[id]);
- runDependencyTracking[id] = 1;
- if (runDependencyWatcher === null && typeof setInterval !== 'undefined') {
- // Check for missing dependencies every few seconds
- runDependencyWatcher = setInterval(function() {
- if (ABORT) {
- clearInterval(runDependencyWatcher);
- runDependencyWatcher = null;
- return;
- }
- var shown = false;
- for (var dep in runDependencyTracking) {
- if (!shown) {
- shown = true;
- err('still waiting on run dependencies:');
- }
- err('dependency: ' + dep);
- }
- if (shown) {
- err('(end of list)');
- }
- }, 10000);
- }
- } else {
- err('warning: run dependency added without ID');
- }
-}
-
-function removeRunDependency(id) {
- runDependencies--;
- if (Module['monitorRunDependencies']) {
- Module['monitorRunDependencies'](runDependencies);
- }
- if (id) {
- assert(runDependencyTracking[id]);
- delete runDependencyTracking[id];
- } else {
- err('warning: run dependency removed without ID');
- }
- if (runDependencies == 0) {
- if (runDependencyWatcher !== null) {
- clearInterval(runDependencyWatcher);
- runDependencyWatcher = null;
- }
- if (dependenciesFulfilled) {
- var callback = dependenciesFulfilled;
- dependenciesFulfilled = null;
- callback(); // can add another dependenciesFulfilled
- }
- }
-}
-
-Module["preloadedImages"] = {}; // maps url to image data
-Module["preloadedAudios"] = {}; // maps url to audio data
-
-
-var memoryInitializer = null;
-
-
-
-// show errors on likely calls to FS when it was not included
-var FS = {
- error: function() {
- abort('Filesystem support (FS) was not included. The problem is that you are using files from JS, but files were not used from C/C++, so filesystem support was not auto-included. You can force-include filesystem support with -s FORCE_FILESYSTEM=1');
- },
- init: function() { FS.error() },
- createDataFile: function() { FS.error() },
- createPreloadedFile: function() { FS.error() },
- createLazyFile: function() { FS.error() },
- open: function() { FS.error() },
- mkdev: function() { FS.error() },
- registerDevice: function() { FS.error() },
- analyzePath: function() { FS.error() },
- loadFilesFromDB: function() { FS.error() },
-
- ErrnoError: function ErrnoError() { FS.error() },
-};
-Module['FS_createDataFile'] = FS.createDataFile;
-Module['FS_createPreloadedFile'] = FS.createPreloadedFile;
-
-
-
-// Copyright 2017 The Emscripten Authors. All rights reserved.
-// Emscripten is available under two separate licenses, the MIT license and the
-// University of Illinois/NCSA Open Source License. Both these licenses can be
-// found in the LICENSE file.
-
-// Prefix of data URIs emitted by SINGLE_FILE and related options.
-var dataURIPrefix = 'data:application/octet-stream;base64,';
-
-// Indicates whether filename is a base64 data URI.
-function isDataURI(filename) {
- return String.prototype.startsWith ?
- filename.startsWith(dataURIPrefix) :
- filename.indexOf(dataURIPrefix) === 0;
-}
-
-
-
-
-
-// === Body ===
-
-var ASM_CONSTS = [];
-
-
-
-
-
-// STATICTOP = STATIC_BASE + 1944;
-/* global initializers */ /*__ATINIT__.push();*/
-
-
-memoryInitializer = "data:application/octet-stream;base64,AAAAAAAAAAAFAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAwAAALgAAAAABAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAK/////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQ";
-
-
-
-
-
-/* no memory initializer */
-var tempDoublePtr = 1936
-assert(tempDoublePtr % 8 == 0);
-
-function copyTempFloat(ptr) { // functions, because inlining this code increases code size too much
- HEAP8[tempDoublePtr] = HEAP8[ptr];
- HEAP8[tempDoublePtr+1] = HEAP8[ptr+1];
- HEAP8[tempDoublePtr+2] = HEAP8[ptr+2];
- HEAP8[tempDoublePtr+3] = HEAP8[ptr+3];
-}
-
-function copyTempDouble(ptr) {
- HEAP8[tempDoublePtr] = HEAP8[ptr];
- HEAP8[tempDoublePtr+1] = HEAP8[ptr+1];
- HEAP8[tempDoublePtr+2] = HEAP8[ptr+2];
- HEAP8[tempDoublePtr+3] = HEAP8[ptr+3];
- HEAP8[tempDoublePtr+4] = HEAP8[ptr+4];
- HEAP8[tempDoublePtr+5] = HEAP8[ptr+5];
- HEAP8[tempDoublePtr+6] = HEAP8[ptr+6];
- HEAP8[tempDoublePtr+7] = HEAP8[ptr+7];
-}
-
-// {{PRE_LIBRARY}}
-
-
- function ___lock() {}
-
-
-
- var PATH={splitPath:function (filename) {
- var splitPathRe = /^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/;
- return splitPathRe.exec(filename).slice(1);
- },normalizeArray:function (parts, allowAboveRoot) {
- // if the path tries to go above the root, `up` ends up > 0
- var up = 0;
- for (var i = parts.length - 1; i >= 0; i--) {
- var last = parts[i];
- if (last === '.') {
- parts.splice(i, 1);
- } else if (last === '..') {
- parts.splice(i, 1);
- up++;
- } else if (up) {
- parts.splice(i, 1);
- up--;
- }
- }
- // if the path is allowed to go above the root, restore leading ..s
- if (allowAboveRoot) {
- for (; up; up--) {
- parts.unshift('..');
- }
- }
- return parts;
- },normalize:function (path) {
- var isAbsolute = path.charAt(0) === '/',
- trailingSlash = path.substr(-1) === '/';
- // Normalize the path
- path = PATH.normalizeArray(path.split('/').filter(function(p) {
- return !!p;
- }), !isAbsolute).join('/');
- if (!path && !isAbsolute) {
- path = '.';
- }
- if (path && trailingSlash) {
- path += '/';
- }
- return (isAbsolute ? '/' : '') + path;
- },dirname:function (path) {
- var result = PATH.splitPath(path),
- root = result[0],
- dir = result[1];
- if (!root && !dir) {
- // No dirname whatsoever
- return '.';
- }
- if (dir) {
- // It has a dirname, strip trailing slash
- dir = dir.substr(0, dir.length - 1);
- }
- return root + dir;
- },basename:function (path) {
- // EMSCRIPTEN return '/'' for '/', not an empty string
- if (path === '/') return '/';
- var lastSlash = path.lastIndexOf('/');
- if (lastSlash === -1) return path;
- return path.substr(lastSlash+1);
- },extname:function (path) {
- return PATH.splitPath(path)[3];
- },join:function () {
- var paths = Array.prototype.slice.call(arguments, 0);
- return PATH.normalize(paths.join('/'));
- },join2:function (l, r) {
- return PATH.normalize(l + '/' + r);
- }};var SYSCALLS={buffers:[null,[],[]],printChar:function (stream, curr) {
- var buffer = SYSCALLS.buffers[stream];
- assert(buffer);
- if (curr === 0 || curr === 10) {
- (stream === 1 ? out : err)(UTF8ArrayToString(buffer, 0));
- buffer.length = 0;
- } else {
- buffer.push(curr);
- }
- },varargs:0,get:function (varargs) {
- SYSCALLS.varargs += 4;
- var ret = HEAP32[(((SYSCALLS.varargs)-(4))>>2)];
- return ret;
- },getStr:function () {
- var ret = UTF8ToString(SYSCALLS.get());
- return ret;
- },get64:function () {
- var low = SYSCALLS.get(), high = SYSCALLS.get();
- if (low >= 0) assert(high === 0);
- else assert(high === -1);
- return low;
- },getZero:function () {
- assert(SYSCALLS.get() === 0);
- }};function ___syscall140(which, varargs) {SYSCALLS.varargs = varargs;
- try {
- // llseek
- var stream = SYSCALLS.getStreamFromFD(), offset_high = SYSCALLS.get(), offset_low = SYSCALLS.get(), result = SYSCALLS.get(), whence = SYSCALLS.get();
- abort('it should not be possible to operate on streams when !SYSCALLS_REQUIRE_FILESYSTEM');
- return 0;
- } catch (e) {
- if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
- return -e.errno;
- }
- }
-
-
- function flush_NO_FILESYSTEM() {
- // flush anything remaining in the buffers during shutdown
- var fflush = Module["_fflush"];
- if (fflush) fflush(0);
- var buffers = SYSCALLS.buffers;
- if (buffers[1].length) SYSCALLS.printChar(1, 10);
- if (buffers[2].length) SYSCALLS.printChar(2, 10);
- }function ___syscall146(which, varargs) {SYSCALLS.varargs = varargs;
- try {
- // writev
- // hack to support printf in SYSCALLS_REQUIRE_FILESYSTEM=0
- var stream = SYSCALLS.get(), iov = SYSCALLS.get(), iovcnt = SYSCALLS.get();
- var ret = 0;
- for (var i = 0; i < iovcnt; i++) {
- var ptr = HEAP32[(((iov)+(i*8))>>2)];
- var len = HEAP32[(((iov)+(i*8 + 4))>>2)];
- for (var j = 0; j < len; j++) {
- SYSCALLS.printChar(stream, HEAPU8[ptr+j]);
- }
- ret += len;
- }
- return ret;
- } catch (e) {
- if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
- return -e.errno;
- }
- }
-
- function ___syscall54(which, varargs) {SYSCALLS.varargs = varargs;
- try {
- // ioctl
- return 0;
- } catch (e) {
- if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
- return -e.errno;
- }
- }
-
- function ___syscall6(which, varargs) {SYSCALLS.varargs = varargs;
- try {
- // close
- var stream = SYSCALLS.getStreamFromFD();
- abort('it should not be possible to operate on streams when !SYSCALLS_REQUIRE_FILESYSTEM');
- return 0;
- } catch (e) {
- if (typeof FS === 'undefined' || !(e instanceof FS.ErrnoError)) abort(e);
- return -e.errno;
- }
- }
-
- function ___unlock() {}
-
- function _emscripten_get_heap_size() {
- return HEAP8.length;
- }
-
-
- function _emscripten_memcpy_big(dest, src, num) {
- HEAPU8.set(HEAPU8.subarray(src, src+num), dest);
- }
-
-
-
-
-
-
- function ___setErrNo(value) {
- if (Module['___errno_location']) HEAP32[((Module['___errno_location']())>>2)]=value;
- else err('failed to set errno from JS');
- return value;
- }
-
-
- function abortOnCannotGrowMemory(requestedSize) {
- abort('Cannot enlarge memory arrays to size ' + requestedSize + ' bytes (OOM). Either (1) compile with -s TOTAL_MEMORY=X with X higher than the current value ' + HEAP8.length + ', (2) compile with -s ALLOW_MEMORY_GROWTH=1 which allows increasing the size at runtime but prevents some optimizations, (3) set Module.TOTAL_MEMORY to a higher value before the program runs, or (4) if you want malloc to return NULL (0) instead of this abort, compile with -s ABORTING_MALLOC=0 ');
- }function _emscripten_resize_heap(requestedSize) {
- abortOnCannotGrowMemory(requestedSize);
- }
-__ATEXIT__.push(flush_NO_FILESYSTEM);;
-var ASSERTIONS = true;
-
-// Copyright 2017 The Emscripten Authors. All rights reserved.
-// Emscripten is available under two separate licenses, the MIT license and the
-// University of Illinois/NCSA Open Source License. Both these licenses can be
-// found in the LICENSE file.
-
-/** @type {function(string, boolean=, number=)} */
-function intArrayFromString(stringy, dontAddNull, length) {
- var len = length > 0 ? length : lengthBytesUTF8(stringy)+1;
- var u8array = new Array(len);
- var numBytesWritten = stringToUTF8Array(stringy, u8array, 0, u8array.length);
- if (dontAddNull) u8array.length = numBytesWritten;
- return u8array;
-}
-
-function intArrayToString(array) {
- var ret = [];
- for (var i = 0; i < array.length; i++) {
- var chr = array[i];
- if (chr > 0xFF) {
- if (ASSERTIONS) {
- assert(false, 'Character code ' + chr + ' (' + String.fromCharCode(chr) + ') at offset ' + i + ' not in 0x00-0xFF.');
- }
- chr &= 0xFF;
- }
- ret.push(String.fromCharCode(chr));
- }
- return ret.join('');
-}
-
-
-// Copied from https://github.com/strophe/strophejs/blob/e06d027/src/polyfills.js#L149
-
-// This code was written by Tyler Akins and has been placed in the
-// public domain. It would be nice if you left this header intact.
-// Base64 code from Tyler Akins -- http://rumkin.com
-
-/**
- * Decodes a base64 string.
- * @param {String} input The string to decode.
- */
-var decodeBase64 = typeof atob === 'function' ? atob : function (input) {
- var keyStr = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
-
- var output = '';
- var chr1, chr2, chr3;
- var enc1, enc2, enc3, enc4;
- var i = 0;
- // remove all characters that are not A-Z, a-z, 0-9, +, /, or =
- input = input.replace(/[^A-Za-z0-9\+\/\=]/g, '');
- do {
- enc1 = keyStr.indexOf(input.charAt(i++));
- enc2 = keyStr.indexOf(input.charAt(i++));
- enc3 = keyStr.indexOf(input.charAt(i++));
- enc4 = keyStr.indexOf(input.charAt(i++));
-
- chr1 = (enc1 << 2) | (enc2 >> 4);
- chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
- chr3 = ((enc3 & 3) << 6) | enc4;
-
- output = output + String.fromCharCode(chr1);
-
- if (enc3 !== 64) {
- output = output + String.fromCharCode(chr2);
- }
- if (enc4 !== 64) {
- output = output + String.fromCharCode(chr3);
- }
- } while (i < input.length);
- return output;
-};
-
-// Converts a string of base64 into a byte array.
-// Throws error on invalid input.
-function intArrayFromBase64(s) {
- if (typeof ENVIRONMENT_IS_NODE === 'boolean' && ENVIRONMENT_IS_NODE) {
- var buf;
- try {
- buf = Buffer.from(s, 'base64');
- } catch (_) {
- buf = new Buffer(s, 'base64');
- }
- return new Uint8Array(buf.buffer, buf.byteOffset, buf.byteLength);
- }
-
- try {
- var decoded = decodeBase64(s);
- var bytes = new Uint8Array(decoded.length);
- for (var i = 0 ; i < decoded.length ; ++i) {
- bytes[i] = decoded.charCodeAt(i);
- }
- return bytes;
- } catch (_) {
- throw new Error('Converting base64 string to bytes failed.');
- }
-}
-
-// If filename is a base64 data URI, parses and returns data (Buffer on node,
-// Uint8Array otherwise). If filename is not a base64 data URI, returns undefined.
-function tryParseAsDataURI(filename) {
- if (!isDataURI(filename)) {
- return;
- }
-
- return intArrayFromBase64(filename.slice(dataURIPrefix.length));
-}
-
-
-// ASM_LIBRARY EXTERN PRIMITIVES: Int8Array,Int32Array
-
-
-function nullFunc_ii(x) { err("Invalid function pointer called with signature 'ii'. Perhaps this is an invalid value (e.g. caused by calling a virtual method on a NULL pointer)? Or calling a function with an incorrect type, which will fail? (it is worth building your source files with -Werror (warnings are errors), as warnings can indicate undefined behavior which can cause this)"); err("Build with ASSERTIONS=2 for more info.");abort(x) }
-
-function nullFunc_iiii(x) { err("Invalid function pointer called with signature 'iiii'. Perhaps this is an invalid value (e.g. caused by calling a virtual method on a NULL pointer)? Or calling a function with an incorrect type, which will fail? (it is worth building your source files with -Werror (warnings are errors), as warnings can indicate undefined behavior which can cause this)"); err("Build with ASSERTIONS=2 for more info.");abort(x) }
-
-function nullFunc_iiiii(x) { err("Invalid function pointer called with signature 'iiiii'. Perhaps this is an invalid value (e.g. caused by calling a virtual method on a NULL pointer)? Or calling a function with an incorrect type, which will fail? (it is worth building your source files with -Werror (warnings are errors), as warnings can indicate undefined behavior which can cause this)"); err("Build with ASSERTIONS=2 for more info.");abort(x) }
-
-var asmGlobalArg = { "Int8Array": Int8Array, "Int32Array": Int32Array, "Uint8Array": Uint8Array }
-
-var asmLibraryArg = {
- "abort": abort,
- "setTempRet0": setTempRet0,
- "getTempRet0": getTempRet0,
- "abortStackOverflow": abortStackOverflow,
- "nullFunc_ii": nullFunc_ii,
- "nullFunc_iiii": nullFunc_iiii,
- "nullFunc_iiiii": nullFunc_iiiii,
- "___lock": ___lock,
- "___setErrNo": ___setErrNo,
- "___syscall140": ___syscall140,
- "___syscall146": ___syscall146,
- "___syscall54": ___syscall54,
- "___syscall6": ___syscall6,
- "___unlock": ___unlock,
- "_emscripten_get_heap_size": _emscripten_get_heap_size,
- "_emscripten_memcpy_big": _emscripten_memcpy_big,
- "_emscripten_resize_heap": _emscripten_resize_heap,
- "abortOnCannotGrowMemory": abortOnCannotGrowMemory,
- "flush_NO_FILESYSTEM": flush_NO_FILESYSTEM,
- "tempDoublePtr": tempDoublePtr,
- "DYNAMICTOP_PTR": DYNAMICTOP_PTR
-}
-// EMSCRIPTEN_START_ASM
-var asm = (/** @suppress {uselessCode} */ function(global, env, buffer) {
-'almost asm';
-
- var HEAP8 = new global.Int8Array(buffer),
- HEAP32 = new global.Int32Array(buffer),
- HEAPU8 = new global.Uint8Array(buffer),
- tempDoublePtr=env.tempDoublePtr|0,
- DYNAMICTOP_PTR=env.DYNAMICTOP_PTR|0,
- __THREW__ = 0,
- threwValue = 0,
- setjmpId = 0,
- tempInt = 0,
- tempBigInt = 0,
- tempBigIntS = 0,
- tempValue = 0,
- tempDouble = 0.0,
- abort=env.abort,
- setTempRet0=env.setTempRet0,
- getTempRet0=env.getTempRet0,
- abortStackOverflow=env.abortStackOverflow,
- nullFunc_ii=env.nullFunc_ii,
- nullFunc_iiii=env.nullFunc_iiii,
- nullFunc_iiiii=env.nullFunc_iiiii,
- ___lock=env.___lock,
- ___setErrNo=env.___setErrNo,
- ___syscall140=env.___syscall140,
- ___syscall146=env.___syscall146,
- ___syscall54=env.___syscall54,
- ___syscall6=env.___syscall6,
- ___unlock=env.___unlock,
- _emscripten_get_heap_size=env._emscripten_get_heap_size,
- _emscripten_memcpy_big=env._emscripten_memcpy_big,
- _emscripten_resize_heap=env._emscripten_resize_heap,
- abortOnCannotGrowMemory=env.abortOnCannotGrowMemory,
- flush_NO_FILESYSTEM=env.flush_NO_FILESYSTEM,
- STACKTOP = 1952,
- STACK_MAX = 5244832,
- tempFloat = 0.0;
-
-// EMSCRIPTEN_START_FUNCS
-
-function stackAlloc(size) {
- size = size|0;
- var ret = 0;
- ret = STACKTOP;
- STACKTOP = (STACKTOP + size)|0;
- STACKTOP = (STACKTOP + 15)&-16;
- if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(size|0);
-
- return ret|0;
-}
-function stackSave() {
- return STACKTOP|0;
-}
-function stackRestore(top) {
- top = top|0;
- STACKTOP = top;
-}
-function establishStackSpace(stackBase, stackMax) {
- stackBase = stackBase|0;
- stackMax = stackMax|0;
- STACKTOP = stackBase;
- STACK_MAX = stackMax;
-}
-
-function _main() {
- var $retval = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 16|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(16|0);
- $retval = 0;
- STACKTOP = sp;return 0;
-}
-function _malloc($bytes) {
- $bytes = $bytes|0;
- var $$pre = 0, $$pre$i = 0, $$pre$i$i = 0, $$pre$i134 = 0, $$pre$i194 = 0, $$pre$i31$i = 0, $$pre$phi$i$iZ2D = 0, $$pre$phi$i195Z2D = 0, $$pre$phi$i32$iZ2D = 0, $$pre$phi$iZ2D = 0, $$pre$phiZ2D = 0, $0 = 0, $1 = 0, $10 = 0, $100 = 0, $101 = 0, $102 = 0, $103 = 0, $104 = 0, $105 = 0;
- var $106 = 0, $107 = 0, $108 = 0, $109 = 0, $11 = 0, $110 = 0, $111 = 0, $112 = 0, $113 = 0, $114 = 0, $115 = 0, $116 = 0, $117 = 0, $118 = 0, $119 = 0, $12 = 0, $120 = 0, $121 = 0, $122 = 0, $123 = 0;
- var $124 = 0, $125 = 0, $126 = 0, $127 = 0, $128 = 0, $129 = 0, $13 = 0, $130 = 0, $131 = 0, $132 = 0, $133 = 0, $134 = 0, $135 = 0, $136 = 0, $137 = 0, $138 = 0, $139 = 0, $14 = 0, $140 = 0, $141 = 0;
- var $142 = 0, $143 = 0, $144 = 0, $145 = 0, $146 = 0, $147 = 0, $148 = 0, $149 = 0, $15 = 0, $150 = 0, $151 = 0, $152 = 0, $153 = 0, $154 = 0, $155 = 0, $156 = 0, $157 = 0, $158 = 0, $159 = 0, $16 = 0;
- var $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0, $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0;
- var $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0, $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0;
- var $53 = 0, $54 = 0, $55 = 0, $56 = 0, $57 = 0, $58 = 0, $59 = 0, $6 = 0, $60 = 0, $61 = 0, $62 = 0, $63 = 0, $64 = 0, $65 = 0, $66 = 0, $67 = 0, $68 = 0, $69 = 0, $7 = 0, $70 = 0;
- var $71 = 0, $72 = 0, $73 = 0, $74 = 0, $75 = 0, $76 = 0, $77 = 0, $78 = 0, $79 = 0, $8 = 0, $80 = 0, $81 = 0, $82 = 0, $83 = 0, $84 = 0, $85 = 0, $86 = 0, $87 = 0, $88 = 0, $89 = 0;
- var $9 = 0, $90 = 0, $91 = 0, $92 = 0, $93 = 0, $94 = 0, $95 = 0, $96 = 0, $97 = 0, $98 = 0, $99 = 0, $F$0$i$i = 0, $F104$0 = 0, $F197$0$i = 0, $F224$0$i$i = 0, $F290$0$i = 0, $I252$0$i$i = 0, $I316$0$i = 0, $I57$0$i$i = 0, $K105$010$i$i = 0;
- var $K305$08$i$i = 0, $K373$015$i = 0, $R$1$i = 0, $R$1$i$be = 0, $R$1$i$i = 0, $R$1$i$i$be = 0, $R$1$i$i$ph = 0, $R$1$i$ph = 0, $R$1$i183 = 0, $R$1$i183$be = 0, $R$1$i183$ph = 0, $R$3$i = 0, $R$3$i$i = 0, $R$3$i188 = 0, $RP$1$i = 0, $RP$1$i$be = 0, $RP$1$i$i = 0, $RP$1$i$i$be = 0, $RP$1$i$i$ph = 0, $RP$1$i$ph = 0;
- var $RP$1$i182 = 0, $RP$1$i182$be = 0, $RP$1$i182$ph = 0, $T$0$lcssa$i = 0, $T$0$lcssa$i$i = 0, $T$0$lcssa$i34$i = 0, $T$014$i = 0, $T$07$i$i = 0, $T$09$i$i = 0, $add$i = 0, $add$i$i = 0, $add$i135 = 0, $add$i155 = 0, $add$ptr = 0, $add$ptr$i = 0, $add$ptr$i$i = 0, $add$ptr$i$i$i = 0, $add$ptr$i141 = 0, $add$ptr$i174 = 0, $add$ptr$i2$i$i = 0;
- var $add$ptr$i35$i = 0, $add$ptr$i43$i = 0, $add$ptr$i57$i = 0, $add$ptr14$i$i = 0, $add$ptr15$i$i = 0, $add$ptr16$i$i = 0, $add$ptr166 = 0, $add$ptr169 = 0, $add$ptr17$i$i = 0, $add$ptr178 = 0, $add$ptr181$i = 0, $add$ptr182 = 0, $add$ptr189$i = 0, $add$ptr190$i = 0, $add$ptr193 = 0, $add$ptr199 = 0, $add$ptr2$i$i = 0, $add$ptr205$i$i = 0, $add$ptr212$i$i = 0, $add$ptr225$i = 0;
- var $add$ptr227$i = 0, $add$ptr24$i$i = 0, $add$ptr262$i = 0, $add$ptr269$i = 0, $add$ptr273$i = 0, $add$ptr282$i = 0, $add$ptr3$i$i = 0, $add$ptr30$i$i = 0, $add$ptr369$i$i = 0, $add$ptr4$i$i = 0, $add$ptr4$i$i$i = 0, $add$ptr4$i41$i = 0, $add$ptr4$i49$i = 0, $add$ptr441$i = 0, $add$ptr5$i$i = 0, $add$ptr6$i$i = 0, $add$ptr6$i$i$i = 0, $add$ptr6$i53$i = 0, $add$ptr7$i$i = 0, $add$ptr81$i$i = 0;
- var $add$ptr95 = 0, $add$ptr98 = 0, $add10$i = 0, $add101$i = 0, $add110$i = 0, $add13$i = 0, $add14$i = 0, $add140$i = 0, $add144 = 0, $add150$i = 0, $add17$i = 0, $add17$i158 = 0, $add177$i = 0, $add18$i = 0, $add19$i = 0, $add2 = 0, $add20$i = 0, $add206$i$i = 0, $add212$i = 0, $add215$i = 0;
- var $add22$i = 0, $add246$i = 0, $add26$i$i = 0, $add268$i = 0, $add269$i$i = 0, $add274$i$i = 0, $add278$i$i = 0, $add280$i$i = 0, $add283$i$i = 0, $add337$i = 0, $add342$i = 0, $add346$i = 0, $add348$i = 0, $add351$i = 0, $add46$i = 0, $add50 = 0, $add51$i = 0, $add54 = 0, $add54$i = 0, $add58 = 0;
- var $add62 = 0, $add64 = 0, $add74$i$i = 0, $add77$i = 0, $add78$i = 0, $add79$i$i = 0, $add8 = 0, $add82$i = 0, $add83$i$i = 0, $add85$i$i = 0, $add86$i = 0, $add88$i$i = 0, $add9$i = 0, $add90$i = 0, $add92$i = 0, $and = 0, $and$i = 0, $and$i$i = 0, $and$i$i$i = 0, $and$i14$i = 0;
- var $and$i152 = 0, $and$i36$i = 0, $and$i44$i = 0, $and100$i = 0, $and103$i = 0, $and104$i = 0, $and106 = 0, $and11$i = 0, $and119$i$i = 0, $and1197$i$i = 0, $and12$i = 0, $and13$i = 0, $and13$i$i = 0, $and133$i$i = 0, $and14 = 0, $and145 = 0, $and17$i = 0, $and194$i = 0, $and194$i191 = 0, $and199$i = 0;
- var $and209$i$i = 0, $and21$i = 0, $and21$i159 = 0, $and227$i$i = 0, $and236$i = 0, $and264$i$i = 0, $and268$i$i = 0, $and273$i$i = 0, $and282$i$i = 0, $and29$i = 0, $and292$i = 0, $and295$i$i = 0, $and3$i = 0, $and3$i$i = 0, $and3$i$i$i = 0, $and3$i39$i = 0, $and3$i47$i = 0, $and30$i = 0, $and318$i$i = 0, $and3185$i$i = 0;
- var $and32$i = 0, $and32$i$i = 0, $and33$i$i = 0, $and331$i = 0, $and336$i = 0, $and341$i = 0, $and350$i = 0, $and363$i = 0, $and37$i$i = 0, $and387$i = 0, $and38712$i = 0, $and4 = 0, $and40$i$i = 0, $and41 = 0, $and42$i = 0, $and43 = 0, $and46 = 0, $and49 = 0, $and49$i = 0, $and49$i$i = 0;
- var $and53 = 0, $and57 = 0, $and6$i = 0, $and6$i$i = 0, $and6$i13$i = 0, $and6$i18$i = 0, $and61 = 0, $and64$i = 0, $and68$i = 0, $and69$i$i = 0, $and7 = 0, $and73$i = 0, $and73$i$i = 0, $and74 = 0, $and77$i = 0, $and78$i$i = 0, $and8$i = 0, $and80$i = 0, $and81$i = 0, $and85$i = 0;
- var $and87$i$i = 0, $and89$i = 0, $and9$i = 0, $and96$i$i = 0, $arrayidx = 0, $arrayidx$i = 0, $arrayidx$i$i = 0, $arrayidx$i160 = 0, $arrayidx103 = 0, $arrayidx103$i$i = 0, $arrayidx106$i = 0, $arrayidx107$i$i = 0, $arrayidx113$i = 0, $arrayidx113$i173 = 0, $arrayidx121$i = 0, $arrayidx121$i$sink = 0, $arrayidx123$i$i = 0, $arrayidx126$i$i = 0, $arrayidx137$i = 0, $arrayidx143$i$i = 0;
- var $arrayidx148$i = 0, $arrayidx151$i = 0, $arrayidx151$i$i = 0, $arrayidx151$i$i$sink = 0, $arrayidx154$i = 0, $arrayidx155$i = 0, $arrayidx161$i = 0, $arrayidx165$i = 0, $arrayidx165$i185 = 0, $arrayidx178$i$i = 0, $arrayidx184$i = 0, $arrayidx184$i$i = 0, $arrayidx195$i$i = 0, $arrayidx196$i = 0, $arrayidx204$i = 0, $arrayidx212$i = 0, $arrayidx212$i$sink = 0, $arrayidx223$i$i = 0, $arrayidx228$i = 0, $arrayidx23$i = 0;
- var $arrayidx239$i = 0, $arrayidx245$i = 0, $arrayidx256$i = 0, $arrayidx27$i = 0, $arrayidx287$i$i = 0, $arrayidx289$i = 0, $arrayidx290$i$i = 0, $arrayidx325$i$i = 0, $arrayidx355$i = 0, $arrayidx358$i = 0, $arrayidx394$i = 0, $arrayidx40$i = 0, $arrayidx44$i = 0, $arrayidx61$i = 0, $arrayidx65$i = 0, $arrayidx66 = 0, $arrayidx71$i = 0, $arrayidx75$i = 0, $arrayidx91$i$i = 0, $arrayidx92$i$i = 0;
- var $arrayidx94$i = 0, $arrayidx94$i170 = 0, $arrayidx96$i$i = 0, $bk$i = 0, $bk$i$i = 0, $bk$i176 = 0, $bk$i26$i = 0, $bk102$i$i = 0, $bk122 = 0, $bk124 = 0, $bk139$i$i = 0, $bk145$i = 0, $bk158$i$i = 0, $bk161$i$i = 0, $bk18 = 0, $bk218$i = 0, $bk220$i = 0, $bk246$i$i = 0, $bk248$i$i = 0, $bk302$i$i = 0;
- var $bk311$i = 0, $bk313$i = 0, $bk338$i$i = 0, $bk357$i$i = 0, $bk360$i$i = 0, $bk370$i = 0, $bk407$i = 0, $bk429$i = 0, $bk432$i = 0, $bk55$i$i = 0, $bk56$i = 0, $bk67$i$i = 0, $bk74$i$i = 0, $bk85 = 0, $bk91$i$i = 0, $br$2$ph$i = 0, $call107$i = 0, $call131$i = 0, $call132$i = 0, $call275$i = 0;
- var $call37$i = 0, $call68$i = 0, $call83$i = 0, $child$i$i = 0, $child166$i$i = 0, $child289$i$i = 0, $child357$i = 0, $cmp = 0, $cmp$i = 0, $cmp$i$i$i = 0, $cmp$i12$i = 0, $cmp$i133 = 0, $cmp$i149 = 0, $cmp$i15$i = 0, $cmp$i3$i$i = 0, $cmp$i37$i = 0, $cmp$i45$i = 0, $cmp$i55$i = 0, $cmp1 = 0, $cmp1$i = 0;
- var $cmp10 = 0, $cmp100$i$i = 0, $cmp102$i = 0, $cmp104$i$i = 0, $cmp105$i = 0, $cmp106$i$i = 0, $cmp107$i = 0, $cmp108$i = 0, $cmp108$i$i = 0, $cmp114$i = 0, $cmp116$i = 0, $cmp118$i = 0, $cmp119$i = 0, $cmp12$i = 0, $cmp120$i$i = 0, $cmp120$i28$i = 0, $cmp1208$i$i = 0, $cmp123$i = 0, $cmp124$i$i = 0, $cmp126$i = 0;
- var $cmp127$i = 0, $cmp128 = 0, $cmp128$i = 0, $cmp128$i$i = 0, $cmp133$i = 0, $cmp135$i = 0, $cmp137$i = 0, $cmp138$i = 0, $cmp139 = 0, $cmp141$i = 0, $cmp144$i$i = 0, $cmp146 = 0, $cmp147$i = 0, $cmp14799$i = 0, $cmp15$i = 0, $cmp151$i = 0, $cmp152$i = 0, $cmp155$i = 0, $cmp156 = 0, $cmp156$i = 0;
- var $cmp156$i$i = 0, $cmp157$i = 0, $cmp159$i = 0, $cmp162 = 0, $cmp162$i = 0, $cmp162$i184 = 0, $cmp166$i = 0, $cmp168$i$i = 0, $cmp174$i = 0, $cmp180$i = 0, $cmp185$i = 0, $cmp185$i$i = 0, $cmp186 = 0, $cmp186$i = 0, $cmp19$i = 0, $cmp190$i = 0, $cmp191$i = 0, $cmp2$i$i = 0, $cmp2$i$i$i = 0, $cmp20$i$i = 0;
- var $cmp203$i = 0, $cmp205$i = 0, $cmp209$i = 0, $cmp21$i = 0, $cmp215$i$i = 0, $cmp217$i = 0, $cmp218$i = 0, $cmp224$i = 0, $cmp228$i = 0, $cmp229$i = 0, $cmp24$i = 0, $cmp24$i$i = 0, $cmp246$i = 0, $cmp254$i$i = 0, $cmp257$i = 0, $cmp258$i$i = 0, $cmp26$i = 0, $cmp265$i = 0, $cmp27$i$i = 0, $cmp28$i = 0;
- var $cmp28$i$i = 0, $cmp284$i = 0, $cmp29 = 0, $cmp3$i$i = 0, $cmp306$i$i = 0, $cmp31 = 0, $cmp319$i = 0, $cmp319$i$i = 0, $cmp3196$i$i = 0, $cmp32$i = 0, $cmp32$i138 = 0, $cmp323$i = 0, $cmp327$i$i = 0, $cmp34$i = 0, $cmp34$i$i = 0, $cmp35$i = 0, $cmp36$i = 0, $cmp36$i$i = 0, $cmp374$i = 0, $cmp38$i = 0;
- var $cmp38$i$i = 0, $cmp388$i = 0, $cmp38813$i = 0, $cmp396$i = 0, $cmp40$i = 0, $cmp43$i = 0, $cmp45$i = 0, $cmp46$i = 0, $cmp46$i$i = 0, $cmp49$i = 0, $cmp5 = 0, $cmp55$i = 0, $cmp55$i166 = 0, $cmp57$i = 0, $cmp57$i167 = 0, $cmp59$i$i = 0, $cmp60$i = 0, $cmp62$i = 0, $cmp63$i = 0, $cmp63$i$i = 0;
- var $cmp65$i = 0, $cmp66$i = 0, $cmp66$i140 = 0, $cmp69$i = 0, $cmp7$i$i = 0, $cmp70 = 0, $cmp72$i = 0, $cmp75$i$i = 0, $cmp76$i = 0, $cmp81$i = 0, $cmp85$i = 0, $cmp89$i = 0, $cmp9$i$i = 0, $cmp90$i = 0, $cmp91$i = 0, $cmp93$i = 0, $cmp95$i = 0, $cmp96$i = 0, $cmp97$i = 0, $cmp97$i$i = 0;
- var $cmp9716$i = 0, $cmp99 = 0, $cond = 0, $cond$i = 0, $cond$i$i = 0, $cond$i$i$i = 0, $cond$i17$i = 0, $cond$i40$i = 0, $cond$i48$i = 0, $cond1$i$i = 0, $cond115$i = 0, $cond115$i$i = 0, $cond13$i$i = 0, $cond15$i$i = 0, $cond2$i = 0, $cond3$i = 0, $cond315$i$i = 0, $cond383$i = 0, $cond4$i = 0, $fd$i = 0;
- var $fd$i$i = 0, $fd$i177 = 0, $fd103$i$i = 0, $fd123 = 0, $fd140$i$i = 0, $fd146$i = 0, $fd148$i$i = 0, $fd160$i$i = 0, $fd219$i = 0, $fd247$i$i = 0, $fd303$i$i = 0, $fd312$i = 0, $fd339$i$i = 0, $fd344$i$i = 0, $fd359$i$i = 0, $fd371$i = 0, $fd408$i = 0, $fd416$i = 0, $fd431$i = 0, $fd54$i$i = 0;
- var $fd57$i = 0, $fd68$i$i = 0, $fd69 = 0, $fd78$i$i = 0, $fd9 = 0, $fd92$i$i = 0, $head = 0, $head$i = 0, $head$i$i = 0, $head$i$i$i = 0, $head$i164 = 0, $head$i22$i = 0, $head$i42$i = 0, $head$i52$i = 0, $head118$i$i = 0, $head1186$i$i = 0, $head168 = 0, $head173 = 0, $head177 = 0, $head179 = 0;
- var $head179$i = 0, $head182$i = 0, $head187$i = 0, $head189$i = 0, $head195 = 0, $head198 = 0, $head208$i$i = 0, $head211$i$i = 0, $head23$i$i = 0, $head25 = 0, $head26$i$i = 0, $head265$i = 0, $head268$i = 0, $head271$i = 0, $head274$i = 0, $head279$i = 0, $head281$i = 0, $head29$i = 0, $head29$i$i = 0, $head317$i$i = 0;
- var $head3174$i$i = 0, $head32$i$i = 0, $head34$i$i = 0, $head386$i = 0, $head38611$i = 0, $head7$i$i = 0, $head7$i$i$i = 0, $head7$i54$i = 0, $head94 = 0, $head97 = 0, $head99$i = 0, $idx$0$i = 0, $index$i = 0, $index$i$i = 0, $index$i189 = 0, $index$i29$i = 0, $index288$i$i = 0, $index356$i = 0, $magic$i$i = 0, $nb$0 = 0;
- var $neg = 0, $neg$i = 0, $neg$i$i = 0, $neg$i137 = 0, $neg$i190 = 0, $neg103$i = 0, $neg13 = 0, $neg132$i$i = 0, $neg48$i = 0, $neg73 = 0, $next$i = 0, $next$i$i = 0, $next$i$i$i = 0, $next231$i = 0, $not$cmp141$i = 0, $oldfirst$0$i$i = 0, $or$cond$i = 0, $or$cond$i168 = 0, $or$cond1$i = 0, $or$cond1$i165 = 0;
- var $or$cond11$i = 0, $or$cond2$i = 0, $or$cond4$i = 0, $or$cond5$i = 0, $or$cond7$i = 0, $or$cond8$i = 0, $or$cond8$not$i = 0, $or$cond97$i = 0, $or$cond98$i = 0, $or$i = 0, $or$i$i = 0, $or$i$i$i = 0, $or$i169 = 0, $or$i51$i = 0, $or101$i$i = 0, $or110 = 0, $or167 = 0, $or172 = 0, $or176 = 0, $or178$i = 0;
- var $or180 = 0, $or183$i = 0, $or186$i = 0, $or188$i = 0, $or19$i$i = 0, $or194 = 0, $or197 = 0, $or204$i = 0, $or210$i$i = 0, $or22$i$i = 0, $or23 = 0, $or232$i$i = 0, $or26 = 0, $or264$i = 0, $or267$i = 0, $or270$i = 0, $or275$i = 0, $or278$i = 0, $or28$i$i = 0, $or280$i = 0;
- var $or297$i = 0, $or300$i$i = 0, $or33$i$i = 0, $or368$i = 0, $or40 = 0, $or44$i$i = 0, $or93 = 0, $or96 = 0, $parent$i = 0, $parent$i$i = 0, $parent$i175 = 0, $parent$i27$i = 0, $parent135$i = 0, $parent138$i$i = 0, $parent149$i = 0, $parent162$i$i = 0, $parent165$i$i = 0, $parent166$i = 0, $parent179$i$i = 0, $parent196$i$i = 0;
- var $parent226$i = 0, $parent240$i = 0, $parent257$i = 0, $parent301$i$i = 0, $parent337$i$i = 0, $parent361$i$i = 0, $parent369$i = 0, $parent406$i = 0, $parent433$i = 0, $qsize$0$i$i = 0, $retval$0 = 0, $rsize$0$i = 0, $rsize$0$i162 = 0, $rsize$1$i = 0, $rsize$3$i = 0, $rsize$4$lcssa$i = 0, $rsize$418$i = 0, $rsize$418$i$ph = 0, $rst$0$i = 0, $rst$1$i = 0;
- var $sflags193$i = 0, $sflags235$i = 0, $shl = 0, $shl$i = 0, $shl$i$i = 0, $shl$i153 = 0, $shl102 = 0, $shl105 = 0, $shl116$i$i = 0, $shl12 = 0, $shl127$i$i = 0, $shl131$i$i = 0, $shl15$i = 0, $shl18$i = 0, $shl192$i = 0, $shl195$i = 0, $shl198$i = 0, $shl22 = 0, $shl222$i$i = 0, $shl226$i$i = 0;
- var $shl265$i$i = 0, $shl270$i$i = 0, $shl276$i$i = 0, $shl279$i$i = 0, $shl288$i = 0, $shl291$i = 0, $shl294$i$i = 0, $shl31$i = 0, $shl316$i$i = 0, $shl326$i$i = 0, $shl333$i = 0, $shl338$i = 0, $shl344$i = 0, $shl347$i = 0, $shl35 = 0, $shl362$i = 0, $shl37 = 0, $shl384$i = 0, $shl39$i$i = 0, $shl395$i = 0;
- var $shl48$i$i = 0, $shl60$i = 0, $shl65 = 0, $shl70$i$i = 0, $shl72 = 0, $shl75$i$i = 0, $shl81$i$i = 0, $shl84$i$i = 0, $shl9$i = 0, $shl90 = 0, $shl95$i$i = 0, $shr = 0, $shr$i = 0, $shr$i$i = 0, $shr$i148 = 0, $shr$i25$i = 0, $shr101 = 0, $shr11$i = 0, $shr11$i156 = 0, $shr110$i$i = 0;
- var $shr12$i = 0, $shr124$i$i = 0, $shr15$i = 0, $shr16$i = 0, $shr16$i157 = 0, $shr19$i = 0, $shr194$i = 0, $shr20$i = 0, $shr214$i$i = 0, $shr253$i$i = 0, $shr263$i$i = 0, $shr267$i$i = 0, $shr27$i = 0, $shr272$i$i = 0, $shr277$i$i = 0, $shr281$i$i = 0, $shr283$i = 0, $shr3 = 0, $shr310$i$i = 0, $shr318$i = 0;
- var $shr323$i$i = 0, $shr330$i = 0, $shr335$i = 0, $shr340$i = 0, $shr345$i = 0, $shr349$i = 0, $shr378$i = 0, $shr392$i = 0, $shr4$i = 0, $shr42$i = 0, $shr45 = 0, $shr47 = 0, $shr48 = 0, $shr5$i = 0, $shr5$i151 = 0, $shr51 = 0, $shr52 = 0, $shr55 = 0, $shr56 = 0, $shr58$i$i = 0;
- var $shr59 = 0, $shr60 = 0, $shr63 = 0, $shr68$i$i = 0, $shr7$i = 0, $shr7$i154 = 0, $shr72$i = 0, $shr72$i$i = 0, $shr75$i = 0, $shr76$i = 0, $shr77$i$i = 0, $shr79$i = 0, $shr8$i = 0, $shr80$i = 0, $shr82$i$i = 0, $shr83$i = 0, $shr84$i = 0, $shr86$i$i = 0, $shr87$i = 0, $shr88$i = 0;
- var $shr91$i = 0, $size$i$i = 0, $size$i$i$i = 0, $size$i$i$le = 0, $size188$i = 0, $size188$i$le = 0, $size245$i = 0, $sizebits$0$i = 0, $sp$0$i$i = 0, $sp$0$i$i$i = 0, $sp$0112$i = 0, $sp$1111$i = 0, $spec$select$i = 0, $spec$select$i171 = 0, $spec$select1$i = 0, $spec$select2$i = 0, $spec$select5$i = 0, $spec$select9$i = 0, $spec$select96$i = 0, $ssize$2$ph$i = 0;
- var $sub = 0, $sub$i = 0, $sub$i$i = 0, $sub$i$i$i = 0, $sub$i136 = 0, $sub$i147 = 0, $sub$i16$i = 0, $sub$i38$i = 0, $sub$i46$i = 0, $sub$ptr$lhs$cast$i = 0, $sub$ptr$lhs$cast$i$i = 0, $sub$ptr$lhs$cast$i19$i = 0, $sub$ptr$rhs$cast$i = 0, $sub$ptr$rhs$cast$i$i = 0, $sub$ptr$rhs$cast$i20$i = 0, $sub$ptr$sub$i = 0, $sub$ptr$sub$i$i = 0, $sub$ptr$sub$i21$i = 0, $sub10$i = 0, $sub101$i = 0;
- var $sub112$i = 0, $sub113$i$i = 0, $sub118$i = 0, $sub12$i$i = 0, $sub14$i = 0, $sub16$i$i = 0, $sub160 = 0, $sub172$i = 0, $sub18$i$i = 0, $sub190 = 0, $sub2$i = 0, $sub22$i = 0, $sub260$i = 0, $sub262$i$i = 0, $sub266$i$i = 0, $sub271$i$i = 0, $sub275$i$i = 0, $sub30$i = 0, $sub31$i = 0, $sub313$i$i = 0;
- var $sub329$i = 0, $sub33$i = 0, $sub334$i = 0, $sub339$i = 0, $sub343$i = 0, $sub381$i = 0, $sub4$i = 0, $sub41$i = 0, $sub42 = 0, $sub44 = 0, $sub5$i$i = 0, $sub5$i$i$i = 0, $sub5$i50$i = 0, $sub50$i = 0, $sub6$i = 0, $sub63$i = 0, $sub67$i = 0, $sub67$i$i = 0, $sub70$i = 0, $sub71$i$i = 0;
- var $sub76$i$i = 0, $sub80$i$i = 0, $sub91 = 0, $sub99$i = 0, $t$0$i = 0, $t$0$i161 = 0, $t$2$i = 0, $t$4$i = 0, $t$517$i = 0, $t$517$i$ph = 0, $tbase$795$i = 0, $tobool$i$i = 0, $tobool107 = 0, $tobool195$i = 0, $tobool200$i = 0, $tobool228$i$i = 0, $tobool237$i = 0, $tobool293$i = 0, $tobool296$i$i = 0, $tobool30$i = 0;
- var $tobool364$i = 0, $tobool97$i$i = 0, $tsize$2647482$i = 0, $tsize$4$i = 0, $tsize$794$i = 0, $v$0$i = 0, $v$0$i163 = 0, $v$1$i = 0, $v$3$i = 0, $v$3$i204 = 0, $v$4$lcssa$i = 0, $v$419$i = 0, $v$419$i$ph = 0, $xor$i$i = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 16|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(16|0);
- $magic$i$i = sp;
- $cmp = ($bytes>>>0)<(245);
- do {
- if ($cmp) {
- $cmp1 = ($bytes>>>0)<(11);
- $add2 = (($bytes) + 11)|0;
- $and = $add2 & -8;
- $cond = $cmp1 ? 16 : $and;
- $shr = $cond >>> 3;
- $0 = HEAP32[304]|0;
- $shr3 = $0 >>> $shr;
- $and4 = $shr3 & 3;
- $cmp5 = ($and4|0)==(0);
- if (!($cmp5)) {
- $neg = $shr3 & 1;
- $and7 = $neg ^ 1;
- $add8 = (($and7) + ($shr))|0;
- $shl = $add8 << 1;
- $arrayidx = (1256 + ($shl<<2)|0);
- $1 = ((($arrayidx)) + 8|0);
- $2 = HEAP32[$1>>2]|0;
- $fd9 = ((($2)) + 8|0);
- $3 = HEAP32[$fd9>>2]|0;
- $cmp10 = ($3|0)==($arrayidx|0);
- if ($cmp10) {
- $shl12 = 1 << $add8;
- $neg13 = $shl12 ^ -1;
- $and14 = $0 & $neg13;
- HEAP32[304] = $and14;
- } else {
- $bk18 = ((($3)) + 12|0);
- HEAP32[$bk18>>2] = $arrayidx;
- HEAP32[$1>>2] = $3;
- }
- $shl22 = $add8 << 3;
- $or23 = $shl22 | 3;
- $head = ((($2)) + 4|0);
- HEAP32[$head>>2] = $or23;
- $add$ptr = (($2) + ($shl22)|0);
- $head25 = ((($add$ptr)) + 4|0);
- $4 = HEAP32[$head25>>2]|0;
- $or26 = $4 | 1;
- HEAP32[$head25>>2] = $or26;
- $retval$0 = $fd9;
- STACKTOP = sp;return ($retval$0|0);
- }
- $5 = HEAP32[(1224)>>2]|0;
- $cmp29 = ($cond>>>0)>($5>>>0);
- if ($cmp29) {
- $cmp31 = ($shr3|0)==(0);
- if (!($cmp31)) {
- $shl35 = $shr3 << $shr;
- $shl37 = 2 << $shr;
- $sub = (0 - ($shl37))|0;
- $or40 = $shl37 | $sub;
- $and41 = $shl35 & $or40;
- $sub42 = (0 - ($and41))|0;
- $and43 = $and41 & $sub42;
- $sub44 = (($and43) + -1)|0;
- $shr45 = $sub44 >>> 12;
- $and46 = $shr45 & 16;
- $shr47 = $sub44 >>> $and46;
- $shr48 = $shr47 >>> 5;
- $and49 = $shr48 & 8;
- $add50 = $and49 | $and46;
- $shr51 = $shr47 >>> $and49;
- $shr52 = $shr51 >>> 2;
- $and53 = $shr52 & 4;
- $add54 = $add50 | $and53;
- $shr55 = $shr51 >>> $and53;
- $shr56 = $shr55 >>> 1;
- $and57 = $shr56 & 2;
- $add58 = $add54 | $and57;
- $shr59 = $shr55 >>> $and57;
- $shr60 = $shr59 >>> 1;
- $and61 = $shr60 & 1;
- $add62 = $add58 | $and61;
- $shr63 = $shr59 >>> $and61;
- $add64 = (($add62) + ($shr63))|0;
- $shl65 = $add64 << 1;
- $arrayidx66 = (1256 + ($shl65<<2)|0);
- $6 = ((($arrayidx66)) + 8|0);
- $7 = HEAP32[$6>>2]|0;
- $fd69 = ((($7)) + 8|0);
- $8 = HEAP32[$fd69>>2]|0;
- $cmp70 = ($8|0)==($arrayidx66|0);
- if ($cmp70) {
- $shl72 = 1 << $add64;
- $neg73 = $shl72 ^ -1;
- $and74 = $0 & $neg73;
- HEAP32[304] = $and74;
- $10 = $and74;
- } else {
- $bk85 = ((($8)) + 12|0);
- HEAP32[$bk85>>2] = $arrayidx66;
- HEAP32[$6>>2] = $8;
- $10 = $0;
- }
- $shl90 = $add64 << 3;
- $sub91 = (($shl90) - ($cond))|0;
- $or93 = $cond | 3;
- $head94 = ((($7)) + 4|0);
- HEAP32[$head94>>2] = $or93;
- $add$ptr95 = (($7) + ($cond)|0);
- $or96 = $sub91 | 1;
- $head97 = ((($add$ptr95)) + 4|0);
- HEAP32[$head97>>2] = $or96;
- $add$ptr98 = (($7) + ($shl90)|0);
- HEAP32[$add$ptr98>>2] = $sub91;
- $cmp99 = ($5|0)==(0);
- if (!($cmp99)) {
- $9 = HEAP32[(1236)>>2]|0;
- $shr101 = $5 >>> 3;
- $shl102 = $shr101 << 1;
- $arrayidx103 = (1256 + ($shl102<<2)|0);
- $shl105 = 1 << $shr101;
- $and106 = $10 & $shl105;
- $tobool107 = ($and106|0)==(0);
- if ($tobool107) {
- $or110 = $10 | $shl105;
- HEAP32[304] = $or110;
- $$pre = ((($arrayidx103)) + 8|0);
- $$pre$phiZ2D = $$pre;$F104$0 = $arrayidx103;
- } else {
- $11 = ((($arrayidx103)) + 8|0);
- $12 = HEAP32[$11>>2]|0;
- $$pre$phiZ2D = $11;$F104$0 = $12;
- }
- HEAP32[$$pre$phiZ2D>>2] = $9;
- $bk122 = ((($F104$0)) + 12|0);
- HEAP32[$bk122>>2] = $9;
- $fd123 = ((($9)) + 8|0);
- HEAP32[$fd123>>2] = $F104$0;
- $bk124 = ((($9)) + 12|0);
- HEAP32[$bk124>>2] = $arrayidx103;
- }
- HEAP32[(1224)>>2] = $sub91;
- HEAP32[(1236)>>2] = $add$ptr95;
- $retval$0 = $fd69;
- STACKTOP = sp;return ($retval$0|0);
- }
- $13 = HEAP32[(1220)>>2]|0;
- $cmp128 = ($13|0)==(0);
- if ($cmp128) {
- $nb$0 = $cond;
- } else {
- $sub$i = (0 - ($13))|0;
- $and$i = $13 & $sub$i;
- $sub2$i = (($and$i) + -1)|0;
- $shr$i = $sub2$i >>> 12;
- $and3$i = $shr$i & 16;
- $shr4$i = $sub2$i >>> $and3$i;
- $shr5$i = $shr4$i >>> 5;
- $and6$i = $shr5$i & 8;
- $add$i = $and6$i | $and3$i;
- $shr7$i = $shr4$i >>> $and6$i;
- $shr8$i = $shr7$i >>> 2;
- $and9$i = $shr8$i & 4;
- $add10$i = $add$i | $and9$i;
- $shr11$i = $shr7$i >>> $and9$i;
- $shr12$i = $shr11$i >>> 1;
- $and13$i = $shr12$i & 2;
- $add14$i = $add10$i | $and13$i;
- $shr15$i = $shr11$i >>> $and13$i;
- $shr16$i = $shr15$i >>> 1;
- $and17$i = $shr16$i & 1;
- $add18$i = $add14$i | $and17$i;
- $shr19$i = $shr15$i >>> $and17$i;
- $add20$i = (($add18$i) + ($shr19$i))|0;
- $arrayidx$i = (1520 + ($add20$i<<2)|0);
- $14 = HEAP32[$arrayidx$i>>2]|0;
- $head$i = ((($14)) + 4|0);
- $15 = HEAP32[$head$i>>2]|0;
- $and21$i = $15 & -8;
- $sub22$i = (($and21$i) - ($cond))|0;
- $rsize$0$i = $sub22$i;$t$0$i = $14;$v$0$i = $14;
- while(1) {
- $arrayidx23$i = ((($t$0$i)) + 16|0);
- $16 = HEAP32[$arrayidx23$i>>2]|0;
- $cmp$i = ($16|0)==(0|0);
- if ($cmp$i) {
- $arrayidx27$i = ((($t$0$i)) + 20|0);
- $17 = HEAP32[$arrayidx27$i>>2]|0;
- $cmp28$i = ($17|0)==(0|0);
- if ($cmp28$i) {
- break;
- } else {
- $cond4$i = $17;
- }
- } else {
- $cond4$i = $16;
- }
- $head29$i = ((($cond4$i)) + 4|0);
- $18 = HEAP32[$head29$i>>2]|0;
- $and30$i = $18 & -8;
- $sub31$i = (($and30$i) - ($cond))|0;
- $cmp32$i = ($sub31$i>>>0)<($rsize$0$i>>>0);
- $spec$select$i = $cmp32$i ? $sub31$i : $rsize$0$i;
- $spec$select1$i = $cmp32$i ? $cond4$i : $v$0$i;
- $rsize$0$i = $spec$select$i;$t$0$i = $cond4$i;$v$0$i = $spec$select1$i;
- }
- $add$ptr$i = (($v$0$i) + ($cond)|0);
- $cmp35$i = ($add$ptr$i>>>0)>($v$0$i>>>0);
- if ($cmp35$i) {
- $parent$i = ((($v$0$i)) + 24|0);
- $19 = HEAP32[$parent$i>>2]|0;
- $bk$i = ((($v$0$i)) + 12|0);
- $20 = HEAP32[$bk$i>>2]|0;
- $cmp40$i = ($20|0)==($v$0$i|0);
- do {
- if ($cmp40$i) {
- $arrayidx61$i = ((($v$0$i)) + 20|0);
- $22 = HEAP32[$arrayidx61$i>>2]|0;
- $cmp62$i = ($22|0)==(0|0);
- if ($cmp62$i) {
- $arrayidx65$i = ((($v$0$i)) + 16|0);
- $23 = HEAP32[$arrayidx65$i>>2]|0;
- $cmp66$i = ($23|0)==(0|0);
- if ($cmp66$i) {
- $R$3$i = 0;
- break;
- } else {
- $R$1$i$ph = $23;$RP$1$i$ph = $arrayidx65$i;
- }
- } else {
- $R$1$i$ph = $22;$RP$1$i$ph = $arrayidx61$i;
- }
- $R$1$i = $R$1$i$ph;$RP$1$i = $RP$1$i$ph;
- while(1) {
- $arrayidx71$i = ((($R$1$i)) + 20|0);
- $24 = HEAP32[$arrayidx71$i>>2]|0;
- $cmp72$i = ($24|0)==(0|0);
- if ($cmp72$i) {
- $arrayidx75$i = ((($R$1$i)) + 16|0);
- $25 = HEAP32[$arrayidx75$i>>2]|0;
- $cmp76$i = ($25|0)==(0|0);
- if ($cmp76$i) {
- break;
- } else {
- $R$1$i$be = $25;$RP$1$i$be = $arrayidx75$i;
- }
- } else {
- $R$1$i$be = $24;$RP$1$i$be = $arrayidx71$i;
- }
- $R$1$i = $R$1$i$be;$RP$1$i = $RP$1$i$be;
- }
- HEAP32[$RP$1$i>>2] = 0;
- $R$3$i = $R$1$i;
- } else {
- $fd$i = ((($v$0$i)) + 8|0);
- $21 = HEAP32[$fd$i>>2]|0;
- $bk56$i = ((($21)) + 12|0);
- HEAP32[$bk56$i>>2] = $20;
- $fd57$i = ((($20)) + 8|0);
- HEAP32[$fd57$i>>2] = $21;
- $R$3$i = $20;
- }
- } while(0);
- $cmp90$i = ($19|0)==(0|0);
- do {
- if (!($cmp90$i)) {
- $index$i = ((($v$0$i)) + 28|0);
- $26 = HEAP32[$index$i>>2]|0;
- $arrayidx94$i = (1520 + ($26<<2)|0);
- $27 = HEAP32[$arrayidx94$i>>2]|0;
- $cmp95$i = ($v$0$i|0)==($27|0);
- if ($cmp95$i) {
- HEAP32[$arrayidx94$i>>2] = $R$3$i;
- $cond2$i = ($R$3$i|0)==(0|0);
- if ($cond2$i) {
- $shl$i = 1 << $26;
- $neg$i = $shl$i ^ -1;
- $and103$i = $13 & $neg$i;
- HEAP32[(1220)>>2] = $and103$i;
- break;
- }
- } else {
- $arrayidx113$i = ((($19)) + 16|0);
- $28 = HEAP32[$arrayidx113$i>>2]|0;
- $cmp114$i = ($28|0)==($v$0$i|0);
- $arrayidx121$i = ((($19)) + 20|0);
- $arrayidx121$i$sink = $cmp114$i ? $arrayidx113$i : $arrayidx121$i;
- HEAP32[$arrayidx121$i$sink>>2] = $R$3$i;
- $cmp126$i = ($R$3$i|0)==(0|0);
- if ($cmp126$i) {
- break;
- }
- }
- $parent135$i = ((($R$3$i)) + 24|0);
- HEAP32[$parent135$i>>2] = $19;
- $arrayidx137$i = ((($v$0$i)) + 16|0);
- $29 = HEAP32[$arrayidx137$i>>2]|0;
- $cmp138$i = ($29|0)==(0|0);
- if (!($cmp138$i)) {
- $arrayidx148$i = ((($R$3$i)) + 16|0);
- HEAP32[$arrayidx148$i>>2] = $29;
- $parent149$i = ((($29)) + 24|0);
- HEAP32[$parent149$i>>2] = $R$3$i;
- }
- $arrayidx154$i = ((($v$0$i)) + 20|0);
- $30 = HEAP32[$arrayidx154$i>>2]|0;
- $cmp155$i = ($30|0)==(0|0);
- if (!($cmp155$i)) {
- $arrayidx165$i = ((($R$3$i)) + 20|0);
- HEAP32[$arrayidx165$i>>2] = $30;
- $parent166$i = ((($30)) + 24|0);
- HEAP32[$parent166$i>>2] = $R$3$i;
- }
- }
- } while(0);
- $cmp174$i = ($rsize$0$i>>>0)<(16);
- if ($cmp174$i) {
- $add177$i = (($rsize$0$i) + ($cond))|0;
- $or178$i = $add177$i | 3;
- $head179$i = ((($v$0$i)) + 4|0);
- HEAP32[$head179$i>>2] = $or178$i;
- $add$ptr181$i = (($v$0$i) + ($add177$i)|0);
- $head182$i = ((($add$ptr181$i)) + 4|0);
- $31 = HEAP32[$head182$i>>2]|0;
- $or183$i = $31 | 1;
- HEAP32[$head182$i>>2] = $or183$i;
- } else {
- $or186$i = $cond | 3;
- $head187$i = ((($v$0$i)) + 4|0);
- HEAP32[$head187$i>>2] = $or186$i;
- $or188$i = $rsize$0$i | 1;
- $head189$i = ((($add$ptr$i)) + 4|0);
- HEAP32[$head189$i>>2] = $or188$i;
- $add$ptr190$i = (($add$ptr$i) + ($rsize$0$i)|0);
- HEAP32[$add$ptr190$i>>2] = $rsize$0$i;
- $cmp191$i = ($5|0)==(0);
- if (!($cmp191$i)) {
- $32 = HEAP32[(1236)>>2]|0;
- $shr194$i = $5 >>> 3;
- $shl195$i = $shr194$i << 1;
- $arrayidx196$i = (1256 + ($shl195$i<<2)|0);
- $shl198$i = 1 << $shr194$i;
- $and199$i = $shl198$i & $0;
- $tobool200$i = ($and199$i|0)==(0);
- if ($tobool200$i) {
- $or204$i = $shl198$i | $0;
- HEAP32[304] = $or204$i;
- $$pre$i = ((($arrayidx196$i)) + 8|0);
- $$pre$phi$iZ2D = $$pre$i;$F197$0$i = $arrayidx196$i;
- } else {
- $33 = ((($arrayidx196$i)) + 8|0);
- $34 = HEAP32[$33>>2]|0;
- $$pre$phi$iZ2D = $33;$F197$0$i = $34;
- }
- HEAP32[$$pre$phi$iZ2D>>2] = $32;
- $bk218$i = ((($F197$0$i)) + 12|0);
- HEAP32[$bk218$i>>2] = $32;
- $fd219$i = ((($32)) + 8|0);
- HEAP32[$fd219$i>>2] = $F197$0$i;
- $bk220$i = ((($32)) + 12|0);
- HEAP32[$bk220$i>>2] = $arrayidx196$i;
- }
- HEAP32[(1224)>>2] = $rsize$0$i;
- HEAP32[(1236)>>2] = $add$ptr$i;
- }
- $add$ptr225$i = ((($v$0$i)) + 8|0);
- $retval$0 = $add$ptr225$i;
- STACKTOP = sp;return ($retval$0|0);
- } else {
- $nb$0 = $cond;
- }
- }
- } else {
- $nb$0 = $cond;
- }
- } else {
- $cmp139 = ($bytes>>>0)>(4294967231);
- if ($cmp139) {
- $nb$0 = -1;
- } else {
- $add144 = (($bytes) + 11)|0;
- $and145 = $add144 & -8;
- $35 = HEAP32[(1220)>>2]|0;
- $cmp146 = ($35|0)==(0);
- if ($cmp146) {
- $nb$0 = $and145;
- } else {
- $sub$i147 = (0 - ($and145))|0;
- $shr$i148 = $add144 >>> 8;
- $cmp$i149 = ($shr$i148|0)==(0);
- if ($cmp$i149) {
- $idx$0$i = 0;
- } else {
- $cmp1$i = ($and145>>>0)>(16777215);
- if ($cmp1$i) {
- $idx$0$i = 31;
- } else {
- $sub4$i = (($shr$i148) + 1048320)|0;
- $shr5$i151 = $sub4$i >>> 16;
- $and$i152 = $shr5$i151 & 8;
- $shl$i153 = $shr$i148 << $and$i152;
- $sub6$i = (($shl$i153) + 520192)|0;
- $shr7$i154 = $sub6$i >>> 16;
- $and8$i = $shr7$i154 & 4;
- $add$i155 = $and8$i | $and$i152;
- $shl9$i = $shl$i153 << $and8$i;
- $sub10$i = (($shl9$i) + 245760)|0;
- $shr11$i156 = $sub10$i >>> 16;
- $and12$i = $shr11$i156 & 2;
- $add13$i = $add$i155 | $and12$i;
- $sub14$i = (14 - ($add13$i))|0;
- $shl15$i = $shl9$i << $and12$i;
- $shr16$i157 = $shl15$i >>> 15;
- $add17$i158 = (($sub14$i) + ($shr16$i157))|0;
- $shl18$i = $add17$i158 << 1;
- $add19$i = (($add17$i158) + 7)|0;
- $shr20$i = $and145 >>> $add19$i;
- $and21$i159 = $shr20$i & 1;
- $add22$i = $and21$i159 | $shl18$i;
- $idx$0$i = $add22$i;
- }
- }
- $arrayidx$i160 = (1520 + ($idx$0$i<<2)|0);
- $36 = HEAP32[$arrayidx$i160>>2]|0;
- $cmp24$i = ($36|0)==(0|0);
- L79: do {
- if ($cmp24$i) {
- $rsize$3$i = $sub$i147;$t$2$i = 0;$v$3$i = 0;
- label = 61;
- } else {
- $cmp26$i = ($idx$0$i|0)==(31);
- $shr27$i = $idx$0$i >>> 1;
- $sub30$i = (25 - ($shr27$i))|0;
- $cond$i = $cmp26$i ? 0 : $sub30$i;
- $shl31$i = $and145 << $cond$i;
- $rsize$0$i162 = $sub$i147;$rst$0$i = 0;$sizebits$0$i = $shl31$i;$t$0$i161 = $36;$v$0$i163 = 0;
- while(1) {
- $head$i164 = ((($t$0$i161)) + 4|0);
- $37 = HEAP32[$head$i164>>2]|0;
- $and32$i = $37 & -8;
- $sub33$i = (($and32$i) - ($and145))|0;
- $cmp34$i = ($sub33$i>>>0)<($rsize$0$i162>>>0);
- if ($cmp34$i) {
- $cmp36$i = ($sub33$i|0)==(0);
- if ($cmp36$i) {
- $rsize$418$i$ph = 0;$t$517$i$ph = $t$0$i161;$v$419$i$ph = $t$0$i161;
- label = 65;
- break L79;
- } else {
- $rsize$1$i = $sub33$i;$v$1$i = $t$0$i161;
- }
- } else {
- $rsize$1$i = $rsize$0$i162;$v$1$i = $v$0$i163;
- }
- $arrayidx40$i = ((($t$0$i161)) + 20|0);
- $38 = HEAP32[$arrayidx40$i>>2]|0;
- $shr42$i = $sizebits$0$i >>> 31;
- $arrayidx44$i = (((($t$0$i161)) + 16|0) + ($shr42$i<<2)|0);
- $39 = HEAP32[$arrayidx44$i>>2]|0;
- $cmp45$i = ($38|0)==(0|0);
- $cmp46$i = ($38|0)==($39|0);
- $or$cond1$i165 = $cmp45$i | $cmp46$i;
- $rst$1$i = $or$cond1$i165 ? $rst$0$i : $38;
- $cmp49$i = ($39|0)==(0|0);
- $spec$select5$i = $sizebits$0$i << 1;
- if ($cmp49$i) {
- $rsize$3$i = $rsize$1$i;$t$2$i = $rst$1$i;$v$3$i = $v$1$i;
- label = 61;
- break;
- } else {
- $rsize$0$i162 = $rsize$1$i;$rst$0$i = $rst$1$i;$sizebits$0$i = $spec$select5$i;$t$0$i161 = $39;$v$0$i163 = $v$1$i;
- }
- }
- }
- } while(0);
- if ((label|0) == 61) {
- $cmp55$i166 = ($t$2$i|0)==(0|0);
- $cmp57$i167 = ($v$3$i|0)==(0|0);
- $or$cond$i168 = $cmp55$i166 & $cmp57$i167;
- if ($or$cond$i168) {
- $shl60$i = 2 << $idx$0$i;
- $sub63$i = (0 - ($shl60$i))|0;
- $or$i169 = $shl60$i | $sub63$i;
- $and64$i = $or$i169 & $35;
- $cmp65$i = ($and64$i|0)==(0);
- if ($cmp65$i) {
- $nb$0 = $and145;
- break;
- }
- $sub67$i = (0 - ($and64$i))|0;
- $and68$i = $and64$i & $sub67$i;
- $sub70$i = (($and68$i) + -1)|0;
- $shr72$i = $sub70$i >>> 12;
- $and73$i = $shr72$i & 16;
- $shr75$i = $sub70$i >>> $and73$i;
- $shr76$i = $shr75$i >>> 5;
- $and77$i = $shr76$i & 8;
- $add78$i = $and77$i | $and73$i;
- $shr79$i = $shr75$i >>> $and77$i;
- $shr80$i = $shr79$i >>> 2;
- $and81$i = $shr80$i & 4;
- $add82$i = $add78$i | $and81$i;
- $shr83$i = $shr79$i >>> $and81$i;
- $shr84$i = $shr83$i >>> 1;
- $and85$i = $shr84$i & 2;
- $add86$i = $add82$i | $and85$i;
- $shr87$i = $shr83$i >>> $and85$i;
- $shr88$i = $shr87$i >>> 1;
- $and89$i = $shr88$i & 1;
- $add90$i = $add86$i | $and89$i;
- $shr91$i = $shr87$i >>> $and89$i;
- $add92$i = (($add90$i) + ($shr91$i))|0;
- $arrayidx94$i170 = (1520 + ($add92$i<<2)|0);
- $40 = HEAP32[$arrayidx94$i170>>2]|0;
- $t$4$i = $40;$v$3$i204 = 0;
- } else {
- $t$4$i = $t$2$i;$v$3$i204 = $v$3$i;
- }
- $cmp9716$i = ($t$4$i|0)==(0|0);
- if ($cmp9716$i) {
- $rsize$4$lcssa$i = $rsize$3$i;$v$4$lcssa$i = $v$3$i204;
- } else {
- $rsize$418$i$ph = $rsize$3$i;$t$517$i$ph = $t$4$i;$v$419$i$ph = $v$3$i204;
- label = 65;
- }
- }
- if ((label|0) == 65) {
- $rsize$418$i = $rsize$418$i$ph;$t$517$i = $t$517$i$ph;$v$419$i = $v$419$i$ph;
- while(1) {
- $head99$i = ((($t$517$i)) + 4|0);
- $41 = HEAP32[$head99$i>>2]|0;
- $and100$i = $41 & -8;
- $sub101$i = (($and100$i) - ($and145))|0;
- $cmp102$i = ($sub101$i>>>0)<($rsize$418$i>>>0);
- $spec$select$i171 = $cmp102$i ? $sub101$i : $rsize$418$i;
- $spec$select2$i = $cmp102$i ? $t$517$i : $v$419$i;
- $arrayidx106$i = ((($t$517$i)) + 16|0);
- $42 = HEAP32[$arrayidx106$i>>2]|0;
- $cmp107$i = ($42|0)==(0|0);
- if ($cmp107$i) {
- $arrayidx113$i173 = ((($t$517$i)) + 20|0);
- $43 = HEAP32[$arrayidx113$i173>>2]|0;
- $cond115$i = $43;
- } else {
- $cond115$i = $42;
- }
- $cmp97$i = ($cond115$i|0)==(0|0);
- if ($cmp97$i) {
- $rsize$4$lcssa$i = $spec$select$i171;$v$4$lcssa$i = $spec$select2$i;
- break;
- } else {
- $rsize$418$i = $spec$select$i171;$t$517$i = $cond115$i;$v$419$i = $spec$select2$i;
- }
- }
- }
- $cmp116$i = ($v$4$lcssa$i|0)==(0|0);
- if ($cmp116$i) {
- $nb$0 = $and145;
- } else {
- $44 = HEAP32[(1224)>>2]|0;
- $sub118$i = (($44) - ($and145))|0;
- $cmp119$i = ($rsize$4$lcssa$i>>>0)<($sub118$i>>>0);
- if ($cmp119$i) {
- $add$ptr$i174 = (($v$4$lcssa$i) + ($and145)|0);
- $cmp123$i = ($add$ptr$i174>>>0)>($v$4$lcssa$i>>>0);
- if ($cmp123$i) {
- $parent$i175 = ((($v$4$lcssa$i)) + 24|0);
- $45 = HEAP32[$parent$i175>>2]|0;
- $bk$i176 = ((($v$4$lcssa$i)) + 12|0);
- $46 = HEAP32[$bk$i176>>2]|0;
- $cmp128$i = ($46|0)==($v$4$lcssa$i|0);
- do {
- if ($cmp128$i) {
- $arrayidx151$i = ((($v$4$lcssa$i)) + 20|0);
- $48 = HEAP32[$arrayidx151$i>>2]|0;
- $cmp152$i = ($48|0)==(0|0);
- if ($cmp152$i) {
- $arrayidx155$i = ((($v$4$lcssa$i)) + 16|0);
- $49 = HEAP32[$arrayidx155$i>>2]|0;
- $cmp156$i = ($49|0)==(0|0);
- if ($cmp156$i) {
- $R$3$i188 = 0;
- break;
- } else {
- $R$1$i183$ph = $49;$RP$1$i182$ph = $arrayidx155$i;
- }
- } else {
- $R$1$i183$ph = $48;$RP$1$i182$ph = $arrayidx151$i;
- }
- $R$1$i183 = $R$1$i183$ph;$RP$1$i182 = $RP$1$i182$ph;
- while(1) {
- $arrayidx161$i = ((($R$1$i183)) + 20|0);
- $50 = HEAP32[$arrayidx161$i>>2]|0;
- $cmp162$i184 = ($50|0)==(0|0);
- if ($cmp162$i184) {
- $arrayidx165$i185 = ((($R$1$i183)) + 16|0);
- $51 = HEAP32[$arrayidx165$i185>>2]|0;
- $cmp166$i = ($51|0)==(0|0);
- if ($cmp166$i) {
- break;
- } else {
- $R$1$i183$be = $51;$RP$1$i182$be = $arrayidx165$i185;
- }
- } else {
- $R$1$i183$be = $50;$RP$1$i182$be = $arrayidx161$i;
- }
- $R$1$i183 = $R$1$i183$be;$RP$1$i182 = $RP$1$i182$be;
- }
- HEAP32[$RP$1$i182>>2] = 0;
- $R$3$i188 = $R$1$i183;
- } else {
- $fd$i177 = ((($v$4$lcssa$i)) + 8|0);
- $47 = HEAP32[$fd$i177>>2]|0;
- $bk145$i = ((($47)) + 12|0);
- HEAP32[$bk145$i>>2] = $46;
- $fd146$i = ((($46)) + 8|0);
- HEAP32[$fd146$i>>2] = $47;
- $R$3$i188 = $46;
- }
- } while(0);
- $cmp180$i = ($45|0)==(0|0);
- do {
- if ($cmp180$i) {
- $61 = $35;
- } else {
- $index$i189 = ((($v$4$lcssa$i)) + 28|0);
- $52 = HEAP32[$index$i189>>2]|0;
- $arrayidx184$i = (1520 + ($52<<2)|0);
- $53 = HEAP32[$arrayidx184$i>>2]|0;
- $cmp185$i = ($v$4$lcssa$i|0)==($53|0);
- if ($cmp185$i) {
- HEAP32[$arrayidx184$i>>2] = $R$3$i188;
- $cond3$i = ($R$3$i188|0)==(0|0);
- if ($cond3$i) {
- $shl192$i = 1 << $52;
- $neg$i190 = $shl192$i ^ -1;
- $and194$i191 = $35 & $neg$i190;
- HEAP32[(1220)>>2] = $and194$i191;
- $61 = $and194$i191;
- break;
- }
- } else {
- $arrayidx204$i = ((($45)) + 16|0);
- $54 = HEAP32[$arrayidx204$i>>2]|0;
- $cmp205$i = ($54|0)==($v$4$lcssa$i|0);
- $arrayidx212$i = ((($45)) + 20|0);
- $arrayidx212$i$sink = $cmp205$i ? $arrayidx204$i : $arrayidx212$i;
- HEAP32[$arrayidx212$i$sink>>2] = $R$3$i188;
- $cmp217$i = ($R$3$i188|0)==(0|0);
- if ($cmp217$i) {
- $61 = $35;
- break;
- }
- }
- $parent226$i = ((($R$3$i188)) + 24|0);
- HEAP32[$parent226$i>>2] = $45;
- $arrayidx228$i = ((($v$4$lcssa$i)) + 16|0);
- $55 = HEAP32[$arrayidx228$i>>2]|0;
- $cmp229$i = ($55|0)==(0|0);
- if (!($cmp229$i)) {
- $arrayidx239$i = ((($R$3$i188)) + 16|0);
- HEAP32[$arrayidx239$i>>2] = $55;
- $parent240$i = ((($55)) + 24|0);
- HEAP32[$parent240$i>>2] = $R$3$i188;
- }
- $arrayidx245$i = ((($v$4$lcssa$i)) + 20|0);
- $56 = HEAP32[$arrayidx245$i>>2]|0;
- $cmp246$i = ($56|0)==(0|0);
- if ($cmp246$i) {
- $61 = $35;
- } else {
- $arrayidx256$i = ((($R$3$i188)) + 20|0);
- HEAP32[$arrayidx256$i>>2] = $56;
- $parent257$i = ((($56)) + 24|0);
- HEAP32[$parent257$i>>2] = $R$3$i188;
- $61 = $35;
- }
- }
- } while(0);
- $cmp265$i = ($rsize$4$lcssa$i>>>0)<(16);
- L128: do {
- if ($cmp265$i) {
- $add268$i = (($rsize$4$lcssa$i) + ($and145))|0;
- $or270$i = $add268$i | 3;
- $head271$i = ((($v$4$lcssa$i)) + 4|0);
- HEAP32[$head271$i>>2] = $or270$i;
- $add$ptr273$i = (($v$4$lcssa$i) + ($add268$i)|0);
- $head274$i = ((($add$ptr273$i)) + 4|0);
- $57 = HEAP32[$head274$i>>2]|0;
- $or275$i = $57 | 1;
- HEAP32[$head274$i>>2] = $or275$i;
- } else {
- $or278$i = $and145 | 3;
- $head279$i = ((($v$4$lcssa$i)) + 4|0);
- HEAP32[$head279$i>>2] = $or278$i;
- $or280$i = $rsize$4$lcssa$i | 1;
- $head281$i = ((($add$ptr$i174)) + 4|0);
- HEAP32[$head281$i>>2] = $or280$i;
- $add$ptr282$i = (($add$ptr$i174) + ($rsize$4$lcssa$i)|0);
- HEAP32[$add$ptr282$i>>2] = $rsize$4$lcssa$i;
- $shr283$i = $rsize$4$lcssa$i >>> 3;
- $cmp284$i = ($rsize$4$lcssa$i>>>0)<(256);
- if ($cmp284$i) {
- $shl288$i = $shr283$i << 1;
- $arrayidx289$i = (1256 + ($shl288$i<<2)|0);
- $58 = HEAP32[304]|0;
- $shl291$i = 1 << $shr283$i;
- $and292$i = $58 & $shl291$i;
- $tobool293$i = ($and292$i|0)==(0);
- if ($tobool293$i) {
- $or297$i = $58 | $shl291$i;
- HEAP32[304] = $or297$i;
- $$pre$i194 = ((($arrayidx289$i)) + 8|0);
- $$pre$phi$i195Z2D = $$pre$i194;$F290$0$i = $arrayidx289$i;
- } else {
- $59 = ((($arrayidx289$i)) + 8|0);
- $60 = HEAP32[$59>>2]|0;
- $$pre$phi$i195Z2D = $59;$F290$0$i = $60;
- }
- HEAP32[$$pre$phi$i195Z2D>>2] = $add$ptr$i174;
- $bk311$i = ((($F290$0$i)) + 12|0);
- HEAP32[$bk311$i>>2] = $add$ptr$i174;
- $fd312$i = ((($add$ptr$i174)) + 8|0);
- HEAP32[$fd312$i>>2] = $F290$0$i;
- $bk313$i = ((($add$ptr$i174)) + 12|0);
- HEAP32[$bk313$i>>2] = $arrayidx289$i;
- break;
- }
- $shr318$i = $rsize$4$lcssa$i >>> 8;
- $cmp319$i = ($shr318$i|0)==(0);
- if ($cmp319$i) {
- $I316$0$i = 0;
- } else {
- $cmp323$i = ($rsize$4$lcssa$i>>>0)>(16777215);
- if ($cmp323$i) {
- $I316$0$i = 31;
- } else {
- $sub329$i = (($shr318$i) + 1048320)|0;
- $shr330$i = $sub329$i >>> 16;
- $and331$i = $shr330$i & 8;
- $shl333$i = $shr318$i << $and331$i;
- $sub334$i = (($shl333$i) + 520192)|0;
- $shr335$i = $sub334$i >>> 16;
- $and336$i = $shr335$i & 4;
- $add337$i = $and336$i | $and331$i;
- $shl338$i = $shl333$i << $and336$i;
- $sub339$i = (($shl338$i) + 245760)|0;
- $shr340$i = $sub339$i >>> 16;
- $and341$i = $shr340$i & 2;
- $add342$i = $add337$i | $and341$i;
- $sub343$i = (14 - ($add342$i))|0;
- $shl344$i = $shl338$i << $and341$i;
- $shr345$i = $shl344$i >>> 15;
- $add346$i = (($sub343$i) + ($shr345$i))|0;
- $shl347$i = $add346$i << 1;
- $add348$i = (($add346$i) + 7)|0;
- $shr349$i = $rsize$4$lcssa$i >>> $add348$i;
- $and350$i = $shr349$i & 1;
- $add351$i = $and350$i | $shl347$i;
- $I316$0$i = $add351$i;
- }
- }
- $arrayidx355$i = (1520 + ($I316$0$i<<2)|0);
- $index356$i = ((($add$ptr$i174)) + 28|0);
- HEAP32[$index356$i>>2] = $I316$0$i;
- $child357$i = ((($add$ptr$i174)) + 16|0);
- $arrayidx358$i = ((($child357$i)) + 4|0);
- HEAP32[$arrayidx358$i>>2] = 0;
- HEAP32[$child357$i>>2] = 0;
- $shl362$i = 1 << $I316$0$i;
- $and363$i = $61 & $shl362$i;
- $tobool364$i = ($and363$i|0)==(0);
- if ($tobool364$i) {
- $or368$i = $61 | $shl362$i;
- HEAP32[(1220)>>2] = $or368$i;
- HEAP32[$arrayidx355$i>>2] = $add$ptr$i174;
- $parent369$i = ((($add$ptr$i174)) + 24|0);
- HEAP32[$parent369$i>>2] = $arrayidx355$i;
- $bk370$i = ((($add$ptr$i174)) + 12|0);
- HEAP32[$bk370$i>>2] = $add$ptr$i174;
- $fd371$i = ((($add$ptr$i174)) + 8|0);
- HEAP32[$fd371$i>>2] = $add$ptr$i174;
- break;
- }
- $62 = HEAP32[$arrayidx355$i>>2]|0;
- $head38611$i = ((($62)) + 4|0);
- $63 = HEAP32[$head38611$i>>2]|0;
- $and38712$i = $63 & -8;
- $cmp38813$i = ($and38712$i|0)==($rsize$4$lcssa$i|0);
- L145: do {
- if ($cmp38813$i) {
- $T$0$lcssa$i = $62;
- } else {
- $cmp374$i = ($I316$0$i|0)==(31);
- $shr378$i = $I316$0$i >>> 1;
- $sub381$i = (25 - ($shr378$i))|0;
- $cond383$i = $cmp374$i ? 0 : $sub381$i;
- $shl384$i = $rsize$4$lcssa$i << $cond383$i;
- $K373$015$i = $shl384$i;$T$014$i = $62;
- while(1) {
- $shr392$i = $K373$015$i >>> 31;
- $arrayidx394$i = (((($T$014$i)) + 16|0) + ($shr392$i<<2)|0);
- $64 = HEAP32[$arrayidx394$i>>2]|0;
- $cmp396$i = ($64|0)==(0|0);
- if ($cmp396$i) {
- break;
- }
- $shl395$i = $K373$015$i << 1;
- $head386$i = ((($64)) + 4|0);
- $65 = HEAP32[$head386$i>>2]|0;
- $and387$i = $65 & -8;
- $cmp388$i = ($and387$i|0)==($rsize$4$lcssa$i|0);
- if ($cmp388$i) {
- $T$0$lcssa$i = $64;
- break L145;
- } else {
- $K373$015$i = $shl395$i;$T$014$i = $64;
- }
- }
- HEAP32[$arrayidx394$i>>2] = $add$ptr$i174;
- $parent406$i = ((($add$ptr$i174)) + 24|0);
- HEAP32[$parent406$i>>2] = $T$014$i;
- $bk407$i = ((($add$ptr$i174)) + 12|0);
- HEAP32[$bk407$i>>2] = $add$ptr$i174;
- $fd408$i = ((($add$ptr$i174)) + 8|0);
- HEAP32[$fd408$i>>2] = $add$ptr$i174;
- break L128;
- }
- } while(0);
- $fd416$i = ((($T$0$lcssa$i)) + 8|0);
- $66 = HEAP32[$fd416$i>>2]|0;
- $bk429$i = ((($66)) + 12|0);
- HEAP32[$bk429$i>>2] = $add$ptr$i174;
- HEAP32[$fd416$i>>2] = $add$ptr$i174;
- $fd431$i = ((($add$ptr$i174)) + 8|0);
- HEAP32[$fd431$i>>2] = $66;
- $bk432$i = ((($add$ptr$i174)) + 12|0);
- HEAP32[$bk432$i>>2] = $T$0$lcssa$i;
- $parent433$i = ((($add$ptr$i174)) + 24|0);
- HEAP32[$parent433$i>>2] = 0;
- }
- } while(0);
- $add$ptr441$i = ((($v$4$lcssa$i)) + 8|0);
- $retval$0 = $add$ptr441$i;
- STACKTOP = sp;return ($retval$0|0);
- } else {
- $nb$0 = $and145;
- }
- } else {
- $nb$0 = $and145;
- }
- }
- }
- }
- }
- } while(0);
- $67 = HEAP32[(1224)>>2]|0;
- $cmp156 = ($67>>>0)<($nb$0>>>0);
- if (!($cmp156)) {
- $sub160 = (($67) - ($nb$0))|0;
- $68 = HEAP32[(1236)>>2]|0;
- $cmp162 = ($sub160>>>0)>(15);
- if ($cmp162) {
- $add$ptr166 = (($68) + ($nb$0)|0);
- HEAP32[(1236)>>2] = $add$ptr166;
- HEAP32[(1224)>>2] = $sub160;
- $or167 = $sub160 | 1;
- $head168 = ((($add$ptr166)) + 4|0);
- HEAP32[$head168>>2] = $or167;
- $add$ptr169 = (($68) + ($67)|0);
- HEAP32[$add$ptr169>>2] = $sub160;
- $or172 = $nb$0 | 3;
- $head173 = ((($68)) + 4|0);
- HEAP32[$head173>>2] = $or172;
- } else {
- HEAP32[(1224)>>2] = 0;
- HEAP32[(1236)>>2] = 0;
- $or176 = $67 | 3;
- $head177 = ((($68)) + 4|0);
- HEAP32[$head177>>2] = $or176;
- $add$ptr178 = (($68) + ($67)|0);
- $head179 = ((($add$ptr178)) + 4|0);
- $69 = HEAP32[$head179>>2]|0;
- $or180 = $69 | 1;
- HEAP32[$head179>>2] = $or180;
- }
- $add$ptr182 = ((($68)) + 8|0);
- $retval$0 = $add$ptr182;
- STACKTOP = sp;return ($retval$0|0);
- }
- $70 = HEAP32[(1228)>>2]|0;
- $cmp186 = ($70>>>0)>($nb$0>>>0);
- if ($cmp186) {
- $sub190 = (($70) - ($nb$0))|0;
- HEAP32[(1228)>>2] = $sub190;
- $71 = HEAP32[(1240)>>2]|0;
- $add$ptr193 = (($71) + ($nb$0)|0);
- HEAP32[(1240)>>2] = $add$ptr193;
- $or194 = $sub190 | 1;
- $head195 = ((($add$ptr193)) + 4|0);
- HEAP32[$head195>>2] = $or194;
- $or197 = $nb$0 | 3;
- $head198 = ((($71)) + 4|0);
- HEAP32[$head198>>2] = $or197;
- $add$ptr199 = ((($71)) + 8|0);
- $retval$0 = $add$ptr199;
- STACKTOP = sp;return ($retval$0|0);
- }
- $72 = HEAP32[422]|0;
- $cmp$i133 = ($72|0)==(0);
- if ($cmp$i133) {
- HEAP32[(1696)>>2] = 4096;
- HEAP32[(1692)>>2] = 4096;
- HEAP32[(1700)>>2] = -1;
- HEAP32[(1704)>>2] = -1;
- HEAP32[(1708)>>2] = 0;
- HEAP32[(1660)>>2] = 0;
- $73 = $magic$i$i;
- $xor$i$i = $73 & -16;
- $and6$i$i = $xor$i$i ^ 1431655768;
- HEAP32[422] = $and6$i$i;
- $74 = 4096;
- } else {
- $$pre$i134 = HEAP32[(1696)>>2]|0;
- $74 = $$pre$i134;
- }
- $add$i135 = (($nb$0) + 48)|0;
- $sub$i136 = (($nb$0) + 47)|0;
- $add9$i = (($74) + ($sub$i136))|0;
- $neg$i137 = (0 - ($74))|0;
- $and11$i = $add9$i & $neg$i137;
- $cmp12$i = ($and11$i>>>0)>($nb$0>>>0);
- if (!($cmp12$i)) {
- $retval$0 = 0;
- STACKTOP = sp;return ($retval$0|0);
- }
- $75 = HEAP32[(1656)>>2]|0;
- $cmp15$i = ($75|0)==(0);
- if (!($cmp15$i)) {
- $76 = HEAP32[(1648)>>2]|0;
- $add17$i = (($76) + ($and11$i))|0;
- $cmp19$i = ($add17$i>>>0)<=($76>>>0);
- $cmp21$i = ($add17$i>>>0)>($75>>>0);
- $or$cond1$i = $cmp19$i | $cmp21$i;
- if ($or$cond1$i) {
- $retval$0 = 0;
- STACKTOP = sp;return ($retval$0|0);
- }
- }
- $77 = HEAP32[(1660)>>2]|0;
- $and29$i = $77 & 4;
- $tobool30$i = ($and29$i|0)==(0);
- L178: do {
- if ($tobool30$i) {
- $78 = HEAP32[(1240)>>2]|0;
- $cmp32$i138 = ($78|0)==(0|0);
- L180: do {
- if ($cmp32$i138) {
- label = 128;
- } else {
- $sp$0$i$i = (1664);
- while(1) {
- $79 = HEAP32[$sp$0$i$i>>2]|0;
- $cmp$i55$i = ($79>>>0)>($78>>>0);
- if (!($cmp$i55$i)) {
- $size$i$i = ((($sp$0$i$i)) + 4|0);
- $80 = HEAP32[$size$i$i>>2]|0;
- $add$ptr$i57$i = (($79) + ($80)|0);
- $cmp2$i$i = ($add$ptr$i57$i>>>0)>($78>>>0);
- if ($cmp2$i$i) {
- break;
- }
- }
- $next$i$i = ((($sp$0$i$i)) + 8|0);
- $81 = HEAP32[$next$i$i>>2]|0;
- $cmp3$i$i = ($81|0)==(0|0);
- if ($cmp3$i$i) {
- label = 128;
- break L180;
- } else {
- $sp$0$i$i = $81;
- }
- }
- $add77$i = (($add9$i) - ($70))|0;
- $and80$i = $add77$i & $neg$i137;
- $cmp81$i = ($and80$i>>>0)<(2147483647);
- if ($cmp81$i) {
- $size$i$i$le = ((($sp$0$i$i)) + 4|0);
- $call83$i = (_sbrk(($and80$i|0))|0);
- $86 = HEAP32[$sp$0$i$i>>2]|0;
- $87 = HEAP32[$size$i$i$le>>2]|0;
- $add$ptr$i141 = (($86) + ($87)|0);
- $cmp85$i = ($call83$i|0)==($add$ptr$i141|0);
- if ($cmp85$i) {
- $cmp89$i = ($call83$i|0)==((-1)|0);
- if ($cmp89$i) {
- $tsize$2647482$i = $and80$i;
- } else {
- $tbase$795$i = $call83$i;$tsize$794$i = $and80$i;
- label = 145;
- break L178;
- }
- } else {
- $br$2$ph$i = $call83$i;$ssize$2$ph$i = $and80$i;
- label = 136;
- }
- } else {
- $tsize$2647482$i = 0;
- }
- }
- } while(0);
- do {
- if ((label|0) == 128) {
- $call37$i = (_sbrk(0)|0);
- $cmp38$i = ($call37$i|0)==((-1)|0);
- if ($cmp38$i) {
- $tsize$2647482$i = 0;
- } else {
- $82 = $call37$i;
- $83 = HEAP32[(1692)>>2]|0;
- $sub41$i = (($83) + -1)|0;
- $and42$i = $sub41$i & $82;
- $cmp43$i = ($and42$i|0)==(0);
- $add46$i = (($sub41$i) + ($82))|0;
- $neg48$i = (0 - ($83))|0;
- $and49$i = $add46$i & $neg48$i;
- $sub50$i = (($and49$i) - ($82))|0;
- $add51$i = $cmp43$i ? 0 : $sub50$i;
- $spec$select96$i = (($add51$i) + ($and11$i))|0;
- $84 = HEAP32[(1648)>>2]|0;
- $add54$i = (($spec$select96$i) + ($84))|0;
- $cmp55$i = ($spec$select96$i>>>0)>($nb$0>>>0);
- $cmp57$i = ($spec$select96$i>>>0)<(2147483647);
- $or$cond$i = $cmp55$i & $cmp57$i;
- if ($or$cond$i) {
- $85 = HEAP32[(1656)>>2]|0;
- $cmp60$i = ($85|0)==(0);
- if (!($cmp60$i)) {
- $cmp63$i = ($add54$i>>>0)<=($84>>>0);
- $cmp66$i140 = ($add54$i>>>0)>($85>>>0);
- $or$cond2$i = $cmp63$i | $cmp66$i140;
- if ($or$cond2$i) {
- $tsize$2647482$i = 0;
- break;
- }
- }
- $call68$i = (_sbrk(($spec$select96$i|0))|0);
- $cmp69$i = ($call68$i|0)==($call37$i|0);
- if ($cmp69$i) {
- $tbase$795$i = $call37$i;$tsize$794$i = $spec$select96$i;
- label = 145;
- break L178;
- } else {
- $br$2$ph$i = $call68$i;$ssize$2$ph$i = $spec$select96$i;
- label = 136;
- }
- } else {
- $tsize$2647482$i = 0;
- }
- }
- }
- } while(0);
- do {
- if ((label|0) == 136) {
- $sub112$i = (0 - ($ssize$2$ph$i))|0;
- $cmp91$i = ($br$2$ph$i|0)!=((-1)|0);
- $cmp93$i = ($ssize$2$ph$i>>>0)<(2147483647);
- $or$cond5$i = $cmp93$i & $cmp91$i;
- $cmp96$i = ($add$i135>>>0)>($ssize$2$ph$i>>>0);
- $or$cond7$i = $cmp96$i & $or$cond5$i;
- if (!($or$cond7$i)) {
- $cmp118$i = ($br$2$ph$i|0)==((-1)|0);
- if ($cmp118$i) {
- $tsize$2647482$i = 0;
- break;
- } else {
- $tbase$795$i = $br$2$ph$i;$tsize$794$i = $ssize$2$ph$i;
- label = 145;
- break L178;
- }
- }
- $88 = HEAP32[(1696)>>2]|0;
- $sub99$i = (($sub$i136) - ($ssize$2$ph$i))|0;
- $add101$i = (($sub99$i) + ($88))|0;
- $neg103$i = (0 - ($88))|0;
- $and104$i = $add101$i & $neg103$i;
- $cmp105$i = ($and104$i>>>0)<(2147483647);
- if (!($cmp105$i)) {
- $tbase$795$i = $br$2$ph$i;$tsize$794$i = $ssize$2$ph$i;
- label = 145;
- break L178;
- }
- $call107$i = (_sbrk(($and104$i|0))|0);
- $cmp108$i = ($call107$i|0)==((-1)|0);
- if ($cmp108$i) {
- (_sbrk(($sub112$i|0))|0);
- $tsize$2647482$i = 0;
- break;
- } else {
- $add110$i = (($and104$i) + ($ssize$2$ph$i))|0;
- $tbase$795$i = $br$2$ph$i;$tsize$794$i = $add110$i;
- label = 145;
- break L178;
- }
- }
- } while(0);
- $89 = HEAP32[(1660)>>2]|0;
- $or$i = $89 | 4;
- HEAP32[(1660)>>2] = $or$i;
- $tsize$4$i = $tsize$2647482$i;
- label = 143;
- } else {
- $tsize$4$i = 0;
- label = 143;
- }
- } while(0);
- if ((label|0) == 143) {
- $cmp127$i = ($and11$i>>>0)<(2147483647);
- if ($cmp127$i) {
- $call131$i = (_sbrk(($and11$i|0))|0);
- $call132$i = (_sbrk(0)|0);
- $cmp133$i = ($call131$i|0)!=((-1)|0);
- $cmp135$i = ($call132$i|0)!=((-1)|0);
- $or$cond4$i = $cmp133$i & $cmp135$i;
- $cmp137$i = ($call131$i>>>0)<($call132$i>>>0);
- $or$cond8$i = $cmp137$i & $or$cond4$i;
- $sub$ptr$lhs$cast$i = $call132$i;
- $sub$ptr$rhs$cast$i = $call131$i;
- $sub$ptr$sub$i = (($sub$ptr$lhs$cast$i) - ($sub$ptr$rhs$cast$i))|0;
- $add140$i = (($nb$0) + 40)|0;
- $cmp141$i = ($sub$ptr$sub$i>>>0)>($add140$i>>>0);
- $spec$select9$i = $cmp141$i ? $sub$ptr$sub$i : $tsize$4$i;
- $or$cond8$not$i = $or$cond8$i ^ 1;
- $cmp14799$i = ($call131$i|0)==((-1)|0);
- $not$cmp141$i = $cmp141$i ^ 1;
- $cmp147$i = $cmp14799$i | $not$cmp141$i;
- $or$cond97$i = $cmp147$i | $or$cond8$not$i;
- if (!($or$cond97$i)) {
- $tbase$795$i = $call131$i;$tsize$794$i = $spec$select9$i;
- label = 145;
- }
- }
- }
- if ((label|0) == 145) {
- $90 = HEAP32[(1648)>>2]|0;
- $add150$i = (($90) + ($tsize$794$i))|0;
- HEAP32[(1648)>>2] = $add150$i;
- $91 = HEAP32[(1652)>>2]|0;
- $cmp151$i = ($add150$i>>>0)>($91>>>0);
- if ($cmp151$i) {
- HEAP32[(1652)>>2] = $add150$i;
- }
- $92 = HEAP32[(1240)>>2]|0;
- $cmp157$i = ($92|0)==(0|0);
- L215: do {
- if ($cmp157$i) {
- $93 = HEAP32[(1232)>>2]|0;
- $cmp159$i = ($93|0)==(0|0);
- $cmp162$i = ($tbase$795$i>>>0)<($93>>>0);
- $or$cond11$i = $cmp159$i | $cmp162$i;
- if ($or$cond11$i) {
- HEAP32[(1232)>>2] = $tbase$795$i;
- }
- HEAP32[(1664)>>2] = $tbase$795$i;
- HEAP32[(1668)>>2] = $tsize$794$i;
- HEAP32[(1676)>>2] = 0;
- $94 = HEAP32[422]|0;
- HEAP32[(1252)>>2] = $94;
- HEAP32[(1248)>>2] = -1;
- HEAP32[(1268)>>2] = (1256);
- HEAP32[(1264)>>2] = (1256);
- HEAP32[(1276)>>2] = (1264);
- HEAP32[(1272)>>2] = (1264);
- HEAP32[(1284)>>2] = (1272);
- HEAP32[(1280)>>2] = (1272);
- HEAP32[(1292)>>2] = (1280);
- HEAP32[(1288)>>2] = (1280);
- HEAP32[(1300)>>2] = (1288);
- HEAP32[(1296)>>2] = (1288);
- HEAP32[(1308)>>2] = (1296);
- HEAP32[(1304)>>2] = (1296);
- HEAP32[(1316)>>2] = (1304);
- HEAP32[(1312)>>2] = (1304);
- HEAP32[(1324)>>2] = (1312);
- HEAP32[(1320)>>2] = (1312);
- HEAP32[(1332)>>2] = (1320);
- HEAP32[(1328)>>2] = (1320);
- HEAP32[(1340)>>2] = (1328);
- HEAP32[(1336)>>2] = (1328);
- HEAP32[(1348)>>2] = (1336);
- HEAP32[(1344)>>2] = (1336);
- HEAP32[(1356)>>2] = (1344);
- HEAP32[(1352)>>2] = (1344);
- HEAP32[(1364)>>2] = (1352);
- HEAP32[(1360)>>2] = (1352);
- HEAP32[(1372)>>2] = (1360);
- HEAP32[(1368)>>2] = (1360);
- HEAP32[(1380)>>2] = (1368);
- HEAP32[(1376)>>2] = (1368);
- HEAP32[(1388)>>2] = (1376);
- HEAP32[(1384)>>2] = (1376);
- HEAP32[(1396)>>2] = (1384);
- HEAP32[(1392)>>2] = (1384);
- HEAP32[(1404)>>2] = (1392);
- HEAP32[(1400)>>2] = (1392);
- HEAP32[(1412)>>2] = (1400);
- HEAP32[(1408)>>2] = (1400);
- HEAP32[(1420)>>2] = (1408);
- HEAP32[(1416)>>2] = (1408);
- HEAP32[(1428)>>2] = (1416);
- HEAP32[(1424)>>2] = (1416);
- HEAP32[(1436)>>2] = (1424);
- HEAP32[(1432)>>2] = (1424);
- HEAP32[(1444)>>2] = (1432);
- HEAP32[(1440)>>2] = (1432);
- HEAP32[(1452)>>2] = (1440);
- HEAP32[(1448)>>2] = (1440);
- HEAP32[(1460)>>2] = (1448);
- HEAP32[(1456)>>2] = (1448);
- HEAP32[(1468)>>2] = (1456);
- HEAP32[(1464)>>2] = (1456);
- HEAP32[(1476)>>2] = (1464);
- HEAP32[(1472)>>2] = (1464);
- HEAP32[(1484)>>2] = (1472);
- HEAP32[(1480)>>2] = (1472);
- HEAP32[(1492)>>2] = (1480);
- HEAP32[(1488)>>2] = (1480);
- HEAP32[(1500)>>2] = (1488);
- HEAP32[(1496)>>2] = (1488);
- HEAP32[(1508)>>2] = (1496);
- HEAP32[(1504)>>2] = (1496);
- HEAP32[(1516)>>2] = (1504);
- HEAP32[(1512)>>2] = (1504);
- $sub172$i = (($tsize$794$i) + -40)|0;
- $add$ptr$i43$i = ((($tbase$795$i)) + 8|0);
- $95 = $add$ptr$i43$i;
- $and$i44$i = $95 & 7;
- $cmp$i45$i = ($and$i44$i|0)==(0);
- $sub$i46$i = (0 - ($95))|0;
- $and3$i47$i = $sub$i46$i & 7;
- $cond$i48$i = $cmp$i45$i ? 0 : $and3$i47$i;
- $add$ptr4$i49$i = (($tbase$795$i) + ($cond$i48$i)|0);
- $sub5$i50$i = (($sub172$i) - ($cond$i48$i))|0;
- HEAP32[(1240)>>2] = $add$ptr4$i49$i;
- HEAP32[(1228)>>2] = $sub5$i50$i;
- $or$i51$i = $sub5$i50$i | 1;
- $head$i52$i = ((($add$ptr4$i49$i)) + 4|0);
- HEAP32[$head$i52$i>>2] = $or$i51$i;
- $add$ptr6$i53$i = (($tbase$795$i) + ($sub172$i)|0);
- $head7$i54$i = ((($add$ptr6$i53$i)) + 4|0);
- HEAP32[$head7$i54$i>>2] = 40;
- $96 = HEAP32[(1704)>>2]|0;
- HEAP32[(1244)>>2] = $96;
- } else {
- $sp$0112$i = (1664);
- while(1) {
- $97 = HEAP32[$sp$0112$i>>2]|0;
- $size188$i = ((($sp$0112$i)) + 4|0);
- $98 = HEAP32[$size188$i>>2]|0;
- $add$ptr189$i = (($97) + ($98)|0);
- $cmp190$i = ($tbase$795$i|0)==($add$ptr189$i|0);
- if ($cmp190$i) {
- label = 154;
- break;
- }
- $next$i = ((($sp$0112$i)) + 8|0);
- $99 = HEAP32[$next$i>>2]|0;
- $cmp186$i = ($99|0)==(0|0);
- if ($cmp186$i) {
- break;
- } else {
- $sp$0112$i = $99;
- }
- }
- if ((label|0) == 154) {
- $size188$i$le = ((($sp$0112$i)) + 4|0);
- $sflags193$i = ((($sp$0112$i)) + 12|0);
- $100 = HEAP32[$sflags193$i>>2]|0;
- $and194$i = $100 & 8;
- $tobool195$i = ($and194$i|0)==(0);
- if ($tobool195$i) {
- $cmp203$i = ($97>>>0)<=($92>>>0);
- $cmp209$i = ($tbase$795$i>>>0)>($92>>>0);
- $or$cond98$i = $cmp209$i & $cmp203$i;
- if ($or$cond98$i) {
- $add212$i = (($98) + ($tsize$794$i))|0;
- HEAP32[$size188$i$le>>2] = $add212$i;
- $101 = HEAP32[(1228)>>2]|0;
- $add215$i = (($101) + ($tsize$794$i))|0;
- $add$ptr$i35$i = ((($92)) + 8|0);
- $102 = $add$ptr$i35$i;
- $and$i36$i = $102 & 7;
- $cmp$i37$i = ($and$i36$i|0)==(0);
- $sub$i38$i = (0 - ($102))|0;
- $and3$i39$i = $sub$i38$i & 7;
- $cond$i40$i = $cmp$i37$i ? 0 : $and3$i39$i;
- $add$ptr4$i41$i = (($92) + ($cond$i40$i)|0);
- $sub5$i$i = (($add215$i) - ($cond$i40$i))|0;
- HEAP32[(1240)>>2] = $add$ptr4$i41$i;
- HEAP32[(1228)>>2] = $sub5$i$i;
- $or$i$i = $sub5$i$i | 1;
- $head$i42$i = ((($add$ptr4$i41$i)) + 4|0);
- HEAP32[$head$i42$i>>2] = $or$i$i;
- $add$ptr6$i$i = (($92) + ($add215$i)|0);
- $head7$i$i = ((($add$ptr6$i$i)) + 4|0);
- HEAP32[$head7$i$i>>2] = 40;
- $103 = HEAP32[(1704)>>2]|0;
- HEAP32[(1244)>>2] = $103;
- break;
- }
- }
- }
- $104 = HEAP32[(1232)>>2]|0;
- $cmp218$i = ($tbase$795$i>>>0)<($104>>>0);
- if ($cmp218$i) {
- HEAP32[(1232)>>2] = $tbase$795$i;
- }
- $add$ptr227$i = (($tbase$795$i) + ($tsize$794$i)|0);
- $sp$1111$i = (1664);
- while(1) {
- $105 = HEAP32[$sp$1111$i>>2]|0;
- $cmp228$i = ($105|0)==($add$ptr227$i|0);
- if ($cmp228$i) {
- label = 162;
- break;
- }
- $next231$i = ((($sp$1111$i)) + 8|0);
- $106 = HEAP32[$next231$i>>2]|0;
- $cmp224$i = ($106|0)==(0|0);
- if ($cmp224$i) {
- break;
- } else {
- $sp$1111$i = $106;
- }
- }
- if ((label|0) == 162) {
- $sflags235$i = ((($sp$1111$i)) + 12|0);
- $107 = HEAP32[$sflags235$i>>2]|0;
- $and236$i = $107 & 8;
- $tobool237$i = ($and236$i|0)==(0);
- if ($tobool237$i) {
- HEAP32[$sp$1111$i>>2] = $tbase$795$i;
- $size245$i = ((($sp$1111$i)) + 4|0);
- $108 = HEAP32[$size245$i>>2]|0;
- $add246$i = (($108) + ($tsize$794$i))|0;
- HEAP32[$size245$i>>2] = $add246$i;
- $add$ptr$i$i = ((($tbase$795$i)) + 8|0);
- $109 = $add$ptr$i$i;
- $and$i14$i = $109 & 7;
- $cmp$i15$i = ($and$i14$i|0)==(0);
- $sub$i16$i = (0 - ($109))|0;
- $and3$i$i = $sub$i16$i & 7;
- $cond$i17$i = $cmp$i15$i ? 0 : $and3$i$i;
- $add$ptr4$i$i = (($tbase$795$i) + ($cond$i17$i)|0);
- $add$ptr5$i$i = ((($add$ptr227$i)) + 8|0);
- $110 = $add$ptr5$i$i;
- $and6$i18$i = $110 & 7;
- $cmp7$i$i = ($and6$i18$i|0)==(0);
- $sub12$i$i = (0 - ($110))|0;
- $and13$i$i = $sub12$i$i & 7;
- $cond15$i$i = $cmp7$i$i ? 0 : $and13$i$i;
- $add$ptr16$i$i = (($add$ptr227$i) + ($cond15$i$i)|0);
- $sub$ptr$lhs$cast$i19$i = $add$ptr16$i$i;
- $sub$ptr$rhs$cast$i20$i = $add$ptr4$i$i;
- $sub$ptr$sub$i21$i = (($sub$ptr$lhs$cast$i19$i) - ($sub$ptr$rhs$cast$i20$i))|0;
- $add$ptr17$i$i = (($add$ptr4$i$i) + ($nb$0)|0);
- $sub18$i$i = (($sub$ptr$sub$i21$i) - ($nb$0))|0;
- $or19$i$i = $nb$0 | 3;
- $head$i22$i = ((($add$ptr4$i$i)) + 4|0);
- HEAP32[$head$i22$i>>2] = $or19$i$i;
- $cmp20$i$i = ($92|0)==($add$ptr16$i$i|0);
- L238: do {
- if ($cmp20$i$i) {
- $111 = HEAP32[(1228)>>2]|0;
- $add$i$i = (($111) + ($sub18$i$i))|0;
- HEAP32[(1228)>>2] = $add$i$i;
- HEAP32[(1240)>>2] = $add$ptr17$i$i;
- $or22$i$i = $add$i$i | 1;
- $head23$i$i = ((($add$ptr17$i$i)) + 4|0);
- HEAP32[$head23$i$i>>2] = $or22$i$i;
- } else {
- $112 = HEAP32[(1236)>>2]|0;
- $cmp24$i$i = ($112|0)==($add$ptr16$i$i|0);
- if ($cmp24$i$i) {
- $113 = HEAP32[(1224)>>2]|0;
- $add26$i$i = (($113) + ($sub18$i$i))|0;
- HEAP32[(1224)>>2] = $add26$i$i;
- HEAP32[(1236)>>2] = $add$ptr17$i$i;
- $or28$i$i = $add26$i$i | 1;
- $head29$i$i = ((($add$ptr17$i$i)) + 4|0);
- HEAP32[$head29$i$i>>2] = $or28$i$i;
- $add$ptr30$i$i = (($add$ptr17$i$i) + ($add26$i$i)|0);
- HEAP32[$add$ptr30$i$i>>2] = $add26$i$i;
- break;
- }
- $head32$i$i = ((($add$ptr16$i$i)) + 4|0);
- $114 = HEAP32[$head32$i$i>>2]|0;
- $and33$i$i = $114 & 3;
- $cmp34$i$i = ($and33$i$i|0)==(1);
- if ($cmp34$i$i) {
- $and37$i$i = $114 & -8;
- $shr$i25$i = $114 >>> 3;
- $cmp38$i$i = ($114>>>0)<(256);
- L246: do {
- if ($cmp38$i$i) {
- $fd$i$i = ((($add$ptr16$i$i)) + 8|0);
- $115 = HEAP32[$fd$i$i>>2]|0;
- $bk$i26$i = ((($add$ptr16$i$i)) + 12|0);
- $116 = HEAP32[$bk$i26$i>>2]|0;
- $cmp46$i$i = ($116|0)==($115|0);
- if ($cmp46$i$i) {
- $shl48$i$i = 1 << $shr$i25$i;
- $neg$i$i = $shl48$i$i ^ -1;
- $117 = HEAP32[304]|0;
- $and49$i$i = $117 & $neg$i$i;
- HEAP32[304] = $and49$i$i;
- break;
- } else {
- $bk67$i$i = ((($115)) + 12|0);
- HEAP32[$bk67$i$i>>2] = $116;
- $fd68$i$i = ((($116)) + 8|0);
- HEAP32[$fd68$i$i>>2] = $115;
- break;
- }
- } else {
- $parent$i27$i = ((($add$ptr16$i$i)) + 24|0);
- $118 = HEAP32[$parent$i27$i>>2]|0;
- $bk74$i$i = ((($add$ptr16$i$i)) + 12|0);
- $119 = HEAP32[$bk74$i$i>>2]|0;
- $cmp75$i$i = ($119|0)==($add$ptr16$i$i|0);
- do {
- if ($cmp75$i$i) {
- $child$i$i = ((($add$ptr16$i$i)) + 16|0);
- $arrayidx96$i$i = ((($child$i$i)) + 4|0);
- $121 = HEAP32[$arrayidx96$i$i>>2]|0;
- $cmp97$i$i = ($121|0)==(0|0);
- if ($cmp97$i$i) {
- $122 = HEAP32[$child$i$i>>2]|0;
- $cmp100$i$i = ($122|0)==(0|0);
- if ($cmp100$i$i) {
- $R$3$i$i = 0;
- break;
- } else {
- $R$1$i$i$ph = $122;$RP$1$i$i$ph = $child$i$i;
- }
- } else {
- $R$1$i$i$ph = $121;$RP$1$i$i$ph = $arrayidx96$i$i;
- }
- $R$1$i$i = $R$1$i$i$ph;$RP$1$i$i = $RP$1$i$i$ph;
- while(1) {
- $arrayidx103$i$i = ((($R$1$i$i)) + 20|0);
- $123 = HEAP32[$arrayidx103$i$i>>2]|0;
- $cmp104$i$i = ($123|0)==(0|0);
- if ($cmp104$i$i) {
- $arrayidx107$i$i = ((($R$1$i$i)) + 16|0);
- $124 = HEAP32[$arrayidx107$i$i>>2]|0;
- $cmp108$i$i = ($124|0)==(0|0);
- if ($cmp108$i$i) {
- break;
- } else {
- $R$1$i$i$be = $124;$RP$1$i$i$be = $arrayidx107$i$i;
- }
- } else {
- $R$1$i$i$be = $123;$RP$1$i$i$be = $arrayidx103$i$i;
- }
- $R$1$i$i = $R$1$i$i$be;$RP$1$i$i = $RP$1$i$i$be;
- }
- HEAP32[$RP$1$i$i>>2] = 0;
- $R$3$i$i = $R$1$i$i;
- } else {
- $fd78$i$i = ((($add$ptr16$i$i)) + 8|0);
- $120 = HEAP32[$fd78$i$i>>2]|0;
- $bk91$i$i = ((($120)) + 12|0);
- HEAP32[$bk91$i$i>>2] = $119;
- $fd92$i$i = ((($119)) + 8|0);
- HEAP32[$fd92$i$i>>2] = $120;
- $R$3$i$i = $119;
- }
- } while(0);
- $cmp120$i28$i = ($118|0)==(0|0);
- if ($cmp120$i28$i) {
- break;
- }
- $index$i29$i = ((($add$ptr16$i$i)) + 28|0);
- $125 = HEAP32[$index$i29$i>>2]|0;
- $arrayidx123$i$i = (1520 + ($125<<2)|0);
- $126 = HEAP32[$arrayidx123$i$i>>2]|0;
- $cmp124$i$i = ($126|0)==($add$ptr16$i$i|0);
- do {
- if ($cmp124$i$i) {
- HEAP32[$arrayidx123$i$i>>2] = $R$3$i$i;
- $cond1$i$i = ($R$3$i$i|0)==(0|0);
- if (!($cond1$i$i)) {
- break;
- }
- $shl131$i$i = 1 << $125;
- $neg132$i$i = $shl131$i$i ^ -1;
- $127 = HEAP32[(1220)>>2]|0;
- $and133$i$i = $127 & $neg132$i$i;
- HEAP32[(1220)>>2] = $and133$i$i;
- break L246;
- } else {
- $arrayidx143$i$i = ((($118)) + 16|0);
- $128 = HEAP32[$arrayidx143$i$i>>2]|0;
- $cmp144$i$i = ($128|0)==($add$ptr16$i$i|0);
- $arrayidx151$i$i = ((($118)) + 20|0);
- $arrayidx151$i$i$sink = $cmp144$i$i ? $arrayidx143$i$i : $arrayidx151$i$i;
- HEAP32[$arrayidx151$i$i$sink>>2] = $R$3$i$i;
- $cmp156$i$i = ($R$3$i$i|0)==(0|0);
- if ($cmp156$i$i) {
- break L246;
- }
- }
- } while(0);
- $parent165$i$i = ((($R$3$i$i)) + 24|0);
- HEAP32[$parent165$i$i>>2] = $118;
- $child166$i$i = ((($add$ptr16$i$i)) + 16|0);
- $129 = HEAP32[$child166$i$i>>2]|0;
- $cmp168$i$i = ($129|0)==(0|0);
- if (!($cmp168$i$i)) {
- $arrayidx178$i$i = ((($R$3$i$i)) + 16|0);
- HEAP32[$arrayidx178$i$i>>2] = $129;
- $parent179$i$i = ((($129)) + 24|0);
- HEAP32[$parent179$i$i>>2] = $R$3$i$i;
- }
- $arrayidx184$i$i = ((($child166$i$i)) + 4|0);
- $130 = HEAP32[$arrayidx184$i$i>>2]|0;
- $cmp185$i$i = ($130|0)==(0|0);
- if ($cmp185$i$i) {
- break;
- }
- $arrayidx195$i$i = ((($R$3$i$i)) + 20|0);
- HEAP32[$arrayidx195$i$i>>2] = $130;
- $parent196$i$i = ((($130)) + 24|0);
- HEAP32[$parent196$i$i>>2] = $R$3$i$i;
- }
- } while(0);
- $add$ptr205$i$i = (($add$ptr16$i$i) + ($and37$i$i)|0);
- $add206$i$i = (($and37$i$i) + ($sub18$i$i))|0;
- $oldfirst$0$i$i = $add$ptr205$i$i;$qsize$0$i$i = $add206$i$i;
- } else {
- $oldfirst$0$i$i = $add$ptr16$i$i;$qsize$0$i$i = $sub18$i$i;
- }
- $head208$i$i = ((($oldfirst$0$i$i)) + 4|0);
- $131 = HEAP32[$head208$i$i>>2]|0;
- $and209$i$i = $131 & -2;
- HEAP32[$head208$i$i>>2] = $and209$i$i;
- $or210$i$i = $qsize$0$i$i | 1;
- $head211$i$i = ((($add$ptr17$i$i)) + 4|0);
- HEAP32[$head211$i$i>>2] = $or210$i$i;
- $add$ptr212$i$i = (($add$ptr17$i$i) + ($qsize$0$i$i)|0);
- HEAP32[$add$ptr212$i$i>>2] = $qsize$0$i$i;
- $shr214$i$i = $qsize$0$i$i >>> 3;
- $cmp215$i$i = ($qsize$0$i$i>>>0)<(256);
- if ($cmp215$i$i) {
- $shl222$i$i = $shr214$i$i << 1;
- $arrayidx223$i$i = (1256 + ($shl222$i$i<<2)|0);
- $132 = HEAP32[304]|0;
- $shl226$i$i = 1 << $shr214$i$i;
- $and227$i$i = $132 & $shl226$i$i;
- $tobool228$i$i = ($and227$i$i|0)==(0);
- if ($tobool228$i$i) {
- $or232$i$i = $132 | $shl226$i$i;
- HEAP32[304] = $or232$i$i;
- $$pre$i31$i = ((($arrayidx223$i$i)) + 8|0);
- $$pre$phi$i32$iZ2D = $$pre$i31$i;$F224$0$i$i = $arrayidx223$i$i;
- } else {
- $133 = ((($arrayidx223$i$i)) + 8|0);
- $134 = HEAP32[$133>>2]|0;
- $$pre$phi$i32$iZ2D = $133;$F224$0$i$i = $134;
- }
- HEAP32[$$pre$phi$i32$iZ2D>>2] = $add$ptr17$i$i;
- $bk246$i$i = ((($F224$0$i$i)) + 12|0);
- HEAP32[$bk246$i$i>>2] = $add$ptr17$i$i;
- $fd247$i$i = ((($add$ptr17$i$i)) + 8|0);
- HEAP32[$fd247$i$i>>2] = $F224$0$i$i;
- $bk248$i$i = ((($add$ptr17$i$i)) + 12|0);
- HEAP32[$bk248$i$i>>2] = $arrayidx223$i$i;
- break;
- }
- $shr253$i$i = $qsize$0$i$i >>> 8;
- $cmp254$i$i = ($shr253$i$i|0)==(0);
- do {
- if ($cmp254$i$i) {
- $I252$0$i$i = 0;
- } else {
- $cmp258$i$i = ($qsize$0$i$i>>>0)>(16777215);
- if ($cmp258$i$i) {
- $I252$0$i$i = 31;
- break;
- }
- $sub262$i$i = (($shr253$i$i) + 1048320)|0;
- $shr263$i$i = $sub262$i$i >>> 16;
- $and264$i$i = $shr263$i$i & 8;
- $shl265$i$i = $shr253$i$i << $and264$i$i;
- $sub266$i$i = (($shl265$i$i) + 520192)|0;
- $shr267$i$i = $sub266$i$i >>> 16;
- $and268$i$i = $shr267$i$i & 4;
- $add269$i$i = $and268$i$i | $and264$i$i;
- $shl270$i$i = $shl265$i$i << $and268$i$i;
- $sub271$i$i = (($shl270$i$i) + 245760)|0;
- $shr272$i$i = $sub271$i$i >>> 16;
- $and273$i$i = $shr272$i$i & 2;
- $add274$i$i = $add269$i$i | $and273$i$i;
- $sub275$i$i = (14 - ($add274$i$i))|0;
- $shl276$i$i = $shl270$i$i << $and273$i$i;
- $shr277$i$i = $shl276$i$i >>> 15;
- $add278$i$i = (($sub275$i$i) + ($shr277$i$i))|0;
- $shl279$i$i = $add278$i$i << 1;
- $add280$i$i = (($add278$i$i) + 7)|0;
- $shr281$i$i = $qsize$0$i$i >>> $add280$i$i;
- $and282$i$i = $shr281$i$i & 1;
- $add283$i$i = $and282$i$i | $shl279$i$i;
- $I252$0$i$i = $add283$i$i;
- }
- } while(0);
- $arrayidx287$i$i = (1520 + ($I252$0$i$i<<2)|0);
- $index288$i$i = ((($add$ptr17$i$i)) + 28|0);
- HEAP32[$index288$i$i>>2] = $I252$0$i$i;
- $child289$i$i = ((($add$ptr17$i$i)) + 16|0);
- $arrayidx290$i$i = ((($child289$i$i)) + 4|0);
- HEAP32[$arrayidx290$i$i>>2] = 0;
- HEAP32[$child289$i$i>>2] = 0;
- $135 = HEAP32[(1220)>>2]|0;
- $shl294$i$i = 1 << $I252$0$i$i;
- $and295$i$i = $135 & $shl294$i$i;
- $tobool296$i$i = ($and295$i$i|0)==(0);
- if ($tobool296$i$i) {
- $or300$i$i = $135 | $shl294$i$i;
- HEAP32[(1220)>>2] = $or300$i$i;
- HEAP32[$arrayidx287$i$i>>2] = $add$ptr17$i$i;
- $parent301$i$i = ((($add$ptr17$i$i)) + 24|0);
- HEAP32[$parent301$i$i>>2] = $arrayidx287$i$i;
- $bk302$i$i = ((($add$ptr17$i$i)) + 12|0);
- HEAP32[$bk302$i$i>>2] = $add$ptr17$i$i;
- $fd303$i$i = ((($add$ptr17$i$i)) + 8|0);
- HEAP32[$fd303$i$i>>2] = $add$ptr17$i$i;
- break;
- }
- $136 = HEAP32[$arrayidx287$i$i>>2]|0;
- $head3174$i$i = ((($136)) + 4|0);
- $137 = HEAP32[$head3174$i$i>>2]|0;
- $and3185$i$i = $137 & -8;
- $cmp3196$i$i = ($and3185$i$i|0)==($qsize$0$i$i|0);
- L291: do {
- if ($cmp3196$i$i) {
- $T$0$lcssa$i34$i = $136;
- } else {
- $cmp306$i$i = ($I252$0$i$i|0)==(31);
- $shr310$i$i = $I252$0$i$i >>> 1;
- $sub313$i$i = (25 - ($shr310$i$i))|0;
- $cond315$i$i = $cmp306$i$i ? 0 : $sub313$i$i;
- $shl316$i$i = $qsize$0$i$i << $cond315$i$i;
- $K305$08$i$i = $shl316$i$i;$T$07$i$i = $136;
- while(1) {
- $shr323$i$i = $K305$08$i$i >>> 31;
- $arrayidx325$i$i = (((($T$07$i$i)) + 16|0) + ($shr323$i$i<<2)|0);
- $138 = HEAP32[$arrayidx325$i$i>>2]|0;
- $cmp327$i$i = ($138|0)==(0|0);
- if ($cmp327$i$i) {
- break;
- }
- $shl326$i$i = $K305$08$i$i << 1;
- $head317$i$i = ((($138)) + 4|0);
- $139 = HEAP32[$head317$i$i>>2]|0;
- $and318$i$i = $139 & -8;
- $cmp319$i$i = ($and318$i$i|0)==($qsize$0$i$i|0);
- if ($cmp319$i$i) {
- $T$0$lcssa$i34$i = $138;
- break L291;
- } else {
- $K305$08$i$i = $shl326$i$i;$T$07$i$i = $138;
- }
- }
- HEAP32[$arrayidx325$i$i>>2] = $add$ptr17$i$i;
- $parent337$i$i = ((($add$ptr17$i$i)) + 24|0);
- HEAP32[$parent337$i$i>>2] = $T$07$i$i;
- $bk338$i$i = ((($add$ptr17$i$i)) + 12|0);
- HEAP32[$bk338$i$i>>2] = $add$ptr17$i$i;
- $fd339$i$i = ((($add$ptr17$i$i)) + 8|0);
- HEAP32[$fd339$i$i>>2] = $add$ptr17$i$i;
- break L238;
- }
- } while(0);
- $fd344$i$i = ((($T$0$lcssa$i34$i)) + 8|0);
- $140 = HEAP32[$fd344$i$i>>2]|0;
- $bk357$i$i = ((($140)) + 12|0);
- HEAP32[$bk357$i$i>>2] = $add$ptr17$i$i;
- HEAP32[$fd344$i$i>>2] = $add$ptr17$i$i;
- $fd359$i$i = ((($add$ptr17$i$i)) + 8|0);
- HEAP32[$fd359$i$i>>2] = $140;
- $bk360$i$i = ((($add$ptr17$i$i)) + 12|0);
- HEAP32[$bk360$i$i>>2] = $T$0$lcssa$i34$i;
- $parent361$i$i = ((($add$ptr17$i$i)) + 24|0);
- HEAP32[$parent361$i$i>>2] = 0;
- }
- } while(0);
- $add$ptr369$i$i = ((($add$ptr4$i$i)) + 8|0);
- $retval$0 = $add$ptr369$i$i;
- STACKTOP = sp;return ($retval$0|0);
- }
- }
- $sp$0$i$i$i = (1664);
- while(1) {
- $141 = HEAP32[$sp$0$i$i$i>>2]|0;
- $cmp$i$i$i = ($141>>>0)>($92>>>0);
- if (!($cmp$i$i$i)) {
- $size$i$i$i = ((($sp$0$i$i$i)) + 4|0);
- $142 = HEAP32[$size$i$i$i>>2]|0;
- $add$ptr$i$i$i = (($141) + ($142)|0);
- $cmp2$i$i$i = ($add$ptr$i$i$i>>>0)>($92>>>0);
- if ($cmp2$i$i$i) {
- break;
- }
- }
- $next$i$i$i = ((($sp$0$i$i$i)) + 8|0);
- $143 = HEAP32[$next$i$i$i>>2]|0;
- $sp$0$i$i$i = $143;
- }
- $add$ptr2$i$i = ((($add$ptr$i$i$i)) + -47|0);
- $add$ptr3$i$i = ((($add$ptr2$i$i)) + 8|0);
- $144 = $add$ptr3$i$i;
- $and$i$i = $144 & 7;
- $cmp$i12$i = ($and$i$i|0)==(0);
- $sub$i$i = (0 - ($144))|0;
- $and6$i13$i = $sub$i$i & 7;
- $cond$i$i = $cmp$i12$i ? 0 : $and6$i13$i;
- $add$ptr7$i$i = (($add$ptr2$i$i) + ($cond$i$i)|0);
- $add$ptr81$i$i = ((($92)) + 16|0);
- $cmp9$i$i = ($add$ptr7$i$i>>>0)<($add$ptr81$i$i>>>0);
- $cond13$i$i = $cmp9$i$i ? $92 : $add$ptr7$i$i;
- $add$ptr14$i$i = ((($cond13$i$i)) + 8|0);
- $add$ptr15$i$i = ((($cond13$i$i)) + 24|0);
- $sub16$i$i = (($tsize$794$i) + -40)|0;
- $add$ptr$i2$i$i = ((($tbase$795$i)) + 8|0);
- $145 = $add$ptr$i2$i$i;
- $and$i$i$i = $145 & 7;
- $cmp$i3$i$i = ($and$i$i$i|0)==(0);
- $sub$i$i$i = (0 - ($145))|0;
- $and3$i$i$i = $sub$i$i$i & 7;
- $cond$i$i$i = $cmp$i3$i$i ? 0 : $and3$i$i$i;
- $add$ptr4$i$i$i = (($tbase$795$i) + ($cond$i$i$i)|0);
- $sub5$i$i$i = (($sub16$i$i) - ($cond$i$i$i))|0;
- HEAP32[(1240)>>2] = $add$ptr4$i$i$i;
- HEAP32[(1228)>>2] = $sub5$i$i$i;
- $or$i$i$i = $sub5$i$i$i | 1;
- $head$i$i$i = ((($add$ptr4$i$i$i)) + 4|0);
- HEAP32[$head$i$i$i>>2] = $or$i$i$i;
- $add$ptr6$i$i$i = (($tbase$795$i) + ($sub16$i$i)|0);
- $head7$i$i$i = ((($add$ptr6$i$i$i)) + 4|0);
- HEAP32[$head7$i$i$i>>2] = 40;
- $146 = HEAP32[(1704)>>2]|0;
- HEAP32[(1244)>>2] = $146;
- $head$i$i = ((($cond13$i$i)) + 4|0);
- HEAP32[$head$i$i>>2] = 27;
- ;HEAP32[$add$ptr14$i$i>>2]=HEAP32[(1664)>>2]|0;HEAP32[$add$ptr14$i$i+4>>2]=HEAP32[(1664)+4>>2]|0;HEAP32[$add$ptr14$i$i+8>>2]=HEAP32[(1664)+8>>2]|0;HEAP32[$add$ptr14$i$i+12>>2]=HEAP32[(1664)+12>>2]|0;
- HEAP32[(1664)>>2] = $tbase$795$i;
- HEAP32[(1668)>>2] = $tsize$794$i;
- HEAP32[(1676)>>2] = 0;
- HEAP32[(1672)>>2] = $add$ptr14$i$i;
- $147 = $add$ptr15$i$i;
- while(1) {
- $add$ptr24$i$i = ((($147)) + 4|0);
- HEAP32[$add$ptr24$i$i>>2] = 7;
- $head26$i$i = ((($147)) + 8|0);
- $cmp27$i$i = ($head26$i$i>>>0)<($add$ptr$i$i$i>>>0);
- if ($cmp27$i$i) {
- $147 = $add$ptr24$i$i;
- } else {
- break;
- }
- }
- $cmp28$i$i = ($cond13$i$i|0)==($92|0);
- if (!($cmp28$i$i)) {
- $sub$ptr$lhs$cast$i$i = $cond13$i$i;
- $sub$ptr$rhs$cast$i$i = $92;
- $sub$ptr$sub$i$i = (($sub$ptr$lhs$cast$i$i) - ($sub$ptr$rhs$cast$i$i))|0;
- $148 = HEAP32[$head$i$i>>2]|0;
- $and32$i$i = $148 & -2;
- HEAP32[$head$i$i>>2] = $and32$i$i;
- $or33$i$i = $sub$ptr$sub$i$i | 1;
- $head34$i$i = ((($92)) + 4|0);
- HEAP32[$head34$i$i>>2] = $or33$i$i;
- HEAP32[$cond13$i$i>>2] = $sub$ptr$sub$i$i;
- $shr$i$i = $sub$ptr$sub$i$i >>> 3;
- $cmp36$i$i = ($sub$ptr$sub$i$i>>>0)<(256);
- if ($cmp36$i$i) {
- $shl$i$i = $shr$i$i << 1;
- $arrayidx$i$i = (1256 + ($shl$i$i<<2)|0);
- $149 = HEAP32[304]|0;
- $shl39$i$i = 1 << $shr$i$i;
- $and40$i$i = $149 & $shl39$i$i;
- $tobool$i$i = ($and40$i$i|0)==(0);
- if ($tobool$i$i) {
- $or44$i$i = $149 | $shl39$i$i;
- HEAP32[304] = $or44$i$i;
- $$pre$i$i = ((($arrayidx$i$i)) + 8|0);
- $$pre$phi$i$iZ2D = $$pre$i$i;$F$0$i$i = $arrayidx$i$i;
- } else {
- $150 = ((($arrayidx$i$i)) + 8|0);
- $151 = HEAP32[$150>>2]|0;
- $$pre$phi$i$iZ2D = $150;$F$0$i$i = $151;
- }
- HEAP32[$$pre$phi$i$iZ2D>>2] = $92;
- $bk$i$i = ((($F$0$i$i)) + 12|0);
- HEAP32[$bk$i$i>>2] = $92;
- $fd54$i$i = ((($92)) + 8|0);
- HEAP32[$fd54$i$i>>2] = $F$0$i$i;
- $bk55$i$i = ((($92)) + 12|0);
- HEAP32[$bk55$i$i>>2] = $arrayidx$i$i;
- break;
- }
- $shr58$i$i = $sub$ptr$sub$i$i >>> 8;
- $cmp59$i$i = ($shr58$i$i|0)==(0);
- if ($cmp59$i$i) {
- $I57$0$i$i = 0;
- } else {
- $cmp63$i$i = ($sub$ptr$sub$i$i>>>0)>(16777215);
- if ($cmp63$i$i) {
- $I57$0$i$i = 31;
- } else {
- $sub67$i$i = (($shr58$i$i) + 1048320)|0;
- $shr68$i$i = $sub67$i$i >>> 16;
- $and69$i$i = $shr68$i$i & 8;
- $shl70$i$i = $shr58$i$i << $and69$i$i;
- $sub71$i$i = (($shl70$i$i) + 520192)|0;
- $shr72$i$i = $sub71$i$i >>> 16;
- $and73$i$i = $shr72$i$i & 4;
- $add74$i$i = $and73$i$i | $and69$i$i;
- $shl75$i$i = $shl70$i$i << $and73$i$i;
- $sub76$i$i = (($shl75$i$i) + 245760)|0;
- $shr77$i$i = $sub76$i$i >>> 16;
- $and78$i$i = $shr77$i$i & 2;
- $add79$i$i = $add74$i$i | $and78$i$i;
- $sub80$i$i = (14 - ($add79$i$i))|0;
- $shl81$i$i = $shl75$i$i << $and78$i$i;
- $shr82$i$i = $shl81$i$i >>> 15;
- $add83$i$i = (($sub80$i$i) + ($shr82$i$i))|0;
- $shl84$i$i = $add83$i$i << 1;
- $add85$i$i = (($add83$i$i) + 7)|0;
- $shr86$i$i = $sub$ptr$sub$i$i >>> $add85$i$i;
- $and87$i$i = $shr86$i$i & 1;
- $add88$i$i = $and87$i$i | $shl84$i$i;
- $I57$0$i$i = $add88$i$i;
- }
- }
- $arrayidx91$i$i = (1520 + ($I57$0$i$i<<2)|0);
- $index$i$i = ((($92)) + 28|0);
- HEAP32[$index$i$i>>2] = $I57$0$i$i;
- $arrayidx92$i$i = ((($92)) + 20|0);
- HEAP32[$arrayidx92$i$i>>2] = 0;
- HEAP32[$add$ptr81$i$i>>2] = 0;
- $152 = HEAP32[(1220)>>2]|0;
- $shl95$i$i = 1 << $I57$0$i$i;
- $and96$i$i = $152 & $shl95$i$i;
- $tobool97$i$i = ($and96$i$i|0)==(0);
- if ($tobool97$i$i) {
- $or101$i$i = $152 | $shl95$i$i;
- HEAP32[(1220)>>2] = $or101$i$i;
- HEAP32[$arrayidx91$i$i>>2] = $92;
- $parent$i$i = ((($92)) + 24|0);
- HEAP32[$parent$i$i>>2] = $arrayidx91$i$i;
- $bk102$i$i = ((($92)) + 12|0);
- HEAP32[$bk102$i$i>>2] = $92;
- $fd103$i$i = ((($92)) + 8|0);
- HEAP32[$fd103$i$i>>2] = $92;
- break;
- }
- $153 = HEAP32[$arrayidx91$i$i>>2]|0;
- $head1186$i$i = ((($153)) + 4|0);
- $154 = HEAP32[$head1186$i$i>>2]|0;
- $and1197$i$i = $154 & -8;
- $cmp1208$i$i = ($and1197$i$i|0)==($sub$ptr$sub$i$i|0);
- L325: do {
- if ($cmp1208$i$i) {
- $T$0$lcssa$i$i = $153;
- } else {
- $cmp106$i$i = ($I57$0$i$i|0)==(31);
- $shr110$i$i = $I57$0$i$i >>> 1;
- $sub113$i$i = (25 - ($shr110$i$i))|0;
- $cond115$i$i = $cmp106$i$i ? 0 : $sub113$i$i;
- $shl116$i$i = $sub$ptr$sub$i$i << $cond115$i$i;
- $K105$010$i$i = $shl116$i$i;$T$09$i$i = $153;
- while(1) {
- $shr124$i$i = $K105$010$i$i >>> 31;
- $arrayidx126$i$i = (((($T$09$i$i)) + 16|0) + ($shr124$i$i<<2)|0);
- $155 = HEAP32[$arrayidx126$i$i>>2]|0;
- $cmp128$i$i = ($155|0)==(0|0);
- if ($cmp128$i$i) {
- break;
- }
- $shl127$i$i = $K105$010$i$i << 1;
- $head118$i$i = ((($155)) + 4|0);
- $156 = HEAP32[$head118$i$i>>2]|0;
- $and119$i$i = $156 & -8;
- $cmp120$i$i = ($and119$i$i|0)==($sub$ptr$sub$i$i|0);
- if ($cmp120$i$i) {
- $T$0$lcssa$i$i = $155;
- break L325;
- } else {
- $K105$010$i$i = $shl127$i$i;$T$09$i$i = $155;
- }
- }
- HEAP32[$arrayidx126$i$i>>2] = $92;
- $parent138$i$i = ((($92)) + 24|0);
- HEAP32[$parent138$i$i>>2] = $T$09$i$i;
- $bk139$i$i = ((($92)) + 12|0);
- HEAP32[$bk139$i$i>>2] = $92;
- $fd140$i$i = ((($92)) + 8|0);
- HEAP32[$fd140$i$i>>2] = $92;
- break L215;
- }
- } while(0);
- $fd148$i$i = ((($T$0$lcssa$i$i)) + 8|0);
- $157 = HEAP32[$fd148$i$i>>2]|0;
- $bk158$i$i = ((($157)) + 12|0);
- HEAP32[$bk158$i$i>>2] = $92;
- HEAP32[$fd148$i$i>>2] = $92;
- $fd160$i$i = ((($92)) + 8|0);
- HEAP32[$fd160$i$i>>2] = $157;
- $bk161$i$i = ((($92)) + 12|0);
- HEAP32[$bk161$i$i>>2] = $T$0$lcssa$i$i;
- $parent162$i$i = ((($92)) + 24|0);
- HEAP32[$parent162$i$i>>2] = 0;
- }
- }
- } while(0);
- $158 = HEAP32[(1228)>>2]|0;
- $cmp257$i = ($158>>>0)>($nb$0>>>0);
- if ($cmp257$i) {
- $sub260$i = (($158) - ($nb$0))|0;
- HEAP32[(1228)>>2] = $sub260$i;
- $159 = HEAP32[(1240)>>2]|0;
- $add$ptr262$i = (($159) + ($nb$0)|0);
- HEAP32[(1240)>>2] = $add$ptr262$i;
- $or264$i = $sub260$i | 1;
- $head265$i = ((($add$ptr262$i)) + 4|0);
- HEAP32[$head265$i>>2] = $or264$i;
- $or267$i = $nb$0 | 3;
- $head268$i = ((($159)) + 4|0);
- HEAP32[$head268$i>>2] = $or267$i;
- $add$ptr269$i = ((($159)) + 8|0);
- $retval$0 = $add$ptr269$i;
- STACKTOP = sp;return ($retval$0|0);
- }
- }
- $call275$i = (___errno_location()|0);
- HEAP32[$call275$i>>2] = 12;
- $retval$0 = 0;
- STACKTOP = sp;return ($retval$0|0);
-}
-function _free($mem) {
- $mem = $mem|0;
- var $$pre = 0, $$pre$phiZ2D = 0, $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $16 = 0, $17 = 0, $18 = 0, $19 = 0, $2 = 0, $20 = 0, $21 = 0, $22 = 0, $23 = 0, $24 = 0;
- var $25 = 0, $26 = 0, $27 = 0, $28 = 0, $29 = 0, $3 = 0, $30 = 0, $31 = 0, $32 = 0, $33 = 0, $34 = 0, $35 = 0, $36 = 0, $37 = 0, $38 = 0, $39 = 0, $4 = 0, $40 = 0, $41 = 0, $42 = 0;
- var $43 = 0, $44 = 0, $45 = 0, $46 = 0, $47 = 0, $48 = 0, $49 = 0, $5 = 0, $50 = 0, $51 = 0, $52 = 0, $53 = 0, $54 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $F510$0 = 0, $I534$0 = 0, $K583$0266 = 0;
- var $R$1 = 0, $R$1$be = 0, $R$1$ph = 0, $R$3 = 0, $R332$1 = 0, $R332$1$be = 0, $R332$1$ph = 0, $R332$3 = 0, $RP$1 = 0, $RP$1$be = 0, $RP$1$ph = 0, $RP360$1 = 0, $RP360$1$be = 0, $RP360$1$ph = 0, $T$0$lcssa = 0, $T$0265 = 0, $add$ptr = 0, $add$ptr16 = 0, $add$ptr217 = 0, $add$ptr261 = 0;
- var $add$ptr482 = 0, $add$ptr498 = 0, $add$ptr6 = 0, $add17 = 0, $add246 = 0, $add258 = 0, $add267 = 0, $add550 = 0, $add555 = 0, $add559 = 0, $add561 = 0, $add564 = 0, $and12 = 0, $and140 = 0, $and210 = 0, $and215 = 0, $and232 = 0, $and240 = 0, $and266 = 0, $and301 = 0;
- var $and410 = 0, $and46 = 0, $and495 = 0, $and5 = 0, $and512 = 0, $and545 = 0, $and549 = 0, $and554 = 0, $and563 = 0, $and574 = 0, $and592 = 0, $and592263 = 0, $and8 = 0, $arrayidx108 = 0, $arrayidx113 = 0, $arrayidx130 = 0, $arrayidx149 = 0, $arrayidx157 = 0, $arrayidx157$sink = 0, $arrayidx182 = 0;
- var $arrayidx188 = 0, $arrayidx198 = 0, $arrayidx362 = 0, $arrayidx374 = 0, $arrayidx379 = 0, $arrayidx400 = 0, $arrayidx419 = 0, $arrayidx427 = 0, $arrayidx427$sink = 0, $arrayidx454 = 0, $arrayidx460 = 0, $arrayidx470 = 0, $arrayidx509 = 0, $arrayidx567 = 0, $arrayidx570 = 0, $arrayidx599 = 0, $arrayidx99 = 0, $bk = 0, $bk275 = 0, $bk321 = 0;
- var $bk333 = 0, $bk355 = 0, $bk529 = 0, $bk531 = 0, $bk580 = 0, $bk611 = 0, $bk631 = 0, $bk634 = 0, $bk66 = 0, $bk73 = 0, $bk94 = 0, $child = 0, $child171 = 0, $child361 = 0, $child443 = 0, $child569 = 0, $cmp = 0, $cmp$i = 0, $cmp100 = 0, $cmp104 = 0;
- var $cmp109 = 0, $cmp114 = 0, $cmp127 = 0, $cmp13 = 0, $cmp131 = 0, $cmp150 = 0, $cmp162 = 0, $cmp173 = 0, $cmp18 = 0, $cmp189 = 0, $cmp211 = 0, $cmp22 = 0, $cmp228 = 0, $cmp243 = 0, $cmp249 = 0, $cmp25 = 0, $cmp255 = 0, $cmp269 = 0, $cmp296 = 0, $cmp334 = 0;
- var $cmp363 = 0, $cmp368 = 0, $cmp375 = 0, $cmp380 = 0, $cmp395 = 0, $cmp401 = 0, $cmp42 = 0, $cmp420 = 0, $cmp432 = 0, $cmp445 = 0, $cmp461 = 0, $cmp484 = 0, $cmp502 = 0, $cmp536 = 0, $cmp540 = 0, $cmp584 = 0, $cmp593 = 0, $cmp593264 = 0, $cmp601 = 0, $cmp640 = 0;
- var $cmp74 = 0, $cond = 0, $cond254 = 0, $cond255 = 0, $dec = 0, $fd = 0, $fd273 = 0, $fd322 = 0, $fd338 = 0, $fd356 = 0, $fd530 = 0, $fd581 = 0, $fd612 = 0, $fd620 = 0, $fd633 = 0, $fd67 = 0, $fd78 = 0, $fd95 = 0, $head209 = 0, $head216 = 0;
- var $head231 = 0, $head248 = 0, $head260 = 0, $head4 = 0, $head481 = 0, $head497 = 0, $head591 = 0, $head591262 = 0, $idx$neg = 0, $index = 0, $index399 = 0, $index568 = 0, $neg = 0, $neg139 = 0, $neg300 = 0, $neg409 = 0, $next4$i = 0, $or = 0, $or247 = 0, $or259 = 0;
- var $or480 = 0, $or496 = 0, $or516 = 0, $or578 = 0, $p$1 = 0, $parent = 0, $parent170 = 0, $parent183 = 0, $parent199 = 0, $parent331 = 0, $parent442 = 0, $parent455 = 0, $parent471 = 0, $parent579 = 0, $parent610 = 0, $parent635 = 0, $psize$1 = 0, $psize$2 = 0, $shl138 = 0, $shl299 = 0;
- var $shl408 = 0, $shl45 = 0, $shl508 = 0, $shl511 = 0, $shl546 = 0, $shl551 = 0, $shl557 = 0, $shl560 = 0, $shl573 = 0, $shl590 = 0, $shl600 = 0, $shr = 0, $shr268 = 0, $shr501 = 0, $shr535 = 0, $shr544 = 0, $shr548 = 0, $shr553 = 0, $shr558 = 0, $shr562 = 0;
- var $shr586 = 0, $shr597 = 0, $sp$0$i = 0, $sp$0$in$i = 0, $sub = 0, $sub547 = 0, $sub552 = 0, $sub556 = 0, $sub589 = 0, $tobool233 = 0, $tobool241 = 0, $tobool513 = 0, $tobool575 = 0, $tobool9 = 0, label = 0, sp = 0;
- sp = STACKTOP;
- $cmp = ($mem|0)==(0|0);
- if ($cmp) {
- return;
- }
- $add$ptr = ((($mem)) + -8|0);
- $0 = HEAP32[(1232)>>2]|0;
- $head4 = ((($mem)) + -4|0);
- $1 = HEAP32[$head4>>2]|0;
- $and5 = $1 & -8;
- $add$ptr6 = (($add$ptr) + ($and5)|0);
- $and8 = $1 & 1;
- $tobool9 = ($and8|0)==(0);
- do {
- if ($tobool9) {
- $2 = HEAP32[$add$ptr>>2]|0;
- $and12 = $1 & 3;
- $cmp13 = ($and12|0)==(0);
- if ($cmp13) {
- return;
- }
- $idx$neg = (0 - ($2))|0;
- $add$ptr16 = (($add$ptr) + ($idx$neg)|0);
- $add17 = (($2) + ($and5))|0;
- $cmp18 = ($add$ptr16>>>0)<($0>>>0);
- if ($cmp18) {
- return;
- }
- $3 = HEAP32[(1236)>>2]|0;
- $cmp22 = ($3|0)==($add$ptr16|0);
- if ($cmp22) {
- $head209 = ((($add$ptr6)) + 4|0);
- $20 = HEAP32[$head209>>2]|0;
- $and210 = $20 & 3;
- $cmp211 = ($and210|0)==(3);
- if (!($cmp211)) {
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- break;
- }
- $add$ptr217 = (($add$ptr16) + ($add17)|0);
- $head216 = ((($add$ptr16)) + 4|0);
- $or = $add17 | 1;
- $and215 = $20 & -2;
- HEAP32[(1224)>>2] = $add17;
- HEAP32[$head209>>2] = $and215;
- HEAP32[$head216>>2] = $or;
- HEAP32[$add$ptr217>>2] = $add17;
- return;
- }
- $shr = $2 >>> 3;
- $cmp25 = ($2>>>0)<(256);
- if ($cmp25) {
- $fd = ((($add$ptr16)) + 8|0);
- $4 = HEAP32[$fd>>2]|0;
- $bk = ((($add$ptr16)) + 12|0);
- $5 = HEAP32[$bk>>2]|0;
- $cmp42 = ($5|0)==($4|0);
- if ($cmp42) {
- $shl45 = 1 << $shr;
- $neg = $shl45 ^ -1;
- $6 = HEAP32[304]|0;
- $and46 = $6 & $neg;
- HEAP32[304] = $and46;
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- break;
- } else {
- $bk66 = ((($4)) + 12|0);
- HEAP32[$bk66>>2] = $5;
- $fd67 = ((($5)) + 8|0);
- HEAP32[$fd67>>2] = $4;
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- break;
- }
- }
- $parent = ((($add$ptr16)) + 24|0);
- $7 = HEAP32[$parent>>2]|0;
- $bk73 = ((($add$ptr16)) + 12|0);
- $8 = HEAP32[$bk73>>2]|0;
- $cmp74 = ($8|0)==($add$ptr16|0);
- do {
- if ($cmp74) {
- $child = ((($add$ptr16)) + 16|0);
- $arrayidx99 = ((($child)) + 4|0);
- $10 = HEAP32[$arrayidx99>>2]|0;
- $cmp100 = ($10|0)==(0|0);
- if ($cmp100) {
- $11 = HEAP32[$child>>2]|0;
- $cmp104 = ($11|0)==(0|0);
- if ($cmp104) {
- $R$3 = 0;
- break;
- } else {
- $R$1$ph = $11;$RP$1$ph = $child;
- }
- } else {
- $R$1$ph = $10;$RP$1$ph = $arrayidx99;
- }
- $R$1 = $R$1$ph;$RP$1 = $RP$1$ph;
- while(1) {
- $arrayidx108 = ((($R$1)) + 20|0);
- $12 = HEAP32[$arrayidx108>>2]|0;
- $cmp109 = ($12|0)==(0|0);
- if ($cmp109) {
- $arrayidx113 = ((($R$1)) + 16|0);
- $13 = HEAP32[$arrayidx113>>2]|0;
- $cmp114 = ($13|0)==(0|0);
- if ($cmp114) {
- break;
- } else {
- $R$1$be = $13;$RP$1$be = $arrayidx113;
- }
- } else {
- $R$1$be = $12;$RP$1$be = $arrayidx108;
- }
- $R$1 = $R$1$be;$RP$1 = $RP$1$be;
- }
- HEAP32[$RP$1>>2] = 0;
- $R$3 = $R$1;
- } else {
- $fd78 = ((($add$ptr16)) + 8|0);
- $9 = HEAP32[$fd78>>2]|0;
- $bk94 = ((($9)) + 12|0);
- HEAP32[$bk94>>2] = $8;
- $fd95 = ((($8)) + 8|0);
- HEAP32[$fd95>>2] = $9;
- $R$3 = $8;
- }
- } while(0);
- $cmp127 = ($7|0)==(0|0);
- if ($cmp127) {
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- } else {
- $index = ((($add$ptr16)) + 28|0);
- $14 = HEAP32[$index>>2]|0;
- $arrayidx130 = (1520 + ($14<<2)|0);
- $15 = HEAP32[$arrayidx130>>2]|0;
- $cmp131 = ($15|0)==($add$ptr16|0);
- if ($cmp131) {
- HEAP32[$arrayidx130>>2] = $R$3;
- $cond254 = ($R$3|0)==(0|0);
- if ($cond254) {
- $shl138 = 1 << $14;
- $neg139 = $shl138 ^ -1;
- $16 = HEAP32[(1220)>>2]|0;
- $and140 = $16 & $neg139;
- HEAP32[(1220)>>2] = $and140;
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- break;
- }
- } else {
- $arrayidx149 = ((($7)) + 16|0);
- $17 = HEAP32[$arrayidx149>>2]|0;
- $cmp150 = ($17|0)==($add$ptr16|0);
- $arrayidx157 = ((($7)) + 20|0);
- $arrayidx157$sink = $cmp150 ? $arrayidx149 : $arrayidx157;
- HEAP32[$arrayidx157$sink>>2] = $R$3;
- $cmp162 = ($R$3|0)==(0|0);
- if ($cmp162) {
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- break;
- }
- }
- $parent170 = ((($R$3)) + 24|0);
- HEAP32[$parent170>>2] = $7;
- $child171 = ((($add$ptr16)) + 16|0);
- $18 = HEAP32[$child171>>2]|0;
- $cmp173 = ($18|0)==(0|0);
- if (!($cmp173)) {
- $arrayidx182 = ((($R$3)) + 16|0);
- HEAP32[$arrayidx182>>2] = $18;
- $parent183 = ((($18)) + 24|0);
- HEAP32[$parent183>>2] = $R$3;
- }
- $arrayidx188 = ((($child171)) + 4|0);
- $19 = HEAP32[$arrayidx188>>2]|0;
- $cmp189 = ($19|0)==(0|0);
- if ($cmp189) {
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- } else {
- $arrayidx198 = ((($R$3)) + 20|0);
- HEAP32[$arrayidx198>>2] = $19;
- $parent199 = ((($19)) + 24|0);
- HEAP32[$parent199>>2] = $R$3;
- $21 = $add$ptr16;$p$1 = $add$ptr16;$psize$1 = $add17;
- }
- }
- } else {
- $21 = $add$ptr;$p$1 = $add$ptr;$psize$1 = $and5;
- }
- } while(0);
- $cmp228 = ($21>>>0)<($add$ptr6>>>0);
- if (!($cmp228)) {
- return;
- }
- $head231 = ((($add$ptr6)) + 4|0);
- $22 = HEAP32[$head231>>2]|0;
- $and232 = $22 & 1;
- $tobool233 = ($and232|0)==(0);
- if ($tobool233) {
- return;
- }
- $and240 = $22 & 2;
- $tobool241 = ($and240|0)==(0);
- if ($tobool241) {
- $23 = HEAP32[(1240)>>2]|0;
- $cmp243 = ($23|0)==($add$ptr6|0);
- if ($cmp243) {
- $24 = HEAP32[(1228)>>2]|0;
- $add246 = (($24) + ($psize$1))|0;
- HEAP32[(1228)>>2] = $add246;
- HEAP32[(1240)>>2] = $p$1;
- $or247 = $add246 | 1;
- $head248 = ((($p$1)) + 4|0);
- HEAP32[$head248>>2] = $or247;
- $25 = HEAP32[(1236)>>2]|0;
- $cmp249 = ($p$1|0)==($25|0);
- if (!($cmp249)) {
- return;
- }
- HEAP32[(1236)>>2] = 0;
- HEAP32[(1224)>>2] = 0;
- return;
- }
- $26 = HEAP32[(1236)>>2]|0;
- $cmp255 = ($26|0)==($add$ptr6|0);
- if ($cmp255) {
- $27 = HEAP32[(1224)>>2]|0;
- $add258 = (($27) + ($psize$1))|0;
- HEAP32[(1224)>>2] = $add258;
- HEAP32[(1236)>>2] = $21;
- $or259 = $add258 | 1;
- $head260 = ((($p$1)) + 4|0);
- HEAP32[$head260>>2] = $or259;
- $add$ptr261 = (($21) + ($add258)|0);
- HEAP32[$add$ptr261>>2] = $add258;
- return;
- }
- $and266 = $22 & -8;
- $add267 = (($and266) + ($psize$1))|0;
- $shr268 = $22 >>> 3;
- $cmp269 = ($22>>>0)<(256);
- do {
- if ($cmp269) {
- $fd273 = ((($add$ptr6)) + 8|0);
- $28 = HEAP32[$fd273>>2]|0;
- $bk275 = ((($add$ptr6)) + 12|0);
- $29 = HEAP32[$bk275>>2]|0;
- $cmp296 = ($29|0)==($28|0);
- if ($cmp296) {
- $shl299 = 1 << $shr268;
- $neg300 = $shl299 ^ -1;
- $30 = HEAP32[304]|0;
- $and301 = $30 & $neg300;
- HEAP32[304] = $and301;
- break;
- } else {
- $bk321 = ((($28)) + 12|0);
- HEAP32[$bk321>>2] = $29;
- $fd322 = ((($29)) + 8|0);
- HEAP32[$fd322>>2] = $28;
- break;
- }
- } else {
- $parent331 = ((($add$ptr6)) + 24|0);
- $31 = HEAP32[$parent331>>2]|0;
- $bk333 = ((($add$ptr6)) + 12|0);
- $32 = HEAP32[$bk333>>2]|0;
- $cmp334 = ($32|0)==($add$ptr6|0);
- do {
- if ($cmp334) {
- $child361 = ((($add$ptr6)) + 16|0);
- $arrayidx362 = ((($child361)) + 4|0);
- $34 = HEAP32[$arrayidx362>>2]|0;
- $cmp363 = ($34|0)==(0|0);
- if ($cmp363) {
- $35 = HEAP32[$child361>>2]|0;
- $cmp368 = ($35|0)==(0|0);
- if ($cmp368) {
- $R332$3 = 0;
- break;
- } else {
- $R332$1$ph = $35;$RP360$1$ph = $child361;
- }
- } else {
- $R332$1$ph = $34;$RP360$1$ph = $arrayidx362;
- }
- $R332$1 = $R332$1$ph;$RP360$1 = $RP360$1$ph;
- while(1) {
- $arrayidx374 = ((($R332$1)) + 20|0);
- $36 = HEAP32[$arrayidx374>>2]|0;
- $cmp375 = ($36|0)==(0|0);
- if ($cmp375) {
- $arrayidx379 = ((($R332$1)) + 16|0);
- $37 = HEAP32[$arrayidx379>>2]|0;
- $cmp380 = ($37|0)==(0|0);
- if ($cmp380) {
- break;
- } else {
- $R332$1$be = $37;$RP360$1$be = $arrayidx379;
- }
- } else {
- $R332$1$be = $36;$RP360$1$be = $arrayidx374;
- }
- $R332$1 = $R332$1$be;$RP360$1 = $RP360$1$be;
- }
- HEAP32[$RP360$1>>2] = 0;
- $R332$3 = $R332$1;
- } else {
- $fd338 = ((($add$ptr6)) + 8|0);
- $33 = HEAP32[$fd338>>2]|0;
- $bk355 = ((($33)) + 12|0);
- HEAP32[$bk355>>2] = $32;
- $fd356 = ((($32)) + 8|0);
- HEAP32[$fd356>>2] = $33;
- $R332$3 = $32;
- }
- } while(0);
- $cmp395 = ($31|0)==(0|0);
- if (!($cmp395)) {
- $index399 = ((($add$ptr6)) + 28|0);
- $38 = HEAP32[$index399>>2]|0;
- $arrayidx400 = (1520 + ($38<<2)|0);
- $39 = HEAP32[$arrayidx400>>2]|0;
- $cmp401 = ($39|0)==($add$ptr6|0);
- if ($cmp401) {
- HEAP32[$arrayidx400>>2] = $R332$3;
- $cond255 = ($R332$3|0)==(0|0);
- if ($cond255) {
- $shl408 = 1 << $38;
- $neg409 = $shl408 ^ -1;
- $40 = HEAP32[(1220)>>2]|0;
- $and410 = $40 & $neg409;
- HEAP32[(1220)>>2] = $and410;
- break;
- }
- } else {
- $arrayidx419 = ((($31)) + 16|0);
- $41 = HEAP32[$arrayidx419>>2]|0;
- $cmp420 = ($41|0)==($add$ptr6|0);
- $arrayidx427 = ((($31)) + 20|0);
- $arrayidx427$sink = $cmp420 ? $arrayidx419 : $arrayidx427;
- HEAP32[$arrayidx427$sink>>2] = $R332$3;
- $cmp432 = ($R332$3|0)==(0|0);
- if ($cmp432) {
- break;
- }
- }
- $parent442 = ((($R332$3)) + 24|0);
- HEAP32[$parent442>>2] = $31;
- $child443 = ((($add$ptr6)) + 16|0);
- $42 = HEAP32[$child443>>2]|0;
- $cmp445 = ($42|0)==(0|0);
- if (!($cmp445)) {
- $arrayidx454 = ((($R332$3)) + 16|0);
- HEAP32[$arrayidx454>>2] = $42;
- $parent455 = ((($42)) + 24|0);
- HEAP32[$parent455>>2] = $R332$3;
- }
- $arrayidx460 = ((($child443)) + 4|0);
- $43 = HEAP32[$arrayidx460>>2]|0;
- $cmp461 = ($43|0)==(0|0);
- if (!($cmp461)) {
- $arrayidx470 = ((($R332$3)) + 20|0);
- HEAP32[$arrayidx470>>2] = $43;
- $parent471 = ((($43)) + 24|0);
- HEAP32[$parent471>>2] = $R332$3;
- }
- }
- }
- } while(0);
- $or480 = $add267 | 1;
- $head481 = ((($p$1)) + 4|0);
- HEAP32[$head481>>2] = $or480;
- $add$ptr482 = (($21) + ($add267)|0);
- HEAP32[$add$ptr482>>2] = $add267;
- $44 = HEAP32[(1236)>>2]|0;
- $cmp484 = ($p$1|0)==($44|0);
- if ($cmp484) {
- HEAP32[(1224)>>2] = $add267;
- return;
- } else {
- $psize$2 = $add267;
- }
- } else {
- $and495 = $22 & -2;
- HEAP32[$head231>>2] = $and495;
- $or496 = $psize$1 | 1;
- $head497 = ((($p$1)) + 4|0);
- HEAP32[$head497>>2] = $or496;
- $add$ptr498 = (($21) + ($psize$1)|0);
- HEAP32[$add$ptr498>>2] = $psize$1;
- $psize$2 = $psize$1;
- }
- $shr501 = $psize$2 >>> 3;
- $cmp502 = ($psize$2>>>0)<(256);
- if ($cmp502) {
- $shl508 = $shr501 << 1;
- $arrayidx509 = (1256 + ($shl508<<2)|0);
- $45 = HEAP32[304]|0;
- $shl511 = 1 << $shr501;
- $and512 = $45 & $shl511;
- $tobool513 = ($and512|0)==(0);
- if ($tobool513) {
- $or516 = $45 | $shl511;
- HEAP32[304] = $or516;
- $$pre = ((($arrayidx509)) + 8|0);
- $$pre$phiZ2D = $$pre;$F510$0 = $arrayidx509;
- } else {
- $46 = ((($arrayidx509)) + 8|0);
- $47 = HEAP32[$46>>2]|0;
- $$pre$phiZ2D = $46;$F510$0 = $47;
- }
- HEAP32[$$pre$phiZ2D>>2] = $p$1;
- $bk529 = ((($F510$0)) + 12|0);
- HEAP32[$bk529>>2] = $p$1;
- $fd530 = ((($p$1)) + 8|0);
- HEAP32[$fd530>>2] = $F510$0;
- $bk531 = ((($p$1)) + 12|0);
- HEAP32[$bk531>>2] = $arrayidx509;
- return;
- }
- $shr535 = $psize$2 >>> 8;
- $cmp536 = ($shr535|0)==(0);
- if ($cmp536) {
- $I534$0 = 0;
- } else {
- $cmp540 = ($psize$2>>>0)>(16777215);
- if ($cmp540) {
- $I534$0 = 31;
- } else {
- $sub = (($shr535) + 1048320)|0;
- $shr544 = $sub >>> 16;
- $and545 = $shr544 & 8;
- $shl546 = $shr535 << $and545;
- $sub547 = (($shl546) + 520192)|0;
- $shr548 = $sub547 >>> 16;
- $and549 = $shr548 & 4;
- $add550 = $and549 | $and545;
- $shl551 = $shl546 << $and549;
- $sub552 = (($shl551) + 245760)|0;
- $shr553 = $sub552 >>> 16;
- $and554 = $shr553 & 2;
- $add555 = $add550 | $and554;
- $sub556 = (14 - ($add555))|0;
- $shl557 = $shl551 << $and554;
- $shr558 = $shl557 >>> 15;
- $add559 = (($sub556) + ($shr558))|0;
- $shl560 = $add559 << 1;
- $add561 = (($add559) + 7)|0;
- $shr562 = $psize$2 >>> $add561;
- $and563 = $shr562 & 1;
- $add564 = $and563 | $shl560;
- $I534$0 = $add564;
- }
- }
- $arrayidx567 = (1520 + ($I534$0<<2)|0);
- $index568 = ((($p$1)) + 28|0);
- HEAP32[$index568>>2] = $I534$0;
- $child569 = ((($p$1)) + 16|0);
- $arrayidx570 = ((($p$1)) + 20|0);
- HEAP32[$arrayidx570>>2] = 0;
- HEAP32[$child569>>2] = 0;
- $48 = HEAP32[(1220)>>2]|0;
- $shl573 = 1 << $I534$0;
- $and574 = $48 & $shl573;
- $tobool575 = ($and574|0)==(0);
- L112: do {
- if ($tobool575) {
- $or578 = $48 | $shl573;
- HEAP32[(1220)>>2] = $or578;
- HEAP32[$arrayidx567>>2] = $p$1;
- $parent579 = ((($p$1)) + 24|0);
- HEAP32[$parent579>>2] = $arrayidx567;
- $bk580 = ((($p$1)) + 12|0);
- HEAP32[$bk580>>2] = $p$1;
- $fd581 = ((($p$1)) + 8|0);
- HEAP32[$fd581>>2] = $p$1;
- } else {
- $49 = HEAP32[$arrayidx567>>2]|0;
- $head591262 = ((($49)) + 4|0);
- $50 = HEAP32[$head591262>>2]|0;
- $and592263 = $50 & -8;
- $cmp593264 = ($and592263|0)==($psize$2|0);
- L115: do {
- if ($cmp593264) {
- $T$0$lcssa = $49;
- } else {
- $cmp584 = ($I534$0|0)==(31);
- $shr586 = $I534$0 >>> 1;
- $sub589 = (25 - ($shr586))|0;
- $cond = $cmp584 ? 0 : $sub589;
- $shl590 = $psize$2 << $cond;
- $K583$0266 = $shl590;$T$0265 = $49;
- while(1) {
- $shr597 = $K583$0266 >>> 31;
- $arrayidx599 = (((($T$0265)) + 16|0) + ($shr597<<2)|0);
- $51 = HEAP32[$arrayidx599>>2]|0;
- $cmp601 = ($51|0)==(0|0);
- if ($cmp601) {
- break;
- }
- $shl600 = $K583$0266 << 1;
- $head591 = ((($51)) + 4|0);
- $52 = HEAP32[$head591>>2]|0;
- $and592 = $52 & -8;
- $cmp593 = ($and592|0)==($psize$2|0);
- if ($cmp593) {
- $T$0$lcssa = $51;
- break L115;
- } else {
- $K583$0266 = $shl600;$T$0265 = $51;
- }
- }
- HEAP32[$arrayidx599>>2] = $p$1;
- $parent610 = ((($p$1)) + 24|0);
- HEAP32[$parent610>>2] = $T$0265;
- $bk611 = ((($p$1)) + 12|0);
- HEAP32[$bk611>>2] = $p$1;
- $fd612 = ((($p$1)) + 8|0);
- HEAP32[$fd612>>2] = $p$1;
- break L112;
- }
- } while(0);
- $fd620 = ((($T$0$lcssa)) + 8|0);
- $53 = HEAP32[$fd620>>2]|0;
- $bk631 = ((($53)) + 12|0);
- HEAP32[$bk631>>2] = $p$1;
- HEAP32[$fd620>>2] = $p$1;
- $fd633 = ((($p$1)) + 8|0);
- HEAP32[$fd633>>2] = $53;
- $bk634 = ((($p$1)) + 12|0);
- HEAP32[$bk634>>2] = $T$0$lcssa;
- $parent635 = ((($p$1)) + 24|0);
- HEAP32[$parent635>>2] = 0;
- }
- } while(0);
- $54 = HEAP32[(1248)>>2]|0;
- $dec = (($54) + -1)|0;
- HEAP32[(1248)>>2] = $dec;
- $cmp640 = ($dec|0)==(0);
- if (!($cmp640)) {
- return;
- }
- $sp$0$in$i = (1672);
- while(1) {
- $sp$0$i = HEAP32[$sp$0$in$i>>2]|0;
- $cmp$i = ($sp$0$i|0)==(0|0);
- $next4$i = ((($sp$0$i)) + 8|0);
- if ($cmp$i) {
- break;
- } else {
- $sp$0$in$i = $next4$i;
- }
- }
- HEAP32[(1248)>>2] = -1;
- return;
-}
-function ___stdio_close($f) {
- $f = $f|0;
- var $0 = 0, $call = 0, $call1 = 0, $call2 = 0, $fd = 0, $vararg_buffer = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 16|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(16|0);
- $vararg_buffer = sp;
- $fd = ((($f)) + 60|0);
- $0 = HEAP32[$fd>>2]|0;
- $call = (_dummy($0)|0);
- HEAP32[$vararg_buffer>>2] = $call;
- $call1 = (___syscall6(6,($vararg_buffer|0))|0);
- $call2 = (___syscall_ret($call1)|0);
- STACKTOP = sp;return ($call2|0);
-}
-function ___stdio_write($f,$buf,$len) {
- $f = $f|0;
- $buf = $buf|0;
- $len = $len|0;
- var $0 = 0, $1 = 0, $10 = 0, $11 = 0, $12 = 0, $13 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $add = 0, $add$ptr = 0, $add$ptr32 = 0, $buf8 = 0, $buf_size = 0, $call = 0;
- var $call40 = 0, $call7 = 0, $call741 = 0, $call746 = 0, $cmp = 0, $cmp12 = 0, $cmp17 = 0, $cmp24 = 0, $cmp42 = 0, $cnt$0 = 0, $dec = 0, $fd = 0, $incdec$ptr = 0, $iov$043 = 0, $iov$1 = 0, $iov_base2 = 0, $iov_len = 0, $iov_len19 = 0, $iov_len23 = 0, $iov_len3 = 0;
- var $iov_len36 = 0, $iovcnt$045 = 0, $iovcnt$1 = 0, $iovs = 0, $or = 0, $rem$044 = 0, $retval$0 = 0, $sub = 0, $sub$ptr$sub = 0, $sub21 = 0, $sub28 = 0, $sub37 = 0, $vararg_buffer = 0, $vararg_buffer3 = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr6 = 0, $vararg_ptr7 = 0, $wbase = 0, $wend = 0;
- var $wend14 = 0, $wpos = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 48|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(48|0);
- $vararg_buffer3 = sp + 32|0;
- $vararg_buffer = sp + 16|0;
- $iovs = sp;
- $wbase = ((($f)) + 28|0);
- $0 = HEAP32[$wbase>>2]|0;
- HEAP32[$iovs>>2] = $0;
- $iov_len = ((($iovs)) + 4|0);
- $wpos = ((($f)) + 20|0);
- $1 = HEAP32[$wpos>>2]|0;
- $sub$ptr$sub = (($1) - ($0))|0;
- HEAP32[$iov_len>>2] = $sub$ptr$sub;
- $iov_base2 = ((($iovs)) + 8|0);
- HEAP32[$iov_base2>>2] = $buf;
- $iov_len3 = ((($iovs)) + 12|0);
- HEAP32[$iov_len3>>2] = $len;
- $add = (($sub$ptr$sub) + ($len))|0;
- $fd = ((($f)) + 60|0);
- $2 = HEAP32[$fd>>2]|0;
- $3 = $iovs;
- HEAP32[$vararg_buffer>>2] = $2;
- $vararg_ptr1 = ((($vararg_buffer)) + 4|0);
- HEAP32[$vararg_ptr1>>2] = $3;
- $vararg_ptr2 = ((($vararg_buffer)) + 8|0);
- HEAP32[$vararg_ptr2>>2] = 2;
- $call40 = (___syscall146(146,($vararg_buffer|0))|0);
- $call741 = (___syscall_ret($call40)|0);
- $cmp42 = ($add|0)==($call741|0);
- L1: do {
- if ($cmp42) {
- label = 3;
- } else {
- $call746 = $call741;$iov$043 = $iovs;$iovcnt$045 = 2;$rem$044 = $add;
- while(1) {
- $cmp12 = ($call746|0)<(0);
- if ($cmp12) {
- break;
- }
- $sub21 = (($rem$044) - ($call746))|0;
- $iov_len23 = ((($iov$043)) + 4|0);
- $9 = HEAP32[$iov_len23>>2]|0;
- $cmp24 = ($call746>>>0)>($9>>>0);
- $incdec$ptr = ((($iov$043)) + 8|0);
- $iov$1 = $cmp24 ? $incdec$ptr : $iov$043;
- $dec = $cmp24 << 31 >> 31;
- $iovcnt$1 = (($iovcnt$045) + ($dec))|0;
- $sub28 = $cmp24 ? $9 : 0;
- $cnt$0 = (($call746) - ($sub28))|0;
- $10 = HEAP32[$iov$1>>2]|0;
- $add$ptr32 = (($10) + ($cnt$0)|0);
- HEAP32[$iov$1>>2] = $add$ptr32;
- $iov_len36 = ((($iov$1)) + 4|0);
- $11 = HEAP32[$iov_len36>>2]|0;
- $sub37 = (($11) - ($cnt$0))|0;
- HEAP32[$iov_len36>>2] = $sub37;
- $12 = HEAP32[$fd>>2]|0;
- $13 = $iov$1;
- HEAP32[$vararg_buffer3>>2] = $12;
- $vararg_ptr6 = ((($vararg_buffer3)) + 4|0);
- HEAP32[$vararg_ptr6>>2] = $13;
- $vararg_ptr7 = ((($vararg_buffer3)) + 8|0);
- HEAP32[$vararg_ptr7>>2] = $iovcnt$1;
- $call = (___syscall146(146,($vararg_buffer3|0))|0);
- $call7 = (___syscall_ret($call)|0);
- $cmp = ($sub21|0)==($call7|0);
- if ($cmp) {
- label = 3;
- break L1;
- } else {
- $call746 = $call7;$iov$043 = $iov$1;$iovcnt$045 = $iovcnt$1;$rem$044 = $sub21;
- }
- }
- $wend14 = ((($f)) + 16|0);
- HEAP32[$wend14>>2] = 0;
- HEAP32[$wbase>>2] = 0;
- HEAP32[$wpos>>2] = 0;
- $7 = HEAP32[$f>>2]|0;
- $or = $7 | 32;
- HEAP32[$f>>2] = $or;
- $cmp17 = ($iovcnt$045|0)==(2);
- if ($cmp17) {
- $retval$0 = 0;
- } else {
- $iov_len19 = ((($iov$043)) + 4|0);
- $8 = HEAP32[$iov_len19>>2]|0;
- $sub = (($len) - ($8))|0;
- $retval$0 = $sub;
- }
- }
- } while(0);
- if ((label|0) == 3) {
- $buf8 = ((($f)) + 44|0);
- $4 = HEAP32[$buf8>>2]|0;
- $buf_size = ((($f)) + 48|0);
- $5 = HEAP32[$buf_size>>2]|0;
- $add$ptr = (($4) + ($5)|0);
- $wend = ((($f)) + 16|0);
- HEAP32[$wend>>2] = $add$ptr;
- $6 = $4;
- HEAP32[$wbase>>2] = $6;
- HEAP32[$wpos>>2] = $6;
- $retval$0 = $len;
- }
- STACKTOP = sp;return ($retval$0|0);
-}
-function ___stdio_seek($f,$0,$1,$whence) {
- $f = $f|0;
- $0 = $0|0;
- $1 = $1|0;
- $whence = $whence|0;
- var $10 = 0, $11 = 0, $12 = 0, $13 = 0, $14 = 0, $15 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $call = 0, $call2 = 0, $cmp = 0, $fd = 0, $ret = 0, $vararg_buffer = 0;
- var $vararg_ptr1 = 0, $vararg_ptr2 = 0, $vararg_ptr3 = 0, $vararg_ptr4 = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 32|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(32|0);
- $vararg_buffer = sp + 8|0;
- $ret = sp;
- $fd = ((($f)) + 60|0);
- $2 = HEAP32[$fd>>2]|0;
- $3 = $ret;
- HEAP32[$vararg_buffer>>2] = $2;
- $vararg_ptr1 = ((($vararg_buffer)) + 4|0);
- HEAP32[$vararg_ptr1>>2] = $1;
- $vararg_ptr2 = ((($vararg_buffer)) + 8|0);
- HEAP32[$vararg_ptr2>>2] = $0;
- $vararg_ptr3 = ((($vararg_buffer)) + 12|0);
- HEAP32[$vararg_ptr3>>2] = $3;
- $vararg_ptr4 = ((($vararg_buffer)) + 16|0);
- HEAP32[$vararg_ptr4>>2] = $whence;
- $call = (___syscall140(140,($vararg_buffer|0))|0);
- $call2 = (___syscall_ret($call)|0);
- $cmp = ($call2|0)<(0);
- if ($cmp) {
- $10 = $ret;
- $11 = $10;
- HEAP32[$11>>2] = -1;
- $12 = (($10) + 4)|0;
- $13 = $12;
- HEAP32[$13>>2] = -1;
- $14 = -1;$15 = -1;
- } else {
- $4 = $ret;
- $5 = $4;
- $6 = HEAP32[$5>>2]|0;
- $7 = (($4) + 4)|0;
- $8 = $7;
- $9 = HEAP32[$8>>2]|0;
- $14 = $9;$15 = $6;
- }
- setTempRet0(($14) | 0);
- STACKTOP = sp;return ($15|0);
-}
-function ___syscall_ret($r) {
- $r = $r|0;
- var $call = 0, $cmp = 0, $retval$0 = 0, $sub = 0, label = 0, sp = 0;
- sp = STACKTOP;
- $cmp = ($r>>>0)>(4294963200);
- if ($cmp) {
- $sub = (0 - ($r))|0;
- $call = (___errno_location()|0);
- HEAP32[$call>>2] = $sub;
- $retval$0 = -1;
- } else {
- $retval$0 = $r;
- }
- return ($retval$0|0);
-}
-function ___errno_location() {
- var label = 0, sp = 0;
- sp = STACKTOP;
- return (1712|0);
-}
-function _dummy($fd) {
- $fd = $fd|0;
- var label = 0, sp = 0;
- sp = STACKTOP;
- return ($fd|0);
-}
-function ___stdout_write($f,$buf,$len) {
- $f = $f|0;
- $buf = $buf|0;
- $len = $len|0;
- var $0 = 0, $1 = 0, $2 = 0, $and = 0, $call = 0, $call3 = 0, $fd = 0, $lbf = 0, $tobool = 0, $tobool2 = 0, $vararg_buffer = 0, $vararg_ptr1 = 0, $vararg_ptr2 = 0, $write = 0, $wsz = 0, label = 0, sp = 0;
- sp = STACKTOP;
- STACKTOP = STACKTOP + 32|0; if ((STACKTOP|0) >= (STACK_MAX|0)) abortStackOverflow(32|0);
- $vararg_buffer = sp;
- $wsz = sp + 16|0;
- $write = ((($f)) + 36|0);
- HEAP32[$write>>2] = 4;
- $0 = HEAP32[$f>>2]|0;
- $and = $0 & 64;
- $tobool = ($and|0)==(0);
- if ($tobool) {
- $fd = ((($f)) + 60|0);
- $1 = HEAP32[$fd>>2]|0;
- $2 = $wsz;
- HEAP32[$vararg_buffer>>2] = $1;
- $vararg_ptr1 = ((($vararg_buffer)) + 4|0);
- HEAP32[$vararg_ptr1>>2] = 21523;
- $vararg_ptr2 = ((($vararg_buffer)) + 8|0);
- HEAP32[$vararg_ptr2>>2] = $2;
- $call = (___syscall54(54,($vararg_buffer|0))|0);
- $tobool2 = ($call|0)==(0);
- if (!($tobool2)) {
- $lbf = ((($f)) + 75|0);
- HEAP8[$lbf>>0] = -1;
- }
- }
- $call3 = (___stdio_write($f,$buf,$len)|0);
- STACKTOP = sp;return ($call3|0);
-}
-function ___unlockfile($f) {
- $f = $f|0;
- var label = 0, sp = 0;
- sp = STACKTOP;
- return;
-}
-function ___lockfile($f) {
- $f = $f|0;
- var label = 0, sp = 0;
- sp = STACKTOP;
- return 1;
-}
-function ___ofl_lock() {
- var label = 0, sp = 0;
- sp = STACKTOP;
- ___lock((1716|0));
- return (1724|0);
-}
-function ___ofl_unlock() {
- var label = 0, sp = 0;
- sp = STACKTOP;
- ___unlock((1716|0));
- return;
-}
-function _fflush($f) {
- $f = $f|0;
- var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $call = 0, $call1 = 0, $call11 = 0, $call118 = 0, $call17 = 0, $call23 = 0, $call7 = 0, $cmp = 0, $cmp15 = 0, $cmp21 = 0, $cond10 = 0, $cond20 = 0, $f$addr$0 = 0, $f$addr$019 = 0;
- var $f$addr$022 = 0, $lock = 0, $lock14 = 0, $next = 0, $or = 0, $phitmp = 0, $r$0$lcssa = 0, $r$021 = 0, $r$1 = 0, $retval$0 = 0, $tobool = 0, $tobool12 = 0, $tobool1220 = 0, $tobool25 = 0, $tobool5 = 0, $wbase = 0, $wpos = 0, label = 0, sp = 0;
- sp = STACKTOP;
- $tobool = ($f|0)==(0|0);
- do {
- if ($tobool) {
- $1 = HEAP32[40]|0;
- $tobool5 = ($1|0)==(0|0);
- if ($tobool5) {
- $cond10 = 0;
- } else {
- $2 = HEAP32[40]|0;
- $call7 = (_fflush($2)|0);
- $cond10 = $call7;
- }
- $call11 = (___ofl_lock()|0);
- $f$addr$019 = HEAP32[$call11>>2]|0;
- $tobool1220 = ($f$addr$019|0)==(0|0);
- if ($tobool1220) {
- $r$0$lcssa = $cond10;
- } else {
- $f$addr$022 = $f$addr$019;$r$021 = $cond10;
- while(1) {
- $lock14 = ((($f$addr$022)) + 76|0);
- $3 = HEAP32[$lock14>>2]|0;
- $cmp15 = ($3|0)>(-1);
- if ($cmp15) {
- $call17 = (___lockfile($f$addr$022)|0);
- $cond20 = $call17;
- } else {
- $cond20 = 0;
- }
- $wpos = ((($f$addr$022)) + 20|0);
- $4 = HEAP32[$wpos>>2]|0;
- $wbase = ((($f$addr$022)) + 28|0);
- $5 = HEAP32[$wbase>>2]|0;
- $cmp21 = ($4>>>0)>($5>>>0);
- if ($cmp21) {
- $call23 = (___fflush_unlocked($f$addr$022)|0);
- $or = $call23 | $r$021;
- $r$1 = $or;
- } else {
- $r$1 = $r$021;
- }
- $tobool25 = ($cond20|0)==(0);
- if (!($tobool25)) {
- ___unlockfile($f$addr$022);
- }
- $next = ((($f$addr$022)) + 56|0);
- $f$addr$0 = HEAP32[$next>>2]|0;
- $tobool12 = ($f$addr$0|0)==(0|0);
- if ($tobool12) {
- $r$0$lcssa = $r$1;
- break;
- } else {
- $f$addr$022 = $f$addr$0;$r$021 = $r$1;
- }
- }
- }
- ___ofl_unlock();
- $retval$0 = $r$0$lcssa;
- } else {
- $lock = ((($f)) + 76|0);
- $0 = HEAP32[$lock>>2]|0;
- $cmp = ($0|0)>(-1);
- if (!($cmp)) {
- $call118 = (___fflush_unlocked($f)|0);
- $retval$0 = $call118;
- break;
- }
- $call = (___lockfile($f)|0);
- $phitmp = ($call|0)==(0);
- $call1 = (___fflush_unlocked($f)|0);
- if ($phitmp) {
- $retval$0 = $call1;
- } else {
- ___unlockfile($f);
- $retval$0 = $call1;
- }
- }
- } while(0);
- return ($retval$0|0);
-}
-function ___fflush_unlocked($f) {
- $f = $f|0;
- var $0 = 0, $1 = 0, $2 = 0, $3 = 0, $4 = 0, $5 = 0, $6 = 0, $7 = 0, $8 = 0, $9 = 0, $cmp = 0, $cmp4 = 0, $rend = 0, $retval$0 = 0, $rpos = 0, $seek = 0, $sub$ptr$lhs$cast = 0, $sub$ptr$rhs$cast = 0, $sub$ptr$sub = 0, $tobool = 0;
- var $wbase = 0, $wend = 0, $wpos = 0, $write = 0, label = 0, sp = 0;
- sp = STACKTOP;
- $wpos = ((($f)) + 20|0);
- $0 = HEAP32[$wpos>>2]|0;
- $wbase = ((($f)) + 28|0);
- $1 = HEAP32[$wbase>>2]|0;
- $cmp = ($0>>>0)>($1>>>0);
- if ($cmp) {
- $write = ((($f)) + 36|0);
- $2 = HEAP32[$write>>2]|0;
- (FUNCTION_TABLE_iiii[$2 & 7]($f,0,0)|0);
- $3 = HEAP32[$wpos>>2]|0;
- $tobool = ($3|0)==(0|0);
- if ($tobool) {
- $retval$0 = -1;
- } else {
- label = 3;
- }
- } else {
- label = 3;
- }
- if ((label|0) == 3) {
- $rpos = ((($f)) + 4|0);
- $4 = HEAP32[$rpos>>2]|0;
- $rend = ((($f)) + 8|0);
- $5 = HEAP32[$rend>>2]|0;
- $cmp4 = ($4>>>0)<($5>>>0);
- if ($cmp4) {
- $sub$ptr$lhs$cast = $4;
- $sub$ptr$rhs$cast = $5;
- $sub$ptr$sub = (($sub$ptr$lhs$cast) - ($sub$ptr$rhs$cast))|0;
- $6 = ($sub$ptr$sub|0)<(0);
- $7 = $6 << 31 >> 31;
- $seek = ((($f)) + 40|0);
- $8 = HEAP32[$seek>>2]|0;
- (FUNCTION_TABLE_iiiii[$8 & 3]($f,$sub$ptr$sub,$7,1)|0);
- $9 = (getTempRet0() | 0);
- }
- $wend = ((($f)) + 16|0);
- HEAP32[$wend>>2] = 0;
- HEAP32[$wbase>>2] = 0;
- HEAP32[$wpos>>2] = 0;
- HEAP32[$rend>>2] = 0;
- HEAP32[$rpos>>2] = 0;
- $retval$0 = 0;
- }
- return ($retval$0|0);
-}
-function _memcpy(dest, src, num) {
- dest = dest|0; src = src|0; num = num|0;
- var ret = 0;
- var aligned_dest_end = 0;
- var block_aligned_dest_end = 0;
- var dest_end = 0;
- // Test against a benchmarked cutoff limit for when HEAPU8.set() becomes faster to use.
- if ((num|0) >= 8192) {
- _emscripten_memcpy_big(dest|0, src|0, num|0)|0;
- return dest|0;
- }
-
- ret = dest|0;
- dest_end = (dest + num)|0;
- if ((dest&3) == (src&3)) {
- // The initial unaligned < 4-byte front.
- while (dest & 3) {
- if ((num|0) == 0) return ret|0;
- HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0);
- dest = (dest+1)|0;
- src = (src+1)|0;
- num = (num-1)|0;
- }
- aligned_dest_end = (dest_end & -4)|0;
- block_aligned_dest_end = (aligned_dest_end - 64)|0;
- while ((dest|0) <= (block_aligned_dest_end|0) ) {
- HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0);
- HEAP32[(((dest)+(4))>>2)]=((HEAP32[(((src)+(4))>>2)])|0);
- HEAP32[(((dest)+(8))>>2)]=((HEAP32[(((src)+(8))>>2)])|0);
- HEAP32[(((dest)+(12))>>2)]=((HEAP32[(((src)+(12))>>2)])|0);
- HEAP32[(((dest)+(16))>>2)]=((HEAP32[(((src)+(16))>>2)])|0);
- HEAP32[(((dest)+(20))>>2)]=((HEAP32[(((src)+(20))>>2)])|0);
- HEAP32[(((dest)+(24))>>2)]=((HEAP32[(((src)+(24))>>2)])|0);
- HEAP32[(((dest)+(28))>>2)]=((HEAP32[(((src)+(28))>>2)])|0);
- HEAP32[(((dest)+(32))>>2)]=((HEAP32[(((src)+(32))>>2)])|0);
- HEAP32[(((dest)+(36))>>2)]=((HEAP32[(((src)+(36))>>2)])|0);
- HEAP32[(((dest)+(40))>>2)]=((HEAP32[(((src)+(40))>>2)])|0);
- HEAP32[(((dest)+(44))>>2)]=((HEAP32[(((src)+(44))>>2)])|0);
- HEAP32[(((dest)+(48))>>2)]=((HEAP32[(((src)+(48))>>2)])|0);
- HEAP32[(((dest)+(52))>>2)]=((HEAP32[(((src)+(52))>>2)])|0);
- HEAP32[(((dest)+(56))>>2)]=((HEAP32[(((src)+(56))>>2)])|0);
- HEAP32[(((dest)+(60))>>2)]=((HEAP32[(((src)+(60))>>2)])|0);
- dest = (dest+64)|0;
- src = (src+64)|0;
- }
- while ((dest|0) < (aligned_dest_end|0) ) {
- HEAP32[((dest)>>2)]=((HEAP32[((src)>>2)])|0);
- dest = (dest+4)|0;
- src = (src+4)|0;
- }
- } else {
- // In the unaligned copy case, unroll a bit as well.
- aligned_dest_end = (dest_end - 4)|0;
- while ((dest|0) < (aligned_dest_end|0) ) {
- HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0);
- HEAP8[(((dest)+(1))>>0)]=((HEAP8[(((src)+(1))>>0)])|0);
- HEAP8[(((dest)+(2))>>0)]=((HEAP8[(((src)+(2))>>0)])|0);
- HEAP8[(((dest)+(3))>>0)]=((HEAP8[(((src)+(3))>>0)])|0);
- dest = (dest+4)|0;
- src = (src+4)|0;
- }
- }
- // The remaining unaligned < 4 byte tail.
- while ((dest|0) < (dest_end|0)) {
- HEAP8[((dest)>>0)]=((HEAP8[((src)>>0)])|0);
- dest = (dest+1)|0;
- src = (src+1)|0;
- }
- return ret|0;
-}
-function _memset(ptr, value, num) {
- ptr = ptr|0; value = value|0; num = num|0;
- var end = 0, aligned_end = 0, block_aligned_end = 0, value4 = 0;
- end = (ptr + num)|0;
-
- value = value & 0xff;
- if ((num|0) >= 67 /* 64 bytes for an unrolled loop + 3 bytes for unaligned head*/) {
- while ((ptr&3) != 0) {
- HEAP8[((ptr)>>0)]=value;
- ptr = (ptr+1)|0;
- }
-
- aligned_end = (end & -4)|0;
- value4 = value | (value << 8) | (value << 16) | (value << 24);
-
- block_aligned_end = (aligned_end - 64)|0;
-
- while((ptr|0) <= (block_aligned_end|0)) {
- HEAP32[((ptr)>>2)]=value4;
- HEAP32[(((ptr)+(4))>>2)]=value4;
- HEAP32[(((ptr)+(8))>>2)]=value4;
- HEAP32[(((ptr)+(12))>>2)]=value4;
- HEAP32[(((ptr)+(16))>>2)]=value4;
- HEAP32[(((ptr)+(20))>>2)]=value4;
- HEAP32[(((ptr)+(24))>>2)]=value4;
- HEAP32[(((ptr)+(28))>>2)]=value4;
- HEAP32[(((ptr)+(32))>>2)]=value4;
- HEAP32[(((ptr)+(36))>>2)]=value4;
- HEAP32[(((ptr)+(40))>>2)]=value4;
- HEAP32[(((ptr)+(44))>>2)]=value4;
- HEAP32[(((ptr)+(48))>>2)]=value4;
- HEAP32[(((ptr)+(52))>>2)]=value4;
- HEAP32[(((ptr)+(56))>>2)]=value4;
- HEAP32[(((ptr)+(60))>>2)]=value4;
- ptr = (ptr + 64)|0;
- }
-
- while ((ptr|0) < (aligned_end|0) ) {
- HEAP32[((ptr)>>2)]=value4;
- ptr = (ptr+4)|0;
- }
- }
- // The remaining bytes.
- while ((ptr|0) < (end|0)) {
- HEAP8[((ptr)>>0)]=value;
- ptr = (ptr+1)|0;
- }
- return (end-num)|0;
-}
-function _sbrk(increment) {
- increment = increment|0;
- var oldDynamicTop = 0;
- var oldDynamicTopOnChange = 0;
- var newDynamicTop = 0;
- var totalMemory = 0;
- totalMemory = _emscripten_get_heap_size()|0;
-
- oldDynamicTop = HEAP32[DYNAMICTOP_PTR>>2]|0;
- newDynamicTop = oldDynamicTop + increment | 0;
-
- if (((increment|0) > 0 & (newDynamicTop|0) < (oldDynamicTop|0)) // Detect and fail if we would wrap around signed 32-bit int.
- | (newDynamicTop|0) < 0) { // Also underflow, sbrk() should be able to be used to subtract.
- abortOnCannotGrowMemory(newDynamicTop|0)|0;
- ___setErrNo(12);
- return -1;
- }
-
- if ((newDynamicTop|0) > (totalMemory|0)) {
- if (_emscripten_resize_heap(newDynamicTop|0)|0) {
- // We resized the heap. Start another loop iteration if we need to.
- } else {
- // We failed to resize the heap.
- ___setErrNo(12);
- return -1;
- }
- }
-
- HEAP32[DYNAMICTOP_PTR>>2] = newDynamicTop|0;
-
- return oldDynamicTop|0;
-}
-
-
-function dynCall_ii(index,a1) {
- index = index|0;
- a1=a1|0;
- return FUNCTION_TABLE_ii[index&1](a1|0)|0;
-}
-
-
-function dynCall_iiii(index,a1,a2,a3) {
- index = index|0;
- a1=a1|0; a2=a2|0; a3=a3|0;
- return FUNCTION_TABLE_iiii[index&7](a1|0,a2|0,a3|0)|0;
-}
-
-
-function dynCall_iiiii(index,a1,a2,a3,a4) {
- index = index|0;
- a1=a1|0; a2=a2|0; a3=a3|0; a4=a4|0;
- return FUNCTION_TABLE_iiiii[index&3](a1|0,a2|0,a3|0,a4|0)|0;
-}
-
-function b0(p0) {
- p0 = p0|0; nullFunc_ii(0);return 0;
-}
-function b1(p0,p1,p2) {
- p0 = p0|0;p1 = p1|0;p2 = p2|0; nullFunc_iiii(1);return 0;
-}
-function b2(p0,p1,p2,p3) {
- p0 = p0|0;p1 = p1|0;p2 = p2|0;p3 = p3|0; nullFunc_iiiii(2);return 0;
-}
-
-// EMSCRIPTEN_END_FUNCS
-var FUNCTION_TABLE_ii = [b0,___stdio_close];
-var FUNCTION_TABLE_iiii = [b1,b1,___stdout_write,b1,___stdio_write,b1,b1,b1];
-var FUNCTION_TABLE_iiiii = [b2,b2,b2,___stdio_seek];
-
- return { ___errno_location: ___errno_location, _fflush: _fflush, _free: _free, _main: _main, _malloc: _malloc, _memcpy: _memcpy, _memset: _memset, _sbrk: _sbrk, dynCall_ii: dynCall_ii, dynCall_iiii: dynCall_iiii, dynCall_iiiii: dynCall_iiiii, establishStackSpace: establishStackSpace, stackAlloc: stackAlloc, stackRestore: stackRestore, stackSave: stackSave };
-})
-// EMSCRIPTEN_END_ASM
-(asmGlobalArg, asmLibraryArg, buffer);
-
-var real____errno_location = asm["___errno_location"];
-asm["___errno_location"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real____errno_location.apply(null, arguments);
-};
-
-var real__fflush = asm["_fflush"];
-asm["_fflush"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real__fflush.apply(null, arguments);
-};
-
-var real__free = asm["_free"];
-asm["_free"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real__free.apply(null, arguments);
-};
-
-var real__main = asm["_main"];
-asm["_main"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real__main.apply(null, arguments);
-};
-
-var real__malloc = asm["_malloc"];
-asm["_malloc"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real__malloc.apply(null, arguments);
-};
-
-var real__sbrk = asm["_sbrk"];
-asm["_sbrk"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real__sbrk.apply(null, arguments);
-};
-
-var real_establishStackSpace = asm["establishStackSpace"];
-asm["establishStackSpace"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real_establishStackSpace.apply(null, arguments);
-};
-
-var real_stackAlloc = asm["stackAlloc"];
-asm["stackAlloc"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real_stackAlloc.apply(null, arguments);
-};
-
-var real_stackRestore = asm["stackRestore"];
-asm["stackRestore"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real_stackRestore.apply(null, arguments);
-};
-
-var real_stackSave = asm["stackSave"];
-asm["stackSave"] = function() {
- assert(runtimeInitialized, 'you need to wait for the runtime to be ready (e.g. wait for main() to be called)');
- assert(!runtimeExited, 'the runtime was exited (use NO_EXIT_RUNTIME to keep it alive after main() exits)');
- return real_stackSave.apply(null, arguments);
-};
-var ___errno_location = Module["___errno_location"] = asm["___errno_location"];
-var _fflush = Module["_fflush"] = asm["_fflush"];
-var _free = Module["_free"] = asm["_free"];
-var _main = Module["_main"] = asm["_main"];
-var _malloc = Module["_malloc"] = asm["_malloc"];
-var _memcpy = Module["_memcpy"] = asm["_memcpy"];
-var _memset = Module["_memset"] = asm["_memset"];
-var _sbrk = Module["_sbrk"] = asm["_sbrk"];
-var establishStackSpace = Module["establishStackSpace"] = asm["establishStackSpace"];
-var stackAlloc = Module["stackAlloc"] = asm["stackAlloc"];
-var stackRestore = Module["stackRestore"] = asm["stackRestore"];
-var stackSave = Module["stackSave"] = asm["stackSave"];
-var dynCall_ii = Module["dynCall_ii"] = asm["dynCall_ii"];
-var dynCall_iiii = Module["dynCall_iiii"] = asm["dynCall_iiii"];
-var dynCall_iiiii = Module["dynCall_iiiii"] = asm["dynCall_iiiii"];
-;
-
-
-
-// === Auto-generated postamble setup entry stuff ===
-
-Module['asm'] = asm;
-
-if (!Module["intArrayFromString"]) Module["intArrayFromString"] = function() { abort("'intArrayFromString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["intArrayToString"]) Module["intArrayToString"] = function() { abort("'intArrayToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["ccall"]) Module["ccall"] = function() { abort("'ccall' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["cwrap"]) Module["cwrap"] = function() { abort("'cwrap' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["setValue"]) Module["setValue"] = function() { abort("'setValue' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getValue"]) Module["getValue"] = function() { abort("'getValue' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["allocate"]) Module["allocate"] = function() { abort("'allocate' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getMemory"]) Module["getMemory"] = function() { abort("'getMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["AsciiToString"]) Module["AsciiToString"] = function() { abort("'AsciiToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stringToAscii"]) Module["stringToAscii"] = function() { abort("'stringToAscii' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["UTF8ArrayToString"]) Module["UTF8ArrayToString"] = function() { abort("'UTF8ArrayToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["UTF8ToString"]) Module["UTF8ToString"] = function() { abort("'UTF8ToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stringToUTF8Array"]) Module["stringToUTF8Array"] = function() { abort("'stringToUTF8Array' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stringToUTF8"]) Module["stringToUTF8"] = function() { abort("'stringToUTF8' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["lengthBytesUTF8"]) Module["lengthBytesUTF8"] = function() { abort("'lengthBytesUTF8' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["UTF16ToString"]) Module["UTF16ToString"] = function() { abort("'UTF16ToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stringToUTF16"]) Module["stringToUTF16"] = function() { abort("'stringToUTF16' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["lengthBytesUTF16"]) Module["lengthBytesUTF16"] = function() { abort("'lengthBytesUTF16' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["UTF32ToString"]) Module["UTF32ToString"] = function() { abort("'UTF32ToString' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stringToUTF32"]) Module["stringToUTF32"] = function() { abort("'stringToUTF32' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["lengthBytesUTF32"]) Module["lengthBytesUTF32"] = function() { abort("'lengthBytesUTF32' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["allocateUTF8"]) Module["allocateUTF8"] = function() { abort("'allocateUTF8' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stackTrace"]) Module["stackTrace"] = function() { abort("'stackTrace' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addOnPreRun"]) Module["addOnPreRun"] = function() { abort("'addOnPreRun' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addOnInit"]) Module["addOnInit"] = function() { abort("'addOnInit' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addOnPreMain"]) Module["addOnPreMain"] = function() { abort("'addOnPreMain' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addOnExit"]) Module["addOnExit"] = function() { abort("'addOnExit' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addOnPostRun"]) Module["addOnPostRun"] = function() { abort("'addOnPostRun' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["writeStringToMemory"]) Module["writeStringToMemory"] = function() { abort("'writeStringToMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["writeArrayToMemory"]) Module["writeArrayToMemory"] = function() { abort("'writeArrayToMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["writeAsciiToMemory"]) Module["writeAsciiToMemory"] = function() { abort("'writeAsciiToMemory' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addRunDependency"]) Module["addRunDependency"] = function() { abort("'addRunDependency' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["removeRunDependency"]) Module["removeRunDependency"] = function() { abort("'removeRunDependency' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["ENV"]) Module["ENV"] = function() { abort("'ENV' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["FS"]) Module["FS"] = function() { abort("'FS' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["FS_createFolder"]) Module["FS_createFolder"] = function() { abort("'FS_createFolder' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createPath"]) Module["FS_createPath"] = function() { abort("'FS_createPath' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createDataFile"]) Module["FS_createDataFile"] = function() { abort("'FS_createDataFile' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createPreloadedFile"]) Module["FS_createPreloadedFile"] = function() { abort("'FS_createPreloadedFile' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createLazyFile"]) Module["FS_createLazyFile"] = function() { abort("'FS_createLazyFile' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createLink"]) Module["FS_createLink"] = function() { abort("'FS_createLink' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_createDevice"]) Module["FS_createDevice"] = function() { abort("'FS_createDevice' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["FS_unlink"]) Module["FS_unlink"] = function() { abort("'FS_unlink' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ). Alternatively, forcing filesystem support (-s FORCE_FILESYSTEM=1) can export this for you") };
-if (!Module["GL"]) Module["GL"] = function() { abort("'GL' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["dynamicAlloc"]) Module["dynamicAlloc"] = function() { abort("'dynamicAlloc' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["warnOnce"]) Module["warnOnce"] = function() { abort("'warnOnce' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["loadDynamicLibrary"]) Module["loadDynamicLibrary"] = function() { abort("'loadDynamicLibrary' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["loadWebAssemblyModule"]) Module["loadWebAssemblyModule"] = function() { abort("'loadWebAssemblyModule' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getLEB"]) Module["getLEB"] = function() { abort("'getLEB' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getFunctionTables"]) Module["getFunctionTables"] = function() { abort("'getFunctionTables' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["alignFunctionTables"]) Module["alignFunctionTables"] = function() { abort("'alignFunctionTables' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["registerFunctions"]) Module["registerFunctions"] = function() { abort("'registerFunctions' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["addFunction"]) Module["addFunction"] = function() { abort("'addFunction' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["removeFunction"]) Module["removeFunction"] = function() { abort("'removeFunction' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getFuncWrapper"]) Module["getFuncWrapper"] = function() { abort("'getFuncWrapper' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["prettyPrint"]) Module["prettyPrint"] = function() { abort("'prettyPrint' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["makeBigInt"]) Module["makeBigInt"] = function() { abort("'makeBigInt' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["dynCall"]) Module["dynCall"] = function() { abort("'dynCall' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getCompilerSetting"]) Module["getCompilerSetting"] = function() { abort("'getCompilerSetting' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stackSave"]) Module["stackSave"] = function() { abort("'stackSave' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stackRestore"]) Module["stackRestore"] = function() { abort("'stackRestore' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["stackAlloc"]) Module["stackAlloc"] = function() { abort("'stackAlloc' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["establishStackSpace"]) Module["establishStackSpace"] = function() { abort("'establishStackSpace' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["print"]) Module["print"] = function() { abort("'print' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["printErr"]) Module["printErr"] = function() { abort("'printErr' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["getTempRet0"]) Module["getTempRet0"] = function() { abort("'getTempRet0' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["setTempRet0"]) Module["setTempRet0"] = function() { abort("'setTempRet0' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["Pointer_stringify"]) Module["Pointer_stringify"] = function() { abort("'Pointer_stringify' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["intArrayFromBase64"]) Module["intArrayFromBase64"] = function() { abort("'intArrayFromBase64' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };
-if (!Module["tryParseAsDataURI"]) Module["tryParseAsDataURI"] = function() { abort("'tryParseAsDataURI' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") };if (!Module["ALLOC_NORMAL"]) Object.defineProperty(Module, "ALLOC_NORMAL", { get: function() { abort("'ALLOC_NORMAL' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
-if (!Module["ALLOC_STACK"]) Object.defineProperty(Module, "ALLOC_STACK", { get: function() { abort("'ALLOC_STACK' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
-if (!Module["ALLOC_DYNAMIC"]) Object.defineProperty(Module, "ALLOC_DYNAMIC", { get: function() { abort("'ALLOC_DYNAMIC' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
-if (!Module["ALLOC_NONE"]) Object.defineProperty(Module, "ALLOC_NONE", { get: function() { abort("'ALLOC_NONE' was not exported. add it to EXTRA_EXPORTED_RUNTIME_METHODS (see the FAQ)") } });
-
-if (memoryInitializer) {
- if (!isDataURI(memoryInitializer)) {
- memoryInitializer = locateFile(memoryInitializer);
- }
- if (ENVIRONMENT_IS_NODE || ENVIRONMENT_IS_SHELL) {
- var data = Module['readBinary'](memoryInitializer);
- HEAPU8.set(data, GLOBAL_BASE);
- } else {
- addRunDependency('memory initializer');
- var applyMemoryInitializer = function(data) {
- if (data.byteLength) data = new Uint8Array(data);
- for (var i = 0; i < data.length; i++) {
- assert(HEAPU8[GLOBAL_BASE + i] === 0, "area for memory initializer should not have been touched before it's loaded");
- }
- HEAPU8.set(data, GLOBAL_BASE);
- // Delete the typed array that contains the large blob of the memory initializer request response so that
- // we won't keep unnecessary memory lying around. However, keep the XHR object itself alive so that e.g.
- // its .status field can still be accessed later.
- if (Module['memoryInitializerRequest']) delete Module['memoryInitializerRequest'].response;
- removeRunDependency('memory initializer');
- }
- var doBrowserLoad = function() {
- Module['readAsync'](memoryInitializer, applyMemoryInitializer, function() {
- throw 'could not load memory initializer ' + memoryInitializer;
- });
- }
- var memoryInitializerBytes = tryParseAsDataURI(memoryInitializer);
- if (memoryInitializerBytes) {
- applyMemoryInitializer(memoryInitializerBytes.buffer);
- } else
- if (Module['memoryInitializerRequest']) {
- // a network request has already been created, just use that
- var useRequest = function() {
- var request = Module['memoryInitializerRequest'];
- var response = request.response;
- if (request.status !== 200 && request.status !== 0) {
- var data = tryParseAsDataURI(Module['memoryInitializerRequestURL']);
- if (data) {
- response = data.buffer;
- } else {
- // If you see this warning, the issue may be that you are using locateFile and defining it in JS. That
- // means that the HTML file doesn't know about it, and when it tries to create the mem init request early, does it to the wrong place.
- // Look in your browser's devtools network console to see what's going on.
- console.warn('a problem seems to have happened with Module.memoryInitializerRequest, status: ' + request.status + ', retrying ' + memoryInitializer);
- doBrowserLoad();
- return;
- }
- }
- applyMemoryInitializer(response);
- }
- if (Module['memoryInitializerRequest'].response) {
- setTimeout(useRequest, 0); // it's already here; but, apply it asynchronously
- } else {
- Module['memoryInitializerRequest'].addEventListener('load', useRequest); // wait for it
- }
- } else {
- // fetch it from the network ourselves
- doBrowserLoad();
- }
- }
-}
-
-
-
-/**
- * @constructor
- * @extends {Error}
- * @this {ExitStatus}
- */
-function ExitStatus(status) {
- this.name = "ExitStatus";
- this.message = "Program terminated with exit(" + status + ")";
- this.status = status;
-};
-ExitStatus.prototype = new Error();
-ExitStatus.prototype.constructor = ExitStatus;
-
-var calledMain = false;
-
-dependenciesFulfilled = function runCaller() {
- // If run has never been called, and we should call run (INVOKE_RUN is true, and Module.noInitialRun is not false)
- if (!Module['calledRun']) run();
- if (!Module['calledRun']) dependenciesFulfilled = runCaller; // try this again later, after new deps are fulfilled
-}
-
-Module['callMain'] = function callMain(args) {
- assert(runDependencies == 0, 'cannot call main when async dependencies remain! (listen on Module["onRuntimeInitialized"])');
- assert(__ATPRERUN__.length == 0, 'cannot call main when preRun functions remain to be called');
-
- args = args || [];
-
- ensureInitRuntime();
-
- var argc = args.length+1;
- var argv = stackAlloc((argc + 1) * 4);
- HEAP32[argv >> 2] = allocateUTF8OnStack(Module['thisProgram']);
- for (var i = 1; i < argc; i++) {
- HEAP32[(argv >> 2) + i] = allocateUTF8OnStack(args[i - 1]);
- }
- HEAP32[(argv >> 2) + argc] = 0;
-
-
- try {
-
- var ret = Module['_main'](argc, argv, 0);
-
-
- // if we're not running an evented main loop, it's time to exit
- exit(ret, /* implicit = */ true);
- }
- catch(e) {
- if (e instanceof ExitStatus) {
- // exit() throws this once it's done to make sure execution
- // has been stopped completely
- return;
- } else if (e == 'SimulateInfiniteLoop') {
- // running an evented main loop, don't immediately exit
- Module['noExitRuntime'] = true;
- return;
- } else {
- var toLog = e;
- if (e && typeof e === 'object' && e.stack) {
- toLog = [e, e.stack];
- }
- err('exception thrown: ' + toLog);
- Module['quit'](1, e);
- }
- } finally {
- calledMain = true;
- }
-}
-
-
-
-
-/** @type {function(Array=)} */
-function run(args) {
- args = args || Module['arguments'];
-
- if (runDependencies > 0) {
- return;
- }
-
- writeStackCookie();
-
- preRun();
-
- if (runDependencies > 0) return; // a preRun added a dependency, run will be called later
- if (Module['calledRun']) return; // run may have just been called through dependencies being fulfilled just in this very frame
-
- function doRun() {
- if (Module['calledRun']) return; // run may have just been called while the async setStatus time below was happening
- Module['calledRun'] = true;
-
- if (ABORT) return;
-
- ensureInitRuntime();
-
- preMain();
-
- if (Module['onRuntimeInitialized']) Module['onRuntimeInitialized']();
-
- if (Module['_main'] && shouldRunNow) Module['callMain'](args);
-
- postRun();
- }
-
- if (Module['setStatus']) {
- Module['setStatus']('Running...');
- setTimeout(function() {
- setTimeout(function() {
- Module['setStatus']('');
- }, 1);
- doRun();
- }, 1);
- } else {
- doRun();
- }
- checkStackCookie();
-}
-Module['run'] = run;
-
-
-function exit(status, implicit) {
-
- // if this is just main exit-ing implicitly, and the status is 0, then we
- // don't need to do anything here and can just leave. if the status is
- // non-zero, though, then we need to report it.
- // (we may have warned about this earlier, if a situation justifies doing so)
- if (implicit && Module['noExitRuntime'] && status === 0) {
- return;
- }
-
- if (Module['noExitRuntime']) {
- // if exit() was called, we may warn the user if the runtime isn't actually being shut down
- if (!implicit) {
- err('exit(' + status + ') called, but noExitRuntime is set due to an async operation, so halting execution but not exiting the runtime or preventing further async execution (you can use emscripten_force_exit, if you want to force a true shutdown)');
- }
- } else {
-
- ABORT = true;
- EXITSTATUS = status;
-
- exitRuntime();
-
- if (Module['onExit']) Module['onExit'](status);
- }
-
- Module['quit'](status, new ExitStatus(status));
-}
-
-var abortDecorators = [];
-
-function abort(what) {
- if (Module['onAbort']) {
- Module['onAbort'](what);
- }
-
- if (what !== undefined) {
- out(what);
- err(what);
- what = JSON.stringify(what)
- } else {
- what = '';
- }
-
- ABORT = true;
- EXITSTATUS = 1;
-
- var extra = '';
- var output = 'abort(' + what + ') at ' + stackTrace() + extra;
- if (abortDecorators) {
- abortDecorators.forEach(function(decorator) {
- output = decorator(output, what);
- });
- }
- throw output;
-}
-Module['abort'] = abort;
-
-if (Module['preInit']) {
- if (typeof Module['preInit'] == 'function') Module['preInit'] = [Module['preInit']];
- while (Module['preInit'].length > 0) {
- Module['preInit'].pop()();
- }
-}
-
-// shouldRunNow refers to calling main(), not run().
-var shouldRunNow = true;
-if (Module['noInitialRun']) {
- shouldRunNow = false;
-}
-
-
-run();
-
-
-
-
-
-// {{MODULE_ADDITIONS}}
-
-
-
diff --git a/packages/node-libofx/OpenSP-1.5.2/a.out.js.map b/packages/node-libofx/OpenSP-1.5.2/a.out.js.map
deleted file mode 100644
index 42433451686..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/a.out.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"a.out.js","sources":["../include/Vector.h","../include/Vector.cxx","../include/StringOf.h","../include/Named.h","./ArcEngineMessages.h","ArcEngine.cxx","../include/Ptr.cxx","../include/Resource.h","../include/ISet.cxx","../include/CharMap.h","../include/CharMap.cxx","../include/UnivCharsetDesc.h","CharsetInfo.cxx","../include/CharsetInfo.h"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAeA;ACCA;AAAA;AAAA;;AAIA;;AAHA;AAAA;AAAA;AAiHA;;;;;;ACtGA;AAAA;;AAAA;;ADsGA;AAAA;;;;;;;AAEA;AAAA;;;AAAA;AAAA;;AAEA;;;AADA;AAAA;AAAA;AAAA;AACA;AApHA;;;AAoHA;AAAA;AAAA;AAAA;AAAA;AApHA;AAEA;;;;;;;ADLA;ACCA;AAAA;AAAA;;ADDA;AAKA;;ACHA;AAAA;AAAA;AAiHA;;;;;;ACtGA;AAAA;;AAAA;;ADsGA;AAAA;;;;;;;AAEA;AAAA;;;AAAA;AAAA;;AAEA;;;AADA;AAAA;AAAA;AAAA;AACA;AApHA;;;AAoHA;AAAA;AAAA;AAAA;AAAA;AApHA;ADHA;AAKA;;;;;;AALA;ACCA;AAAA;AAAA;;AAIA;;AAHA;AAAA;ADqHA;AAAA;AAAA;AAAA;ACpHA;AAEA;;;;;;ADLA;ACCA;AAAA;AAAA;;ADDA;AAKA;;ACHA;AAAA;ADqHA;AAAA;AAAA;AAAA;ACpHA;ADHA;AAKA;;;;;;AGLA;ADaA;AAAA;AAAA;;ACbA;;ADaA;ACbA;;;;;;AAAA;ADaA;AAAA;AAAA;;AAAA;;ACbA;AAAA;;;;;ACoEA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AASA;AAAA;AASA;AAAA;AASA;AAAA;AASA;AAAA;AASA;AAAA;AASA;AAAA;AASA;AAAA;AASA;AAAA;AASA;AAAA;AAQA;AAAA;AASA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AAQA;AAAA;AASA;AAAA;AASA;AAAA;AASA;AAAA;AASA;AAAA;AAQA;AAAA;AAQA;AAAA;AAUA;AAAA;AAUA;AAAA;AChTA;;;;;;;ALtEA;ACCA;AAAA;AAAA;;AAIA;;AAHA;AAAA;AAAA;AAiHA;;;;;;AK9GA;AAAA;;ACsBA;AAAA;AAAA;AAAA;AAAA;;ADpBA;AAAA;AAAA;AAAA;;AACA;;AL2GA;AAAA;;;;;;;ADEA;AAAA;;;AAAA;AAAA;;AAEA;;;AADA;AAAA;AAAA;AAAA;AACA;ACpHA;;;ADoHA;AAAA;AAAA;AAAA;AAAA;ACpHA;AAEA;;;;;;;;ADLA;ACCA;AAAA;AAAA;;AADA;AAKA;;AAHA;AAAA;AAAA;AAiHA;;;;;;;AK9GA;AAAA;;ACsBA;AAAA;AAAA;AAAA;AAAA;;ADpBA;AAAA;AAAA;;;;;;;;;;AACA;;AL2GA;AAAA;;;;;;;;;ADEA;AAAA;;;;;;;ACrHA;;;;;;ADqHA;AAAA;;AAEA;;;AADA;AAAA;AAAA;AAAA;AACA;ACpHA;;;ADoHA;AAAA;AAAA;AAAA;AAAA;ACpHA;AAHA;AAKA;;;;;;;;;;;;;;AOsBA;;ARKA;;;;;AQFA;ARGA;;;AQHA;;;;;AAAA;ARGA;AQHA;AAAA;AAAA;;;;;;;;;;AREA;AQEA;;ARDA;AAAA;AQCA;AAAA;AAAA;AAAA;AAAA;AAAA;;AAEA;;AACA;;AACA;AAAA;AAAA;;AAsBA;;AArBA;AAEA;ARTA;AQSA;;;;AAmBA;;;AAnBA;AAAA;AAAA;AAAA;;;;;AACA;AAAA;AAAA;AADA;ARTA;AQSA;;;;;;;;AAGA;;AAgBA;;AAfA;AACA;AAAA;;;;;AAAA;ARbA;AAAA;AQaA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AADA;ARbA;AQaA;;;;;ARZA;;;;;;;AQcA;ARnCA;;AA2GA;AAAA;AAAA;AAAA;AQ3DA;;AR9CA;;AQ8CA;;AR7CA;AAwBA;AAAA;AAAA;;ACyFA;AACA;AAAA;AAAA;AAEA;AAAA;AACA;AACA;AAAA;;AACA;AAAA;AACA;;AAEA;;AA9BA;;AO/CA;;APgDA;AADA;AACA;AOhDA;;;AANA;AR1CA;;;;AA2BA;AAAA;AAAA;;ACyFA;AACA;AAAA;AAAA;AAEA;AAAA;AACA;AACA;AAAA;AAAA;;AACA;AAAA;AACA;;AAEA;AA7BA;;;;;;AADA;ADYA;AQhEA;ARtBA;AAAA;;;;AAAA;AQuBA;ARvBA;AQuBA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AADA;AAAA;ARtBA;;;;;;;;;;;AQwBA;AAAA;AACA;AAAA;AAEA;;;;;;;;;;;;;;;;ACkCA;AAAA;ACkFA;AAAA;AAAA;;AAMA;AAAA;AAAA;AAAA;AACA;;AANA;AAAA;AAAA;AAAA;;;ADoDA;ACpDA;AAAA;;;;;;;AAAA;AAEA;AAAA;;;AAAA;AAAA;AAAA;AAAA;AAAA;AADA;AAAA;;;;;;;;ADpFA;;;;;;;AAAA;AAAA;AAAA;AEhEA;AXlBA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ACCA;AAAA;AAAA;AAAA;AAAA;;;;;;;;AQiFA;;;AAAA;ACkHA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;;AAAA;AA2DA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;;AAAA;AA2DA;AAAA;;AAAA;;AA3DA;;;;;;;;AAAA;;AA3DA;;;;;;;;AAAA;;ADlHA;;;;;;;;;;AG5FA;AHwKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AGtKA;;;;AACA;;;;AHyFA;;;AAAA;ACkHA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;;AAAA;AA2DA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;;AAAA;AA2DA;AAAA;;AAAA;;AA3DA;;;;;;;;AAAA;;AA3DA;;;;;;;;AAAA;;ADlHA;;;;;;;AT9FA;AAAA;ACCA;AAAA;;AACA;ADqHA;AAAA;AAAA;AAAA;ACpHA;;AQ2FA;;;AAAA;ACkHA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;;AAAA;AA2DA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;;AAAA;AA2DA;AAAA;;AAAA;;AA3DA;;;;;;;;AAAA;;AA3DA;;;;;;;;AAAA;;ADlHA;;;;;;;;;;;;;;;;;;;;;;;;;;AG1EA;AAAA;AAEA;AAIA;;;AACA;AAAA;;;AAEA;AAAA;AAAA;AAAA;AAAA;AAGA;AAHA;AAKA;AAAA;;;AHoHA;;;AAEA;;;AAxIA;AA2IA;AAAA;AAAA;;AA/HA;AAmJA;;;;AA5JA;AAAA;AA0IA;AAAA;AAAA;;AA9HA;AA2IA;;;;AApJA;AAAA;AAyIA;AAAA;AAAA;;AA7HA;AAmIA;;;;AA5IA;AAwIA;;;;;;AATA;AGlHA;AAAA;;AAGA;;AAEA;;AACA;;;;AAEA;AAAA;;;;;AApBA;;;;;;AZlBA;AAAA;AAAA;;;AAAA;AAAA;AAAA;AAAA;AYkEA;AAAA;AAAA;AHsDA;AAAA;;;;;;;;;AGtDA;;;;;AC1BA;AAAA;AAAA;;;;;;AD0BA;AAAA;;AACA;AAAA;AAAA;AAAA;;;AZ3EA;ACCA;AAAA;;AACA;ADqHA;AAAA;AAAA;AAAA;ACpHA;;AWoEA;AAAA;AAAA;;;;;;;;;AAMA;;;;AZ7EA;ACCA;AAAA;;;;;AACA;ADqHA;AAAA;AAAA;AAAA;ACpHA;;;;;;;;;;;;ASYA;AAAA;AADA;AAAA;;;;;;;;;AAGA;AAAA;AACA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;;AAAA;AAyPA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;;AAAA;AA2DA;AAAA;;AAAA;;AA3DA;;;;;;;;AAAA;;AAzPA;;;;;;;;AAAA;;AACA;AAHA;AAAA;;;;;;;AAKA;;;;;;;;;;;;;;;;;;;AAiEA;;;;;AACA;AAAA;AACA;AAFA;;;;AAAA;;;;;;;;AA6EA;;;;;;AAvEA;AAAA;;;AAAA;AAAA;;AAEA;AAAA;AAAA;AAAA;;AD9EA;ACgHA;AAAA;AAAA;;;AAiBA;AAAA;AAAA;;AAEA;AAAA;AAAA;AAAA;;;ADkFA;AClFA;AAAA;;;;;;;AAAA;;;AAEA;AAAA;AADA;AAAA;;;;;;;ADjIA;AAAA;ACoIA;AAAA;AAEA;AAAA;AAAA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;ADuIA;ACvIA;AAAA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ADrIA;AAAA;ACuIA;AAAA;;;AD1IA;AAAA;AC+GA;AAAA;AAAA;;AAMA;AAAA;AAAA;;;;AAEA;AAAA;AAAA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;ADsJA;ACtJA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ADtHA;AAAA;ACwHA;AAAA;;;ADxHA;AAAA;AC8GA;AAAA;AACA;AAAA;AAAA;;AAAA;;AACA;;;AAyBA;;;;AA/DA;AAAA;AAAA;AAAA;ADhFA;;ACoFA;AAAA;AACA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;;AAAA;AAsKA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;;AAAA;AA2DA;AAAA;;AAAA;;AA3DA;;;;;;;;AAAA;;AAtKA;;;;;;;;AAAA;;AACA;AACA;;;;AAKA;AAAA;AAAA;;AAMA;AAAA;AAAA;;AAEA;AAAA;AAAA;AAAA;;;ADiHA;ACjHA;AAAA;;;;;;;AAAA;;;AAEA;AAAA;AADA;AAAA;;;;;;;ADlGA;AAAA;ACqGA;AAAA;;;ADrGA;AAAA;AC2FA;AAAA;AACA;AAAA;AAAA;;AAAA;AAAA;AAAA;;AAAA;;;AAAA;AAuNA;AAAA;;AAAA;;AAvNA;;;;;;;;AAAA;;AACA;;AAUA;;;;;;;;;;;AAyCA;;;AACA;AAAA;;;;;;;AADA;;;;;;;;;;;;;;;;;;AD7HA;;ACCA;AAAA;ADwCA;;AA/DA;AA2BA;AAAA;AAAA;;AAwBA;AAAA;AAAA;;AAYA;;ACXA;AAAA;AAAA;AAAA;;;ADiKA;ACjKA;AAAA;;;;;;;AAAA;;;AAEA;AAAA;AADA;AAAA;;;;;;;ADlDA;ACqDA;AAAA;AAAA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;ACxNA;ADwNA;AA7QA;ACqDA;AAAA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ADpDA;AAAA;ACsDA;AAAA;AAAA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ADrDA;ACsDA;AAAA;ADAA;;AA5DA;AAAA;AC0BA;AAAA;AAAA;;AAWA;AAAA;AAAA;;ADuBA;;ACtBA;AAAA;AAAA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;ADuOA;ACvOA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ADrCA;AAAA;ACuCA;AAAA;AAAA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ADtCA;ACuCA;AAAA;ADeA;;AAzDA;AAAA;ACyBA;AAAA;AAAA;;ADtBA;ACuBA;AAAA;AD+BA;;AC9BA;AAAA;AAAA;;AD8BA;;AC7BA;AAAA;AAEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AD3BA;AC4BA;AAAA;AD0BA;;;;;;;;;;;ATTA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AAAA;AAAA;AAAA;AACA;AAAA;AAAA;AAjCA;AAAA;AAAA;;ACyFA;AACA;AAAA;AAAA;AAEA;AAAA;AACA;AACA;;;;AACA;AAAA;AACA;AD9DA;;;ACgEA;;;;;ADhEA;;AACA;AAAA;AAAA;AAAA;AAAA;AAAA;;ACCA;;ADIA;;ACJA;AAAA;;;AACA;;AAAA;;AACA;AAAA;AAAA;AAFA;AAAA;AAAA;;;;;;;ADIA;;;;;;;;;AS0KA;AAAA;ACCA;AAAA;;;;;AACA;AAAA;AAAA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;ADqCA;ACrCA;;;;AAEA;AAAA;AAAA;AAAA;AADA;AAAA;;;;AACA;;;ADSA;;;ACLA;AAAA;AAAA;;AAAA;;;AAAA;AAqEA;AAAA;;AAAA;;AArEA;;;;;;;;AAAA;AACA;;AAEA;AAAA;AAAA;AAAA;ADEA;;;;;;;;;AA8CA;AAAA;ACCA;AAAA;;;AAOA;AACA;;AAEA;AAAA;AAAA;AAAA;ADEA;;;;;ACXA;AAAA;AAEA;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;ADSA;;;;;;;ATjUA;ACCA;AAAA;AAAA;;AAIA;;AAHA;AAAA;ADqHA;AAAA;AAAA;AAAA;ACpHA;AAEA;;;;;;ADLA;ACCA;AAAA;AAAA;;ADDA;AAKA;;ACHA;AAAA;ADqHA;AAAA;AAAA;AAAA;ACpHA;ADHA;AAKA"}
\ No newline at end of file
diff --git a/packages/node-libofx/OpenSP-1.5.2/a.out.wasm b/packages/node-libofx/OpenSP-1.5.2/a.out.wasm
deleted file mode 100644
index 36108466f58..00000000000
Binary files a/packages/node-libofx/OpenSP-1.5.2/a.out.wasm and /dev/null differ
diff --git a/packages/node-libofx/OpenSP-1.5.2/acinclude.m4 b/packages/node-libofx/OpenSP-1.5.2/acinclude.m4
deleted file mode 100644
index 113c1e6e791..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/acinclude.m4
+++ /dev/null
@@ -1,279 +0,0 @@
-dnl OJ_CHECK_SIZEOF(TYPE, HEADER [, CROSS-SIZE])
-AC_DEFUN([OJ_CHECK_SIZEOF],
-[changequote(<<, >>)dnl
-dnl The name to #define.
-define(<>, translit(sizeof_$1, [a-z *], [A-Z_P]))dnl
-dnl The cache variable name.
-define(<>, translit(ac_cv_sizeof_$1, [ *], [_p]))dnl
-changequote([, ])dnl
-AC_MSG_CHECKING(size of $1)
-AC_CACHE_VAL(AC_CV_NAME,
-[AC_TRY_RUN([#include
-#include <$2>
-main()
-{
- FILE *f=fopen("conftestval", "w");
- if (!f) exit(1);
- fprintf(f, "%d\n", sizeof($1));
- exit(0);
-}], AC_CV_NAME=`cat conftestval`, AC_CV_NAME=0, ifelse([$3] , , AC_CV_NAME=$3))])dnl
-AC_MSG_RESULT($AC_CV_NAME)
-AC_DEFINE_UNQUOTED(AC_TYPE_NAME, $AC_CV_NAME)
-undefine([AC_TYPE_NAME])dnl
-undefine([AC_CV_NAME])dnl
-])
-
-
-dnl @synopsis AC_CXX_PLACEMENT_OPERATOR_DELETE
-dnl
-dnl If the compiler supports void delete(size_t,void*), define
-dnl HAVE_PLACEMENT_OPERATOR_DELETE.
-dnl
-dnl @author Matthias Clasen
-dnl
-AC_DEFUN([AC_CXX_PLACEMENT_OPERATOR_DELETE],
-[AC_CACHE_CHECK(whether the compiler supports placement operator delete,
-ac_cv_cxx_placement_operator_delete,
-[AC_LANG_SAVE
- AC_LANG_CPLUSPLUS
- AC_TRY_COMPILE([#include ],
- [class Thing {
- public:
- Thing() { };
- void *operator new(size_t,bool) { };
- void operator delete(size_t,void*) { };
- };],
- ac_cv_cxx_placement_operator_delete=yes,
- ac_cv_cxx_placement_operator_delete=no)
- AC_LANG_RESTORE
-])
-if test "$ac_cv_cxx_placement_operator_delete" = yes; then
- AC_DEFINE(HAVE_PLACEMENT_OPERATOR_DELETE,,
- [define if the compiler supports placement operator delete])
-fi
-])
-
-
-dnl @synopsis AC_CXX_BOOL
-dnl
-dnl If the compiler recognizes bool as a separate built-in type,
-dnl define HAVE_BOOL. Note that a typedef is not a separate
-dnl type since you cannot overload a function such that it accepts either
-dnl the basic type or the typedef.
-dnl
-dnl @version $Id: acinclude.m4,v 1.9.2.1 2004/06/30 13:16:25 keichwa Exp $
-dnl @author Luc Maisonobe
-dnl
-AC_DEFUN([AC_CXX_BOOL],
-[AC_CACHE_CHECK(whether the compiler recognizes bool as a built-in type,
-ac_cv_cxx_bool,
-[AC_LANG_SAVE
- AC_LANG_CPLUSPLUS
- AC_TRY_COMPILE([
-int f(int x){return 1;}
-int f(char x){return 1;}
-int f(bool x){return 1;}
-],[bool b = true; return f(b);],
- ac_cv_cxx_bool=yes, ac_cv_cxx_bool=no)
- AC_LANG_RESTORE
-])
-if test "$ac_cv_cxx_bool" = yes; then
- AC_DEFINE(HAVE_BOOL,,[define if bool is a built-in type])
-fi
-])
-
-dnl @synopsis AC_CXX_TYPENAME
-dnl
-dnl If the compiler recognizes the typename keyword, define HAVE_TYPENAME.
-dnl
-dnl @version $Id: acinclude.m4,v 1.9.2.1 2004/06/30 13:16:25 keichwa Exp $
-dnl @author Luc Maisonobe
-dnl
-AC_DEFUN([AC_CXX_TYPENAME],
-[AC_CACHE_CHECK(whether the compiler recognizes typename,
-ac_cv_cxx_typename,
-[AC_LANG_SAVE
- AC_LANG_CPLUSPLUS
- AC_TRY_COMPILE([templateclass X {public:X(){}};],
-[X z; return 0;],
- ac_cv_cxx_typename=yes, ac_cv_cxx_typename=no)
- AC_LANG_RESTORE
-])
-if test "$ac_cv_cxx_typename" = yes; then
- AC_DEFINE(HAVE_TYPENAME,,[define if the compiler recognizes typename])
-fi
-])
-
-dnl @synopsis AC_CXX_NEW_FOR_SCOPING
-dnl
-dnl If the compiler accepts the new for scoping rules (the scope of a
-dnl variable declared inside the parentheses is restricted to the
-dnl for-body), define HAVE_NEW_FOR_SCOPING.
-dnl
-dnl @version $Id: acinclude.m4,v 1.9.2.1 2004/06/30 13:16:25 keichwa Exp $
-dnl @author Luc Maisonobe
-dnl
-AC_DEFUN([AC_CXX_NEW_FOR_SCOPING],
-[AC_CACHE_CHECK(whether the compiler accepts the new for scoping rules,
-ac_cv_cxx_new_for_scoping,
-[AC_LANG_SAVE
- AC_LANG_CPLUSPLUS
- AC_TRY_COMPILE(,[
- int z = 0;
- for (int i = 0; i < 10; ++i)
- z = z + i;
- for (int i = 0; i < 10; ++i)
- z = z - i;
- return z;],
- ac_cv_cxx_new_for_scoping=yes, ac_cv_cxx_new_for_scoping=no)
- AC_LANG_RESTORE
-])
-if test "$ac_cv_cxx_new_for_scoping" = yes; then
- AC_DEFINE(HAVE_NEW_FOR_SCOPING,,[define if the compiler accepts the new for scoping rules])
-fi
-])
-
-
-dnl @synopsis AC_CXX_DYNAMIC_CAST
-dnl
-dnl If the compiler supports dynamic_cast<>, define HAVE_DYNAMIC_CAST.
-dnl
-dnl @version $Id: acinclude.m4,v 1.9.2.1 2004/06/30 13:16:25 keichwa Exp $
-dnl @author Luc Maisonobe
-dnl
-AC_DEFUN([AC_CXX_DYNAMIC_CAST],
-[AC_CACHE_CHECK(whether the compiler supports dynamic_cast<>,
-ac_cv_cxx_dynamic_cast,
-[AC_LANG_SAVE
- AC_LANG_CPLUSPLUS
- AC_TRY_COMPILE([#include
-class Base { public : Base () {} virtual void f () = 0;};
-class Derived : public Base { public : Derived () {} virtual void f () {} };],[
-Derived d; Base& b=d; return dynamic_cast(&b) ? 0 : 1;],
- ac_cv_cxx_dynamic_cast=yes, ac_cv_cxx_dynamic_cast=no)
- AC_LANG_RESTORE
-])
-if test "$ac_cv_cxx_dynamic_cast" = yes; then
- AC_DEFINE(HAVE_DYNAMIC_CAST,,[define if the compiler supports dynamic_cast<>])
-fi
-])
-
-
-dnl @synopsis AC_CXX_NAMESPACES
-dnl
-dnl If the compiler can prevent names clashes using namespaces, define
-dnl HAVE_NAMESPACES.
-dnl
-dnl @version $Id: acinclude.m4,v 1.9.2.1 2004/06/30 13:16:25 keichwa Exp $
-dnl @author Luc Maisonobe
-dnl
-AC_DEFUN([AC_CXX_NAMESPACES],
-[AC_CACHE_CHECK(whether the compiler implements namespaces,
-ac_cv_cxx_namespaces,
-[AC_LANG_SAVE
- AC_LANG_CPLUSPLUS
- AC_TRY_COMPILE([namespace Outer { namespace Inner { int i = 0; }}],
- [using namespace Outer::Inner; return i;],
- ac_cv_cxx_namespaces=yes, ac_cv_cxx_namespaces=no)
- AC_LANG_RESTORE
-])
-if test "$ac_cv_cxx_namespaces" = yes; then
- AC_DEFINE(HAVE_NAMESPACES,,[define if the compiler implements namespaces])
-fi
-])
-
-
-dnl @synopsis ACX_CHECK_PATHNAME_STYLE_DOS
-dnl
-dnl Check if host OS uses DOS-style pathnames. This includes the use
-dnl of drive letters and backslashes. Under DOS, Windows, and OS/2,
-dnl defines HAVE_PATHNAME_STYLE_DOS and PATH_SEPARATOR to ';'.
-dnl Otherwise, defines PATH_SEPARATOR to ':'.
-dnl
-dnl Use for enabling code to handle drive letters, backslashes in
-dnl filenames and semicolons in the PATH.
-dnl
-dnl @version $Id: acinclude.m4,v 1.9.2.1 2004/06/30 13:16:25 keichwa Exp $
-dnl @author Mark Elbrecht
-dnl
-AC_DEFUN([ACX_CHECK_PATHNAME_STYLE_DOS],
-[AC_MSG_CHECKING(for Windows and DOS and OS/2 style pathnames)
-AC_CACHE_VAL(acx_cv_pathname_style_dos,
-[AC_REQUIRE([AC_CANONICAL_HOST])
-
-acx_cv_pathname_style_dos="no"
-case ${host_os} in
- *djgpp | *mingw32 | *emx*) acx_cv_pathname_style_dos="yes" ;;
-esac
-])
-AC_MSG_RESULT($acx_cv_pathname_style_dos)
-if test $acx_cv_pathname_style_dos = "yes"; then
- AC_DEFINE(HAVE_PATHNAME_STYLE_DOS)
- AC_DEFINE(PATH_SEPARATOR, ';')
-else
- AC_DEFINE(PATH_SEPARATOR, ':')
-fi
-])
-
-
-dnl @synopsis AC_CXX_EXPLICIT_INSTANTIATIONS
-dnl
-dnl If the C++ compiler supports explicit instanciations syntax,
-dnl define HAVE_INSTANTIATIONS.
-dnl
-dnl @version $Id: acinclude.m4,v 1.9.2.1 2004/06/30 13:16:25 keichwa Exp $
-dnl @author Luc Maisonobe
-dnl
-AC_DEFUN([AC_CXX_EXPLICIT_INSTANTIATIONS],
-[AC_CACHE_CHECK(whether the compiler supports explicit instantiations,
-ac_cv_cxx_explinst,
-[AC_LANG_SAVE
- AC_LANG_CPLUSPLUS
- AC_TRY_COMPILE([template class A { T t; }; template class A;],
- [], ac_cv_cxx_explinst=yes, ac_cv_cxx_explinst=no)
- AC_LANG_RESTORE
-])
-if test "$ac_cv_cxx_explinst" = yes; then
- AC_DEFINE(HAVE_INSTANTIATIONS,,
- [define if the compiler supports explicit instantiations])
-fi
-])
-
-AC_DEFUN([AC_DEFINE_DIR], [
- ac_expanded=`(
- test "x$prefix" = xNONE && prefix="$ac_default_prefix"
- test "x$exec_prefix" = xNONE && exec_prefix="${prefix}"
- eval echo \""[$]$2"\"
- )`
- ifelse($3, ,
- AC_DEFINE_UNQUOTED($1, "$ac_expanded"),
- AC_DEFINE_UNQUOTED($1, "$ac_expanded", $3))
-])
-
-dnl @synopsis AC_CXX_MUTABLE
-dnl
-dnl If the compiler allows modifying class data members flagged with
-dnl the mutable keyword even in const objects (for example in the
-dnl body of a const member function), define HAVE_MUTABLE.
-dnl
-dnl @version $Id: acinclude.m4,v 1.9.2.1 2004/06/30 13:16:25 keichwa Exp $
-dnl @author Luc Maisonobe
-dnl
-AC_DEFUN([AC_CXX_MUTABLE],
-[AC_CACHE_CHECK(whether the compiler supports the mutable keyword,
-ac_cv_cxx_mutable,
-[AC_LANG_SAVE
- AC_LANG_CPLUSPLUS
- AC_TRY_COMPILE([
-class A { mutable int i;
- public:
- int f (int n) const { i = n; return i; }
- };
-],[A a; return a.f (1);],
- ac_cv_cxx_mutable=yes, ac_cv_cxx_mutable=no)
- AC_LANG_RESTORE
-])
-if test "$ac_cv_cxx_mutable" = yes; then
- AC_DEFINE(HAVE_MUTABLE,,[define if the compiler supports the mutable keyword])
-fi
-])
diff --git a/packages/node-libofx/OpenSP-1.5.2/aclocal.m4 b/packages/node-libofx/OpenSP-1.5.2/aclocal.m4
deleted file mode 100644
index d7cc45cf7b8..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/aclocal.m4
+++ /dev/null
@@ -1,7101 +0,0 @@
-# generated automatically by aclocal 1.9.6 -*- Autoconf -*-
-
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-# 2005 Free Software Foundation, Inc.
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
-# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
-
-# serial 47 AC_PROG_LIBTOOL
-
-
-# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED)
-# -----------------------------------------------------------
-# If this macro is not defined by Autoconf, define it here.
-m4_ifdef([AC_PROVIDE_IFELSE],
- [],
- [m4_define([AC_PROVIDE_IFELSE],
- [m4_ifdef([AC_PROVIDE_$1],
- [$2], [$3])])])
-
-
-# AC_PROG_LIBTOOL
-# ---------------
-AC_DEFUN([AC_PROG_LIBTOOL],
-[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl
-dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX
-dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX.
- AC_PROVIDE_IFELSE([AC_PROG_CXX],
- [AC_LIBTOOL_CXX],
- [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX
- ])])
-dnl And a similar setup for Fortran 77 support
- AC_PROVIDE_IFELSE([AC_PROG_F77],
- [AC_LIBTOOL_F77],
- [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77
-])])
-
-dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly.
-dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run
-dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both.
- AC_PROVIDE_IFELSE([AC_PROG_GCJ],
- [AC_LIBTOOL_GCJ],
- [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
- [AC_LIBTOOL_GCJ],
- [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],
- [AC_LIBTOOL_GCJ],
- [ifdef([AC_PROG_GCJ],
- [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])
- ifdef([A][M_PROG_GCJ],
- [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])])
- ifdef([LT_AC_PROG_GCJ],
- [define([LT_AC_PROG_GCJ],
- defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])])
-])])# AC_PROG_LIBTOOL
-
-
-# _AC_PROG_LIBTOOL
-# ----------------
-AC_DEFUN([_AC_PROG_LIBTOOL],
-[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
-AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl
-AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl
-AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl
-
-# This can be used to rebuild libtool when needed
-LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
-
-# Always use our own libtool.
-LIBTOOL='$(SHELL) $(top_builddir)/libtool'
-AC_SUBST(LIBTOOL)dnl
-
-# Prevent multiple expansion
-define([AC_PROG_LIBTOOL], [])
-])# _AC_PROG_LIBTOOL
-
-
-# AC_LIBTOOL_SETUP
-# ----------------
-AC_DEFUN([AC_LIBTOOL_SETUP],
-[AC_PREREQ(2.50)dnl
-AC_REQUIRE([AC_ENABLE_SHARED])dnl
-AC_REQUIRE([AC_ENABLE_STATIC])dnl
-AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
-AC_REQUIRE([AC_CANONICAL_HOST])dnl
-AC_REQUIRE([AC_CANONICAL_BUILD])dnl
-AC_REQUIRE([AC_PROG_CC])dnl
-AC_REQUIRE([AC_PROG_LD])dnl
-AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl
-AC_REQUIRE([AC_PROG_NM])dnl
-
-AC_REQUIRE([AC_PROG_LN_S])dnl
-AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl
-# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
-AC_REQUIRE([AC_OBJEXT])dnl
-AC_REQUIRE([AC_EXEEXT])dnl
-dnl
-
-AC_LIBTOOL_SYS_MAX_CMD_LEN
-AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
-AC_LIBTOOL_OBJDIR
-
-AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
-_LT_AC_PROG_ECHO_BACKSLASH
-
-case $host_os in
-aix3*)
- # AIX sometimes has problems with the GCC collect2 program. For some
- # reason, if we set the COLLECT_NAMES environment variable, the problems
- # vanish in a puff of smoke.
- if test "X${COLLECT_NAMES+set}" != Xset; then
- COLLECT_NAMES=
- export COLLECT_NAMES
- fi
- ;;
-esac
-
-# Sed substitution that helps us do robust quoting. It backslashifies
-# metacharacters that are still active within double-quoted strings.
-Xsed='sed -e 1s/^X//'
-[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g']
-
-# Same as above, but do not quote variable references.
-[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g']
-
-# Sed substitution to delay expansion of an escaped shell variable in a
-# double_quote_subst'ed string.
-delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
-
-# Sed substitution to avoid accidental globbing in evaled expressions
-no_glob_subst='s/\*/\\\*/g'
-
-# Constants:
-rm="rm -f"
-
-# Global variables:
-default_ofile=libtool
-can_build_shared=yes
-
-# All known linkers require a `.a' archive for static linking (except MSVC,
-# which needs '.lib').
-libext=a
-ltmain="$ac_aux_dir/ltmain.sh"
-ofile="$default_ofile"
-with_gnu_ld="$lt_cv_prog_gnu_ld"
-
-AC_CHECK_TOOL(AR, ar, false)
-AC_CHECK_TOOL(RANLIB, ranlib, :)
-AC_CHECK_TOOL(STRIP, strip, :)
-
-old_CC="$CC"
-old_CFLAGS="$CFLAGS"
-
-# Set sane defaults for various variables
-test -z "$AR" && AR=ar
-test -z "$AR_FLAGS" && AR_FLAGS=cru
-test -z "$AS" && AS=as
-test -z "$CC" && CC=cc
-test -z "$LTCC" && LTCC=$CC
-test -z "$DLLTOOL" && DLLTOOL=dlltool
-test -z "$LD" && LD=ld
-test -z "$LN_S" && LN_S="ln -s"
-test -z "$MAGIC_CMD" && MAGIC_CMD=file
-test -z "$NM" && NM=nm
-test -z "$SED" && SED=sed
-test -z "$OBJDUMP" && OBJDUMP=objdump
-test -z "$RANLIB" && RANLIB=:
-test -z "$STRIP" && STRIP=:
-test -z "$ac_objext" && ac_objext=o
-
-# Determine commands to create old-style static archives.
-old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs'
-old_postinstall_cmds='chmod 644 $oldlib'
-old_postuninstall_cmds=
-
-if test -n "$RANLIB"; then
- case $host_os in
- openbsd*)
- old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds"
- ;;
- *)
- old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds"
- ;;
- esac
- old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
-fi
-
-_LT_CC_BASENAME([$compiler])
-
-# Only perform the check for file, if the check method requires it
-case $deplibs_check_method in
-file_magic*)
- if test "$file_magic_cmd" = '$MAGIC_CMD'; then
- AC_PATH_MAGIC
- fi
- ;;
-esac
-
-AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
-AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
-enable_win32_dll=yes, enable_win32_dll=no)
-
-AC_ARG_ENABLE([libtool-lock],
- [AC_HELP_STRING([--disable-libtool-lock],
- [avoid locking (might break parallel builds)])])
-test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
-
-AC_ARG_WITH([pic],
- [AC_HELP_STRING([--with-pic],
- [try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
- [pic_mode="$withval"],
- [pic_mode=default])
-test -z "$pic_mode" && pic_mode=default
-
-# Use C for the default configuration in the libtool script
-tagname=
-AC_LIBTOOL_LANG_C_CONFIG
-_LT_AC_TAGCONFIG
-])# AC_LIBTOOL_SETUP
-
-
-# _LT_AC_SYS_COMPILER
-# -------------------
-AC_DEFUN([_LT_AC_SYS_COMPILER],
-[AC_REQUIRE([AC_PROG_CC])dnl
-
-# If no C compiler was specified, use CC.
-LTCC=${LTCC-"$CC"}
-
-# Allow CC to be a program name with arguments.
-compiler=$CC
-])# _LT_AC_SYS_COMPILER
-
-
-# _LT_CC_BASENAME(CC)
-# -------------------
-# Calculate cc_basename. Skip known compiler wrappers and cross-prefix.
-AC_DEFUN([_LT_CC_BASENAME],
-[for cc_temp in $1""; do
- case $cc_temp in
- compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
- distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
- \-*) ;;
- *) break;;
- esac
-done
-cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
-])
-
-
-# _LT_COMPILER_BOILERPLATE
-# ------------------------
-# Check for compiler boilerplate output or warnings with
-# the simple compiler test code.
-AC_DEFUN([_LT_COMPILER_BOILERPLATE],
-[ac_outfile=conftest.$ac_objext
-printf "$lt_simple_compile_test_code" >conftest.$ac_ext
-eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err
-_lt_compiler_boilerplate=`cat conftest.err`
-$rm conftest*
-])# _LT_COMPILER_BOILERPLATE
-
-
-# _LT_LINKER_BOILERPLATE
-# ----------------------
-# Check for linker boilerplate output or warnings with
-# the simple link test code.
-AC_DEFUN([_LT_LINKER_BOILERPLATE],
-[ac_outfile=conftest.$ac_objext
-printf "$lt_simple_link_test_code" >conftest.$ac_ext
-eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err
-_lt_linker_boilerplate=`cat conftest.err`
-$rm conftest*
-])# _LT_LINKER_BOILERPLATE
-
-
-# _LT_AC_SYS_LIBPATH_AIX
-# ----------------------
-# Links a minimal program and checks the executable
-# for the system default hardcoded library path. In most cases,
-# this is /usr/lib:/lib, but when the MPI compilers are used
-# the location of the communication and MPI libs are included too.
-# If we don't find anything, use the default library path according
-# to the aix ld manual.
-AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX],
-[AC_LINK_IFELSE(AC_LANG_PROGRAM,[
-aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
-}'`
-# Check for a 64-bit object if we didn't find anything.
-if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
-}'`; fi],[])
-if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
-])# _LT_AC_SYS_LIBPATH_AIX
-
-
-# _LT_AC_SHELL_INIT(ARG)
-# ----------------------
-AC_DEFUN([_LT_AC_SHELL_INIT],
-[ifdef([AC_DIVERSION_NOTICE],
- [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)],
- [AC_DIVERT_PUSH(NOTICE)])
-$1
-AC_DIVERT_POP
-])# _LT_AC_SHELL_INIT
-
-
-# _LT_AC_PROG_ECHO_BACKSLASH
-# --------------------------
-# Add some code to the start of the generated configure script which
-# will find an echo command which doesn't interpret backslashes.
-AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH],
-[_LT_AC_SHELL_INIT([
-# Check that we are running under the correct shell.
-SHELL=${CONFIG_SHELL-/bin/sh}
-
-case X$ECHO in
-X*--fallback-echo)
- # Remove one level of quotation (which was required for Make).
- ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
- ;;
-esac
-
-echo=${ECHO-echo}
-if test "X[$]1" = X--no-reexec; then
- # Discard the --no-reexec flag, and continue.
- shift
-elif test "X[$]1" = X--fallback-echo; then
- # Avoid inline document here, it may be left over
- :
-elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
- # Yippee, $echo works!
- :
-else
- # Restart under the correct shell.
- exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
-fi
-
-if test "X[$]1" = X--fallback-echo; then
- # used as fallback echo
- shift
- cat </dev/null 2>&1 && unset CDPATH
-
-if test -z "$ECHO"; then
-if test "X${echo_test_string+set}" != Xset; then
-# find a string as large as possible, as long as the shell can cope with it
- for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
- # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
- if (echo_test_string=`eval $cmd`) 2>/dev/null &&
- echo_test_string=`eval $cmd` &&
- (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
- then
- break
- fi
- done
-fi
-
-if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
- echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- :
-else
- # The Solaris, AIX, and Digital Unix default echo programs unquote
- # backslashes. This makes it impossible to quote backslashes using
- # echo "$something" | sed 's/\\/\\\\/g'
- #
- # So, first we look for a working echo in the user's PATH.
-
- lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
- for dir in $PATH /usr/ucb; do
- IFS="$lt_save_ifs"
- if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
- test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
- echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- echo="$dir/echo"
- break
- fi
- done
- IFS="$lt_save_ifs"
-
- if test "X$echo" = Xecho; then
- # We didn't find a better echo, so look for alternatives.
- if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
- echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- # This shell has a builtin print -r that does the trick.
- echo='print -r'
- elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
- test "X$CONFIG_SHELL" != X/bin/ksh; then
- # If we have ksh, try running configure again with it.
- ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
- export ORIGINAL_CONFIG_SHELL
- CONFIG_SHELL=/bin/ksh
- export CONFIG_SHELL
- exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
- else
- # Try using printf.
- echo='printf %s\n'
- if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
- echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- # Cool, printf works
- :
- elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
- test "X$echo_testing_string" = 'X\t' &&
- echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
- export CONFIG_SHELL
- SHELL="$CONFIG_SHELL"
- export SHELL
- echo="$CONFIG_SHELL [$]0 --fallback-echo"
- elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
- test "X$echo_testing_string" = 'X\t' &&
- echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
- test "X$echo_testing_string" = "X$echo_test_string"; then
- echo="$CONFIG_SHELL [$]0 --fallback-echo"
- else
- # maybe with a smaller string...
- prev=:
-
- for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
- if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
- then
- break
- fi
- prev="$cmd"
- done
-
- if test "$prev" != 'sed 50q "[$]0"'; then
- echo_test_string=`eval $prev`
- export echo_test_string
- exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
- else
- # Oops. We lost completely, so just stick with echo.
- echo=echo
- fi
- fi
- fi
- fi
-fi
-fi
-
-# Copy echo and quote the copy suitably for passing to libtool from
-# the Makefile, instead of quoting the original, which is used later.
-ECHO=$echo
-if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
- ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
-fi
-
-AC_SUBST(ECHO)
-])])# _LT_AC_PROG_ECHO_BACKSLASH
-
-
-# _LT_AC_LOCK
-# -----------
-AC_DEFUN([_LT_AC_LOCK],
-[AC_ARG_ENABLE([libtool-lock],
- [AC_HELP_STRING([--disable-libtool-lock],
- [avoid locking (might break parallel builds)])])
-test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
-
-# Some flags need to be propagated to the compiler or linker for good
-# libtool support.
-case $host in
-ia64-*-hpux*)
- # Find out which ABI we are using.
- echo 'int i;' > conftest.$ac_ext
- if AC_TRY_EVAL(ac_compile); then
- case `/usr/bin/file conftest.$ac_objext` in
- *ELF-32*)
- HPUX_IA64_MODE="32"
- ;;
- *ELF-64*)
- HPUX_IA64_MODE="64"
- ;;
- esac
- fi
- rm -rf conftest*
- ;;
-*-*-irix6*)
- # Find out which ABI we are using.
- echo '[#]line __oline__ "configure"' > conftest.$ac_ext
- if AC_TRY_EVAL(ac_compile); then
- if test "$lt_cv_prog_gnu_ld" = yes; then
- case `/usr/bin/file conftest.$ac_objext` in
- *32-bit*)
- LD="${LD-ld} -melf32bsmip"
- ;;
- *N32*)
- LD="${LD-ld} -melf32bmipn32"
- ;;
- *64-bit*)
- LD="${LD-ld} -melf64bmip"
- ;;
- esac
- else
- case `/usr/bin/file conftest.$ac_objext` in
- *32-bit*)
- LD="${LD-ld} -32"
- ;;
- *N32*)
- LD="${LD-ld} -n32"
- ;;
- *64-bit*)
- LD="${LD-ld} -64"
- ;;
- esac
- fi
- fi
- rm -rf conftest*
- ;;
-
-x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)
- # Find out which ABI we are using.
- echo 'int i;' > conftest.$ac_ext
- if AC_TRY_EVAL(ac_compile); then
- case `/usr/bin/file conftest.o` in
- *32-bit*)
- case $host in
- x86_64-*linux*)
- LD="${LD-ld} -m elf_i386"
- ;;
- ppc64-*linux*|powerpc64-*linux*)
- LD="${LD-ld} -m elf32ppclinux"
- ;;
- s390x-*linux*)
- LD="${LD-ld} -m elf_s390"
- ;;
- sparc64-*linux*)
- LD="${LD-ld} -m elf32_sparc"
- ;;
- esac
- ;;
- *64-bit*)
- case $host in
- x86_64-*linux*)
- LD="${LD-ld} -m elf_x86_64"
- ;;
- ppc*-*linux*|powerpc*-*linux*)
- LD="${LD-ld} -m elf64ppc"
- ;;
- s390*-*linux*)
- LD="${LD-ld} -m elf64_s390"
- ;;
- sparc*-*linux*)
- LD="${LD-ld} -m elf64_sparc"
- ;;
- esac
- ;;
- esac
- fi
- rm -rf conftest*
- ;;
-
-*-*-sco3.2v5*)
- # On SCO OpenServer 5, we need -belf to get full-featured binaries.
- SAVE_CFLAGS="$CFLAGS"
- CFLAGS="$CFLAGS -belf"
- AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
- [AC_LANG_PUSH(C)
- AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
- AC_LANG_POP])
- if test x"$lt_cv_cc_needs_belf" != x"yes"; then
- # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
- CFLAGS="$SAVE_CFLAGS"
- fi
- ;;
-AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
-[*-*-cygwin* | *-*-mingw* | *-*-pw32*)
- AC_CHECK_TOOL(DLLTOOL, dlltool, false)
- AC_CHECK_TOOL(AS, as, false)
- AC_CHECK_TOOL(OBJDUMP, objdump, false)
- ;;
- ])
-esac
-
-need_locks="$enable_libtool_lock"
-
-])# _LT_AC_LOCK
-
-
-# AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
-# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
-# ----------------------------------------------------------------
-# Check whether the given compiler option works
-AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION],
-[AC_REQUIRE([LT_AC_PROG_SED])
-AC_CACHE_CHECK([$1], [$2],
- [$2=no
- ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
- printf "$lt_simple_compile_test_code" > conftest.$ac_ext
- lt_compiler_flag="$3"
- # Insert the option either (1) after the last *FLAGS variable, or
- # (2) before a word containing "conftest.", or (3) at the end.
- # Note that $ac_compile itself does not contain backslashes and begins
- # with a dollar sign (not a hyphen), so the echo should work correctly.
- # The option is referenced via a variable to avoid confusing sed.
- lt_compile=`echo "$ac_compile" | $SED \
- -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
- -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
- (eval "$lt_compile" 2>conftest.err)
- ac_status=$?
- cat conftest.err >&AS_MESSAGE_LOG_FD
- echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
- if (exit $ac_status) && test -s "$ac_outfile"; then
- # The compiler can only warn and ignore the option if not recognized
- # So say no if there are warnings other than the usual output.
- $echo "X$_lt_compiler_boilerplate" | $Xsed >conftest.exp
- $SED '/^$/d' conftest.err >conftest.er2
- if test ! -s conftest.err || diff conftest.exp conftest.er2 >/dev/null; then
- $2=yes
- fi
- fi
- $rm conftest*
-])
-
-if test x"[$]$2" = xyes; then
- ifelse([$5], , :, [$5])
-else
- ifelse([$6], , :, [$6])
-fi
-])# AC_LIBTOOL_COMPILER_OPTION
-
-
-# AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
-# [ACTION-SUCCESS], [ACTION-FAILURE])
-# ------------------------------------------------------------
-# Check whether the given compiler option works
-AC_DEFUN([AC_LIBTOOL_LINKER_OPTION],
-[AC_CACHE_CHECK([$1], [$2],
- [$2=no
- save_LDFLAGS="$LDFLAGS"
- LDFLAGS="$LDFLAGS $3"
- printf "$lt_simple_link_test_code" > conftest.$ac_ext
- if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
- # The linker can only warn and ignore the option if not recognized
- # So say no if there are warnings
- if test -s conftest.err; then
- # Append any errors to the config.log.
- cat conftest.err 1>&AS_MESSAGE_LOG_FD
- $echo "X$_lt_linker_boilerplate" | $Xsed > conftest.exp
- $SED '/^$/d' conftest.err >conftest.er2
- if diff conftest.exp conftest.er2 >/dev/null; then
- $2=yes
- fi
- else
- $2=yes
- fi
- fi
- $rm conftest*
- LDFLAGS="$save_LDFLAGS"
-])
-
-if test x"[$]$2" = xyes; then
- ifelse([$4], , :, [$4])
-else
- ifelse([$5], , :, [$5])
-fi
-])# AC_LIBTOOL_LINKER_OPTION
-
-
-# AC_LIBTOOL_SYS_MAX_CMD_LEN
-# --------------------------
-AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN],
-[# find the maximum length of command line arguments
-AC_MSG_CHECKING([the maximum length of command line arguments])
-AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
- i=0
- teststring="ABCD"
-
- case $build_os in
- msdosdjgpp*)
- # On DJGPP, this test can blow up pretty badly due to problems in libc
- # (any single argument exceeding 2000 bytes causes a buffer overrun
- # during glob expansion). Even if it were fixed, the result of this
- # check would be larger than it should be.
- lt_cv_sys_max_cmd_len=12288; # 12K is about right
- ;;
-
- gnu*)
- # Under GNU Hurd, this test is not required because there is
- # no limit to the length of command line arguments.
- # Libtool will interpret -1 as no limit whatsoever
- lt_cv_sys_max_cmd_len=-1;
- ;;
-
- cygwin* | mingw*)
- # On Win9x/ME, this test blows up -- it succeeds, but takes
- # about 5 minutes as the teststring grows exponentially.
- # Worse, since 9x/ME are not pre-emptively multitasking,
- # you end up with a "frozen" computer, even though with patience
- # the test eventually succeeds (with a max line length of 256k).
- # Instead, let's just punt: use the minimum linelength reported by
- # all of the supported platforms: 8192 (on NT/2K/XP).
- lt_cv_sys_max_cmd_len=8192;
- ;;
-
- amigaos*)
- # On AmigaOS with pdksh, this test takes hours, literally.
- # So we just punt and use a minimum line length of 8192.
- lt_cv_sys_max_cmd_len=8192;
- ;;
-
- netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
- # This has been around since 386BSD, at least. Likely further.
- if test -x /sbin/sysctl; then
- lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
- elif test -x /usr/sbin/sysctl; then
- lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
- else
- lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
- fi
- # And add a safety zone
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
- ;;
- osf*)
- # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
- # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
- # nice to cause kernel panics so lets avoid the loop below.
- # First set a reasonable default.
- lt_cv_sys_max_cmd_len=16384
- #
- if test -x /sbin/sysconfig; then
- case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
- *1*) lt_cv_sys_max_cmd_len=-1 ;;
- esac
- fi
- ;;
- *)
- # If test is not a shell built-in, we'll probably end up computing a
- # maximum length that is only half of the actual maximum length, but
- # we can't tell.
- SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
- while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \
- = "XX$teststring") >/dev/null 2>&1 &&
- new_result=`expr "X$teststring" : ".*" 2>&1` &&
- lt_cv_sys_max_cmd_len=$new_result &&
- test $i != 17 # 1/2 MB should be enough
- do
- i=`expr $i + 1`
- teststring=$teststring$teststring
- done
- teststring=
- # Add a significant safety factor because C++ compilers can tack on massive
- # amounts of additional arguments before passing them to the linker.
- # It appears as though 1/2 is a usable value.
- lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
- ;;
- esac
-])
-if test -n $lt_cv_sys_max_cmd_len ; then
- AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
-else
- AC_MSG_RESULT(none)
-fi
-])# AC_LIBTOOL_SYS_MAX_CMD_LEN
-
-
-# _LT_AC_CHECK_DLFCN
-# --------------------
-AC_DEFUN([_LT_AC_CHECK_DLFCN],
-[AC_CHECK_HEADERS(dlfcn.h)dnl
-])# _LT_AC_CHECK_DLFCN
-
-
-# _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
-# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
-# ------------------------------------------------------------------
-AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF],
-[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
-if test "$cross_compiling" = yes; then :
- [$4]
-else
- lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
- lt_status=$lt_dlunknown
- cat > conftest.$ac_ext <
-#endif
-
-#include
-
-#ifdef RTLD_GLOBAL
-# define LT_DLGLOBAL RTLD_GLOBAL
-#else
-# ifdef DL_GLOBAL
-# define LT_DLGLOBAL DL_GLOBAL
-# else
-# define LT_DLGLOBAL 0
-# endif
-#endif
-
-/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
- find out it does not work in some platform. */
-#ifndef LT_DLLAZY_OR_NOW
-# ifdef RTLD_LAZY
-# define LT_DLLAZY_OR_NOW RTLD_LAZY
-# else
-# ifdef DL_LAZY
-# define LT_DLLAZY_OR_NOW DL_LAZY
-# else
-# ifdef RTLD_NOW
-# define LT_DLLAZY_OR_NOW RTLD_NOW
-# else
-# ifdef DL_NOW
-# define LT_DLLAZY_OR_NOW DL_NOW
-# else
-# define LT_DLLAZY_OR_NOW 0
-# endif
-# endif
-# endif
-# endif
-#endif
-
-#ifdef __cplusplus
-extern "C" void exit (int);
-#endif
-
-void fnord() { int i=42;}
-int main ()
-{
- void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
- int status = $lt_dlunknown;
-
- if (self)
- {
- if (dlsym (self,"fnord")) status = $lt_dlno_uscore;
- else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
- /* dlclose (self); */
- }
-
- exit (status);
-}]
-EOF
- if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
- (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
- lt_status=$?
- case x$lt_status in
- x$lt_dlno_uscore) $1 ;;
- x$lt_dlneed_uscore) $2 ;;
- x$lt_unknown|x*) $3 ;;
- esac
- else :
- # compilation failed
- $3
- fi
-fi
-rm -fr conftest*
-])# _LT_AC_TRY_DLOPEN_SELF
-
-
-# AC_LIBTOOL_DLOPEN_SELF
-# -------------------
-AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF],
-[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
-if test "x$enable_dlopen" != xyes; then
- enable_dlopen=unknown
- enable_dlopen_self=unknown
- enable_dlopen_self_static=unknown
-else
- lt_cv_dlopen=no
- lt_cv_dlopen_libs=
-
- case $host_os in
- beos*)
- lt_cv_dlopen="load_add_on"
- lt_cv_dlopen_libs=
- lt_cv_dlopen_self=yes
- ;;
-
- mingw* | pw32*)
- lt_cv_dlopen="LoadLibrary"
- lt_cv_dlopen_libs=
- ;;
-
- cygwin*)
- lt_cv_dlopen="dlopen"
- lt_cv_dlopen_libs=
- ;;
-
- darwin*)
- # if libdl is installed we need to link against it
- AC_CHECK_LIB([dl], [dlopen],
- [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
- lt_cv_dlopen="dyld"
- lt_cv_dlopen_libs=
- lt_cv_dlopen_self=yes
- ])
- ;;
-
- *)
- AC_CHECK_FUNC([shl_load],
- [lt_cv_dlopen="shl_load"],
- [AC_CHECK_LIB([dld], [shl_load],
- [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"],
- [AC_CHECK_FUNC([dlopen],
- [lt_cv_dlopen="dlopen"],
- [AC_CHECK_LIB([dl], [dlopen],
- [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
- [AC_CHECK_LIB([svld], [dlopen],
- [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
- [AC_CHECK_LIB([dld], [dld_link],
- [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
- ])
- ])
- ])
- ])
- ])
- ;;
- esac
-
- if test "x$lt_cv_dlopen" != xno; then
- enable_dlopen=yes
- else
- enable_dlopen=no
- fi
-
- case $lt_cv_dlopen in
- dlopen)
- save_CPPFLAGS="$CPPFLAGS"
- test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
-
- save_LDFLAGS="$LDFLAGS"
- eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
-
- save_LIBS="$LIBS"
- LIBS="$lt_cv_dlopen_libs $LIBS"
-
- AC_CACHE_CHECK([whether a program can dlopen itself],
- lt_cv_dlopen_self, [dnl
- _LT_AC_TRY_DLOPEN_SELF(
- lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
- lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
- ])
-
- if test "x$lt_cv_dlopen_self" = xyes; then
- LDFLAGS="$LDFLAGS $link_static_flag"
- AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
- lt_cv_dlopen_self_static, [dnl
- _LT_AC_TRY_DLOPEN_SELF(
- lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
- lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
- ])
- fi
-
- CPPFLAGS="$save_CPPFLAGS"
- LDFLAGS="$save_LDFLAGS"
- LIBS="$save_LIBS"
- ;;
- esac
-
- case $lt_cv_dlopen_self in
- yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
- *) enable_dlopen_self=unknown ;;
- esac
-
- case $lt_cv_dlopen_self_static in
- yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
- *) enable_dlopen_self_static=unknown ;;
- esac
-fi
-])# AC_LIBTOOL_DLOPEN_SELF
-
-
-# AC_LIBTOOL_PROG_CC_C_O([TAGNAME])
-# ---------------------------------
-# Check to see if options -c and -o are simultaneously supported by compiler
-AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O],
-[AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
-AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
- [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
- [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
- $rm -r conftest 2>/dev/null
- mkdir conftest
- cd conftest
- mkdir out
- printf "$lt_simple_compile_test_code" > conftest.$ac_ext
-
- lt_compiler_flag="-o out/conftest2.$ac_objext"
- # Insert the option either (1) after the last *FLAGS variable, or
- # (2) before a word containing "conftest.", or (3) at the end.
- # Note that $ac_compile itself does not contain backslashes and begins
- # with a dollar sign (not a hyphen), so the echo should work correctly.
- lt_compile=`echo "$ac_compile" | $SED \
- -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
- -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
- -e 's:$: $lt_compiler_flag:'`
- (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
- (eval "$lt_compile" 2>out/conftest.err)
- ac_status=$?
- cat out/conftest.err >&AS_MESSAGE_LOG_FD
- echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
- if (exit $ac_status) && test -s out/conftest2.$ac_objext
- then
- # The compiler can only warn and ignore the option if not recognized
- # So say no if there are warnings
- $echo "X$_lt_compiler_boilerplate" | $Xsed > out/conftest.exp
- $SED '/^$/d' out/conftest.err >out/conftest.er2
- if test ! -s out/conftest.err || diff out/conftest.exp out/conftest.er2 >/dev/null; then
- _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
- fi
- fi
- chmod u+w . 2>&AS_MESSAGE_LOG_FD
- $rm conftest*
- # SGI C++ compiler will create directory out/ii_files/ for
- # template instantiation
- test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files
- $rm out/* && rmdir out
- cd ..
- rmdir conftest
- $rm conftest*
-])
-])# AC_LIBTOOL_PROG_CC_C_O
-
-
-# AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME])
-# -----------------------------------------
-# Check to see if we can do hard links to lock some files if needed
-AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS],
-[AC_REQUIRE([_LT_AC_LOCK])dnl
-
-hard_links="nottested"
-if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
- # do not overwrite the value of need_locks provided by the user
- AC_MSG_CHECKING([if we can lock with hard links])
- hard_links=yes
- $rm conftest*
- ln conftest.a conftest.b 2>/dev/null && hard_links=no
- touch conftest.a
- ln conftest.a conftest.b 2>&5 || hard_links=no
- ln conftest.a conftest.b 2>/dev/null && hard_links=no
- AC_MSG_RESULT([$hard_links])
- if test "$hard_links" = no; then
- AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
- need_locks=warn
- fi
-else
- need_locks=no
-fi
-])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS
-
-
-# AC_LIBTOOL_OBJDIR
-# -----------------
-AC_DEFUN([AC_LIBTOOL_OBJDIR],
-[AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
-[rm -f .libs 2>/dev/null
-mkdir .libs 2>/dev/null
-if test -d .libs; then
- lt_cv_objdir=.libs
-else
- # MS-DOS does not allow filenames that begin with a dot.
- lt_cv_objdir=_libs
-fi
-rmdir .libs 2>/dev/null])
-objdir=$lt_cv_objdir
-])# AC_LIBTOOL_OBJDIR
-
-
-# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME])
-# ----------------------------------------------
-# Check hardcoding attributes.
-AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH],
-[AC_MSG_CHECKING([how to hardcode library paths into programs])
-_LT_AC_TAGVAR(hardcode_action, $1)=
-if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \
- test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \
- test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
-
- # We can hardcode non-existant directories.
- if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no &&
- # If the only mechanism to avoid hardcoding is shlibpath_var, we
- # have to relink, otherwise we might link with an installed library
- # when we should be linking with a yet-to-be-installed one
- ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
- test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then
- # Linking always hardcodes the temporary library directory.
- _LT_AC_TAGVAR(hardcode_action, $1)=relink
- else
- # We can link without hardcoding, and we can hardcode nonexisting dirs.
- _LT_AC_TAGVAR(hardcode_action, $1)=immediate
- fi
-else
- # We cannot hardcode anything, or else we can only hardcode existing
- # directories.
- _LT_AC_TAGVAR(hardcode_action, $1)=unsupported
-fi
-AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)])
-
-if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then
- # Fast installation is not supported
- enable_fast_install=no
-elif test "$shlibpath_overrides_runpath" = yes ||
- test "$enable_shared" = no; then
- # Fast installation is not necessary
- enable_fast_install=needless
-fi
-])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH
-
-
-# AC_LIBTOOL_SYS_LIB_STRIP
-# ------------------------
-AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP],
-[striplib=
-old_striplib=
-AC_MSG_CHECKING([whether stripping libraries is possible])
-if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
- test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
- test -z "$striplib" && striplib="$STRIP --strip-unneeded"
- AC_MSG_RESULT([yes])
-else
-# FIXME - insert some real tests, host_os isn't really good enough
- case $host_os in
- darwin*)
- if test -n "$STRIP" ; then
- striplib="$STRIP -x"
- AC_MSG_RESULT([yes])
- else
- AC_MSG_RESULT([no])
-fi
- ;;
- *)
- AC_MSG_RESULT([no])
- ;;
- esac
-fi
-])# AC_LIBTOOL_SYS_LIB_STRIP
-
-
-# AC_LIBTOOL_SYS_DYNAMIC_LINKER
-# -----------------------------
-# PORTME Fill in your ld.so characteristics
-AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER],
-[AC_MSG_CHECKING([dynamic linker characteristics])
-library_names_spec=
-libname_spec='lib$name'
-soname_spec=
-shrext_cmds=".so"
-postinstall_cmds=
-postuninstall_cmds=
-finish_cmds=
-finish_eval=
-shlibpath_var=
-shlibpath_overrides_runpath=unknown
-version_type=none
-dynamic_linker="$host_os ld.so"
-sys_lib_dlsearch_path_spec="/lib /usr/lib"
-if test "$GCC" = yes; then
- sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
- if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
- # if the path contains ";" then we assume it to be the separator
- # otherwise default to the standard path separator (i.e. ":") - it is
- # assumed that no part of a normal pathname contains ";" but that should
- # okay in the real world where ";" in dirpaths is itself problematic.
- sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
- else
- sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
- fi
-else
- sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
-fi
-need_lib_prefix=unknown
-hardcode_into_libs=no
-
-# when you set need_version to no, make sure it does not cause -set_version
-# flags to be left without arguments
-need_version=unknown
-
-case $host_os in
-aix3*)
- version_type=linux
- library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
- shlibpath_var=LIBPATH
-
- # AIX 3 has no versioning support, so we append a major version to the name.
- soname_spec='${libname}${release}${shared_ext}$major'
- ;;
-
-aix4* | aix5*)
- version_type=linux
- need_lib_prefix=no
- need_version=no
- hardcode_into_libs=yes
- if test "$host_cpu" = ia64; then
- # AIX 5 supports IA64
- library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
- shlibpath_var=LD_LIBRARY_PATH
- else
- # With GCC up to 2.95.x, collect2 would create an import file
- # for dependence libraries. The import file would start with
- # the line `#! .'. This would cause the generated library to
- # depend on `.', always an invalid library. This was fixed in
- # development snapshots of GCC prior to 3.0.
- case $host_os in
- aix4 | aix4.[[01]] | aix4.[[01]].*)
- if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
- echo ' yes '
- echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
- :
- else
- can_build_shared=no
- fi
- ;;
- esac
- # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
- # soname into executable. Probably we can add versioning support to
- # collect2, so additional links can be useful in future.
- if test "$aix_use_runtimelinking" = yes; then
- # If using run time linking (on AIX 4.2 or later) use lib.so
- # instead of lib.a to let people know that these are not
- # typical AIX shared libraries.
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- else
- # We preserve .a as extension for shared libraries through AIX4.2
- # and later when we are not doing run time linking.
- library_names_spec='${libname}${release}.a $libname.a'
- soname_spec='${libname}${release}${shared_ext}$major'
- fi
- shlibpath_var=LIBPATH
- fi
- ;;
-
-amigaos*)
- library_names_spec='$libname.ixlibrary $libname.a'
- # Create ${libname}_ixlibrary.a entries in /sys/libs.
- finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
- ;;
-
-beos*)
- library_names_spec='${libname}${shared_ext}'
- dynamic_linker="$host_os ld.so"
- shlibpath_var=LIBRARY_PATH
- ;;
-
-bsdi[[45]]*)
- version_type=linux
- need_version=no
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
- shlibpath_var=LD_LIBRARY_PATH
- sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
- sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
- # the default ld.so.conf also contains /usr/contrib/lib and
- # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
- # libtool to hard-code these into programs
- ;;
-
-cygwin* | mingw* | pw32*)
- version_type=windows
- shrext_cmds=".dll"
- need_version=no
- need_lib_prefix=no
-
- case $GCC,$host_os in
- yes,cygwin* | yes,mingw* | yes,pw32*)
- library_names_spec='$libname.dll.a'
- # DLL is installed to $(libdir)/../bin by postinstall_cmds
- postinstall_cmds='base_file=`basename \${file}`~
- dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
- dldir=$destdir/`dirname \$dlpath`~
- test -d \$dldir || mkdir -p \$dldir~
- $install_prog $dir/$dlname \$dldir/$dlname~
- chmod a+x \$dldir/$dlname'
- postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
- dlpath=$dir/\$dldll~
- $rm \$dlpath'
- shlibpath_overrides_runpath=yes
-
- case $host_os in
- cygwin*)
- # Cygwin DLLs use 'cyg' prefix rather than 'lib'
- soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
- sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
- ;;
- mingw*)
- # MinGW DLLs use traditional 'lib' prefix
- soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
- sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
- if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then
- # It is most probably a Windows format PATH printed by
- # mingw gcc, but we are running on Cygwin. Gcc prints its search
- # path with ; separators, and with drive letters. We can handle the
- # drive letters (cygwin fileutils understands them), so leave them,
- # especially as we might pass files found there to a mingw objdump,
- # which wouldn't understand a cygwinified path. Ahh.
- sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
- else
- sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
- fi
- ;;
- pw32*)
- # pw32 DLLs use 'pw' prefix rather than 'lib'
- library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
- ;;
- esac
- ;;
-
- *)
- library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
- ;;
- esac
- dynamic_linker='Win32 ld.exe'
- # FIXME: first we should search . and the directory the executable is in
- shlibpath_var=PATH
- ;;
-
-darwin* | rhapsody*)
- dynamic_linker="$host_os dyld"
- version_type=darwin
- need_lib_prefix=no
- need_version=no
- library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
- soname_spec='${libname}${release}${major}$shared_ext'
- shlibpath_overrides_runpath=yes
- shlibpath_var=DYLD_LIBRARY_PATH
- shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
- # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
- if test "$GCC" = yes; then
- sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
- else
- sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib'
- fi
- sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
- ;;
-
-dgux*)
- version_type=linux
- need_lib_prefix=no
- need_version=no
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
- soname_spec='${libname}${release}${shared_ext}$major'
- shlibpath_var=LD_LIBRARY_PATH
- ;;
-
-freebsd1*)
- dynamic_linker=no
- ;;
-
-kfreebsd*-gnu)
- version_type=linux
- need_lib_prefix=no
- need_version=no
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- shlibpath_var=LD_LIBRARY_PATH
- shlibpath_overrides_runpath=no
- hardcode_into_libs=yes
- dynamic_linker='GNU ld.so'
- ;;
-
-freebsd* | dragonfly*)
- # DragonFly does not have aout. When/if they implement a new
- # versioning mechanism, adjust this.
- if test -x /usr/bin/objformat; then
- objformat=`/usr/bin/objformat`
- else
- case $host_os in
- freebsd[[123]]*) objformat=aout ;;
- *) objformat=elf ;;
- esac
- fi
- version_type=freebsd-$objformat
- case $version_type in
- freebsd-elf*)
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
- need_version=no
- need_lib_prefix=no
- ;;
- freebsd-*)
- library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
- need_version=yes
- ;;
- esac
- shlibpath_var=LD_LIBRARY_PATH
- case $host_os in
- freebsd2*)
- shlibpath_overrides_runpath=yes
- ;;
- freebsd3.[[01]]* | freebsdelf3.[[01]]*)
- shlibpath_overrides_runpath=yes
- hardcode_into_libs=yes
- ;;
- *) # from 3.2 on
- shlibpath_overrides_runpath=no
- hardcode_into_libs=yes
- ;;
- esac
- ;;
-
-gnu*)
- version_type=linux
- need_lib_prefix=no
- need_version=no
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- shlibpath_var=LD_LIBRARY_PATH
- hardcode_into_libs=yes
- ;;
-
-hpux9* | hpux10* | hpux11*)
- # Give a soname corresponding to the major version so that dld.sl refuses to
- # link against other versions.
- version_type=sunos
- need_lib_prefix=no
- need_version=no
- case $host_cpu in
- ia64*)
- shrext_cmds='.so'
- hardcode_into_libs=yes
- dynamic_linker="$host_os dld.so"
- shlibpath_var=LD_LIBRARY_PATH
- shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- if test "X$HPUX_IA64_MODE" = X32; then
- sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
- else
- sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
- fi
- sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
- ;;
- hppa*64*)
- shrext_cmds='.sl'
- hardcode_into_libs=yes
- dynamic_linker="$host_os dld.sl"
- shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
- shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
- sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
- ;;
- *)
- shrext_cmds='.sl'
- dynamic_linker="$host_os dld.sl"
- shlibpath_var=SHLIB_PATH
- shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- ;;
- esac
- # HP-UX runs *really* slowly unless shared libraries are mode 555.
- postinstall_cmds='chmod 555 $lib'
- ;;
-
-irix5* | irix6* | nonstopux*)
- case $host_os in
- nonstopux*) version_type=nonstopux ;;
- *)
- if test "$lt_cv_prog_gnu_ld" = yes; then
- version_type=linux
- else
- version_type=irix
- fi ;;
- esac
- need_lib_prefix=no
- need_version=no
- soname_spec='${libname}${release}${shared_ext}$major'
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
- case $host_os in
- irix5* | nonstopux*)
- libsuff= shlibsuff=
- ;;
- *)
- case $LD in # libtool.m4 will add one of these switches to LD
- *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
- libsuff= shlibsuff= libmagic=32-bit;;
- *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
- libsuff=32 shlibsuff=N32 libmagic=N32;;
- *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
- libsuff=64 shlibsuff=64 libmagic=64-bit;;
- *) libsuff= shlibsuff= libmagic=never-match;;
- esac
- ;;
- esac
- shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
- shlibpath_overrides_runpath=no
- sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
- sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
- hardcode_into_libs=yes
- ;;
-
-# No shared lib support for Linux oldld, aout, or coff.
-linux*oldld* | linux*aout* | linux*coff*)
- dynamic_linker=no
- ;;
-
-# This must be Linux ELF.
-linux*)
- version_type=linux
- need_lib_prefix=no
- need_version=no
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
- shlibpath_var=LD_LIBRARY_PATH
- shlibpath_overrides_runpath=no
- # This implies no fast_install, which is unacceptable.
- # Some rework will be needed to allow for fast_install
- # before this can be enabled.
- hardcode_into_libs=yes
-
- # find out which ABI we are using
- libsuff=
- case "$host_cpu" in
- x86_64*|s390x*|powerpc64*)
- echo '[#]line __oline__ "configure"' > conftest.$ac_ext
- if AC_TRY_EVAL(ac_compile); then
- case `/usr/bin/file conftest.$ac_objext` in
- *64-bit*)
- libsuff=64
- sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
- ;;
- esac
- fi
- rm -rf conftest*
- ;;
- esac
-
- # Append ld.so.conf contents to the search path
- if test -f /etc/ld.so.conf; then
- lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
- sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra"
- fi
-
- # We used to test for /lib/ld.so.1 and disable shared libraries on
- # powerpc, because MkLinux only supported shared libraries with the
- # GNU dynamic linker. Since this was broken with cross compilers,
- # most powerpc-linux boxes support dynamic linking these days and
- # people can always --disable-shared, the test was removed, and we
- # assume the GNU/Linux dynamic linker is in use.
- dynamic_linker='GNU/Linux ld.so'
- ;;
-
-knetbsd*-gnu)
- version_type=linux
- need_lib_prefix=no
- need_version=no
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- shlibpath_var=LD_LIBRARY_PATH
- shlibpath_overrides_runpath=no
- hardcode_into_libs=yes
- dynamic_linker='GNU ld.so'
- ;;
-
-netbsd*)
- version_type=sunos
- need_lib_prefix=no
- need_version=no
- if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
- finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
- dynamic_linker='NetBSD (a.out) ld.so'
- else
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- dynamic_linker='NetBSD ld.elf_so'
- fi
- shlibpath_var=LD_LIBRARY_PATH
- shlibpath_overrides_runpath=yes
- hardcode_into_libs=yes
- ;;
-
-newsos6)
- version_type=linux
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- shlibpath_var=LD_LIBRARY_PATH
- shlibpath_overrides_runpath=yes
- ;;
-
-nto-qnx*)
- version_type=linux
- need_lib_prefix=no
- need_version=no
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- shlibpath_var=LD_LIBRARY_PATH
- shlibpath_overrides_runpath=yes
- ;;
-
-openbsd*)
- version_type=sunos
- need_lib_prefix=no
- # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
- case $host_os in
- openbsd3.3 | openbsd3.3.*) need_version=yes ;;
- *) need_version=no ;;
- esac
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
- finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
- shlibpath_var=LD_LIBRARY_PATH
- if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
- case $host_os in
- openbsd2.[[89]] | openbsd2.[[89]].*)
- shlibpath_overrides_runpath=no
- ;;
- *)
- shlibpath_overrides_runpath=yes
- ;;
- esac
- else
- shlibpath_overrides_runpath=yes
- fi
- ;;
-
-os2*)
- libname_spec='$name'
- shrext_cmds=".dll"
- need_lib_prefix=no
- library_names_spec='$libname${shared_ext} $libname.a'
- dynamic_linker='OS/2 ld.exe'
- shlibpath_var=LIBPATH
- ;;
-
-osf3* | osf4* | osf5*)
- version_type=osf
- need_lib_prefix=no
- need_version=no
- soname_spec='${libname}${release}${shared_ext}$major'
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- shlibpath_var=LD_LIBRARY_PATH
- sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
- sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
- ;;
-
-sco3.2v5*)
- version_type=osf
- soname_spec='${libname}${release}${shared_ext}$major'
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- shlibpath_var=LD_LIBRARY_PATH
- ;;
-
-solaris*)
- version_type=linux
- need_lib_prefix=no
- need_version=no
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- shlibpath_var=LD_LIBRARY_PATH
- shlibpath_overrides_runpath=yes
- hardcode_into_libs=yes
- # ldd complains unless libraries are executable
- postinstall_cmds='chmod +x $lib'
- ;;
-
-sunos4*)
- version_type=sunos
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
- finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
- shlibpath_var=LD_LIBRARY_PATH
- shlibpath_overrides_runpath=yes
- if test "$with_gnu_ld" = yes; then
- need_lib_prefix=no
- fi
- need_version=yes
- ;;
-
-sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
- version_type=linux
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- shlibpath_var=LD_LIBRARY_PATH
- case $host_vendor in
- sni)
- shlibpath_overrides_runpath=no
- need_lib_prefix=no
- export_dynamic_flag_spec='${wl}-Blargedynsym'
- runpath_var=LD_RUN_PATH
- ;;
- siemens)
- need_lib_prefix=no
- ;;
- motorola)
- need_lib_prefix=no
- need_version=no
- shlibpath_overrides_runpath=no
- sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
- ;;
- esac
- ;;
-
-sysv4*MP*)
- if test -d /usr/nec ;then
- version_type=linux
- library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
- soname_spec='$libname${shared_ext}.$major'
- shlibpath_var=LD_LIBRARY_PATH
- fi
- ;;
-
-uts4*)
- version_type=linux
- library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
- soname_spec='${libname}${release}${shared_ext}$major'
- shlibpath_var=LD_LIBRARY_PATH
- ;;
-
-*)
- dynamic_linker=no
- ;;
-esac
-AC_MSG_RESULT([$dynamic_linker])
-test "$dynamic_linker" = no && can_build_shared=no
-])# AC_LIBTOOL_SYS_DYNAMIC_LINKER
-
-
-# _LT_AC_TAGCONFIG
-# ----------------
-AC_DEFUN([_LT_AC_TAGCONFIG],
-[AC_ARG_WITH([tags],
- [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@],
- [include additional configurations @<:@automatic@:>@])],
- [tagnames="$withval"])
-
-if test -f "$ltmain" && test -n "$tagnames"; then
- if test ! -f "${ofile}"; then
- AC_MSG_WARN([output file `$ofile' does not exist])
- fi
-
- if test -z "$LTCC"; then
- eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
- if test -z "$LTCC"; then
- AC_MSG_WARN([output file `$ofile' does not look like a libtool script])
- else
- AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile'])
- fi
- fi
-
- # Extract list of available tagged configurations in $ofile.
- # Note that this assumes the entire list is on one line.
- available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
-
- lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
- for tagname in $tagnames; do
- IFS="$lt_save_ifs"
- # Check whether tagname contains only valid characters
- case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in
- "") ;;
- *) AC_MSG_ERROR([invalid tag name: $tagname])
- ;;
- esac
-
- if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null
- then
- AC_MSG_ERROR([tag name \"$tagname\" already exists])
- fi
-
- # Update the list of available tags.
- if test -n "$tagname"; then
- echo appending configuration tag \"$tagname\" to $ofile
-
- case $tagname in
- CXX)
- if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
- ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
- (test "X$CXX" != "Xg++"))) ; then
- AC_LIBTOOL_LANG_CXX_CONFIG
- else
- tagname=""
- fi
- ;;
-
- F77)
- if test -n "$F77" && test "X$F77" != "Xno"; then
- AC_LIBTOOL_LANG_F77_CONFIG
- else
- tagname=""
- fi
- ;;
-
- GCJ)
- if test -n "$GCJ" && test "X$GCJ" != "Xno"; then
- AC_LIBTOOL_LANG_GCJ_CONFIG
- else
- tagname=""
- fi
- ;;
-
- RC)
- AC_LIBTOOL_LANG_RC_CONFIG
- ;;
-
- *)
- AC_MSG_ERROR([Unsupported tag name: $tagname])
- ;;
- esac
-
- # Append the new tag name to the list of available tags.
- if test -n "$tagname" ; then
- available_tags="$available_tags $tagname"
- fi
- fi
- done
- IFS="$lt_save_ifs"
-
- # Now substitute the updated list of available tags.
- if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then
- mv "${ofile}T" "$ofile"
- chmod +x "$ofile"
- else
- rm -f "${ofile}T"
- AC_MSG_ERROR([unable to update list of available tagged configurations.])
- fi
-fi
-])# _LT_AC_TAGCONFIG
-
-
-# AC_LIBTOOL_DLOPEN
-# -----------------
-# enable checks for dlopen support
-AC_DEFUN([AC_LIBTOOL_DLOPEN],
- [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])
-])# AC_LIBTOOL_DLOPEN
-
-
-# AC_LIBTOOL_WIN32_DLL
-# --------------------
-# declare package support for building win32 DLLs
-AC_DEFUN([AC_LIBTOOL_WIN32_DLL],
-[AC_BEFORE([$0], [AC_LIBTOOL_SETUP])
-])# AC_LIBTOOL_WIN32_DLL
-
-
-# AC_ENABLE_SHARED([DEFAULT])
-# ---------------------------
-# implement the --enable-shared flag
-# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
-AC_DEFUN([AC_ENABLE_SHARED],
-[define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
-AC_ARG_ENABLE([shared],
- [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
- [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])],
- [p=${PACKAGE-default}
- case $enableval in
- yes) enable_shared=yes ;;
- no) enable_shared=no ;;
- *)
- enable_shared=no
- # Look at the argument we got. We use all the common list separators.
- lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
- for pkg in $enableval; do
- IFS="$lt_save_ifs"
- if test "X$pkg" = "X$p"; then
- enable_shared=yes
- fi
- done
- IFS="$lt_save_ifs"
- ;;
- esac],
- [enable_shared=]AC_ENABLE_SHARED_DEFAULT)
-])# AC_ENABLE_SHARED
-
-
-# AC_DISABLE_SHARED
-# -----------------
-#- set the default shared flag to --disable-shared
-AC_DEFUN([AC_DISABLE_SHARED],
-[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
-AC_ENABLE_SHARED(no)
-])# AC_DISABLE_SHARED
-
-
-# AC_ENABLE_STATIC([DEFAULT])
-# ---------------------------
-# implement the --enable-static flag
-# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
-AC_DEFUN([AC_ENABLE_STATIC],
-[define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
-AC_ARG_ENABLE([static],
- [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@],
- [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])],
- [p=${PACKAGE-default}
- case $enableval in
- yes) enable_static=yes ;;
- no) enable_static=no ;;
- *)
- enable_static=no
- # Look at the argument we got. We use all the common list separators.
- lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
- for pkg in $enableval; do
- IFS="$lt_save_ifs"
- if test "X$pkg" = "X$p"; then
- enable_static=yes
- fi
- done
- IFS="$lt_save_ifs"
- ;;
- esac],
- [enable_static=]AC_ENABLE_STATIC_DEFAULT)
-])# AC_ENABLE_STATIC
-
-
-# AC_DISABLE_STATIC
-# -----------------
-# set the default static flag to --disable-static
-AC_DEFUN([AC_DISABLE_STATIC],
-[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
-AC_ENABLE_STATIC(no)
-])# AC_DISABLE_STATIC
-
-
-# AC_ENABLE_FAST_INSTALL([DEFAULT])
-# ---------------------------------
-# implement the --enable-fast-install flag
-# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
-AC_DEFUN([AC_ENABLE_FAST_INSTALL],
-[define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
-AC_ARG_ENABLE([fast-install],
- [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
- [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
- [p=${PACKAGE-default}
- case $enableval in
- yes) enable_fast_install=yes ;;
- no) enable_fast_install=no ;;
- *)
- enable_fast_install=no
- # Look at the argument we got. We use all the common list separators.
- lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
- for pkg in $enableval; do
- IFS="$lt_save_ifs"
- if test "X$pkg" = "X$p"; then
- enable_fast_install=yes
- fi
- done
- IFS="$lt_save_ifs"
- ;;
- esac],
- [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT)
-])# AC_ENABLE_FAST_INSTALL
-
-
-# AC_DISABLE_FAST_INSTALL
-# -----------------------
-# set the default to --disable-fast-install
-AC_DEFUN([AC_DISABLE_FAST_INSTALL],
-[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
-AC_ENABLE_FAST_INSTALL(no)
-])# AC_DISABLE_FAST_INSTALL
-
-
-# AC_LIBTOOL_PICMODE([MODE])
-# --------------------------
-# implement the --with-pic flag
-# MODE is either `yes' or `no'. If omitted, it defaults to `both'.
-AC_DEFUN([AC_LIBTOOL_PICMODE],
-[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
-pic_mode=ifelse($#,1,$1,default)
-])# AC_LIBTOOL_PICMODE
-
-
-# AC_PROG_EGREP
-# -------------
-# This is predefined starting with Autoconf 2.54, so this conditional
-# definition can be removed once we require Autoconf 2.54 or later.
-m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP],
-[AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep],
- [if echo a | (grep -E '(a|b)') >/dev/null 2>&1
- then ac_cv_prog_egrep='grep -E'
- else ac_cv_prog_egrep='egrep'
- fi])
- EGREP=$ac_cv_prog_egrep
- AC_SUBST([EGREP])
-])])
-
-
-# AC_PATH_TOOL_PREFIX
-# -------------------
-# find a file program which can recognise shared library
-AC_DEFUN([AC_PATH_TOOL_PREFIX],
-[AC_REQUIRE([AC_PROG_EGREP])dnl
-AC_MSG_CHECKING([for $1])
-AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
-[case $MAGIC_CMD in
-[[\\/*] | ?:[\\/]*])
- lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
- ;;
-*)
- lt_save_MAGIC_CMD="$MAGIC_CMD"
- lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
-dnl $ac_dummy forces splitting on constant user-supplied paths.
-dnl POSIX.2 word splitting is done only on the output of word expansions,
-dnl not every word. This closes a longstanding sh security hole.
- ac_dummy="ifelse([$2], , $PATH, [$2])"
- for ac_dir in $ac_dummy; do
- IFS="$lt_save_ifs"
- test -z "$ac_dir" && ac_dir=.
- if test -f $ac_dir/$1; then
- lt_cv_path_MAGIC_CMD="$ac_dir/$1"
- if test -n "$file_magic_test_file"; then
- case $deplibs_check_method in
- "file_magic "*)
- file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
- MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
- if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
- $EGREP "$file_magic_regex" > /dev/null; then
- :
- else
- cat <&2
-
-*** Warning: the command libtool uses to detect shared libraries,
-*** $file_magic_cmd, produces output that libtool cannot recognize.
-*** The result is that libtool may fail to recognize shared libraries
-*** as such. This will affect the creation of libtool libraries that
-*** depend on shared libraries, but programs linked with such libtool
-*** libraries will work regardless of this problem. Nevertheless, you
-*** may want to report the problem to your system manager and/or to
-*** bug-libtool@gnu.org
-
-EOF
- fi ;;
- esac
- fi
- break
- fi
- done
- IFS="$lt_save_ifs"
- MAGIC_CMD="$lt_save_MAGIC_CMD"
- ;;
-esac])
-MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
-if test -n "$MAGIC_CMD"; then
- AC_MSG_RESULT($MAGIC_CMD)
-else
- AC_MSG_RESULT(no)
-fi
-])# AC_PATH_TOOL_PREFIX
-
-
-# AC_PATH_MAGIC
-# -------------
-# find a file program which can recognise a shared library
-AC_DEFUN([AC_PATH_MAGIC],
-[AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
-if test -z "$lt_cv_path_MAGIC_CMD"; then
- if test -n "$ac_tool_prefix"; then
- AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
- else
- MAGIC_CMD=:
- fi
-fi
-])# AC_PATH_MAGIC
-
-
-# AC_PROG_LD
-# ----------
-# find the pathname to the GNU or non-GNU linker
-AC_DEFUN([AC_PROG_LD],
-[AC_ARG_WITH([gnu-ld],
- [AC_HELP_STRING([--with-gnu-ld],
- [assume the C compiler uses GNU ld @<:@default=no@:>@])],
- [test "$withval" = no || with_gnu_ld=yes],
- [with_gnu_ld=no])
-AC_REQUIRE([LT_AC_PROG_SED])dnl
-AC_REQUIRE([AC_PROG_CC])dnl
-AC_REQUIRE([AC_CANONICAL_HOST])dnl
-AC_REQUIRE([AC_CANONICAL_BUILD])dnl
-ac_prog=ld
-if test "$GCC" = yes; then
- # Check if gcc -print-prog-name=ld gives a path.
- AC_MSG_CHECKING([for ld used by $CC])
- case $host in
- *-*-mingw*)
- # gcc leaves a trailing carriage return which upsets mingw
- ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
- *)
- ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
- esac
- case $ac_prog in
- # Accept absolute paths.
- [[\\/]]* | ?:[[\\/]]*)
- re_direlt='/[[^/]][[^/]]*/\.\./'
- # Canonicalize the pathname of ld
- ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
- while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
- ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
- done
- test -z "$LD" && LD="$ac_prog"
- ;;
- "")
- # If it fails, then pretend we aren't using GCC.
- ac_prog=ld
- ;;
- *)
- # If it is relative, then search for the first ld in PATH.
- with_gnu_ld=unknown
- ;;
- esac
-elif test "$with_gnu_ld" = yes; then
- AC_MSG_CHECKING([for GNU ld])
-else
- AC_MSG_CHECKING([for non-GNU ld])
-fi
-AC_CACHE_VAL(lt_cv_path_LD,
-[if test -z "$LD"; then
- lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
- for ac_dir in $PATH; do
- IFS="$lt_save_ifs"
- test -z "$ac_dir" && ac_dir=.
- if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
- lt_cv_path_LD="$ac_dir/$ac_prog"
- # Check to see if the program is GNU ld. I'd rather use --version,
- # but apparently some variants of GNU ld only accept -v.
- # Break only if it was the GNU/non-GNU ld that we prefer.
- case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null; then
- case $host_cpu in
- i*86 )
- # Not sure whether the presence of OpenBSD here was a mistake.
- # Let's accept both of them until this is cleared up.
- lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
- lt_cv_file_magic_cmd=/usr/bin/file
- lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
- ;;
- esac
- else
- lt_cv_deplibs_check_method=pass_all
- fi
- ;;
-
-gnu*)
- lt_cv_deplibs_check_method=pass_all
- ;;
-
-hpux10.20* | hpux11*)
- lt_cv_file_magic_cmd=/usr/bin/file
- case $host_cpu in
- ia64*)
- lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
- lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
- ;;
- hppa*64*)
- [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]']
- lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
- ;;
- *)
- lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
- lt_cv_file_magic_test_file=/usr/lib/libc.sl
- ;;
- esac
- ;;
-
-irix5* | irix6* | nonstopux*)
- case $LD in
- *-32|*"-32 ") libmagic=32-bit;;
- *-n32|*"-n32 ") libmagic=N32;;
- *-64|*"-64 ") libmagic=64-bit;;
- *) libmagic=never-match;;
- esac
- lt_cv_deplibs_check_method=pass_all
- ;;
-
-# This must be Linux ELF.
-linux*)
- lt_cv_deplibs_check_method=pass_all
- ;;
-
-netbsd*)
- if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
- lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
- else
- lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
- fi
- ;;
-
-newos6*)
- lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
- lt_cv_file_magic_cmd=/usr/bin/file
- lt_cv_file_magic_test_file=/usr/lib/libnls.so
- ;;
-
-nto-qnx*)
- lt_cv_deplibs_check_method=unknown
- ;;
-
-openbsd*)
- if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
- lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
- else
- lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
- fi
- ;;
-
-osf3* | osf4* | osf5*)
- lt_cv_deplibs_check_method=pass_all
- ;;
-
-sco3.2v5*)
- lt_cv_deplibs_check_method=pass_all
- ;;
-
-solaris*)
- lt_cv_deplibs_check_method=pass_all
- ;;
-
-sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
- case $host_vendor in
- motorola)
- lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'
- lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
- ;;
- ncr)
- lt_cv_deplibs_check_method=pass_all
- ;;
- sequent)
- lt_cv_file_magic_cmd='/bin/file'
- lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
- ;;
- sni)
- lt_cv_file_magic_cmd='/bin/file'
- lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
- lt_cv_file_magic_test_file=/lib/libc.so
- ;;
- siemens)
- lt_cv_deplibs_check_method=pass_all
- ;;
- esac
- ;;
-
-sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7* | sysv4*uw2*)
- lt_cv_deplibs_check_method=pass_all
- ;;
-esac
-])
-file_magic_cmd=$lt_cv_file_magic_cmd
-deplibs_check_method=$lt_cv_deplibs_check_method
-test -z "$deplibs_check_method" && deplibs_check_method=unknown
-])# AC_DEPLIBS_CHECK_METHOD
-
-
-# AC_PROG_NM
-# ----------
-# find the pathname to a BSD-compatible name lister
-AC_DEFUN([AC_PROG_NM],
-[AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM,
-[if test -n "$NM"; then
- # Let the user override the test.
- lt_cv_path_NM="$NM"
-else
- lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
- for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
- IFS="$lt_save_ifs"
- test -z "$ac_dir" && ac_dir=.
- tmp_nm="$ac_dir/${ac_tool_prefix}nm"
- if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
- # Check to see if the nm accepts a BSD-compat flag.
- # Adding the `sed 1q' prevents false positives on HP-UX, which says:
- # nm: unknown option "B" ignored
- # Tru64's nm complains that /dev/null is an invalid object file
- case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
- */dev/null* | *'Invalid file or object type'*)
- lt_cv_path_NM="$tmp_nm -B"
- break
- ;;
- *)
- case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
- */dev/null*)
- lt_cv_path_NM="$tmp_nm -p"
- break
- ;;
- *)
- lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
- continue # so that we can try to find one that supports BSD flags
- ;;
- esac
- esac
- fi
- done
- IFS="$lt_save_ifs"
- test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
-fi])
-NM="$lt_cv_path_NM"
-])# AC_PROG_NM
-
-
-# AC_CHECK_LIBM
-# -------------
-# check for math library
-AC_DEFUN([AC_CHECK_LIBM],
-[AC_REQUIRE([AC_CANONICAL_HOST])dnl
-LIBM=
-case $host in
-*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
- # These system don't have libm, or don't need it
- ;;
-*-ncr-sysv4.3*)
- AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
- AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
- ;;
-*)
- AC_CHECK_LIB(m, cos, LIBM="-lm")
- ;;
-esac
-])# AC_CHECK_LIBM
-
-
-# AC_LIBLTDL_CONVENIENCE([DIRECTORY])
-# -----------------------------------
-# sets LIBLTDL to the link flags for the libltdl convenience library and
-# LTDLINCL to the include flags for the libltdl header and adds
-# --enable-ltdl-convenience to the configure arguments. Note that
-# AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided,
-# it is assumed to be `libltdl'. LIBLTDL will be prefixed with
-# '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/'
-# (note the single quotes!). If your package is not flat and you're not
-# using automake, define top_builddir and top_srcdir appropriately in
-# the Makefiles.
-AC_DEFUN([AC_LIBLTDL_CONVENIENCE],
-[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
- case $enable_ltdl_convenience in
- no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
- "") enable_ltdl_convenience=yes
- ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
- esac
- LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la
- LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
- # For backwards non-gettext consistent compatibility...
- INCLTDL="$LTDLINCL"
-])# AC_LIBLTDL_CONVENIENCE
-
-
-# AC_LIBLTDL_INSTALLABLE([DIRECTORY])
-# -----------------------------------
-# sets LIBLTDL to the link flags for the libltdl installable library and
-# LTDLINCL to the include flags for the libltdl header and adds
-# --enable-ltdl-install to the configure arguments. Note that
-# AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided,
-# and an installed libltdl is not found, it is assumed to be `libltdl'.
-# LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with
-# '${top_srcdir}/' (note the single quotes!). If your package is not
-# flat and you're not using automake, define top_builddir and top_srcdir
-# appropriately in the Makefiles.
-# In the future, this macro may have to be called after AC_PROG_LIBTOOL.
-AC_DEFUN([AC_LIBLTDL_INSTALLABLE],
-[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
- AC_CHECK_LIB(ltdl, lt_dlinit,
- [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no],
- [if test x"$enable_ltdl_install" = xno; then
- AC_MSG_WARN([libltdl not installed, but installation disabled])
- else
- enable_ltdl_install=yes
- fi
- ])
- if test x"$enable_ltdl_install" = x"yes"; then
- ac_configure_args="$ac_configure_args --enable-ltdl-install"
- LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la
- LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
- else
- ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
- LIBLTDL="-lltdl"
- LTDLINCL=
- fi
- # For backwards non-gettext consistent compatibility...
- INCLTDL="$LTDLINCL"
-])# AC_LIBLTDL_INSTALLABLE
-
-
-# AC_LIBTOOL_CXX
-# --------------
-# enable support for C++ libraries
-AC_DEFUN([AC_LIBTOOL_CXX],
-[AC_REQUIRE([_LT_AC_LANG_CXX])
-])# AC_LIBTOOL_CXX
-
-
-# _LT_AC_LANG_CXX
-# ---------------
-AC_DEFUN([_LT_AC_LANG_CXX],
-[AC_REQUIRE([AC_PROG_CXX])
-AC_REQUIRE([_LT_AC_PROG_CXXCPP])
-_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX])
-])# _LT_AC_LANG_CXX
-
-# _LT_AC_PROG_CXXCPP
-# ---------------
-AC_DEFUN([_LT_AC_PROG_CXXCPP],
-[
-AC_REQUIRE([AC_PROG_CXX])
-if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
- ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
- (test "X$CXX" != "Xg++"))) ; then
- AC_PROG_CXXCPP
-fi
-])# _LT_AC_PROG_CXXCPP
-
-# AC_LIBTOOL_F77
-# --------------
-# enable support for Fortran 77 libraries
-AC_DEFUN([AC_LIBTOOL_F77],
-[AC_REQUIRE([_LT_AC_LANG_F77])
-])# AC_LIBTOOL_F77
-
-
-# _LT_AC_LANG_F77
-# ---------------
-AC_DEFUN([_LT_AC_LANG_F77],
-[AC_REQUIRE([AC_PROG_F77])
-_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77])
-])# _LT_AC_LANG_F77
-
-
-# AC_LIBTOOL_GCJ
-# --------------
-# enable support for GCJ libraries
-AC_DEFUN([AC_LIBTOOL_GCJ],
-[AC_REQUIRE([_LT_AC_LANG_GCJ])
-])# AC_LIBTOOL_GCJ
-
-
-# _LT_AC_LANG_GCJ
-# ---------------
-AC_DEFUN([_LT_AC_LANG_GCJ],
-[AC_PROVIDE_IFELSE([AC_PROG_GCJ],[],
- [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[],
- [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[],
- [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])],
- [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])],
- [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])])
-_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ])
-])# _LT_AC_LANG_GCJ
-
-
-# AC_LIBTOOL_RC
-# --------------
-# enable support for Windows resource files
-AC_DEFUN([AC_LIBTOOL_RC],
-[AC_REQUIRE([LT_AC_PROG_RC])
-_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC])
-])# AC_LIBTOOL_RC
-
-
-# AC_LIBTOOL_LANG_C_CONFIG
-# ------------------------
-# Ensure that the configuration vars for the C compiler are
-# suitably defined. Those variables are subsequently used by
-# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
-AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG])
-AC_DEFUN([_LT_AC_LANG_C_CONFIG],
-[lt_save_CC="$CC"
-AC_LANG_PUSH(C)
-
-# Source file extension for C test sources.
-ac_ext=c
-
-# Object file extension for compiled C test sources.
-objext=o
-_LT_AC_TAGVAR(objext, $1)=$objext
-
-# Code to be used in simple compile tests
-lt_simple_compile_test_code="int some_variable = 0;\n"
-
-# Code to be used in simple link tests
-lt_simple_link_test_code='int main(){return(0);}\n'
-
-_LT_AC_SYS_COMPILER
-
-# save warnings/boilerplate of simple test code
-_LT_COMPILER_BOILERPLATE
-_LT_LINKER_BOILERPLATE
-
-#
-# Check for any special shared library compilation flags.
-#
-_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)=
-if test "$GCC" = no; then
- case $host_os in
- sco3.2v5*)
- _LT_AC_TAGVAR(lt_prog_cc_shlib, $1)='-belf'
- ;;
- esac
-fi
-if test -n "$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)"; then
- AC_MSG_WARN([`$CC' requires `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to build shared libraries])
- if echo "$old_CC $old_CFLAGS " | grep "[[ ]]$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)[[ ]]" >/dev/null; then :
- else
- AC_MSG_WARN([add `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to the CC or CFLAGS env variable and reconfigure])
- _LT_AC_TAGVAR(lt_cv_prog_cc_can_build_shared, $1)=no
- fi
-fi
-
-
-#
-# Check to make sure the static flag actually works.
-#
-AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $_LT_AC_TAGVAR(lt_prog_compiler_static, $1) works],
- _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1),
- $_LT_AC_TAGVAR(lt_prog_compiler_static, $1),
- [],
- [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=])
-
-
-AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
-AC_LIBTOOL_PROG_COMPILER_PIC($1)
-AC_LIBTOOL_PROG_CC_C_O($1)
-AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
-AC_LIBTOOL_PROG_LD_SHLIBS($1)
-AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
-AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
-AC_LIBTOOL_SYS_LIB_STRIP
-AC_LIBTOOL_DLOPEN_SELF($1)
-
-# Report which librarie types wil actually be built
-AC_MSG_CHECKING([if libtool supports shared libraries])
-AC_MSG_RESULT([$can_build_shared])
-
-AC_MSG_CHECKING([whether to build shared libraries])
-test "$can_build_shared" = "no" && enable_shared=no
-
-# On AIX, shared libraries and static libraries use the same namespace, and
-# are all built from PIC.
-case $host_os in
-aix3*)
- test "$enable_shared" = yes && enable_static=no
- if test -n "$RANLIB"; then
- archive_cmds="$archive_cmds~\$RANLIB \$lib"
- postinstall_cmds='$RANLIB $lib'
- fi
- ;;
-
-aix4* | aix5*)
- if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
- test "$enable_shared" = yes && enable_static=no
- fi
- ;;
-esac
-AC_MSG_RESULT([$enable_shared])
-
-AC_MSG_CHECKING([whether to build static libraries])
-# Make sure either enable_shared or enable_static is yes.
-test "$enable_shared" = yes || enable_static=yes
-AC_MSG_RESULT([$enable_static])
-
-AC_LIBTOOL_CONFIG($1)
-
-AC_LANG_POP
-CC="$lt_save_CC"
-])# AC_LIBTOOL_LANG_C_CONFIG
-
-
-# AC_LIBTOOL_LANG_CXX_CONFIG
-# --------------------------
-# Ensure that the configuration vars for the C compiler are
-# suitably defined. Those variables are subsequently used by
-# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
-AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)])
-AC_DEFUN([_LT_AC_LANG_CXX_CONFIG],
-[AC_LANG_PUSH(C++)
-AC_REQUIRE([AC_PROG_CXX])
-AC_REQUIRE([_LT_AC_PROG_CXXCPP])
-
-_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
-_LT_AC_TAGVAR(allow_undefined_flag, $1)=
-_LT_AC_TAGVAR(always_export_symbols, $1)=no
-_LT_AC_TAGVAR(archive_expsym_cmds, $1)=
-_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
-_LT_AC_TAGVAR(hardcode_direct, $1)=no
-_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
-_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
-_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
-_LT_AC_TAGVAR(hardcode_minus_L, $1)=no
-_LT_AC_TAGVAR(hardcode_automatic, $1)=no
-_LT_AC_TAGVAR(module_cmds, $1)=
-_LT_AC_TAGVAR(module_expsym_cmds, $1)=
-_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
-_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
-_LT_AC_TAGVAR(no_undefined_flag, $1)=
-_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
-_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
-
-# Dependencies to place before and after the object being linked:
-_LT_AC_TAGVAR(predep_objects, $1)=
-_LT_AC_TAGVAR(postdep_objects, $1)=
-_LT_AC_TAGVAR(predeps, $1)=
-_LT_AC_TAGVAR(postdeps, $1)=
-_LT_AC_TAGVAR(compiler_lib_search_path, $1)=
-
-# Source file extension for C++ test sources.
-ac_ext=cpp
-
-# Object file extension for compiled C++ test sources.
-objext=o
-_LT_AC_TAGVAR(objext, $1)=$objext
-
-# Code to be used in simple compile tests
-lt_simple_compile_test_code="int some_variable = 0;\n"
-
-# Code to be used in simple link tests
-lt_simple_link_test_code='int main(int, char *[]) { return(0); }\n'
-
-# ltmain only uses $CC for tagged configurations so make sure $CC is set.
-_LT_AC_SYS_COMPILER
-
-# save warnings/boilerplate of simple test code
-_LT_COMPILER_BOILERPLATE
-_LT_LINKER_BOILERPLATE
-
-# Allow CC to be a program name with arguments.
-lt_save_CC=$CC
-lt_save_LD=$LD
-lt_save_GCC=$GCC
-GCC=$GXX
-lt_save_with_gnu_ld=$with_gnu_ld
-lt_save_path_LD=$lt_cv_path_LD
-if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
- lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
-else
- unset lt_cv_prog_gnu_ld
-fi
-if test -n "${lt_cv_path_LDCXX+set}"; then
- lt_cv_path_LD=$lt_cv_path_LDCXX
-else
- unset lt_cv_path_LD
-fi
-test -z "${LDCXX+set}" || LD=$LDCXX
-CC=${CXX-"c++"}
-compiler=$CC
-_LT_AC_TAGVAR(compiler, $1)=$CC
-_LT_CC_BASENAME([$compiler])
-
-# We don't want -fno-exception wen compiling C++ code, so set the
-# no_builtin_flag separately
-if test "$GXX" = yes; then
- _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
-else
- _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
-fi
-
-if test "$GXX" = yes; then
- # Set up default GNU C++ configuration
-
- AC_PROG_LD
-
- # Check if GNU C++ uses GNU ld as the underlying linker, since the
- # archiving commands below assume that GNU ld is being used.
- if test "$with_gnu_ld" = yes; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
-
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
-
- # If archive_cmds runs LD, not CC, wlarc should be empty
- # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
- # investigate it a little bit more. (MM)
- wlarc='${wl}'
-
- # ancient GNU ld didn't support --whole-archive et. al.
- if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
- grep 'no-whole-archive' > /dev/null; then
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
- else
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
- fi
- else
- with_gnu_ld=no
- wlarc=
-
- # A generic and very simple default shared library creation
- # command for GNU C++ for the case where it uses the native
- # linker, instead of GNU ld. If possible, this setting should
- # overridden to take advantage of the native linker features on
- # the platform it is being used on.
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
- fi
-
- # Commands to make compiler produce verbose output that lists
- # what "hidden" libraries, object files and flags are used when
- # linking a shared library.
- output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
-
-else
- GXX=no
- with_gnu_ld=no
- wlarc=
-fi
-
-# PORTME: fill in a description of your system's C++ link characteristics
-AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
-_LT_AC_TAGVAR(ld_shlibs, $1)=yes
-case $host_os in
- aix3*)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- aix4* | aix5*)
- if test "$host_cpu" = ia64; then
- # On IA64, the linker does run time linking by default, so we don't
- # have to do anything special.
- aix_use_runtimelinking=no
- exp_sym_flag='-Bexport'
- no_entry_flag=""
- else
- aix_use_runtimelinking=no
-
- # Test if we are trying to use run time linking or normal
- # AIX style linking. If -brtl is somewhere in LDFLAGS, we
- # need to do runtime linking.
- case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
- for ld_flag in $LDFLAGS; do
- case $ld_flag in
- *-brtl*)
- aix_use_runtimelinking=yes
- break
- ;;
- esac
- done
- esac
-
- exp_sym_flag='-bexport'
- no_entry_flag='-bnoentry'
- fi
-
- # When large executables or shared objects are built, AIX ld can
- # have problems creating the table of contents. If linking a library
- # or program results in "error TOC overflow" add -mminimal-toc to
- # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not
- # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
-
- _LT_AC_TAGVAR(archive_cmds, $1)=''
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
- _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
-
- if test "$GXX" = yes; then
- case $host_os in aix4.[[012]]|aix4.[[012]].*)
- # We only want to do this on AIX 4.2 and lower, the check
- # below for broken collect2 doesn't work under 4.3+
- collect2name=`${CC} -print-prog-name=collect2`
- if test -f "$collect2name" && \
- strings "$collect2name" | grep resolve_lib_name >/dev/null
- then
- # We have reworked collect2
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- else
- # We have old collect2
- _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
- # It fails to find uninstalled libraries when the uninstalled
- # path is not listed in the libpath. Setting hardcode_minus_L
- # to unsupported forces relinking
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
- fi
- esac
- shared_flag='-shared'
- if test "$aix_use_runtimelinking" = yes; then
- shared_flag="$shared_flag "'${wl}-G'
- fi
- else
- # not using gcc
- if test "$host_cpu" = ia64; then
- # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
- # chokes on -Wl,-G. The following line is correct:
- shared_flag='-G'
- else
- if test "$aix_use_runtimelinking" = yes; then
- shared_flag='${wl}-G'
- else
- shared_flag='${wl}-bM:SRE'
- fi
- fi
- fi
-
- # It seems that -bexpall does not export symbols beginning with
- # underscore (_), so it is better to generate a list of symbols to export.
- _LT_AC_TAGVAR(always_export_symbols, $1)=yes
- if test "$aix_use_runtimelinking" = yes; then
- # Warning - without using the other runtime loading flags (-brtl),
- # -berok will link without error, but may produce a broken library.
- _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
- # Determine the default libpath from the value encoded in an empty executable.
- _LT_AC_SYS_LIBPATH_AIX
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
-
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag"
- else
- if test "$host_cpu" = ia64; then
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
- _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"
- else
- # Determine the default libpath from the value encoded in an empty executable.
- _LT_AC_SYS_LIBPATH_AIX
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
- # Warning - without using the other run time loading flags,
- # -berok will link without error, but may produce a broken library.
- _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
- # -bexpall does not export symbols beginning with underscore (_)
- _LT_AC_TAGVAR(always_export_symbols, $1)=yes
- # Exported symbols can be pulled into shared objects from archives
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' '
- _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
- # This is similar to how AIX traditionally builds its shared libraries.
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
- fi
- fi
- ;;
- chorus*)
- case $cc_basename in
- *)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- esac
- ;;
-
-
- cygwin* | mingw* | pw32*)
- # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
- # as there is no search path for DLLs.
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
- _LT_AC_TAGVAR(always_export_symbols, $1)=no
- _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
-
- if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
- # If the export-symbols file already is a .def file (1st line
- # is EXPORTS), use it as is; otherwise, prepend...
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
- cp $export_symbols $output_objdir/$soname.def;
- else
- echo EXPORTS > $output_objdir/$soname.def;
- cat $export_symbols >> $output_objdir/$soname.def;
- fi~
- $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
- else
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- fi
- ;;
- darwin* | rhapsody*)
- case $host_os in
- rhapsody* | darwin1.[[012]])
- _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
- ;;
- *) # Darwin 1.3 on
- if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
- _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
- else
- case ${MACOSX_DEPLOYMENT_TARGET} in
- 10.[[012]])
- _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
- ;;
- 10.*)
- _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
- ;;
- esac
- fi
- ;;
- esac
- _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
- _LT_AC_TAGVAR(hardcode_direct, $1)=no
- _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
- _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
-
- if test "$GXX" = yes ; then
- lt_int_apple_cc_single_mod=no
- output_verbose_link_cmd='echo'
- if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then
- lt_int_apple_cc_single_mod=yes
- fi
- if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
- else
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
- fi
- _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
- # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
- if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
- else
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
- fi
- _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
- else
- case $cc_basename in
- xlc*)
- output_verbose_link_cmd='echo'
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
- _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
- # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
- _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
- ;;
- *)
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- esac
- fi
- ;;
-
- dgux*)
- case $cc_basename in
- ec++*)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- ghcx*)
- # Green Hills C++ Compiler
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- *)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- esac
- ;;
- freebsd[[12]]*)
- # C++ shared libraries reported to be fairly broken before switch to ELF
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- freebsd-elf*)
- _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
- ;;
- freebsd* | kfreebsd*-gnu | dragonfly*)
- # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
- # conventions
- _LT_AC_TAGVAR(ld_shlibs, $1)=yes
- ;;
- gnu*)
- ;;
- hpux9*)
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
- # but as the default
- # location of the library.
-
- case $cc_basename in
- CC*)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- aCC*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
- # Commands to make compiler produce verbose output that lists
- # what "hidden" libraries, object files and flags are used when
- # linking a shared library.
- #
- # There doesn't appear to be a way to prevent this compiler from
- # explicitly linking system object files so we need to strip them
- # from the output so that they don't get included in the library
- # dependencies.
- output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
- ;;
- *)
- if test "$GXX" = yes; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
- else
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- fi
- ;;
- esac
- ;;
- hpux10*|hpux11*)
- if test $with_gnu_ld = no; then
- case $host_cpu in
- hppa*64*)
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
- ;;
- ia64*)
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- ;;
- *)
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
- ;;
- esac
- fi
- case $host_cpu in
- hppa*64*)
- _LT_AC_TAGVAR(hardcode_direct, $1)=no
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
- ia64*)
- _LT_AC_TAGVAR(hardcode_direct, $1)=no
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
- # but as the default
- # location of the library.
- ;;
- *)
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
- # but as the default
- # location of the library.
- ;;
- esac
-
- case $cc_basename in
- CC*)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- aCC*)
- case $host_cpu in
- hppa*64*|ia64*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs'
- ;;
- *)
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
- ;;
- esac
- # Commands to make compiler produce verbose output that lists
- # what "hidden" libraries, object files and flags are used when
- # linking a shared library.
- #
- # There doesn't appear to be a way to prevent this compiler from
- # explicitly linking system object files so we need to strip them
- # from the output so that they don't get included in the library
- # dependencies.
- output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
- ;;
- *)
- if test "$GXX" = yes; then
- if test $with_gnu_ld = no; then
- case $host_cpu in
- ia64*|hppa*64*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs'
- ;;
- *)
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
- ;;
- esac
- fi
- else
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- fi
- ;;
- esac
- ;;
- irix5* | irix6*)
- case $cc_basename in
- CC*)
- # SGI C++
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
-
- # Archives containing C++ object files must be created using
- # "CC -ar", where "CC" is the IRIX C++ compiler. This is
- # necessary to make sure instantiated templates are included
- # in the archive.
- _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
- ;;
- *)
- if test "$GXX" = yes; then
- if test "$with_gnu_ld" = no; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
- else
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib'
- fi
- fi
- _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
- ;;
- esac
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
- ;;
- linux*)
- case $cc_basename in
- KCC*)
- # Kuck and Associates, Inc. (KAI) C++ Compiler
-
- # KCC will only create a shared library if the output file
- # ends with ".so" (or ".sl" for HP-UX), so rename the library
- # to its proper name (with version) after linking.
- _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
- # Commands to make compiler produce verbose output that lists
- # what "hidden" libraries, object files and flags are used when
- # linking a shared library.
- #
- # There doesn't appear to be a way to prevent this compiler from
- # explicitly linking system object files so we need to strip them
- # from the output so that they don't get included in the library
- # dependencies.
- output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
-
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir'
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
-
- # Archives containing C++ object files must be created using
- # "CC -Bstatic", where "CC" is the KAI C++ compiler.
- _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
- ;;
- icpc*)
- # Intel C++
- with_gnu_ld=yes
- # version 8.0 and above of icpc choke on multiply defined symbols
- # if we add $predep_objects and $postdep_objects, however 7.1 and
- # earlier do not add the objects themselves.
- case `$CC -V 2>&1` in
- *"Version 7."*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
- ;;
- *) # Version 8.0 or newer
- tmp_idyn=
- case $host_cpu in
- ia64*) tmp_idyn=' -i_dynamic';;
- esac
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
- ;;
- esac
- _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
- ;;
- pgCC*)
- # Portland Group C++ compiler
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
-
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
- ;;
- cxx*)
- # Compaq C++
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
-
- runpath_var=LD_RUN_PATH
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
-
- # Commands to make compiler produce verbose output that lists
- # what "hidden" libraries, object files and flags are used when
- # linking a shared library.
- #
- # There doesn't appear to be a way to prevent this compiler from
- # explicitly linking system object files so we need to strip them
- # from the output so that they don't get included in the library
- # dependencies.
- output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
- ;;
- esac
- ;;
- lynxos*)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- m88k*)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- mvs*)
- case $cc_basename in
- cxx*)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- *)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- esac
- ;;
- netbsd*)
- if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
- wlarc=
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- fi
- # Workaround some broken pre-1.5 toolchains
- output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
- ;;
- openbsd2*)
- # C++ shared libraries are fairly broken
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- openbsd*)
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
- if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
- fi
- output_verbose_link_cmd='echo'
- ;;
- osf3*)
- case $cc_basename in
- KCC*)
- # Kuck and Associates, Inc. (KAI) C++ Compiler
-
- # KCC will only create a shared library if the output file
- # ends with ".so" (or ".sl" for HP-UX), so rename the library
- # to its proper name (with version) after linking.
- _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
-
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
-
- # Archives containing C++ object files must be created using
- # "CC -Bstatic", where "CC" is the KAI C++ compiler.
- _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
-
- ;;
- RCC*)
- # Rational C++ 2.4.1
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- cxx*)
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
-
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
-
- # Commands to make compiler produce verbose output that lists
- # what "hidden" libraries, object files and flags are used when
- # linking a shared library.
- #
- # There doesn't appear to be a way to prevent this compiler from
- # explicitly linking system object files so we need to strip them
- # from the output so that they don't get included in the library
- # dependencies.
- output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
- ;;
- *)
- if test "$GXX" = yes && test "$with_gnu_ld" = no; then
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
-
- # Commands to make compiler produce verbose output that lists
- # what "hidden" libraries, object files and flags are used when
- # linking a shared library.
- output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
-
- else
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- fi
- ;;
- esac
- ;;
- osf4* | osf5*)
- case $cc_basename in
- KCC*)
- # Kuck and Associates, Inc. (KAI) C++ Compiler
-
- # KCC will only create a shared library if the output file
- # ends with ".so" (or ".sl" for HP-UX), so rename the library
- # to its proper name (with version) after linking.
- _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
-
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
-
- # Archives containing C++ object files must be created using
- # the KAI C++ compiler.
- _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs'
- ;;
- RCC*)
- # Rational C++ 2.4.1
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- cxx*)
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
- echo "-hidden">> $lib.exp~
- $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~
- $rm $lib.exp'
-
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
-
- # Commands to make compiler produce verbose output that lists
- # what "hidden" libraries, object files and flags are used when
- # linking a shared library.
- #
- # There doesn't appear to be a way to prevent this compiler from
- # explicitly linking system object files so we need to strip them
- # from the output so that they don't get included in the library
- # dependencies.
- output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
- ;;
- *)
- if test "$GXX" = yes && test "$with_gnu_ld" = no; then
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
-
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
-
- # Commands to make compiler produce verbose output that lists
- # what "hidden" libraries, object files and flags are used when
- # linking a shared library.
- output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
-
- else
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- fi
- ;;
- esac
- ;;
- psos*)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- sco*)
- _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
- case $cc_basename in
- CC*)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- *)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- esac
- ;;
- sunos4*)
- case $cc_basename in
- CC*)
- # Sun C++ 4.x
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- lcc*)
- # Lucid
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- *)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- esac
- ;;
- solaris*)
- case $cc_basename in
- CC*)
- # Sun C++ 4.2, 5.x and Centerline C++
- _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes
- _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs'
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
- $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
-
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- case $host_os in
- solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
- *)
- # The C++ compiler is used as linker so we must use $wl
- # flag to pass the commands to the underlying system
- # linker. We must also pass each convience library through
- # to the system linker between allextract/defaultextract.
- # The C++ compiler will combine linker options so we
- # cannot just pass the convience library names through
- # without $wl.
- # Supported since Solaris 2.6 (maybe 2.5.1?)
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract'
- ;;
- esac
- _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
-
- output_verbose_link_cmd='echo'
-
- # Archives containing C++ object files must be created using
- # "CC -xar", where "CC" is the Sun C++ compiler. This is
- # necessary to make sure instantiated templates are included
- # in the archive.
- _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
- ;;
- gcx*)
- # Green Hills C++ Compiler
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
-
- # The C++ compiler must be used to create the archive.
- _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
- ;;
- *)
- # GNU C++ compiler with Solaris linker
- if test "$GXX" = yes && test "$with_gnu_ld" = no; then
- _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
- if $CC --version | grep -v '^2\.7' > /dev/null; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
- $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
-
- # Commands to make compiler produce verbose output that lists
- # what "hidden" libraries, object files and flags are used when
- # linking a shared library.
- output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\""
- else
- # g++ 2.7 appears to require `-G' NOT `-shared' on this
- # platform.
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
- $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
-
- # Commands to make compiler produce verbose output that lists
- # what "hidden" libraries, object files and flags are used when
- # linking a shared library.
- output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\""
- fi
-
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
- fi
- ;;
- esac
- ;;
- sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7*)
- _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
- ;;
- tandem*)
- case $cc_basename in
- NCC*)
- # NonStop-UX NCC 3.20
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- *)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- esac
- ;;
- vxworks*)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- *)
- # FIXME: insert proper C++ library support
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
-esac
-AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
-test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
-
-_LT_AC_TAGVAR(GCC, $1)="$GXX"
-_LT_AC_TAGVAR(LD, $1)="$LD"
-
-AC_LIBTOOL_POSTDEP_PREDEP($1)
-AC_LIBTOOL_PROG_COMPILER_PIC($1)
-AC_LIBTOOL_PROG_CC_C_O($1)
-AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
-AC_LIBTOOL_PROG_LD_SHLIBS($1)
-AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
-AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
-AC_LIBTOOL_SYS_LIB_STRIP
-AC_LIBTOOL_DLOPEN_SELF($1)
-
-AC_LIBTOOL_CONFIG($1)
-
-AC_LANG_POP
-CC=$lt_save_CC
-LDCXX=$LD
-LD=$lt_save_LD
-GCC=$lt_save_GCC
-with_gnu_ldcxx=$with_gnu_ld
-with_gnu_ld=$lt_save_with_gnu_ld
-lt_cv_path_LDCXX=$lt_cv_path_LD
-lt_cv_path_LD=$lt_save_path_LD
-lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
-lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
-])# AC_LIBTOOL_LANG_CXX_CONFIG
-
-# AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME])
-# ------------------------
-# Figure out "hidden" library dependencies from verbose
-# compiler output when linking a shared library.
-# Parse the compiler output and extract the necessary
-# objects, libraries and library flags.
-AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[
-dnl we can't use the lt_simple_compile_test_code here,
-dnl because it contains code intended for an executable,
-dnl not a library. It's possible we should let each
-dnl tag define a new lt_????_link_test_code variable,
-dnl but it's only used here...
-ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <> "$cfgfile"
-ifelse([$1], [],
-[#! $SHELL
-
-# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
-# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
-# NOTE: Changes made to this file will be lost: look at ltmain.sh.
-#
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
-# Free Software Foundation, Inc.
-#
-# This file is part of GNU Libtool:
-# Originally by Gordon Matzigkeit , 1996
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-#
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that program.
-
-# A sed program that does not truncate output.
-SED=$lt_SED
-
-# Sed that helps us avoid accidentally triggering echo(1) options like -n.
-Xsed="$SED -e 1s/^X//"
-
-# The HP-UX ksh and POSIX shell print the target directory to stdout
-# if CDPATH is set.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-# The names of the tagged configurations supported by this script.
-available_tags=
-
-# ### BEGIN LIBTOOL CONFIG],
-[# ### BEGIN LIBTOOL TAG CONFIG: $tagname])
-
-# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
-
-# Shell to use when invoking shell scripts.
-SHELL=$lt_SHELL
-
-# Whether or not to build shared libraries.
-build_libtool_libs=$enable_shared
-
-# Whether or not to build static libraries.
-build_old_libs=$enable_static
-
-# Whether or not to add -lc for building shared libraries.
-build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)
-
-# Whether or not to disallow shared libs when runtime libs are static
-allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)
-
-# Whether or not to optimize for fast installation.
-fast_install=$enable_fast_install
-
-# The host system.
-host_alias=$host_alias
-host=$host
-host_os=$host_os
-
-# The build system.
-build_alias=$build_alias
-build=$build
-build_os=$build_os
-
-# An echo program that does not interpret backslashes.
-echo=$lt_echo
-
-# The archiver.
-AR=$lt_AR
-AR_FLAGS=$lt_AR_FLAGS
-
-# A C compiler.
-LTCC=$lt_LTCC
-
-# A language-specific compiler.
-CC=$lt_[]_LT_AC_TAGVAR(compiler, $1)
-
-# Is the compiler the GNU C compiler?
-with_gcc=$_LT_AC_TAGVAR(GCC, $1)
-
-# An ERE matcher.
-EGREP=$lt_EGREP
-
-# The linker used to build libraries.
-LD=$lt_[]_LT_AC_TAGVAR(LD, $1)
-
-# Whether we need hard or soft links.
-LN_S=$lt_LN_S
-
-# A BSD-compatible nm program.
-NM=$lt_NM
-
-# A symbol stripping program
-STRIP=$lt_STRIP
-
-# Used to examine libraries when file_magic_cmd begins "file"
-MAGIC_CMD=$MAGIC_CMD
-
-# Used on cygwin: DLL creation program.
-DLLTOOL="$DLLTOOL"
-
-# Used on cygwin: object dumper.
-OBJDUMP="$OBJDUMP"
-
-# Used on cygwin: assembler.
-AS="$AS"
-
-# The name of the directory that contains temporary libtool files.
-objdir=$objdir
-
-# How to create reloadable object files.
-reload_flag=$lt_reload_flag
-reload_cmds=$lt_reload_cmds
-
-# How to pass a linker flag through the compiler.
-wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
-
-# Object file suffix (normally "o").
-objext="$ac_objext"
-
-# Old archive suffix (normally "a").
-libext="$libext"
-
-# Shared library suffix (normally ".so").
-shrext_cmds='$shrext_cmds'
-
-# Executable file suffix (normally "").
-exeext="$exeext"
-
-# Additional compiler flags for building library objects.
-pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)
-pic_mode=$pic_mode
-
-# What is the maximum length of a command?
-max_cmd_len=$lt_cv_sys_max_cmd_len
-
-# Does compiler simultaneously support -c and -o options?
-compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)
-
-# Must we lock files when doing compilation?
-need_locks=$lt_need_locks
-
-# Do we need the lib prefix for modules?
-need_lib_prefix=$need_lib_prefix
-
-# Do we need a version for libraries?
-need_version=$need_version
-
-# Whether dlopen is supported.
-dlopen_support=$enable_dlopen
-
-# Whether dlopen of programs is supported.
-dlopen_self=$enable_dlopen_self
-
-# Whether dlopen of statically linked programs is supported.
-dlopen_self_static=$enable_dlopen_self_static
-
-# Compiler flag to prevent dynamic linking.
-link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1)
-
-# Compiler flag to turn off builtin functions.
-no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)
-
-# Compiler flag to allow reflexive dlopens.
-export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)
-
-# Compiler flag to generate shared objects directly from archives.
-whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1)
-
-# Compiler flag to generate thread-safe objects.
-thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1)
-
-# Library versioning type.
-version_type=$version_type
-
-# Format of library name prefix.
-libname_spec=$lt_libname_spec
-
-# List of archive names. First name is the real one, the rest are links.
-# The last name is the one that the linker finds with -lNAME.
-library_names_spec=$lt_library_names_spec
-
-# The coded name of the library, if different from the real name.
-soname_spec=$lt_soname_spec
-
-# Commands used to build and install an old-style archive.
-RANLIB=$lt_RANLIB
-old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1)
-old_postinstall_cmds=$lt_old_postinstall_cmds
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
-
-# Create an old-style archive from a shared archive.
-old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1)
-
-# Create a temporary old-style archive to link instead of a shared archive.
-old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)
-
-# Commands used to build and install a shared archive.
-archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1)
-archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1)
-postinstall_cmds=$lt_postinstall_cmds
-postuninstall_cmds=$lt_postuninstall_cmds
-
-# Commands used to build a loadable module (assumed same as above if empty)
-module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1)
-module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1)
-
-# Commands to strip libraries.
-old_striplib=$lt_old_striplib
-striplib=$lt_striplib
-
-# Dependencies to place before the objects being linked to create a
-# shared library.
-predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1)
-
-# Dependencies to place after the objects being linked to create a
-# shared library.
-postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1)
-
-# Dependencies to place before the objects being linked to create a
-# shared library.
-predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1)
-
-# Dependencies to place after the objects being linked to create a
-# shared library.
-postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1)
-
-# The library search path used internally by the compiler when linking
-# a shared library.
-compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1)
-
-# Method to check whether dependent libraries are shared objects.
-deplibs_check_method=$lt_deplibs_check_method
-
-# Command to use when deplibs_check_method == file_magic.
-file_magic_cmd=$lt_file_magic_cmd
-
-# Flag that allows shared libraries with undefined symbols to be built.
-allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1)
-
-# Flag that forces no undefined symbols.
-no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1)
-
-# Commands used to finish a libtool library installation in a directory.
-finish_cmds=$lt_finish_cmds
-
-# Same as above, but a single script fragment to be evaled but not shown.
-finish_eval=$lt_finish_eval
-
-# Take the output of nm and produce a listing of raw symbols and C names.
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
-
-# Transform the output of nm in a proper C declaration
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
-
-# Transform the output of nm in a C name address pair
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
-
-# This is the shared library runtime path variable.
-runpath_var=$runpath_var
-
-# This is the shared library path variable.
-shlibpath_var=$shlibpath_var
-
-# Is shlibpath searched before the hard-coded library search path?
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
-
-# How to hardcode a shared library path into an executable.
-hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1)
-
-# Whether we should hardcode library paths into libraries.
-hardcode_into_libs=$hardcode_into_libs
-
-# Flag to hardcode \$libdir into a binary during linking.
-# This must work even if \$libdir does not exist.
-hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)
-
-# If ld is used when linking, flag to hardcode \$libdir into
-# a binary during linking. This must work even if \$libdir does
-# not exist.
-hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)
-
-# Whether we need a single -rpath flag with a separated argument.
-hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1)
-
-# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
-# resulting binary.
-hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1)
-
-# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
-# resulting binary.
-hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1)
-
-# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
-# the resulting binary.
-hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)
-
-# Set to yes if building a shared library automatically hardcodes DIR into the library
-# and all subsequent libraries and executables linked against it.
-hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1)
-
-# Variables whose values should be saved in libtool wrapper scripts and
-# restored at relink time.
-variables_saved_for_relink="$variables_saved_for_relink"
-
-# Whether libtool must link a program against all its dependency libraries.
-link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1)
-
-# Compile-time system search path for libraries
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
-
-# Run-time system search path for libraries
-sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
-
-# Fix the shell variable \$srcfile for the compiler.
-fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)"
-
-# Set to yes if exported symbols are required.
-always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1)
-
-# The commands to list exported symbols.
-export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1)
-
-# The commands to extract the exported symbol list from a shared archive.
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
-
-# Symbols that should not be listed in the preloaded symbols.
-exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1)
-
-# Symbols that must always be exported.
-include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1)
-
-ifelse([$1],[],
-[# ### END LIBTOOL CONFIG],
-[# ### END LIBTOOL TAG CONFIG: $tagname])
-
-__EOF__
-
-ifelse([$1],[], [
- case $host_os in
- aix3*)
- cat <<\EOF >> "$cfgfile"
-
-# AIX sometimes has problems with the GCC collect2 program. For some
-# reason, if we set the COLLECT_NAMES environment variable, the problems
-# vanish in a puff of smoke.
-if test "X${COLLECT_NAMES+set}" != Xset; then
- COLLECT_NAMES=
- export COLLECT_NAMES
-fi
-EOF
- ;;
- esac
-
- # We use sed instead of cat because bash on DJGPP gets confused if
- # if finds mixed CR/LF and LF-only lines. Since sed operates in
- # text mode, it properly converts lines to CR/LF. This bash problem
- # is reportedly fixed, but why not run on old versions too?
- sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1)
-
- mv -f "$cfgfile" "$ofile" || \
- (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
- chmod +x "$ofile"
-])
-else
- # If there is no Makefile yet, we rely on a make rule to execute
- # `config.status --recheck' to rerun these tests and create the
- # libtool script then.
- ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
- if test -f "$ltmain_in"; then
- test -f Makefile && make "$ltmain"
- fi
-fi
-])# AC_LIBTOOL_CONFIG
-
-
-# AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME])
-# -------------------------------------------
-AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI],
-[AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
-
-_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
-
-if test "$GCC" = yes; then
- _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
-
- AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
- lt_cv_prog_compiler_rtti_exceptions,
- [-fno-rtti -fno-exceptions], [],
- [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
-fi
-])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI
-
-
-# AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
-# ---------------------------------
-AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE],
-[AC_REQUIRE([AC_CANONICAL_HOST])
-AC_REQUIRE([AC_PROG_NM])
-AC_REQUIRE([AC_OBJEXT])
-# Check for command to grab the raw symbol name followed by C symbol from nm.
-AC_MSG_CHECKING([command to parse $NM output from $compiler object])
-AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
-[
-# These are sane defaults that work on at least a few old systems.
-# [They come from Ultrix. What could be older than Ultrix?!! ;)]
-
-# Character class describing NM global symbol codes.
-symcode='[[BCDEGRST]]'
-
-# Regexp to match symbols that can be accessed directly from C.
-sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
-
-# Transform an extracted symbol line into a proper C declaration
-lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'"
-
-# Transform an extracted symbol line into symbol name and symbol address
-lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'"
-
-# Define system-specific variables.
-case $host_os in
-aix*)
- symcode='[[BCDT]]'
- ;;
-cygwin* | mingw* | pw32*)
- symcode='[[ABCDGISTW]]'
- ;;
-hpux*) # Its linker distinguishes data from code symbols
- if test "$host_cpu" = ia64; then
- symcode='[[ABCDEGRST]]'
- fi
- lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
- lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'"
- ;;
-linux*)
- if test "$host_cpu" = ia64; then
- symcode='[[ABCDGIRSTW]]'
- lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
- lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'"
- fi
- ;;
-irix* | nonstopux*)
- symcode='[[BCDEGRST]]'
- ;;
-osf*)
- symcode='[[BCDEGQRST]]'
- ;;
-solaris* | sysv5*)
- symcode='[[BDRT]]'
- ;;
-sysv4)
- symcode='[[DFNSTU]]'
- ;;
-esac
-
-# Handle CRLF in mingw tool chain
-opt_cr=
-case $build_os in
-mingw*)
- opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp
- ;;
-esac
-
-# If we're using GNU nm, then use its standard symbol codes.
-case `$NM -V 2>&1` in
-*GNU* | *'with BFD'*)
- symcode='[[ABCDGIRSTW]]' ;;
-esac
-
-# Try without a prefix undercore, then with it.
-for ac_symprfx in "" "_"; do
-
- # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
- symxfrm="\\1 $ac_symprfx\\2 \\2"
-
- # Write the raw and C identifiers.
- lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
-
- # Check to see that the pipe works correctly.
- pipe_works=no
-
- rm -f conftest*
- cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then
- # Try sorting and uniquifying the output.
- if sort "$nlist" | uniq > "$nlist"T; then
- mv -f "$nlist"T "$nlist"
- else
- rm -f "$nlist"T
- fi
-
- # Make sure that we snagged all the symbols we need.
- if grep ' nm_test_var$' "$nlist" >/dev/null; then
- if grep ' nm_test_func$' "$nlist" >/dev/null; then
- cat < conftest.$ac_ext
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-EOF
- # Now generate the symbol file.
- eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext'
-
- cat <> conftest.$ac_ext
-#if defined (__STDC__) && __STDC__
-# define lt_ptr_t void *
-#else
-# define lt_ptr_t char *
-# define const
-#endif
-
-/* The mapping between symbol names and symbols. */
-const struct {
- const char *name;
- lt_ptr_t address;
-}
-lt_preloaded_symbols[[]] =
-{
-EOF
- $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext
- cat <<\EOF >> conftest.$ac_ext
- {0, (lt_ptr_t) 0}
-};
-
-#ifdef __cplusplus
-}
-#endif
-EOF
- # Now try linking the two files.
- mv conftest.$ac_objext conftstm.$ac_objext
- lt_save_LIBS="$LIBS"
- lt_save_CFLAGS="$CFLAGS"
- LIBS="conftstm.$ac_objext"
- CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
- if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
- pipe_works=yes
- fi
- LIBS="$lt_save_LIBS"
- CFLAGS="$lt_save_CFLAGS"
- else
- echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
- fi
- else
- echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
- fi
- else
- echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
- fi
- else
- echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
- cat conftest.$ac_ext >&5
- fi
- rm -f conftest* conftst*
-
- # Do not use the global_symbol_pipe unless it works.
- if test "$pipe_works" = yes; then
- break
- else
- lt_cv_sys_global_symbol_pipe=
- fi
-done
-])
-if test -z "$lt_cv_sys_global_symbol_pipe"; then
- lt_cv_sys_global_symbol_to_cdecl=
-fi
-if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
- AC_MSG_RESULT(failed)
-else
- AC_MSG_RESULT(ok)
-fi
-]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
-
-
-# AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME])
-# ---------------------------------------
-AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC],
-[_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=
-_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
-_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=
-
-AC_MSG_CHECKING([for $compiler option to produce PIC])
- ifelse([$1],[CXX],[
- # C++ specific cases for pic, static, wl, etc.
- if test "$GXX" = yes; then
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
-
- case $host_os in
- aix*)
- # All AIX code is PIC.
- if test "$host_cpu" = ia64; then
- # AIX 5 now supports IA64 processor
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- fi
- ;;
- amigaos*)
- # FIXME: we need at least 68020 code to build shared libraries, but
- # adding the `-m68020' flag to GCC prevents building anything better,
- # like `-m68040'.
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
- ;;
- beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
- # PIC is the default for these OSes.
- ;;
- mingw* | os2* | pw32*)
- # This hack is so that the source file can tell whether it is being
- # built for inclusion in a dll (and should export symbols for example).
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
- ;;
- darwin* | rhapsody*)
- # PIC is the default on this platform
- # Common symbols not allowed in MH_DYLIB files
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
- ;;
- *djgpp*)
- # DJGPP does not support shared libraries at all
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
- ;;
- sysv4*MP*)
- if test -d /usr/nec; then
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
- fi
- ;;
- hpux*)
- # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
- # not for PA HP-UX.
- case $host_cpu in
- hppa*64*|ia64*)
- ;;
- *)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
- ;;
- esac
- ;;
- *)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
- ;;
- esac
- else
- case $host_os in
- aix4* | aix5*)
- # All AIX code is PIC.
- if test "$host_cpu" = ia64; then
- # AIX 5 now supports IA64 processor
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- else
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
- fi
- ;;
- chorus*)
- case $cc_basename in
- cxch68*)
- # Green Hills C++ Compiler
- # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
- ;;
- esac
- ;;
- darwin*)
- # PIC is the default on this platform
- # Common symbols not allowed in MH_DYLIB files
- case $cc_basename in
- xlc*)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- ;;
- esac
- ;;
- dgux*)
- case $cc_basename in
- ec++*)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
- ;;
- ghcx*)
- # Green Hills C++ Compiler
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
- ;;
- *)
- ;;
- esac
- ;;
- freebsd* | kfreebsd*-gnu | dragonfly*)
- # FreeBSD uses GNU C++
- ;;
- hpux9* | hpux10* | hpux11*)
- case $cc_basename in
- CC*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive"
- if test "$host_cpu" != ia64; then
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
- fi
- ;;
- aCC*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive"
- case $host_cpu in
- hppa*64*|ia64*)
- # +Z the default
- ;;
- *)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
- ;;
- esac
- ;;
- *)
- ;;
- esac
- ;;
- irix5* | irix6* | nonstopux*)
- case $cc_basename in
- CC*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
- # CC pic flag -KPIC is the default.
- ;;
- *)
- ;;
- esac
- ;;
- linux*)
- case $cc_basename in
- KCC*)
- # KAI C++ Compiler
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
- ;;
- icpc* | ecpc*)
- # Intel C++
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
- ;;
- pgCC*)
- # Portland Group C++ compiler.
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- ;;
- cxx*)
- # Compaq C++
- # Make sure the PIC flag is empty. It appears that all Alpha
- # Linux and Compaq Tru64 Unix objects are PIC.
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
- ;;
- *)
- ;;
- esac
- ;;
- lynxos*)
- ;;
- m88k*)
- ;;
- mvs*)
- case $cc_basename in
- cxx*)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
- ;;
- *)
- ;;
- esac
- ;;
- netbsd*)
- ;;
- osf3* | osf4* | osf5*)
- case $cc_basename in
- KCC*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
- ;;
- RCC*)
- # Rational C++ 2.4.1
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
- ;;
- cxx*)
- # Digital/Compaq C++
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- # Make sure the PIC flag is empty. It appears that all Alpha
- # Linux and Compaq Tru64 Unix objects are PIC.
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
- ;;
- *)
- ;;
- esac
- ;;
- psos*)
- ;;
- sco*)
- case $cc_basename in
- CC*)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
- ;;
- *)
- ;;
- esac
- ;;
- solaris*)
- case $cc_basename in
- CC*)
- # Sun C++ 4.2, 5.x and Centerline C++
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
- ;;
- gcx*)
- # Green Hills C++ Compiler
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
- ;;
- *)
- ;;
- esac
- ;;
- sunos4*)
- case $cc_basename in
- CC*)
- # Sun C++ 4.x
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- ;;
- lcc*)
- # Lucid
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
- ;;
- *)
- ;;
- esac
- ;;
- tandem*)
- case $cc_basename in
- NCC*)
- # NonStop-UX NCC 3.20
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
- ;;
- *)
- ;;
- esac
- ;;
- unixware*)
- ;;
- vxworks*)
- ;;
- *)
- _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
- ;;
- esac
- fi
-],
-[
- if test "$GCC" = yes; then
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
-
- case $host_os in
- aix*)
- # All AIX code is PIC.
- if test "$host_cpu" = ia64; then
- # AIX 5 now supports IA64 processor
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- fi
- ;;
-
- amigaos*)
- # FIXME: we need at least 68020 code to build shared libraries, but
- # adding the `-m68020' flag to GCC prevents building anything better,
- # like `-m68040'.
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
- ;;
-
- beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
- # PIC is the default for these OSes.
- ;;
-
- mingw* | pw32* | os2*)
- # This hack is so that the source file can tell whether it is being
- # built for inclusion in a dll (and should export symbols for example).
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
- ;;
-
- darwin* | rhapsody*)
- # PIC is the default on this platform
- # Common symbols not allowed in MH_DYLIB files
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
- ;;
-
- msdosdjgpp*)
- # Just because we use GCC doesn't mean we suddenly get shared libraries
- # on systems that don't support them.
- _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
- enable_shared=no
- ;;
-
- sysv4*MP*)
- if test -d /usr/nec; then
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
- fi
- ;;
-
- hpux*)
- # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
- # not for PA HP-UX.
- case $host_cpu in
- hppa*64*|ia64*)
- # +Z the default
- ;;
- *)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
- ;;
- esac
- ;;
-
- *)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
- ;;
- esac
- else
- # PORTME Check for flag to pass linker flags through the system compiler.
- case $host_os in
- aix*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- if test "$host_cpu" = ia64; then
- # AIX 5 now supports IA64 processor
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- else
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
- fi
- ;;
- darwin*)
- # PIC is the default on this platform
- # Common symbols not allowed in MH_DYLIB files
- case $cc_basename in
- xlc*)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- ;;
- esac
- ;;
-
- mingw* | pw32* | os2*)
- # This hack is so that the source file can tell whether it is being
- # built for inclusion in a dll (and should export symbols for example).
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
- ;;
-
- hpux9* | hpux10* | hpux11*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
- # not for PA HP-UX.
- case $host_cpu in
- hppa*64*|ia64*)
- # +Z the default
- ;;
- *)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
- ;;
- esac
- # Is there a better lt_prog_compiler_static that works with the bundled CC?
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
- ;;
-
- irix5* | irix6* | nonstopux*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- # PIC (with -KPIC) is the default.
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
- ;;
-
- newsos6)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- ;;
-
- linux*)
- case $cc_basename in
- icc* | ecc*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
- ;;
- pgcc* | pgf77* | pgf90* | pgf95*)
- # Portland Group compilers (*not* the Pentium gcc compiler,
- # which looks to be a dead project)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- ;;
- ccc*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- # All Alpha code is PIC.
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
- ;;
- esac
- ;;
-
- osf3* | osf4* | osf5*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- # All OSF/1 code is PIC.
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
- ;;
-
- sco3.2v5*)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kpic'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-dn'
- ;;
-
- solaris*)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- case $cc_basename in
- f77* | f90* | f95*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
- *)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
- esac
- ;;
-
- sunos4*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- ;;
-
- sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- ;;
-
- sysv4*MP*)
- if test -d /usr/nec ;then
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- fi
- ;;
-
- unicos*)
- _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
- _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
- ;;
-
- uts4*)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
- _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
- ;;
-
- *)
- _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
- ;;
- esac
- fi
-])
-AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)])
-
-#
-# Check to make sure the PIC flag actually works.
-#
-if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then
- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works],
- _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1),
- [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [],
- [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in
- "" | " "*) ;;
- *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;;
- esac],
- [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
- _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
-fi
-case $host_os in
- # For platforms which do not support PIC, -DPIC is meaningless:
- *djgpp*)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
- ;;
- *)
- _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])"
- ;;
-esac
-])
-
-
-# AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME])
-# ------------------------------------
-# See if the linker supports building shared libraries.
-AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS],
-[AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
-ifelse([$1],[CXX],[
- _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
- case $host_os in
- aix4* | aix5*)
- # If we're using GNU nm, then we don't want the "-C" option.
- # -C means demangle to AIX nm, but means don't demangle with GNU nm
- if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
- _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
- else
- _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
- fi
- ;;
- pw32*)
- _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
- ;;
- cygwin* | mingw*)
- _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols'
- ;;
- *)
- _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
- ;;
- esac
-],[
- runpath_var=
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=
- _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
- _LT_AC_TAGVAR(archive_cmds, $1)=
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
- _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)=
- _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)=
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
- _LT_AC_TAGVAR(thread_safe_flag_spec, $1)=
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
- _LT_AC_TAGVAR(hardcode_direct, $1)=no
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
- _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
- _LT_AC_TAGVAR(hardcode_automatic, $1)=no
- _LT_AC_TAGVAR(module_cmds, $1)=
- _LT_AC_TAGVAR(module_expsym_cmds, $1)=
- _LT_AC_TAGVAR(always_export_symbols, $1)=no
- _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
- # include_expsyms should be a list of space-separated symbols to be *always*
- # included in the symbol list
- _LT_AC_TAGVAR(include_expsyms, $1)=
- # exclude_expsyms can be an extended regexp of symbols to exclude
- # it will be wrapped by ` (' and `)$', so one must not match beginning or
- # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
- # as well as any symbol that contains `d'.
- _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_"
- # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
- # platforms (ab)use it in PIC code, but their linkers get confused if
- # the symbol is explicitly referenced. Since portable code cannot
- # rely on this symbol name, it's probably fine to never include it in
- # preloaded symbol tables.
- extract_expsyms_cmds=
- # Just being paranoid about ensuring that cc_basename is set.
- _LT_CC_BASENAME([$compiler])
- case $host_os in
- cygwin* | mingw* | pw32*)
- # FIXME: the MSVC++ port hasn't been tested in a loooong time
- # When not using gcc, we currently assume that we are using
- # Microsoft Visual C++.
- if test "$GCC" != yes; then
- with_gnu_ld=no
- fi
- ;;
- openbsd*)
- with_gnu_ld=no
- ;;
- esac
-
- _LT_AC_TAGVAR(ld_shlibs, $1)=yes
- if test "$with_gnu_ld" = yes; then
- # If archive_cmds runs LD, not CC, wlarc should be empty
- wlarc='${wl}'
-
- # Set some defaults for GNU ld with shared library support. These
- # are reset later if shared libraries are not supported. Putting them
- # here allows them to be overridden if necessary.
- runpath_var=LD_RUN_PATH
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
- # ancient GNU ld didn't support --whole-archive et. al.
- if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
- else
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
- fi
- supports_anon_versioning=no
- case `$LD -v 2>/dev/null` in
- *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
- *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
- *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
- *\ 2.11.*) ;; # other 2.11 versions
- *) supports_anon_versioning=yes ;;
- esac
-
- # See if GNU ld supports shared libraries.
- case $host_os in
- aix3* | aix4* | aix5*)
- # On AIX/PPC, the GNU linker is very broken
- if test "$host_cpu" != ia64; then
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- cat <&2
-
-*** Warning: the GNU linker, at least up to release 2.9.1, is reported
-*** to be unable to reliably create shared libraries on AIX.
-*** Therefore, libtool is disabling shared libraries support. If you
-*** really care for shared libraries, you may want to modify your PATH
-*** so that a non-GNU linker is found, and then restart.
-
-EOF
- fi
- ;;
-
- amigaos*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
-
- # Samuel A. Falvo II reports
- # that the semantics of dynamic libraries on AmigaOS, at least up
- # to version 4, is to share data among multiple programs linked
- # with the same dynamic library. Since this doesn't match the
- # behavior of shared libraries on other platforms, we can't use
- # them.
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
-
- beos*)
- if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
- # Joseph Beckenbach says some releases of gcc
- # support --undefined. This deserves some investigation. FIXME
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
- else
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- fi
- ;;
-
- cygwin* | mingw* | pw32*)
- # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
- # as there is no search path for DLLs.
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
- _LT_AC_TAGVAR(always_export_symbols, $1)=no
- _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
- _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols'
-
- if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
- # If the export-symbols file already is a .def file (1st line
- # is EXPORTS), use it as is; otherwise, prepend...
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
- cp $export_symbols $output_objdir/$soname.def;
- else
- echo EXPORTS > $output_objdir/$soname.def;
- cat $export_symbols >> $output_objdir/$soname.def;
- fi~
- $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
- else
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- fi
- ;;
-
- linux*)
- if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
- tmp_addflag=
- case $cc_basename,$host_cpu in
- pgcc*) # Portland Group C compiler
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
- tmp_addflag=' $pic_flag'
- ;;
- pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
- tmp_addflag=' $pic_flag -Mnomain' ;;
- ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64
- tmp_addflag=' -i_dynamic' ;;
- efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64
- tmp_addflag=' -i_dynamic -nofor_main' ;;
- ifc* | ifort*) # Intel Fortran compiler
- tmp_addflag=' -nofor_main' ;;
- esac
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
-
- if test $supports_anon_versioning = yes; then
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~
- cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
- $echo "local: *; };" >> $output_objdir/$libname.ver~
- $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
- fi
- else
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- fi
- ;;
-
- netbsd*)
- if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
- wlarc=
- else
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
- fi
- ;;
-
- solaris* | sysv5*)
- if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- cat <&2
-
-*** Warning: The releases 2.8.* of the GNU linker cannot reliably
-*** create shared libraries on Solaris systems. Therefore, libtool
-*** is disabling shared libraries support. We urge you to upgrade GNU
-*** binutils to release 2.9.1 or newer. Another option is to modify
-*** your PATH or compiler configuration so that the native linker is
-*** used, and then restart.
-
-EOF
- elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
- else
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- fi
- ;;
-
- sunos4*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
- wlarc=
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
-
- *)
- if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
- else
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- fi
- ;;
- esac
-
- if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then
- runpath_var=
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
- fi
- else
- # PORTME fill in a description of your system's linker (not GNU ld)
- case $host_os in
- aix3*)
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
- _LT_AC_TAGVAR(always_export_symbols, $1)=yes
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
- # Note: this linker hardcodes the directories in LIBPATH if there
- # are no directories specified by -L.
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
- if test "$GCC" = yes && test -z "$link_static_flag"; then
- # Neither direct hardcoding nor static linking is supported with a
- # broken collect2.
- _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
- fi
- ;;
-
- aix4* | aix5*)
- if test "$host_cpu" = ia64; then
- # On IA64, the linker does run time linking by default, so we don't
- # have to do anything special.
- aix_use_runtimelinking=no
- exp_sym_flag='-Bexport'
- no_entry_flag=""
- else
- # If we're using GNU nm, then we don't want the "-C" option.
- # -C means demangle to AIX nm, but means don't demangle with GNU nm
- if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
- _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
- else
- _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols'
- fi
- aix_use_runtimelinking=no
-
- # Test if we are trying to use run time linking or normal
- # AIX style linking. If -brtl is somewhere in LDFLAGS, we
- # need to do runtime linking.
- case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
- for ld_flag in $LDFLAGS; do
- if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
- aix_use_runtimelinking=yes
- break
- fi
- done
- esac
-
- exp_sym_flag='-bexport'
- no_entry_flag='-bnoentry'
- fi
-
- # When large executables or shared objects are built, AIX ld can
- # have problems creating the table of contents. If linking a library
- # or program results in "error TOC overflow" add -mminimal-toc to
- # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not
- # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
-
- _LT_AC_TAGVAR(archive_cmds, $1)=''
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
- _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
-
- if test "$GCC" = yes; then
- case $host_os in aix4.[[012]]|aix4.[[012]].*)
- # We only want to do this on AIX 4.2 and lower, the check
- # below for broken collect2 doesn't work under 4.3+
- collect2name=`${CC} -print-prog-name=collect2`
- if test -f "$collect2name" && \
- strings "$collect2name" | grep resolve_lib_name >/dev/null
- then
- # We have reworked collect2
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- else
- # We have old collect2
- _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
- # It fails to find uninstalled libraries when the uninstalled
- # path is not listed in the libpath. Setting hardcode_minus_L
- # to unsupported forces relinking
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
- fi
- esac
- shared_flag='-shared'
- if test "$aix_use_runtimelinking" = yes; then
- shared_flag="$shared_flag "'${wl}-G'
- fi
- else
- # not using gcc
- if test "$host_cpu" = ia64; then
- # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
- # chokes on -Wl,-G. The following line is correct:
- shared_flag='-G'
- else
- if test "$aix_use_runtimelinking" = yes; then
- shared_flag='${wl}-G'
- else
- shared_flag='${wl}-bM:SRE'
- fi
- fi
- fi
-
- # It seems that -bexpall does not export symbols beginning with
- # underscore (_), so it is better to generate a list of symbols to export.
- _LT_AC_TAGVAR(always_export_symbols, $1)=yes
- if test "$aix_use_runtimelinking" = yes; then
- # Warning - without using the other runtime loading flags (-brtl),
- # -berok will link without error, but may produce a broken library.
- _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
- # Determine the default libpath from the value encoded in an empty executable.
- _LT_AC_SYS_LIBPATH_AIX
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag"
- else
- if test "$host_cpu" = ia64; then
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
- _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"
- else
- # Determine the default libpath from the value encoded in an empty executable.
- _LT_AC_SYS_LIBPATH_AIX
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
- # Warning - without using the other run time loading flags,
- # -berok will link without error, but may produce a broken library.
- _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
- # -bexpall does not export symbols beginning with underscore (_)
- _LT_AC_TAGVAR(always_export_symbols, $1)=yes
- # Exported symbols can be pulled into shared objects from archives
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' '
- _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
- # This is similar to how AIX traditionally builds its shared libraries.
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
- fi
- fi
- ;;
-
- amigaos*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
- # see comment about different semantics on the GNU ld section
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
-
- bsdi[[45]]*)
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
- ;;
-
- cygwin* | mingw* | pw32*)
- # When not using gcc, we currently assume that we are using
- # Microsoft Visual C++.
- # hardcode_libdir_flag_spec is actually meaningless, as there is
- # no search path for DLLs.
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
- # Tell ltmain to make .lib files, not .a files.
- libext=lib
- # Tell ltmain to make .dll files, not .so files.
- shrext_cmds=".dll"
- # FIXME: Setting linknames here is a bad hack.
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
- # The linker will automatically build a .lib file if we build a DLL.
- _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true'
- # FIXME: Should let the user specify the lib program.
- _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs'
- _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`'
- _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
- ;;
-
- darwin* | rhapsody*)
- case $host_os in
- rhapsody* | darwin1.[[012]])
- _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
- ;;
- *) # Darwin 1.3 on
- if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
- _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
- else
- case ${MACOSX_DEPLOYMENT_TARGET} in
- 10.[[012]])
- _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
- ;;
- 10.*)
- _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
- ;;
- esac
- fi
- ;;
- esac
- _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
- _LT_AC_TAGVAR(hardcode_direct, $1)=no
- _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
- _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
- if test "$GCC" = yes ; then
- output_verbose_link_cmd='echo'
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
- _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
- # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
- _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
- else
- case $cc_basename in
- xlc*)
- output_verbose_link_cmd='echo'
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
- _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
- # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
- _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
- ;;
- *)
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- esac
- fi
- ;;
-
- dgux*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
-
- freebsd1*)
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
-
- # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
- # support. Future versions do this automatically, but an explicit c++rt0.o
- # does not break anything, and helps significantly (at the cost of a little
- # extra space).
- freebsd2.2*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
-
- # Unfortunately, older versions of FreeBSD 2 do not have this feature.
- freebsd2*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
-
- # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
- freebsd* | kfreebsd*-gnu | dragonfly*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
-
- hpux9*)
- if test "$GCC" = yes; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
- else
- _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
- fi
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
-
- # hardcode_minus_L: Not really in the search PATH,
- # but as the default location of the library.
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
- ;;
-
- hpux10* | hpux11*)
- if test "$GCC" = yes -a "$with_gnu_ld" = no; then
- case $host_cpu in
- hppa*64*|ia64*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
- ;;
- *)
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
- ;;
- esac
- else
- case $host_cpu in
- hppa*64*|ia64*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags'
- ;;
- *)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
- ;;
- esac
- fi
- if test "$with_gnu_ld" = no; then
- case $host_cpu in
- hppa*64*)
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
- _LT_AC_TAGVAR(hardcode_direct, $1)=no
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
- ia64*)
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- _LT_AC_TAGVAR(hardcode_direct, $1)=no
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
-
- # hardcode_minus_L: Not really in the search PATH,
- # but as the default location of the library.
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
- ;;
- *)
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
-
- # hardcode_minus_L: Not really in the search PATH,
- # but as the default location of the library.
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
- ;;
- esac
- fi
- ;;
-
- irix5* | irix6* | nonstopux*)
- if test "$GCC" = yes; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
- else
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
- fi
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
- _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
- ;;
-
- netbsd*)
- if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
- else
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF
- fi
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
-
- newsos6)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
-
- openbsd*)
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
- else
- case $host_os in
- openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
- ;;
- *)
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
- ;;
- esac
- fi
- ;;
-
- os2*)
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
- _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
- _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
- ;;
-
- osf3*)
- if test "$GCC" = yes; then
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
- else
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
- fi
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
- ;;
-
- osf4* | osf5*) # as osf3* with the addition of -msym flag
- if test "$GCC" = yes; then
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
- else
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
- $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
-
- # Both c and cxx compiler support -rpath directly
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
- fi
- _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
- ;;
-
- sco3.2v5*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
- runpath_var=LD_RUN_PATH
- hardcode_runpath_var=yes
- ;;
-
- solaris*)
- _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text'
- if test "$GCC" = yes; then
- wlarc='${wl}'
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
- $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp'
- else
- wlarc=''
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
- $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
- fi
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- case $host_os in
- solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
- *)
- # The compiler driver will combine linker options so we
- # cannot just pass the convience library names through
- # without $wl, iff we do not link with $LD.
- # Luckily, gcc supports the same syntax we need for Sun Studio.
- # Supported since Solaris 2.6 (maybe 2.5.1?)
- case $wlarc in
- '')
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;;
- *)
- _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;;
- esac ;;
- esac
- _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
- ;;
-
- sunos4*)
- if test "x$host_vendor" = xsequent; then
- # Use $CC to link under sequent, because it throws in some extra .o
- # files that make .init and .fini sections work.
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
- else
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
- fi
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
-
- sysv4)
- case $host_vendor in
- sni)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true???
- ;;
- siemens)
- ## LD is ld it makes a PLAMLIB
- ## CC just makes a GrossModule.
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
- _LT_AC_TAGVAR(hardcode_direct, $1)=no
- ;;
- motorola)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
- ;;
- esac
- runpath_var='LD_RUN_PATH'
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
-
- sysv4.3*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
- ;;
-
- sysv4*MP*)
- if test -d /usr/nec; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- runpath_var=LD_RUN_PATH
- hardcode_runpath_var=yes
- _LT_AC_TAGVAR(ld_shlibs, $1)=yes
- fi
- ;;
-
- sysv4.2uw2*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(hardcode_direct, $1)=yes
- _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- hardcode_runpath_var=yes
- runpath_var=LD_RUN_PATH
- ;;
-
- sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7*)
- _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z ${wl}text'
- if test "$GCC" = yes; then
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
- else
- _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
- fi
- runpath_var='LD_RUN_PATH'
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
-
- sysv5*)
- _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text'
- # $CC -shared without GNU ld will not create a library from C++
- # object files and a static libstdc++, better avoid it by now
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
- $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- runpath_var='LD_RUN_PATH'
- ;;
-
- uts4*)
- _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
- _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
- _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
- ;;
-
- *)
- _LT_AC_TAGVAR(ld_shlibs, $1)=no
- ;;
- esac
- fi
-])
-AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
-test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
-
-variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
-if test "$GCC" = yes; then
- variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
-fi
-
-#
-# Do we need to explicitly link libc?
-#
-case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in
-x|xyes)
- # Assume -lc should be added
- _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
-
- if test "$enable_shared" = yes && test "$GCC" = yes; then
- case $_LT_AC_TAGVAR(archive_cmds, $1) in
- *'~'*)
- # FIXME: we may have to deal with multi-command sequences.
- ;;
- '$CC '*)
- # Test whether the compiler implicitly links with -lc since on some
- # systems, -lgcc has to come before -lc. If gcc already passes -lc
- # to ld, don't add -lc before -lgcc.
- AC_MSG_CHECKING([whether -lc should be explicitly linked in])
- $rm conftest*
- printf "$lt_simple_compile_test_code" > conftest.$ac_ext
-
- if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
- soname=conftest
- lib=conftest
- libobjs=conftest.$ac_objext
- deplibs=
- wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
- compiler_flags=-v
- linker_flags=-v
- verstring=
- output_objdir=.
- libname=conftest
- lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1)
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=
- if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1)
- then
- _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
- else
- _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
- fi
- _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
- else
- cat conftest.err 1>&5
- fi
- $rm conftest*
- AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)])
- ;;
- esac
- fi
- ;;
-esac
-])# AC_LIBTOOL_PROG_LD_SHLIBS
-
-
-# _LT_AC_FILE_LTDLL_C
-# -------------------
-# Be careful that the start marker always follows a newline.
-AC_DEFUN([_LT_AC_FILE_LTDLL_C], [
-# /* ltdll.c starts here */
-# #define WIN32_LEAN_AND_MEAN
-# #include
-# #undef WIN32_LEAN_AND_MEAN
-# #include
-#
-# #ifndef __CYGWIN__
-# # ifdef __CYGWIN32__
-# # define __CYGWIN__ __CYGWIN32__
-# # endif
-# #endif
-#
-# #ifdef __cplusplus
-# extern "C" {
-# #endif
-# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);
-# #ifdef __cplusplus
-# }
-# #endif
-#
-# #ifdef __CYGWIN__
-# #include
-# DECLARE_CYGWIN_DLL( DllMain );
-# #endif
-# HINSTANCE __hDllInstance_base;
-#
-# BOOL APIENTRY
-# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved)
-# {
-# __hDllInstance_base = hInst;
-# return TRUE;
-# }
-# /* ltdll.c ends here */
-])# _LT_AC_FILE_LTDLL_C
-
-
-# _LT_AC_TAGVAR(VARNAME, [TAGNAME])
-# ---------------------------------
-AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])])
-
-
-# old names
-AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL])
-AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
-AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
-AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
-AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
-AC_DEFUN([AM_PROG_LD], [AC_PROG_LD])
-AC_DEFUN([AM_PROG_NM], [AC_PROG_NM])
-
-# This is just to silence aclocal about the macro not being used
-ifelse([AC_DISABLE_FAST_INSTALL])
-
-AC_DEFUN([LT_AC_PROG_GCJ],
-[AC_CHECK_TOOL(GCJ, gcj, no)
- test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
- AC_SUBST(GCJFLAGS)
-])
-
-AC_DEFUN([LT_AC_PROG_RC],
-[AC_CHECK_TOOL(RC, windres, no)
-])
-
-# NOTE: This macro has been submitted for inclusion into #
-# GNU Autoconf as AC_PROG_SED. When it is available in #
-# a released version of Autoconf we should remove this #
-# macro and use it instead. #
-# LT_AC_PROG_SED
-# --------------
-# Check for a fully-functional sed program, that truncates
-# as few characters as possible. Prefer GNU sed if found.
-AC_DEFUN([LT_AC_PROG_SED],
-[AC_MSG_CHECKING([for a sed that does not truncate output])
-AC_CACHE_VAL(lt_cv_path_SED,
-[# Loop through the user's path and test for sed and gsed.
-# Then use that list of sed's as ones to test for truncation.
-as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- for lt_ac_prog in sed gsed; do
- for ac_exec_ext in '' $ac_executable_extensions; do
- if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
- lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
- fi
- done
- done
-done
-lt_ac_max=0
-lt_ac_count=0
-# Add /usr/xpg4/bin/sed as it is typically found on Solaris
-# along with /bin/sed that truncates output.
-for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
- test ! -f $lt_ac_sed && continue
- cat /dev/null > conftest.in
- lt_ac_count=0
- echo $ECHO_N "0123456789$ECHO_C" >conftest.in
- # Check for GNU sed and select it if it is found.
- if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
- lt_cv_path_SED=$lt_ac_sed
- break
- fi
- while true; do
- cat conftest.in conftest.in >conftest.tmp
- mv conftest.tmp conftest.in
- cp conftest.in conftest.nl
- echo >>conftest.nl
- $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
- cmp -s conftest.out conftest.nl || break
- # 10000 chars as input seems more than enough
- test $lt_ac_count -gt 10 && break
- lt_ac_count=`expr $lt_ac_count + 1`
- if test $lt_ac_count -gt $lt_ac_max; then
- lt_ac_max=$lt_ac_count
- lt_cv_path_SED=$lt_ac_sed
- fi
- done
-done
-])
-SED=$lt_cv_path_SED
-AC_MSG_RESULT([$SED])
-])
-
-# Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# AM_AUTOMAKE_VERSION(VERSION)
-# ----------------------------
-# Automake X.Y traces this macro to ensure aclocal.m4 has been
-# generated from the m4 files accompanying Automake X.Y.
-AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"])
-
-# AM_SET_CURRENT_AUTOMAKE_VERSION
-# -------------------------------
-# Call AM_AUTOMAKE_VERSION so it can be traced.
-# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
-AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
- [AM_AUTOMAKE_VERSION([1.9.6])])
-
-# AM_AUX_DIR_EXPAND -*- Autoconf -*-
-
-# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
-# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
-# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
-#
-# Of course, Automake must honor this variable whenever it calls a
-# tool from the auxiliary directory. The problem is that $srcdir (and
-# therefore $ac_aux_dir as well) can be either absolute or relative,
-# depending on how configure is run. This is pretty annoying, since
-# it makes $ac_aux_dir quite unusable in subdirectories: in the top
-# source directory, any form will work fine, but in subdirectories a
-# relative path needs to be adjusted first.
-#
-# $ac_aux_dir/missing
-# fails when called from a subdirectory if $ac_aux_dir is relative
-# $top_srcdir/$ac_aux_dir/missing
-# fails if $ac_aux_dir is absolute,
-# fails when called from a subdirectory in a VPATH build with
-# a relative $ac_aux_dir
-#
-# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
-# are both prefixed by $srcdir. In an in-source build this is usually
-# harmless because $srcdir is `.', but things will broke when you
-# start a VPATH build or use an absolute $srcdir.
-#
-# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
-# iff we strip the leading $srcdir from $ac_aux_dir. That would be:
-# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
-# and then we would define $MISSING as
-# MISSING="\${SHELL} $am_aux_dir/missing"
-# This will work as long as MISSING is not called from configure, because
-# unfortunately $(top_srcdir) has no meaning in configure.
-# However there are other variables, like CC, which are often used in
-# configure, and could therefore not use this "fixed" $ac_aux_dir.
-#
-# Another solution, used here, is to always expand $ac_aux_dir to an
-# absolute PATH. The drawback is that using absolute paths prevent a
-# configured tree to be moved without reconfiguration.
-
-AC_DEFUN([AM_AUX_DIR_EXPAND],
-[dnl Rely on autoconf to set up CDPATH properly.
-AC_PREREQ([2.50])dnl
-# expand $ac_aux_dir to an absolute path
-am_aux_dir=`cd $ac_aux_dir && pwd`
-])
-
-# AM_CONDITIONAL -*- Autoconf -*-
-
-# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005
-# Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 7
-
-# AM_CONDITIONAL(NAME, SHELL-CONDITION)
-# -------------------------------------
-# Define a conditional.
-AC_DEFUN([AM_CONDITIONAL],
-[AC_PREREQ(2.52)dnl
- ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
- [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
-AC_SUBST([$1_TRUE])
-AC_SUBST([$1_FALSE])
-if $2; then
- $1_TRUE=
- $1_FALSE='#'
-else
- $1_TRUE='#'
- $1_FALSE=
-fi
-AC_CONFIG_COMMANDS_PRE(
-[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
- AC_MSG_ERROR([[conditional "$1" was never defined.
-Usually this means the macro was only invoked conditionally.]])
-fi])])
-
-
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
-# Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 8
-
-# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
-# written in clear, in which case automake, when reading aclocal.m4,
-# will think it sees a *use*, and therefore will trigger all it's
-# C support machinery. Also note that it means that autoscan, seeing
-# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
-
-
-# _AM_DEPENDENCIES(NAME)
-# ----------------------
-# See how the compiler implements dependency checking.
-# NAME is "CC", "CXX", "GCJ", or "OBJC".
-# We try a few techniques and use that to set a single cache variable.
-#
-# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
-# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
-# dependency, and given that the user is not expected to run this macro,
-# just rely on AC_PROG_CC.
-AC_DEFUN([_AM_DEPENDENCIES],
-[AC_REQUIRE([AM_SET_DEPDIR])dnl
-AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
-AC_REQUIRE([AM_MAKE_INCLUDE])dnl
-AC_REQUIRE([AM_DEP_TRACK])dnl
-
-ifelse([$1], CC, [depcc="$CC" am_compiler_list=],
- [$1], CXX, [depcc="$CXX" am_compiler_list=],
- [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
- [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
- [depcc="$$1" am_compiler_list=])
-
-AC_CACHE_CHECK([dependency style of $depcc],
- [am_cv_$1_dependencies_compiler_type],
-[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
- # We make a subdir and do the tests there. Otherwise we can end up
- # making bogus files that we don't know about and never remove. For
- # instance it was reported that on HP-UX the gcc test will end up
- # making a dummy file named `D' -- because `-MD' means `put the output
- # in D'.
- mkdir conftest.dir
- # Copy depcomp to subdir because otherwise we won't find it if we're
- # using a relative directory.
- cp "$am_depcomp" conftest.dir
- cd conftest.dir
- # We will build objects and dependencies in a subdirectory because
- # it helps to detect inapplicable dependency modes. For instance
- # both Tru64's cc and ICC support -MD to output dependencies as a
- # side effect of compilation, but ICC will put the dependencies in
- # the current directory while Tru64 will put them in the object
- # directory.
- mkdir sub
-
- am_cv_$1_dependencies_compiler_type=none
- if test "$am_compiler_list" = ""; then
- am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
- fi
- for depmode in $am_compiler_list; do
- # Setup a source with many dependencies, because some compilers
- # like to wrap large dependency lists on column 80 (with \), and
- # we should not choose a depcomp mode which is confused by this.
- #
- # We need to recreate these files for each test, as the compiler may
- # overwrite some of them when testing with obscure command lines.
- # This happens at least with the AIX C compiler.
- : > sub/conftest.c
- for i in 1 2 3 4 5 6; do
- echo '#include "conftst'$i'.h"' >> sub/conftest.c
- # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
- # Solaris 8's {/usr,}/bin/sh.
- touch sub/conftst$i.h
- done
- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
-
- case $depmode in
- nosideeffect)
- # after this tag, mechanisms are not by side-effect, so they'll
- # only be used when explicitly requested
- if test "x$enable_dependency_tracking" = xyes; then
- continue
- else
- break
- fi
- ;;
- none) break ;;
- esac
- # We check with `-c' and `-o' for the sake of the "dashmstdout"
- # mode. It turns out that the SunPro C++ compiler does not properly
- # handle `-M -o', and we need to detect this.
- if depmode=$depmode \
- source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
- $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
- >/dev/null 2>conftest.err &&
- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
- grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
- # icc doesn't choke on unknown options, it will just issue warnings
- # or remarks (even with -Werror). So we grep stderr for any message
- # that says an option was ignored or not supported.
- # When given -MP, icc 7.0 and 7.1 complain thusly:
- # icc: Command line warning: ignoring option '-M'; no argument required
- # The diagnosis changed in icc 8.0:
- # icc: Command line remark: option '-MP' not supported
- if (grep 'ignoring option' conftest.err ||
- grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
- am_cv_$1_dependencies_compiler_type=$depmode
- break
- fi
- fi
- done
-
- cd ..
- rm -rf conftest.dir
-else
- am_cv_$1_dependencies_compiler_type=none
-fi
-])
-AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
-AM_CONDITIONAL([am__fastdep$1], [
- test "x$enable_dependency_tracking" != xno \
- && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
-])
-
-
-# AM_SET_DEPDIR
-# -------------
-# Choose a directory name for dependency files.
-# This macro is AC_REQUIREd in _AM_DEPENDENCIES
-AC_DEFUN([AM_SET_DEPDIR],
-[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
-AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
-])
-
-
-# AM_DEP_TRACK
-# ------------
-AC_DEFUN([AM_DEP_TRACK],
-[AC_ARG_ENABLE(dependency-tracking,
-[ --disable-dependency-tracking speeds up one-time build
- --enable-dependency-tracking do not reject slow dependency extractors])
-if test "x$enable_dependency_tracking" != xno; then
- am_depcomp="$ac_aux_dir/depcomp"
- AMDEPBACKSLASH='\'
-fi
-AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
-AC_SUBST([AMDEPBACKSLASH])
-])
-
-# Generate code to set up dependency tracking. -*- Autoconf -*-
-
-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
-# Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-#serial 3
-
-# _AM_OUTPUT_DEPENDENCY_COMMANDS
-# ------------------------------
-AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
-[for mf in $CONFIG_FILES; do
- # Strip MF so we end up with the name of the file.
- mf=`echo "$mf" | sed -e 's/:.*$//'`
- # Check whether this is an Automake generated Makefile or not.
- # We used to match only the files named `Makefile.in', but
- # some people rename them; so instead we look at the file content.
- # Grep'ing the first line is not enough: some people post-process
- # each Makefile.in and add a new line on top of each file to say so.
- # So let's grep whole file.
- if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
- dirpart=`AS_DIRNAME("$mf")`
- else
- continue
- fi
- # Extract the definition of DEPDIR, am__include, and am__quote
- # from the Makefile without running `make'.
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
- test -z "$DEPDIR" && continue
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
- test -z "am__include" && continue
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
- # When using ansi2knr, U may be empty or an underscore; expand it
- U=`sed -n 's/^U = //p' < "$mf"`
- # Find all dependency output files, they are included files with
- # $(DEPDIR) in their names. We invoke sed twice because it is the
- # simplest approach to changing $(DEPDIR) to its actual value in the
- # expansion.
- for file in `sed -n "
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
- # Make sure the directory exists.
- test -f "$dirpart/$file" && continue
- fdir=`AS_DIRNAME(["$file"])`
- AS_MKDIR_P([$dirpart/$fdir])
- # echo "creating $dirpart/$file"
- echo '# dummy' > "$dirpart/$file"
- done
-done
-])# _AM_OUTPUT_DEPENDENCY_COMMANDS
-
-
-# AM_OUTPUT_DEPENDENCY_COMMANDS
-# -----------------------------
-# This macro should only be invoked once -- use via AC_REQUIRE.
-#
-# This code is only required when automatic dependency tracking
-# is enabled. FIXME. This creates each `.P' file that we will
-# need in order to bootstrap the dependency handling code.
-AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
-[AC_CONFIG_COMMANDS([depfiles],
- [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
- [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
-])
-
-# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
-# Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 8
-
-# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS.
-AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
-
-# Do all the work for Automake. -*- Autoconf -*-
-
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
-# Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 12
-
-# This macro actually does too much. Some checks are only needed if
-# your package does certain things. But this isn't really a big deal.
-
-# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
-# AM_INIT_AUTOMAKE([OPTIONS])
-# -----------------------------------------------
-# The call with PACKAGE and VERSION arguments is the old style
-# call (pre autoconf-2.50), which is being phased out. PACKAGE
-# and VERSION should now be passed to AC_INIT and removed from
-# the call to AM_INIT_AUTOMAKE.
-# We support both call styles for the transition. After
-# the next Automake release, Autoconf can make the AC_INIT
-# arguments mandatory, and then we can depend on a new Autoconf
-# release and drop the old call support.
-AC_DEFUN([AM_INIT_AUTOMAKE],
-[AC_PREREQ([2.58])dnl
-dnl Autoconf wants to disallow AM_ names. We explicitly allow
-dnl the ones we care about.
-m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
-AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
-AC_REQUIRE([AC_PROG_INSTALL])dnl
-# test to see if srcdir already configured
-if test "`cd $srcdir && pwd`" != "`pwd`" &&
- test -f $srcdir/config.status; then
- AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
-fi
-
-# test whether we have cygpath
-if test -z "$CYGPATH_W"; then
- if (cygpath --version) >/dev/null 2>/dev/null; then
- CYGPATH_W='cygpath -w'
- else
- CYGPATH_W=echo
- fi
-fi
-AC_SUBST([CYGPATH_W])
-
-# Define the identity of the package.
-dnl Distinguish between old-style and new-style calls.
-m4_ifval([$2],
-[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
- AC_SUBST([PACKAGE], [$1])dnl
- AC_SUBST([VERSION], [$2])],
-[_AM_SET_OPTIONS([$1])dnl
- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
-
-_AM_IF_OPTION([no-define],,
-[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
- AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
-
-# Some tools Automake needs.
-AC_REQUIRE([AM_SANITY_CHECK])dnl
-AC_REQUIRE([AC_ARG_PROGRAM])dnl
-AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
-AM_MISSING_PROG(AUTOCONF, autoconf)
-AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
-AM_MISSING_PROG(AUTOHEADER, autoheader)
-AM_MISSING_PROG(MAKEINFO, makeinfo)
-AM_PROG_INSTALL_SH
-AM_PROG_INSTALL_STRIP
-AC_REQUIRE([AM_PROG_MKDIR_P])dnl
-# We need awk for the "check" target. The system "awk" is bad on
-# some platforms.
-AC_REQUIRE([AC_PROG_AWK])dnl
-AC_REQUIRE([AC_PROG_MAKE_SET])dnl
-AC_REQUIRE([AM_SET_LEADING_DOT])dnl
-_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
- [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
- [_AM_PROG_TAR([v7])])])
-_AM_IF_OPTION([no-dependencies],,
-[AC_PROVIDE_IFELSE([AC_PROG_CC],
- [_AM_DEPENDENCIES(CC)],
- [define([AC_PROG_CC],
- defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
-AC_PROVIDE_IFELSE([AC_PROG_CXX],
- [_AM_DEPENDENCIES(CXX)],
- [define([AC_PROG_CXX],
- defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
-])
-])
-
-
-# When config.status generates a header, we must update the stamp-h file.
-# This file resides in the same directory as the config header
-# that is generated. The stamp files are numbered to have different names.
-
-# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
-# loop where config.status creates the headers, so we can generate
-# our stamp files there.
-AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
-[# Compute $1's index in $config_headers.
-_am_stamp_count=1
-for _am_header in $config_headers :; do
- case $_am_header in
- $1 | $1:* )
- break ;;
- * )
- _am_stamp_count=`expr $_am_stamp_count + 1` ;;
- esac
-done
-echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
-
-# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# AM_PROG_INSTALL_SH
-# ------------------
-# Define $install_sh.
-AC_DEFUN([AM_PROG_INSTALL_SH],
-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
-install_sh=${install_sh-"$am_aux_dir/install-sh"}
-AC_SUBST(install_sh)])
-
-# Copyright (C) 2003, 2005 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 2
-
-# Check whether the underlying file-system supports filenames
-# with a leading dot. For instance MS-DOS doesn't.
-AC_DEFUN([AM_SET_LEADING_DOT],
-[rm -rf .tst 2>/dev/null
-mkdir .tst 2>/dev/null
-if test -d .tst; then
- am__leading_dot=.
-else
- am__leading_dot=_
-fi
-rmdir .tst 2>/dev/null
-AC_SUBST([am__leading_dot])])
-
-# Add --enable-maintainer-mode option to configure. -*- Autoconf -*-
-# From Jim Meyering
-
-# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005
-# Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 4
-
-AC_DEFUN([AM_MAINTAINER_MODE],
-[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
- dnl maintainer-mode is disabled by default
- AC_ARG_ENABLE(maintainer-mode,
-[ --enable-maintainer-mode enable make rules and dependencies not useful
- (and sometimes confusing) to the casual installer],
- USE_MAINTAINER_MODE=$enableval,
- USE_MAINTAINER_MODE=no)
- AC_MSG_RESULT([$USE_MAINTAINER_MODE])
- AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
- MAINT=$MAINTAINER_MODE_TRUE
- AC_SUBST(MAINT)dnl
-]
-)
-
-AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
-
-# Check to see how 'make' treats includes. -*- Autoconf -*-
-
-# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 3
-
-# AM_MAKE_INCLUDE()
-# -----------------
-# Check to see how make treats includes.
-AC_DEFUN([AM_MAKE_INCLUDE],
-[am_make=${MAKE-make}
-cat > confinc << 'END'
-am__doit:
- @echo done
-.PHONY: am__doit
-END
-# If we don't find an include directive, just comment out the code.
-AC_MSG_CHECKING([for style of include used by $am_make])
-am__include="#"
-am__quote=
-_am_result=none
-# First try GNU make style include.
-echo "include confinc" > confmf
-# We grep out `Entering directory' and `Leaving directory'
-# messages which can occur if `w' ends up in MAKEFLAGS.
-# In particular we don't look at `^make:' because GNU make might
-# be invoked under some other name (usually "gmake"), in which
-# case it prints its new name instead of `make'.
-if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
- am__include=include
- am__quote=
- _am_result=GNU
-fi
-# Now try BSD make style include.
-if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
- if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
- am__include=.include
- am__quote="\""
- _am_result=BSD
- fi
-fi
-AC_SUBST([am__include])
-AC_SUBST([am__quote])
-AC_MSG_RESULT([$_am_result])
-rm -f confinc confmf
-])
-
-# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
-
-# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2005
-# Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 4
-
-# AM_MISSING_PROG(NAME, PROGRAM)
-# ------------------------------
-AC_DEFUN([AM_MISSING_PROG],
-[AC_REQUIRE([AM_MISSING_HAS_RUN])
-$1=${$1-"${am_missing_run}$2"}
-AC_SUBST($1)])
-
-
-# AM_MISSING_HAS_RUN
-# ------------------
-# Define MISSING if not defined so far and test if it supports --run.
-# If it does, set am_missing_run to use it, otherwise, to nothing.
-AC_DEFUN([AM_MISSING_HAS_RUN],
-[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
-test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
-# Use eval to expand $SHELL
-if eval "$MISSING --run true"; then
- am_missing_run="$MISSING --run "
-else
- am_missing_run=
- AC_MSG_WARN([`missing' script is too old or missing])
-fi
-])
-
-# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# AM_PROG_MKDIR_P
-# ---------------
-# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.
-#
-# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
-# created by `make install' are always world readable, even if the
-# installer happens to have an overly restrictive umask (e.g. 077).
-# This was a mistake. There are at least two reasons why we must not
-# use `-m 0755':
-# - it causes special bits like SGID to be ignored,
-# - it may be too restrictive (some setups expect 775 directories).
-#
-# Do not use -m 0755 and let people choose whatever they expect by
-# setting umask.
-#
-# We cannot accept any implementation of `mkdir' that recognizes `-p'.
-# Some implementations (such as Solaris 8's) are not thread-safe: if a
-# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'
-# concurrently, both version can detect that a/ is missing, but only
-# one can create it and the other will error out. Consequently we
-# restrict ourselves to GNU make (using the --version option ensures
-# this.)
-AC_DEFUN([AM_PROG_MKDIR_P],
-[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
- # We used to keeping the `.' as first argument, in order to
- # allow $(mkdir_p) to be used without argument. As in
- # $(mkdir_p) $(somedir)
- # where $(somedir) is conditionally defined. However this is wrong
- # for two reasons:
- # 1. if the package is installed by a user who cannot write `.'
- # make install will fail,
- # 2. the above comment should most certainly read
- # $(mkdir_p) $(DESTDIR)$(somedir)
- # so it does not work when $(somedir) is undefined and
- # $(DESTDIR) is not.
- # To support the latter case, we have to write
- # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
- # so the `.' trick is pointless.
- mkdir_p='mkdir -p --'
-else
- # On NextStep and OpenStep, the `mkdir' command does not
- # recognize any option. It will interpret all options as
- # directories to create, and then abort because `.' already
- # exists.
- for d in ./-p ./--version;
- do
- test -d $d && rmdir $d
- done
- # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
- if test -f "$ac_aux_dir/mkinstalldirs"; then
- mkdir_p='$(mkinstalldirs)'
- else
- mkdir_p='$(install_sh) -d'
- fi
-fi
-AC_SUBST([mkdir_p])])
-
-# Helper functions for option handling. -*- Autoconf -*-
-
-# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 3
-
-# _AM_MANGLE_OPTION(NAME)
-# -----------------------
-AC_DEFUN([_AM_MANGLE_OPTION],
-[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
-
-# _AM_SET_OPTION(NAME)
-# ------------------------------
-# Set option NAME. Presently that only means defining a flag for this option.
-AC_DEFUN([_AM_SET_OPTION],
-[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
-
-# _AM_SET_OPTIONS(OPTIONS)
-# ----------------------------------
-# OPTIONS is a space-separated list of Automake options.
-AC_DEFUN([_AM_SET_OPTIONS],
-[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
-
-# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
-# -------------------------------------------
-# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
-AC_DEFUN([_AM_IF_OPTION],
-[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
-
-# Check to make sure that the build environment is sane. -*- Autoconf -*-
-
-# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
-# Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 4
-
-# AM_SANITY_CHECK
-# ---------------
-AC_DEFUN([AM_SANITY_CHECK],
-[AC_MSG_CHECKING([whether build environment is sane])
-# Just in case
-sleep 1
-echo timestamp > conftest.file
-# Do `set' in a subshell so we don't clobber the current shell's
-# arguments. Must try -L first in case configure is actually a
-# symlink; some systems play weird games with the mod time of symlinks
-# (eg FreeBSD returns the mod time of the symlink's containing
-# directory).
-if (
- set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
- if test "$[*]" = "X"; then
- # -L didn't work.
- set X `ls -t $srcdir/configure conftest.file`
- fi
- rm -f conftest.file
- if test "$[*]" != "X $srcdir/configure conftest.file" \
- && test "$[*]" != "X conftest.file $srcdir/configure"; then
-
- # If neither matched, then we have a broken ls. This can happen
- # if, for instance, CONFIG_SHELL is bash and it inherits a
- # broken ls alias from the environment. This has actually
- # happened. Such a system could not be considered "sane".
- AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
-alias in your environment])
- fi
-
- test "$[2]" = conftest.file
- )
-then
- # Ok.
- :
-else
- AC_MSG_ERROR([newly created file is older than distributed files!
-Check your system clock])
-fi
-AC_MSG_RESULT(yes)])
-
-# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# AM_PROG_INSTALL_STRIP
-# ---------------------
-# One issue with vendor `install' (even GNU) is that you can't
-# specify the program used to strip binaries. This is especially
-# annoying in cross-compiling environments, where the build's strip
-# is unlikely to handle the host's binaries.
-# Fortunately install-sh will honor a STRIPPROG variable, so we
-# always use install-sh in `make install-strip', and initialize
-# STRIPPROG with the value of the STRIP variable (set by the user).
-AC_DEFUN([AM_PROG_INSTALL_STRIP],
-[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
-# Installed binaries are usually stripped using `strip' when the user
-# run `make install-strip'. However `strip' might not be the right
-# tool to use in cross-compilation environments, therefore Automake
-# will honor the `STRIP' environment variable to overrule this program.
-dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
-if test "$cross_compiling" != no; then
- AC_CHECK_TOOL([STRIP], [strip], :)
-fi
-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
-AC_SUBST([INSTALL_STRIP_PROGRAM])])
-
-# Check how to create a tarball. -*- Autoconf -*-
-
-# Copyright (C) 2004, 2005 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# serial 2
-
-# _AM_PROG_TAR(FORMAT)
-# --------------------
-# Check how to create a tarball in format FORMAT.
-# FORMAT should be one of `v7', `ustar', or `pax'.
-#
-# Substitute a variable $(am__tar) that is a command
-# writing to stdout a FORMAT-tarball containing the directory
-# $tardir.
-# tardir=directory && $(am__tar) > result.tar
-#
-# Substitute a variable $(am__untar) that extract such
-# a tarball read from stdin.
-# $(am__untar) < result.tar
-AC_DEFUN([_AM_PROG_TAR],
-[# Always define AMTAR for backward compatibility.
-AM_MISSING_PROG([AMTAR], [tar])
-m4_if([$1], [v7],
- [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
- [m4_case([$1], [ustar],, [pax],,
- [m4_fatal([Unknown tar format])])
-AC_MSG_CHECKING([how to create a $1 tar archive])
-# Loop over all known methods to create a tar archive until one works.
-_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
-_am_tools=${am_cv_prog_tar_$1-$_am_tools}
-# Do not fold the above two line into one, because Tru64 sh and
-# Solaris sh will not grok spaces in the rhs of `-'.
-for _am_tool in $_am_tools
-do
- case $_am_tool in
- gnutar)
- for _am_tar in tar gnutar gtar;
- do
- AM_RUN_LOG([$_am_tar --version]) && break
- done
- am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
- am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
- am__untar="$_am_tar -xf -"
- ;;
- plaintar)
- # Must skip GNU tar: if it does not support --format= it doesn't create
- # ustar tarball either.
- (tar --version) >/dev/null 2>&1 && continue
- am__tar='tar chf - "$$tardir"'
- am__tar_='tar chf - "$tardir"'
- am__untar='tar xf -'
- ;;
- pax)
- am__tar='pax -L -x $1 -w "$$tardir"'
- am__tar_='pax -L -x $1 -w "$tardir"'
- am__untar='pax -r'
- ;;
- cpio)
- am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
- am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
- am__untar='cpio -i -H $1 -d'
- ;;
- none)
- am__tar=false
- am__tar_=false
- am__untar=false
- ;;
- esac
-
- # If the value was cached, stop now. We just wanted to have am__tar
- # and am__untar set.
- test -n "${am_cv_prog_tar_$1}" && break
-
- # tar/untar a dummy directory, and stop if the command works
- rm -rf conftest.dir
- mkdir conftest.dir
- echo GrepMe > conftest.dir/file
- AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
- rm -rf conftest.dir
- if test -s conftest.tar; then
- AM_RUN_LOG([$am__untar /dev/null 2>&1 && break
- fi
-done
-rm -rf conftest.dir
-
-AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
-AC_MSG_RESULT([$am_cv_prog_tar_$1])])
-AC_SUBST([am__tar])
-AC_SUBST([am__untar])
-]) # _AM_PROG_TAR
-
-m4_include([m4/codeset.m4])
-m4_include([m4/gettext.m4])
-m4_include([m4/glibc2.m4])
-m4_include([m4/glibc21.m4])
-m4_include([m4/iconv.m4])
-m4_include([m4/intdiv0.m4])
-m4_include([m4/intmax.m4])
-m4_include([m4/inttypes-pri.m4])
-m4_include([m4/inttypes.m4])
-m4_include([m4/inttypes_h.m4])
-m4_include([m4/lcmessage.m4])
-m4_include([m4/lib-ld.m4])
-m4_include([m4/lib-link.m4])
-m4_include([m4/lib-prefix.m4])
-m4_include([m4/longdouble.m4])
-m4_include([m4/longlong.m4])
-m4_include([m4/nls.m4])
-m4_include([m4/po.m4])
-m4_include([m4/printf-posix.m4])
-m4_include([m4/progtest.m4])
-m4_include([m4/signed.m4])
-m4_include([m4/size_max.m4])
-m4_include([m4/stdint_h.m4])
-m4_include([m4/uintmax_t.m4])
-m4_include([m4/ulonglong.m4])
-m4_include([m4/wchar_t.m4])
-m4_include([m4/wint_t.m4])
-m4_include([m4/xsize.m4])
-m4_include([acinclude.m4])
diff --git a/packages/node-libofx/OpenSP-1.5.2/all/README b/packages/node-libofx/OpenSP-1.5.2/all/README
deleted file mode 100644
index 57ecba40ace..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/all/README
+++ /dev/null
@@ -1,2 +0,0 @@
-This file exists only to ensure that the all directory exists.
-This directory is used in the Visual C++ build process.
diff --git a/packages/node-libofx/OpenSP-1.5.2/all/all.dsp b/packages/node-libofx/OpenSP-1.5.2/all/all.dsp
deleted file mode 100644
index af92ad8f6ed..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/all/all.dsp
+++ /dev/null
@@ -1,93 +0,0 @@
-# Microsoft Developer Studio Project File - Name="all" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) External Target" 0x0106
-
-CFG=all - Win32 Release
-!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 "all.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 "all.mak" CFG="all - Win32 Release"
-!MESSAGE
-!MESSAGE Possible choices for configuration are:
-!MESSAGE
-!MESSAGE "all - Win32 Release" (based on "Win32 (x86) External Target")
-!MESSAGE "all - Win32 Debug" (based on "Win32 (x86) External Target")
-!MESSAGE
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-
-!IF "$(CFG)" == "all - Win32 Release"
-
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir ".\Release"
-# PROP BASE Intermediate_Dir ".\Release"
-# PROP BASE Cmd_Line "NMAKE /f all.mak"
-# PROP BASE Rebuild_Opt "/a"
-# PROP BASE Target_File "all\all.exe"
-# PROP BASE Bsc_Name "all\all.bsc"
-# PROP BASE Target_Dir "."
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir ".\Release"
-# PROP Intermediate_Dir ".\Release"
-# PROP Cmd_Line ""
-# PROP Rebuild_Opt ""
-# PROP Target_File "all"
-# PROP Bsc_Name ""
-# PROP Target_Dir "."
-
-!ELSEIF "$(CFG)" == "all - Win32 Debug"
-
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir ".\Debug"
-# PROP BASE Intermediate_Dir ".\Debug"
-# PROP BASE Cmd_Line "NMAKE /f all.mak"
-# PROP BASE Rebuild_Opt "/a"
-# PROP BASE Target_File "all\all.exe"
-# PROP BASE Bsc_Name "all\all.bsc"
-# PROP BASE Target_Dir "."
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir ".\Debug"
-# PROP Intermediate_Dir ".\Debug"
-# PROP Cmd_Line ""
-# PROP Rebuild_Opt ""
-# PROP Target_File "all"
-# PROP Bsc_Name ""
-# PROP Target_Dir "."
-
-!ENDIF
-
-# Begin Target
-
-# Name "all - Win32 Release"
-# Name "all - Win32 Debug"
-
-!IF "$(CFG)" == "all - Win32 Release"
-
-!ELSEIF "$(CFG)" == "all - Win32 Debug"
-
-!ENDIF
-
-# Begin Group "Source Files"
-
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat;for;f90"
-# End Group
-# Begin Group "Header Files"
-
-# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
-# End Group
-# Begin Group "Resource Files"
-
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe"
-# End Group
-# End Target
-# End Project
diff --git a/packages/node-libofx/OpenSP-1.5.2/autoinit.sh b/packages/node-libofx/OpenSP-1.5.2/autoinit.sh
deleted file mode 100755
index 6a2fcdd5580..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/autoinit.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-#
-# $Id: autoinit.sh,v 1.1.2.2 2005/12/09 04:00:57 neilroeth Exp $
-#
-# autoinit.sh - part of build system for C/C++ Unix/X11 programs
-# Copyright (C) 1999 Hans Ulrich Niedermann
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-
-basename="$(basename "$0" || echo "$0")"
-
-for command in aclocal autoheader libtoolize "automake --add-missing" autoconf; do
- echo "$basename: Executing \"${command}\""
- ${command}
- status=$?
- if test $status -ne 0; then
- echo "$basename: Execution of \"${command}\" failed (exit status ${status})"
- echo "$basename: aborted (exit status ${status})"
- exit ${status}
- fi
-done
-
-configure="$(dirname "$0" || echo "")/configure"
-echo "$basename: You probably want to run \"$configure\" now."
-echo "$basename: See \"$configure --help\" for help \"$configure\" options"
diff --git a/packages/node-libofx/OpenSP-1.5.2/build-win32.bat b/packages/node-libofx/OpenSP-1.5.2/build-win32.bat
deleted file mode 100755
index e9d80d6bb44..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/build-win32.bat
+++ /dev/null
@@ -1,2 +0,0 @@
-nmake -f sp-generate.mak
-msdev SP.dsw /make "all - win32 release"
diff --git a/packages/node-libofx/OpenSP-1.5.2/config.guess b/packages/node-libofx/OpenSP-1.5.2/config.guess
deleted file mode 100755
index 917bbc50f36..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/config.guess
+++ /dev/null
@@ -1,1463 +0,0 @@
-#! /bin/sh
-# Attempt to guess a canonical system name.
-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
-# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
-
-timestamp='2005-07-08'
-
-# This file is free software; you can redistribute it and/or modify it
-# under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
-# 02110-1301, USA.
-#
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program that contains a
-# configuration script generated by Autoconf, you may include it under
-# the same distribution terms that you use for the rest of that program.
-
-
-# Originally written by Per Bothner .
-# Please send patches to . Submit a context
-# diff and a properly formatted ChangeLog entry.
-#
-# This script attempts to guess a canonical system name similar to
-# config.sub. If it succeeds, it prints the system name on stdout, and
-# exits with 0. Otherwise, it exits with 1.
-#
-# The plan is that this can be called by configure scripts if you
-# don't specify an explicit build system type.
-
-me=`echo "$0" | sed -e 's,.*/,,'`
-
-usage="\
-Usage: $0 [OPTION]
-
-Output the configuration name of the system \`$me' is run on.
-
-Operation modes:
- -h, --help print this help, then exit
- -t, --time-stamp print date of last modification, then exit
- -v, --version print version number, then exit
-
-Report bugs and patches to ."
-
-version="\
-GNU config.guess ($timestamp)
-
-Originally written by Per Bothner.
-Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
-Free Software Foundation, Inc.
-
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
-
-help="
-Try \`$me --help' for more information."
-
-# Parse command line
-while test $# -gt 0 ; do
- case $1 in
- --time-stamp | --time* | -t )
- echo "$timestamp" ; exit ;;
- --version | -v )
- echo "$version" ; exit ;;
- --help | --h* | -h )
- echo "$usage"; exit ;;
- -- ) # Stop option processing
- shift; break ;;
- - ) # Use stdin as input.
- break ;;
- -* )
- echo "$me: invalid option $1$help" >&2
- exit 1 ;;
- * )
- break ;;
- esac
-done
-
-if test $# != 0; then
- echo "$me: too many arguments$help" >&2
- exit 1
-fi
-
-trap 'exit 1' 1 2 15
-
-# CC_FOR_BUILD -- compiler used by this script. Note that the use of a
-# compiler to aid in system detection is discouraged as it requires
-# temporary files to be created and, as you can see below, it is a
-# headache to deal with in a portable fashion.
-
-# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
-# use `HOST_CC' if defined, but it is deprecated.
-
-# Portable tmp directory creation inspired by the Autoconf team.
-
-set_cc_for_build='
-trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ;
-trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ;
-: ${TMPDIR=/tmp} ;
- { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
- { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } ||
- { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ;
-dummy=$tmp/dummy ;
-tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ;
-case $CC_FOR_BUILD,$HOST_CC,$CC in
- ,,) echo "int x;" > $dummy.c ;
- for c in cc gcc c89 c99 ; do
- if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then
- CC_FOR_BUILD="$c"; break ;
- fi ;
- done ;
- if test x"$CC_FOR_BUILD" = x ; then
- CC_FOR_BUILD=no_compiler_found ;
- fi
- ;;
- ,,*) CC_FOR_BUILD=$CC ;;
- ,*,*) CC_FOR_BUILD=$HOST_CC ;;
-esac ; set_cc_for_build= ;'
-
-# This is needed to find uname on a Pyramid OSx when run in the BSD universe.
-# (ghazi@noc.rutgers.edu 1994-08-24)
-if (test -f /.attbin/uname) >/dev/null 2>&1 ; then
- PATH=$PATH:/.attbin ; export PATH
-fi
-
-UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown
-UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown
-UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown
-UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
-
-# Note: order is significant - the case branches are not exclusive.
-
-case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
- *:NetBSD:*:*)
- # NetBSD (nbsd) targets should (where applicable) match one or
- # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*,
- # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently
- # switched to ELF, *-*-netbsd* would select the old
- # object file format. This provides both forward
- # compatibility and a consistent mechanism for selecting the
- # object file format.
- #
- # Note: NetBSD doesn't particularly care about the vendor
- # portion of the name. We always set it to "unknown".
- sysctl="sysctl -n hw.machine_arch"
- UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \
- /usr/sbin/$sysctl 2>/dev/null || echo unknown)`
- case "${UNAME_MACHINE_ARCH}" in
- armeb) machine=armeb-unknown ;;
- arm*) machine=arm-unknown ;;
- sh3el) machine=shl-unknown ;;
- sh3eb) machine=sh-unknown ;;
- *) machine=${UNAME_MACHINE_ARCH}-unknown ;;
- esac
- # The Operating System including object format, if it has switched
- # to ELF recently, or will in the future.
- case "${UNAME_MACHINE_ARCH}" in
- arm*|i386|m68k|ns32k|sh3*|sparc|vax)
- eval $set_cc_for_build
- if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \
- | grep __ELF__ >/dev/null
- then
- # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout).
- # Return netbsd for either. FIX?
- os=netbsd
- else
- os=netbsdelf
- fi
- ;;
- *)
- os=netbsd
- ;;
- esac
- # The OS release
- # Debian GNU/NetBSD machines have a different userland, and
- # thus, need a distinct triplet. However, they do not need
- # kernel version information, so it can be replaced with a
- # suitable tag, in the style of linux-gnu.
- case "${UNAME_VERSION}" in
- Debian*)
- release='-gnu'
- ;;
- *)
- release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
- ;;
- esac
- # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM:
- # contains redundant information, the shorter form:
- # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
- echo "${machine}-${os}${release}"
- exit ;;
- *:OpenBSD:*:*)
- UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
- echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
- exit ;;
- *:ekkoBSD:*:*)
- echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE}
- exit ;;
- macppc:MirBSD:*:*)
- echo powerppc-unknown-mirbsd${UNAME_RELEASE}
- exit ;;
- *:MirBSD:*:*)
- echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE}
- exit ;;
- alpha:OSF1:*:*)
- case $UNAME_RELEASE in
- *4.0)
- UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
- ;;
- *5.*)
- UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
- ;;
- esac
- # According to Compaq, /usr/sbin/psrinfo has been available on
- # OSF/1 and Tru64 systems produced since 1995. I hope that
- # covers most systems running today. This code pipes the CPU
- # types through head -n 1, so we only detect the type of CPU 0.
- ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1`
- case "$ALPHA_CPU_TYPE" in
- "EV4 (21064)")
- UNAME_MACHINE="alpha" ;;
- "EV4.5 (21064)")
- UNAME_MACHINE="alpha" ;;
- "LCA4 (21066/21068)")
- UNAME_MACHINE="alpha" ;;
- "EV5 (21164)")
- UNAME_MACHINE="alphaev5" ;;
- "EV5.6 (21164A)")
- UNAME_MACHINE="alphaev56" ;;
- "EV5.6 (21164PC)")
- UNAME_MACHINE="alphapca56" ;;
- "EV5.7 (21164PC)")
- UNAME_MACHINE="alphapca57" ;;
- "EV6 (21264)")
- UNAME_MACHINE="alphaev6" ;;
- "EV6.7 (21264A)")
- UNAME_MACHINE="alphaev67" ;;
- "EV6.8CB (21264C)")
- UNAME_MACHINE="alphaev68" ;;
- "EV6.8AL (21264B)")
- UNAME_MACHINE="alphaev68" ;;
- "EV6.8CX (21264D)")
- UNAME_MACHINE="alphaev68" ;;
- "EV6.9A (21264/EV69A)")
- UNAME_MACHINE="alphaev69" ;;
- "EV7 (21364)")
- UNAME_MACHINE="alphaev7" ;;
- "EV7.9 (21364A)")
- UNAME_MACHINE="alphaev79" ;;
- esac
- # A Pn.n version is a patched version.
- # A Vn.n version is a released version.
- # A Tn.n version is a released field test version.
- # A Xn.n version is an unreleased experimental baselevel.
- # 1.2 uses "1.2" for uname -r.
- echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
- exit ;;
- Alpha\ *:Windows_NT*:*)
- # How do we know it's Interix rather than the generic POSIX subsystem?
- # Should we change UNAME_MACHINE based on the output of uname instead
- # of the specific Alpha model?
- echo alpha-pc-interix
- exit ;;
- 21064:Windows_NT:50:3)
- echo alpha-dec-winnt3.5
- exit ;;
- Amiga*:UNIX_System_V:4.0:*)
- echo m68k-unknown-sysv4
- exit ;;
- *:[Aa]miga[Oo][Ss]:*:*)
- echo ${UNAME_MACHINE}-unknown-amigaos
- exit ;;
- *:[Mm]orph[Oo][Ss]:*:*)
- echo ${UNAME_MACHINE}-unknown-morphos
- exit ;;
- *:OS/390:*:*)
- echo i370-ibm-openedition
- exit ;;
- *:z/VM:*:*)
- echo s390-ibm-zvmoe
- exit ;;
- *:OS400:*:*)
- echo powerpc-ibm-os400
- exit ;;
- arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
- echo arm-acorn-riscix${UNAME_RELEASE}
- exit ;;
- arm:riscos:*:*|arm:RISCOS:*:*)
- echo arm-unknown-riscos
- exit ;;
- SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
- echo hppa1.1-hitachi-hiuxmpp
- exit ;;
- Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*)
- # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE.
- if test "`(/bin/universe) 2>/dev/null`" = att ; then
- echo pyramid-pyramid-sysv3
- else
- echo pyramid-pyramid-bsd
- fi
- exit ;;
- NILE*:*:*:dcosx)
- echo pyramid-pyramid-svr4
- exit ;;
- DRS?6000:unix:4.0:6*)
- echo sparc-icl-nx6
- exit ;;
- DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*)
- case `/usr/bin/uname -p` in
- sparc) echo sparc-icl-nx7; exit ;;
- esac ;;
- sun4H:SunOS:5.*:*)
- echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
- exit ;;
- sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
- echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
- exit ;;
- i86pc:SunOS:5.*:*)
- echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
- exit ;;
- sun4*:SunOS:6*:*)
- # According to config.sub, this is the proper way to canonicalize
- # SunOS6. Hard to guess exactly what SunOS6 will be like, but
- # it's likely to be more like Solaris than SunOS4.
- echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
- exit ;;
- sun4*:SunOS:*:*)
- case "`/usr/bin/arch -k`" in
- Series*|S4*)
- UNAME_RELEASE=`uname -v`
- ;;
- esac
- # Japanese Language versions have a version number like `4.1.3-JL'.
- echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
- exit ;;
- sun3*:SunOS:*:*)
- echo m68k-sun-sunos${UNAME_RELEASE}
- exit ;;
- sun*:*:4.2BSD:*)
- UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
- test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
- case "`/bin/arch`" in
- sun3)
- echo m68k-sun-sunos${UNAME_RELEASE}
- ;;
- sun4)
- echo sparc-sun-sunos${UNAME_RELEASE}
- ;;
- esac
- exit ;;
- aushp:SunOS:*:*)
- echo sparc-auspex-sunos${UNAME_RELEASE}
- exit ;;
- # The situation for MiNT is a little confusing. The machine name
- # can be virtually everything (everything which is not
- # "atarist" or "atariste" at least should have a processor
- # > m68000). The system name ranges from "MiNT" over "FreeMiNT"
- # to the lowercase version "mint" (or "freemint"). Finally
- # the system name "TOS" denotes a system which is actually not
- # MiNT. But MiNT is downward compatible to TOS, so this should
- # be no problem.
- atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*)
- echo m68k-atari-mint${UNAME_RELEASE}
- exit ;;
- atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*)
- echo m68k-atari-mint${UNAME_RELEASE}
- exit ;;
- *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*)
- echo m68k-atari-mint${UNAME_RELEASE}
- exit ;;
- milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*)
- echo m68k-milan-mint${UNAME_RELEASE}
- exit ;;
- hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*)
- echo m68k-hades-mint${UNAME_RELEASE}
- exit ;;
- *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*)
- echo m68k-unknown-mint${UNAME_RELEASE}
- exit ;;
- m68k:machten:*:*)
- echo m68k-apple-machten${UNAME_RELEASE}
- exit ;;
- powerpc:machten:*:*)
- echo powerpc-apple-machten${UNAME_RELEASE}
- exit ;;
- RISC*:Mach:*:*)
- echo mips-dec-mach_bsd4.3
- exit ;;
- RISC*:ULTRIX:*:*)
- echo mips-dec-ultrix${UNAME_RELEASE}
- exit ;;
- VAX*:ULTRIX*:*:*)
- echo vax-dec-ultrix${UNAME_RELEASE}
- exit ;;
- 2020:CLIX:*:* | 2430:CLIX:*:*)
- echo clipper-intergraph-clix${UNAME_RELEASE}
- exit ;;
- mips:*:*:UMIPS | mips:*:*:RISCos)
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
-#ifdef __cplusplus
-#include /* for printf() prototype */
- int main (int argc, char *argv[]) {
-#else
- int main (argc, argv) int argc; char *argv[]; {
-#endif
- #if defined (host_mips) && defined (MIPSEB)
- #if defined (SYSTYPE_SYSV)
- printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0);
- #endif
- #if defined (SYSTYPE_SVR4)
- printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0);
- #endif
- #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD)
- printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0);
- #endif
- #endif
- exit (-1);
- }
-EOF
- $CC_FOR_BUILD -o $dummy $dummy.c &&
- dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
- SYSTEM_NAME=`$dummy $dummyarg` &&
- { echo "$SYSTEM_NAME"; exit; }
- echo mips-mips-riscos${UNAME_RELEASE}
- exit ;;
- Motorola:PowerMAX_OS:*:*)
- echo powerpc-motorola-powermax
- exit ;;
- Motorola:*:4.3:PL8-*)
- echo powerpc-harris-powermax
- exit ;;
- Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*)
- echo powerpc-harris-powermax
- exit ;;
- Night_Hawk:Power_UNIX:*:*)
- echo powerpc-harris-powerunix
- exit ;;
- m88k:CX/UX:7*:*)
- echo m88k-harris-cxux7
- exit ;;
- m88k:*:4*:R4*)
- echo m88k-motorola-sysv4
- exit ;;
- m88k:*:3*:R3*)
- echo m88k-motorola-sysv3
- exit ;;
- AViiON:dgux:*:*)
- # DG/UX returns AViiON for all architectures
- UNAME_PROCESSOR=`/usr/bin/uname -p`
- if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ]
- then
- if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \
- [ ${TARGET_BINARY_INTERFACE}x = x ]
- then
- echo m88k-dg-dgux${UNAME_RELEASE}
- else
- echo m88k-dg-dguxbcs${UNAME_RELEASE}
- fi
- else
- echo i586-dg-dgux${UNAME_RELEASE}
- fi
- exit ;;
- M88*:DolphinOS:*:*) # DolphinOS (SVR3)
- echo m88k-dolphin-sysv3
- exit ;;
- M88*:*:R3*:*)
- # Delta 88k system running SVR3
- echo m88k-motorola-sysv3
- exit ;;
- XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3)
- echo m88k-tektronix-sysv3
- exit ;;
- Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD)
- echo m68k-tektronix-bsd
- exit ;;
- *:IRIX*:*:*)
- echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
- exit ;;
- ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX.
- echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id
- exit ;; # Note that: echo "'`uname -s`'" gives 'AIX '
- i*86:AIX:*:*)
- echo i386-ibm-aix
- exit ;;
- ia64:AIX:*:*)
- if [ -x /usr/bin/oslevel ] ; then
- IBM_REV=`/usr/bin/oslevel`
- else
- IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
- fi
- echo ${UNAME_MACHINE}-ibm-aix${IBM_REV}
- exit ;;
- *:AIX:2:3)
- if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
- #include
-
- main()
- {
- if (!__power_pc())
- exit(1);
- puts("powerpc-ibm-aix3.2.5");
- exit(0);
- }
-EOF
- if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
- then
- echo "$SYSTEM_NAME"
- else
- echo rs6000-ibm-aix3.2.5
- fi
- elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then
- echo rs6000-ibm-aix3.2.4
- else
- echo rs6000-ibm-aix3.2
- fi
- exit ;;
- *:AIX:*:[45])
- IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
- if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
- IBM_ARCH=rs6000
- else
- IBM_ARCH=powerpc
- fi
- if [ -x /usr/bin/oslevel ] ; then
- IBM_REV=`/usr/bin/oslevel`
- else
- IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE}
- fi
- echo ${IBM_ARCH}-ibm-aix${IBM_REV}
- exit ;;
- *:AIX:*:*)
- echo rs6000-ibm-aix
- exit ;;
- ibmrt:4.4BSD:*|romp-ibm:BSD:*)
- echo romp-ibm-bsd4.4
- exit ;;
- ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and
- echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to
- exit ;; # report: romp-ibm BSD 4.3
- *:BOSX:*:*)
- echo rs6000-bull-bosx
- exit ;;
- DPX/2?00:B.O.S.:*:*)
- echo m68k-bull-sysv3
- exit ;;
- 9000/[34]??:4.3bsd:1.*:*)
- echo m68k-hp-bsd
- exit ;;
- hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*)
- echo m68k-hp-bsd4.4
- exit ;;
- 9000/[34678]??:HP-UX:*:*)
- HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
- case "${UNAME_MACHINE}" in
- 9000/31? ) HP_ARCH=m68000 ;;
- 9000/[34]?? ) HP_ARCH=m68k ;;
- 9000/[678][0-9][0-9])
- if [ -x /usr/bin/getconf ]; then
- sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
- sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
- case "${sc_cpu_version}" in
- 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
- 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
- 532) # CPU_PA_RISC2_0
- case "${sc_kernel_bits}" in
- 32) HP_ARCH="hppa2.0n" ;;
- 64) HP_ARCH="hppa2.0w" ;;
- '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20
- esac ;;
- esac
- fi
- if [ "${HP_ARCH}" = "" ]; then
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
-
- #define _HPUX_SOURCE
- #include
- #include
-
- int main ()
- {
- #if defined(_SC_KERNEL_BITS)
- long bits = sysconf(_SC_KERNEL_BITS);
- #endif
- long cpu = sysconf (_SC_CPU_VERSION);
-
- switch (cpu)
- {
- case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
- case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
- case CPU_PA_RISC2_0:
- #if defined(_SC_KERNEL_BITS)
- switch (bits)
- {
- case 64: puts ("hppa2.0w"); break;
- case 32: puts ("hppa2.0n"); break;
- default: puts ("hppa2.0"); break;
- } break;
- #else /* !defined(_SC_KERNEL_BITS) */
- puts ("hppa2.0"); break;
- #endif
- default: puts ("hppa1.0"); break;
- }
- exit (0);
- }
-EOF
- (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
- test -z "$HP_ARCH" && HP_ARCH=hppa
- fi ;;
- esac
- if [ ${HP_ARCH} = "hppa2.0w" ]
- then
- eval $set_cc_for_build
-
- # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating
- # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler
- # generating 64-bit code. GNU and HP use different nomenclature:
- #
- # $ CC_FOR_BUILD=cc ./config.guess
- # => hppa2.0w-hp-hpux11.23
- # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess
- # => hppa64-hp-hpux11.23
-
- if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) |
- grep __LP64__ >/dev/null
- then
- HP_ARCH="hppa2.0w"
- else
- HP_ARCH="hppa64"
- fi
- fi
- echo ${HP_ARCH}-hp-hpux${HPUX_REV}
- exit ;;
- ia64:HP-UX:*:*)
- HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
- echo ia64-hp-hpux${HPUX_REV}
- exit ;;
- 3050*:HI-UX:*:*)
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
- #include
- int
- main ()
- {
- long cpu = sysconf (_SC_CPU_VERSION);
- /* The order matters, because CPU_IS_HP_MC68K erroneously returns
- true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct
- results, however. */
- if (CPU_IS_PA_RISC (cpu))
- {
- switch (cpu)
- {
- case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break;
- case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break;
- case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break;
- default: puts ("hppa-hitachi-hiuxwe2"); break;
- }
- }
- else if (CPU_IS_HP_MC68K (cpu))
- puts ("m68k-hitachi-hiuxwe2");
- else puts ("unknown-hitachi-hiuxwe2");
- exit (0);
- }
-EOF
- $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
- { echo "$SYSTEM_NAME"; exit; }
- echo unknown-hitachi-hiuxwe2
- exit ;;
- 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* )
- echo hppa1.1-hp-bsd
- exit ;;
- 9000/8??:4.3bsd:*:*)
- echo hppa1.0-hp-bsd
- exit ;;
- *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*)
- echo hppa1.0-hp-mpeix
- exit ;;
- hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* )
- echo hppa1.1-hp-osf
- exit ;;
- hp8??:OSF1:*:*)
- echo hppa1.0-hp-osf
- exit ;;
- i*86:OSF1:*:*)
- if [ -x /usr/sbin/sysversion ] ; then
- echo ${UNAME_MACHINE}-unknown-osf1mk
- else
- echo ${UNAME_MACHINE}-unknown-osf1
- fi
- exit ;;
- parisc*:Lites*:*:*)
- echo hppa1.1-hp-lites
- exit ;;
- C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*)
- echo c1-convex-bsd
- exit ;;
- C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*)
- if getsysinfo -f scalar_acc
- then echo c32-convex-bsd
- else echo c2-convex-bsd
- fi
- exit ;;
- C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*)
- echo c34-convex-bsd
- exit ;;
- C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*)
- echo c38-convex-bsd
- exit ;;
- C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*)
- echo c4-convex-bsd
- exit ;;
- CRAY*Y-MP:*:*:*)
- echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
- exit ;;
- CRAY*[A-Z]90:*:*:*)
- echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \
- | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \
- -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \
- -e 's/\.[^.]*$/.X/'
- exit ;;
- CRAY*TS:*:*:*)
- echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
- exit ;;
- CRAY*T3E:*:*:*)
- echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
- exit ;;
- CRAY*SV1:*:*:*)
- echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
- exit ;;
- *:UNICOS/mp:*:*)
- echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'
- exit ;;
- F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*)
- FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
- FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
- echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
- exit ;;
- 5000:UNIX_System_V:4.*:*)
- FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
- FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
- echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
- exit ;;
- i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*)
- echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE}
- exit ;;
- sparc*:BSD/OS:*:*)
- echo sparc-unknown-bsdi${UNAME_RELEASE}
- exit ;;
- *:BSD/OS:*:*)
- echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
- exit ;;
- *:FreeBSD:*:*)
- echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
- exit ;;
- i*:CYGWIN*:*)
- echo ${UNAME_MACHINE}-pc-cygwin
- exit ;;
- i*:MINGW*:*)
- echo ${UNAME_MACHINE}-pc-mingw32
- exit ;;
- i*:windows32*:*)
- # uname -m includes "-pc" on this system.
- echo ${UNAME_MACHINE}-mingw32
- exit ;;
- i*:PW*:*)
- echo ${UNAME_MACHINE}-pc-pw32
- exit ;;
- x86:Interix*:[34]*)
- echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//'
- exit ;;
- [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
- echo i${UNAME_MACHINE}-pc-mks
- exit ;;
- i*:Windows_NT*:* | Pentium*:Windows_NT*:*)
- # How do we know it's Interix rather than the generic POSIX subsystem?
- # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we
- # UNAME_MACHINE based on the output of uname instead of i386?
- echo i586-pc-interix
- exit ;;
- i*:UWIN*:*)
- echo ${UNAME_MACHINE}-pc-uwin
- exit ;;
- amd64:CYGWIN*:*:*)
- echo x86_64-unknown-cygwin
- exit ;;
- p*:CYGWIN*:*)
- echo powerpcle-unknown-cygwin
- exit ;;
- prep*:SunOS:5.*:*)
- echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
- exit ;;
- *:GNU:*:*)
- # the GNU system
- echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
- exit ;;
- *:GNU/*:*:*)
- # other systems with GNU libc and userland
- echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
- exit ;;
- i*86:Minix:*:*)
- echo ${UNAME_MACHINE}-pc-minix
- exit ;;
- arm*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-gnu
- exit ;;
- cris:Linux:*:*)
- echo cris-axis-linux-gnu
- exit ;;
- crisv32:Linux:*:*)
- echo crisv32-axis-linux-gnu
- exit ;;
- frv:Linux:*:*)
- echo frv-unknown-linux-gnu
- exit ;;
- ia64:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-gnu
- exit ;;
- m32r*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-gnu
- exit ;;
- m68*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-gnu
- exit ;;
- mips:Linux:*:*)
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
- #undef CPU
- #undef mips
- #undef mipsel
- #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
- CPU=mipsel
- #else
- #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
- CPU=mips
- #else
- CPU=
- #endif
- #endif
-EOF
- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
- test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
- ;;
- mips64:Linux:*:*)
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
- #undef CPU
- #undef mips64
- #undef mips64el
- #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL)
- CPU=mips64el
- #else
- #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB)
- CPU=mips64
- #else
- CPU=
- #endif
- #endif
-EOF
- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
- test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
- ;;
- ppc:Linux:*:*)
- echo powerpc-unknown-linux-gnu
- exit ;;
- ppc64:Linux:*:*)
- echo powerpc64-unknown-linux-gnu
- exit ;;
- alpha:Linux:*:*)
- case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
- EV5) UNAME_MACHINE=alphaev5 ;;
- EV56) UNAME_MACHINE=alphaev56 ;;
- PCA56) UNAME_MACHINE=alphapca56 ;;
- PCA57) UNAME_MACHINE=alphapca56 ;;
- EV6) UNAME_MACHINE=alphaev6 ;;
- EV67) UNAME_MACHINE=alphaev67 ;;
- EV68*) UNAME_MACHINE=alphaev68 ;;
- esac
- objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null
- if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
- echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
- exit ;;
- parisc:Linux:*:* | hppa:Linux:*:*)
- # Look for CPU level
- case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
- PA7*) echo hppa1.1-unknown-linux-gnu ;;
- PA8*) echo hppa2.0-unknown-linux-gnu ;;
- *) echo hppa-unknown-linux-gnu ;;
- esac
- exit ;;
- parisc64:Linux:*:* | hppa64:Linux:*:*)
- echo hppa64-unknown-linux-gnu
- exit ;;
- s390:Linux:*:* | s390x:Linux:*:*)
- echo ${UNAME_MACHINE}-ibm-linux
- exit ;;
- sh64*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-gnu
- exit ;;
- sh*:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-gnu
- exit ;;
- sparc:Linux:*:* | sparc64:Linux:*:*)
- echo ${UNAME_MACHINE}-unknown-linux-gnu
- exit ;;
- x86_64:Linux:*:*)
- echo x86_64-unknown-linux-gnu
- exit ;;
- i*86:Linux:*:*)
- # The BFD linker knows what the default object file format is, so
- # first see if it will tell us. cd to the root directory to prevent
- # problems with other programs or directories called `ld' in the path.
- # Set LC_ALL=C to ensure ld outputs messages in English.
- ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \
- | sed -ne '/supported targets:/!d
- s/[ ][ ]*/ /g
- s/.*supported targets: *//
- s/ .*//
- p'`
- case "$ld_supported_targets" in
- elf32-i386)
- TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu"
- ;;
- a.out-i386-linux)
- echo "${UNAME_MACHINE}-pc-linux-gnuaout"
- exit ;;
- coff-i386)
- echo "${UNAME_MACHINE}-pc-linux-gnucoff"
- exit ;;
- "")
- # Either a pre-BFD a.out linker (linux-gnuoldld) or
- # one that does not give us useful --help.
- echo "${UNAME_MACHINE}-pc-linux-gnuoldld"
- exit ;;
- esac
- # Determine whether the default compiler is a.out or elf
- eval $set_cc_for_build
- sed 's/^ //' << EOF >$dummy.c
- #include
- #ifdef __ELF__
- # ifdef __GLIBC__
- # if __GLIBC__ >= 2
- LIBC=gnu
- # else
- LIBC=gnulibc1
- # endif
- # else
- LIBC=gnulibc1
- # endif
- #else
- #ifdef __INTEL_COMPILER
- LIBC=gnu
- #else
- LIBC=gnuaout
- #endif
- #endif
- #ifdef __dietlibc__
- LIBC=dietlibc
- #endif
-EOF
- eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
- test x"${LIBC}" != x && {
- echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
- exit
- }
- test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; }
- ;;
- i*86:DYNIX/ptx:4*:*)
- # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
- # earlier versions are messed up and put the nodename in both
- # sysname and nodename.
- echo i386-sequent-sysv4
- exit ;;
- i*86:UNIX_SV:4.2MP:2.*)
- # Unixware is an offshoot of SVR4, but it has its own version
- # number series starting with 2...
- # I am not positive that other SVR4 systems won't match this,
- # I just have to hope. -- rms.
- # Use sysv4.2uw... so that sysv4* matches it.
- echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION}
- exit ;;
- i*86:OS/2:*:*)
- # If we were able to find `uname', then EMX Unix compatibility
- # is probably installed.
- echo ${UNAME_MACHINE}-pc-os2-emx
- exit ;;
- i*86:XTS-300:*:STOP)
- echo ${UNAME_MACHINE}-unknown-stop
- exit ;;
- i*86:atheos:*:*)
- echo ${UNAME_MACHINE}-unknown-atheos
- exit ;;
- i*86:syllable:*:*)
- echo ${UNAME_MACHINE}-pc-syllable
- exit ;;
- i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*)
- echo i386-unknown-lynxos${UNAME_RELEASE}
- exit ;;
- i*86:*DOS:*:*)
- echo ${UNAME_MACHINE}-pc-msdosdjgpp
- exit ;;
- i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
- UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
- if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
- echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL}
- else
- echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL}
- fi
- exit ;;
- i*86:*:5:[678]*)
- # UnixWare 7.x, OpenUNIX and OpenServer 6.
- case `/bin/uname -X | grep "^Machine"` in
- *486*) UNAME_MACHINE=i486 ;;
- *Pentium) UNAME_MACHINE=i586 ;;
- *Pent*|*Celeron) UNAME_MACHINE=i686 ;;
- esac
- echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}
- exit ;;
- i*86:*:3.2:*)
- if test -f /usr/options/cb.name; then
- UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then
- UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')`
- (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486
- (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \
- && UNAME_MACHINE=i586
- (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \
- && UNAME_MACHINE=i686
- (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \
- && UNAME_MACHINE=i686
- echo ${UNAME_MACHINE}-pc-sco$UNAME_REL
- else
- echo ${UNAME_MACHINE}-pc-sysv32
- fi
- exit ;;
- pc:*:*:*)
- # Left here for compatibility:
- # uname -m prints for DJGPP always 'pc', but it prints nothing about
- # the processor, so we play safe by assuming i386.
- echo i386-pc-msdosdjgpp
- exit ;;
- Intel:Mach:3*:*)
- echo i386-pc-mach3
- exit ;;
- paragon:*:*:*)
- echo i860-intel-osf1
- exit ;;
- i860:*:4.*:*) # i860-SVR4
- if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then
- echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4
- else # Add other i860-SVR4 vendors below as they are discovered.
- echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4
- fi
- exit ;;
- mini*:CTIX:SYS*5:*)
- # "miniframe"
- echo m68010-convergent-sysv
- exit ;;
- mc68k:UNIX:SYSTEM5:3.51m)
- echo m68k-convergent-sysv
- exit ;;
- M680?0:D-NIX:5.3:*)
- echo m68k-diab-dnix
- exit ;;
- M68*:*:R3V[5678]*:*)
- test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;;
- 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0)
- OS_REL=''
- test -r /etc/.relid \
- && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid`
- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
- && { echo i486-ncr-sysv4.3${OS_REL}; exit; }
- /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
- && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
- 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
- /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
- && { echo i486-ncr-sysv4; exit; } ;;
- m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*)
- echo m68k-unknown-lynxos${UNAME_RELEASE}
- exit ;;
- mc68030:UNIX_System_V:4.*:*)
- echo m68k-atari-sysv4
- exit ;;
- TSUNAMI:LynxOS:2.*:*)
- echo sparc-unknown-lynxos${UNAME_RELEASE}
- exit ;;
- rs6000:LynxOS:2.*:*)
- echo rs6000-unknown-lynxos${UNAME_RELEASE}
- exit ;;
- PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*)
- echo powerpc-unknown-lynxos${UNAME_RELEASE}
- exit ;;
- SM[BE]S:UNIX_SV:*:*)
- echo mips-dde-sysv${UNAME_RELEASE}
- exit ;;
- RM*:ReliantUNIX-*:*:*)
- echo mips-sni-sysv4
- exit ;;
- RM*:SINIX-*:*:*)
- echo mips-sni-sysv4
- exit ;;
- *:SINIX-*:*:*)
- if uname -p 2>/dev/null >/dev/null ; then
- UNAME_MACHINE=`(uname -p) 2>/dev/null`
- echo ${UNAME_MACHINE}-sni-sysv4
- else
- echo ns32k-sni-sysv
- fi
- exit ;;
- PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
- # says
- echo i586-unisys-sysv4
- exit ;;
- *:UNIX_System_V:4*:FTX*)
- # From Gerald Hewes .
- # How about differentiating between stratus architectures? -djm
- echo hppa1.1-stratus-sysv4
- exit ;;
- *:*:*:FTX*)
- # From seanf@swdc.stratus.com.
- echo i860-stratus-sysv4
- exit ;;
- i*86:VOS:*:*)
- # From Paul.Green@stratus.com.
- echo ${UNAME_MACHINE}-stratus-vos
- exit ;;
- *:VOS:*:*)
- # From Paul.Green@stratus.com.
- echo hppa1.1-stratus-vos
- exit ;;
- mc68*:A/UX:*:*)
- echo m68k-apple-aux${UNAME_RELEASE}
- exit ;;
- news*:NEWS-OS:6*:*)
- echo mips-sony-newsos6
- exit ;;
- R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
- if [ -d /usr/nec ]; then
- echo mips-nec-sysv${UNAME_RELEASE}
- else
- echo mips-unknown-sysv${UNAME_RELEASE}
- fi
- exit ;;
- BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only.
- echo powerpc-be-beos
- exit ;;
- BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only.
- echo powerpc-apple-beos
- exit ;;
- BePC:BeOS:*:*) # BeOS running on Intel PC compatible.
- echo i586-pc-beos
- exit ;;
- SX-4:SUPER-UX:*:*)
- echo sx4-nec-superux${UNAME_RELEASE}
- exit ;;
- SX-5:SUPER-UX:*:*)
- echo sx5-nec-superux${UNAME_RELEASE}
- exit ;;
- SX-6:SUPER-UX:*:*)
- echo sx6-nec-superux${UNAME_RELEASE}
- exit ;;
- Power*:Rhapsody:*:*)
- echo powerpc-apple-rhapsody${UNAME_RELEASE}
- exit ;;
- *:Rhapsody:*:*)
- echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE}
- exit ;;
- *:Darwin:*:*)
- UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
- case $UNAME_PROCESSOR in
- *86) UNAME_PROCESSOR=i686 ;;
- unknown) UNAME_PROCESSOR=powerpc ;;
- esac
- echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
- exit ;;
- *:procnto*:*:* | *:QNX:[0123456789]*:*)
- UNAME_PROCESSOR=`uname -p`
- if test "$UNAME_PROCESSOR" = "x86"; then
- UNAME_PROCESSOR=i386
- UNAME_MACHINE=pc
- fi
- echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
- exit ;;
- *:QNX:*:4*)
- echo i386-pc-qnx
- exit ;;
- NSE-?:NONSTOP_KERNEL:*:*)
- echo nse-tandem-nsk${UNAME_RELEASE}
- exit ;;
- NSR-?:NONSTOP_KERNEL:*:*)
- echo nsr-tandem-nsk${UNAME_RELEASE}
- exit ;;
- *:NonStop-UX:*:*)
- echo mips-compaq-nonstopux
- exit ;;
- BS2000:POSIX*:*:*)
- echo bs2000-siemens-sysv
- exit ;;
- DS/*:UNIX_System_V:*:*)
- echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE}
- exit ;;
- *:Plan9:*:*)
- # "uname -m" is not consistent, so use $cputype instead. 386
- # is converted to i386 for consistency with other x86
- # operating systems.
- if test "$cputype" = "386"; then
- UNAME_MACHINE=i386
- else
- UNAME_MACHINE="$cputype"
- fi
- echo ${UNAME_MACHINE}-unknown-plan9
- exit ;;
- *:TOPS-10:*:*)
- echo pdp10-unknown-tops10
- exit ;;
- *:TENEX:*:*)
- echo pdp10-unknown-tenex
- exit ;;
- KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*)
- echo pdp10-dec-tops20
- exit ;;
- XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*)
- echo pdp10-xkl-tops20
- exit ;;
- *:TOPS-20:*:*)
- echo pdp10-unknown-tops20
- exit ;;
- *:ITS:*:*)
- echo pdp10-unknown-its
- exit ;;
- SEI:*:*:SEIUX)
- echo mips-sei-seiux${UNAME_RELEASE}
- exit ;;
- *:DragonFly:*:*)
- echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
- exit ;;
- *:*VMS:*:*)
- UNAME_MACHINE=`(uname -p) 2>/dev/null`
- case "${UNAME_MACHINE}" in
- A*) echo alpha-dec-vms ; exit ;;
- I*) echo ia64-dec-vms ; exit ;;
- V*) echo vax-dec-vms ; exit ;;
- esac ;;
- *:XENIX:*:SysV)
- echo i386-pc-xenix
- exit ;;
- i*86:skyos:*:*)
- echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
- exit ;;
-esac
-
-#echo '(No uname command or uname output not recognized.)' 1>&2
-#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2
-
-eval $set_cc_for_build
-cat >$dummy.c <
-# include
-#endif
-main ()
-{
-#if defined (sony)
-#if defined (MIPSEB)
- /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed,
- I don't know.... */
- printf ("mips-sony-bsd\n"); exit (0);
-#else
-#include
- printf ("m68k-sony-newsos%s\n",
-#ifdef NEWSOS4
- "4"
-#else
- ""
-#endif
- ); exit (0);
-#endif
-#endif
-
-#if defined (__arm) && defined (__acorn) && defined (__unix)
- printf ("arm-acorn-riscix\n"); exit (0);
-#endif
-
-#if defined (hp300) && !defined (hpux)
- printf ("m68k-hp-bsd\n"); exit (0);
-#endif
-
-#if defined (NeXT)
-#if !defined (__ARCHITECTURE__)
-#define __ARCHITECTURE__ "m68k"
-#endif
- int version;
- version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
- if (version < 4)
- printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
- else
- printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
- exit (0);
-#endif
-
-#if defined (MULTIMAX) || defined (n16)
-#if defined (UMAXV)
- printf ("ns32k-encore-sysv\n"); exit (0);
-#else
-#if defined (CMU)
- printf ("ns32k-encore-mach\n"); exit (0);
-#else
- printf ("ns32k-encore-bsd\n"); exit (0);
-#endif
-#endif
-#endif
-
-#if defined (__386BSD__)
- printf ("i386-pc-bsd\n"); exit (0);
-#endif
-
-#if defined (sequent)
-#if defined (i386)
- printf ("i386-sequent-dynix\n"); exit (0);
-#endif
-#if defined (ns32000)
- printf ("ns32k-sequent-dynix\n"); exit (0);
-#endif
-#endif
-
-#if defined (_SEQUENT_)
- struct utsname un;
-
- uname(&un);
-
- if (strncmp(un.version, "V2", 2) == 0) {
- printf ("i386-sequent-ptx2\n"); exit (0);
- }
- if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
- printf ("i386-sequent-ptx1\n"); exit (0);
- }
- printf ("i386-sequent-ptx\n"); exit (0);
-
-#endif
-
-#if defined (vax)
-# if !defined (ultrix)
-# include
-# if defined (BSD)
-# if BSD == 43
- printf ("vax-dec-bsd4.3\n"); exit (0);
-# else
-# if BSD == 199006
- printf ("vax-dec-bsd4.3reno\n"); exit (0);
-# else
- printf ("vax-dec-bsd\n"); exit (0);
-# endif
-# endif
-# else
- printf ("vax-dec-bsd\n"); exit (0);
-# endif
-# else
- printf ("vax-dec-ultrix\n"); exit (0);
-# endif
-#endif
-
-#if defined (alliant) && defined (i860)
- printf ("i860-alliant-bsd\n"); exit (0);
-#endif
-
- exit (1);
-}
-EOF
-
-$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
- { echo "$SYSTEM_NAME"; exit; }
-
-# Apollos put the system type in the environment.
-
-test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
-
-# Convex versions that predate uname can use getsysinfo(1)
-
-if [ -x /usr/convex/getsysinfo ]
-then
- case `getsysinfo -f cpu_type` in
- c1*)
- echo c1-convex-bsd
- exit ;;
- c2*)
- if getsysinfo -f scalar_acc
- then echo c32-convex-bsd
- else echo c2-convex-bsd
- fi
- exit ;;
- c34*)
- echo c34-convex-bsd
- exit ;;
- c38*)
- echo c38-convex-bsd
- exit ;;
- c4*)
- echo c4-convex-bsd
- exit ;;
- esac
-fi
-
-cat >&2 < in order to provide the needed
-information to handle your system.
-
-config.guess timestamp = $timestamp
-
-uname -m = `(uname -m) 2>/dev/null || echo unknown`
-uname -r = `(uname -r) 2>/dev/null || echo unknown`
-uname -s = `(uname -s) 2>/dev/null || echo unknown`
-uname -v = `(uname -v) 2>/dev/null || echo unknown`
-
-/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null`
-/bin/uname -X = `(/bin/uname -X) 2>/dev/null`
-
-hostinfo = `(hostinfo) 2>/dev/null`
-/bin/universe = `(/bin/universe) 2>/dev/null`
-/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null`
-/bin/arch = `(/bin/arch) 2>/dev/null`
-/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null`
-/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null`
-
-UNAME_MACHINE = ${UNAME_MACHINE}
-UNAME_RELEASE = ${UNAME_RELEASE}
-UNAME_SYSTEM = ${UNAME_SYSTEM}
-UNAME_VERSION = ${UNAME_VERSION}
-EOF
-
-exit 1
-
-# Local variables:
-# eval: (add-hook 'write-file-hooks 'time-stamp)
-# time-stamp-start: "timestamp='"
-# time-stamp-format: "%:y-%02m-%02d"
-# time-stamp-end: "'"
-# End:
diff --git a/packages/node-libofx/OpenSP-1.5.2/config.h b/packages/node-libofx/OpenSP-1.5.2/config.h
deleted file mode 100644
index 3d638349134..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/config.h
+++ /dev/null
@@ -1,628 +0,0 @@
-/* config.h. Generated by configure. */
-/* config.h.in. Generated from configure.in by autoheader. */
-
-/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
- systems. This function is required for `alloca.c' support on those systems.
- */
-/* #undef CRAY_STACKSEG_END */
-
-/* Define to 1 if using `alloca.c'. */
-/* #undef C_ALLOCA */
-
-/* define this if memmove should be declared extern "C" */
-/* #undef DECLARE_MEMMOVE */
-
-/* define this if strerror should be declared extern "C" */
-/* #undef DECLARE_STRERROR */
-
-/* if this is not set it defaults to 200 */
-/* #undef DEFAULT_ERROR_LIMIT */
-
-/* Define to 1 if translation of program messages to the user's native
- language is requested. */
-#define ENABLE_NLS 1
-
-/* Define to 1 if you have `alloca', as a function or macro. */
-#define HAVE_ALLOCA 1
-
-/* Define to 1 if you have and it should be used (not on Ultrix).
- */
-#define HAVE_ALLOCA_H 1
-
-/* Define to 1 if you have the header file. */
-/* #undef HAVE_ARGZ_H */
-
-/* Define to 1 if you have the `asprintf' function. */
-#define HAVE_ASPRINTF 1
-
-/* define if bool is a built-in type */
-#define HAVE_BOOL
-
-/* Define to 1 if you have the header file. */
-#define HAVE_CASSERT 1
-
-/* Define if you have the gettext() function */
-/* #undef HAVE_CATGETS */
-
-/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
- CoreFoundation framework. */
-/* #undef HAVE_CFLOCALECOPYCURRENT */
-
-/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
- the CoreFoundation framework. */
-/* #undef HAVE_CFPREFERENCESCOPYAPPVALUE */
-
-/* Define if the GNU dcgettext() function is already present or preinstalled.
- */
-/* #undef HAVE_DCGETTEXT */
-
-/* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you
- don't. */
-#define HAVE_DECL_FEOF_UNLOCKED 1
-
-/* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if
- you don't. */
-#define HAVE_DECL_FGETS_UNLOCKED 0
-
-/* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you
- don't. */
-#define HAVE_DECL_GETC_UNLOCKED 1
-
-/* Define to 1 if you have the declaration of `_snprintf', and to 0 if you
- don't. */
-#define HAVE_DECL__SNPRINTF 0
-
-/* Define to 1 if you have the declaration of `_snwprintf', and to 0 if you
- don't. */
-#define HAVE_DECL__SNWPRINTF 0
-
-/* Define to 1 if you have the header file. */
-#define HAVE_DLFCN_H 1
-
-/* define if the compiler supports dynamic_cast<> */
-/* #undef HAVE_DYNAMIC_CAST */
-
-/* Define to 1 if you have the `fwprintf' function. */
-#define HAVE_FWPRINTF 1
-
-/* Define to 1 if you have the `getcwd' function. */
-#define HAVE_GETCWD 1
-
-/* Define to 1 if you have the `getegid' function. */
-#define HAVE_GETEGID 1
-
-/* Define to 1 if you have the `geteuid' function. */
-#define HAVE_GETEUID 1
-
-/* Define to 1 if you have the `getgid' function. */
-#define HAVE_GETGID 1
-
-/* Define to 1 if you have the `getpagesize' function. */
-#define HAVE_GETPAGESIZE 1
-
-/* Define if the GNU gettext() function is already present or preinstalled. */
-/* #undef HAVE_GETTEXT */
-
-/* Define to 1 if you have the `getuid' function. */
-#define HAVE_GETUID 1
-
-/* Define if you have the iconv() function. */
-#define HAVE_ICONV 1
-
-/* define if the compiler supports explicit instantiations */
-#define HAVE_INSTANTIATIONS
-
-/* Define if you have the 'intmax_t' type in or . */
-#define HAVE_INTMAX_T 1
-
-/* Define if exists and doesn't clash with . */
-#define HAVE_INTTYPES_H 1
-
-/* Define if exists, doesn't clash with , and
- declares uintmax_t. */
-#define HAVE_INTTYPES_H_WITH_UINTMAX 1
-
-/* Define to 1 if you have the header file. */
-/* #undef HAVE_IO_H */
-
-/* Define if you have and nl_langinfo(CODESET). */
-#define HAVE_LANGINFO_CODESET 1
-
-/* Define if your file defines LC_MESSAGES. */
-#define HAVE_LC_MESSAGES 1
-
-/* Define to 1 if you have the `pthread' library (-lpthread). */
-#define HAVE_LIBPTHREAD 1
-
-/* Define to 1 if you have the `threads' library (-lthreads). */
-/* #undef HAVE_LIBTHREADS */
-
-/* Define to 1 if you have the header file. */
-#define HAVE_LIMITS_H 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_LOCALE_H 1
-
-/* Define if you have the 'long double' type. */
-#define HAVE_LONG_DOUBLE 1
-
-/* Define if you have the 'long long' type. */
-#define HAVE_LONG_LONG 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_MALLOC_H 1
-
-/* Define to 1 if you have the `memcmp' function. */
-#define HAVE_MEMCMP 1
-
-/* Define to 1 if you have the `memmove' function. */
-#define HAVE_MEMMOVE 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_MEMORY_H 1
-
-/* Define to 1 if you have the `mempcpy' function. */
-#define HAVE_MEMPCPY 1
-
-/* Define to 1 if you have a working `mmap' system call. */
-/* #undef HAVE_MMAP */
-
-/* Define to 1 if you have the `munmap' function. */
-#define HAVE_MUNMAP 1
-
-/* define if the compiler supports the mutable keyword */
-#define HAVE_MUTABLE
-
-/* define if the compiler implements namespaces */
-#define HAVE_NAMESPACES
-
-/* define if the C++ compiler supports the std namespace */
-#define HAVE_NAMESPACE_STD
-
-/* Define to 1 if you have the header file. */
-#define HAVE_NEW 1
-
-/* define if the compiler accepts the new for scoping rules */
-#define HAVE_NEW_FOR_SCOPING
-
-/* Define to 1 if you have the header file. */
-#define HAVE_NL_TYPES_H 1
-
-/* Define to 1 if you have the header file. */
-/* #undef HAVE_OSFCN_H */
-
-/* define if the compiler supports placement operator delete */
-/* #undef HAVE_PLACEMENT_OPERATOR_DELETE */
-
-/* define if placement operator new is declared */
-/* #undef HAVE_PLACEMENT_OPERATOR_NEW */
-
-/* Define if your printf() function supports format strings with positions. */
-#define HAVE_POSIX_PRINTF 1
-
-/* Define to 1 if you have the `putenv' function. */
-#define HAVE_PUTENV 1
-
-/* Define to 1 if you have the `setenv' function. */
-#define HAVE_SETENV 1
-
-/* Define to 1 if you have the `setlocale' function. */
-#define HAVE_SETLOCALE 1
-
-/* Define to 1 if you have the `snprintf' function. */
-#define HAVE_SNPRINTF 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_STDDEF_H 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_STDINT_H 1
-
-/* Define if exists, doesn't clash with , and declares
- uintmax_t. */
-#define HAVE_STDINT_H_WITH_UINTMAX 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_STDLIB_H 1
-
-/* Define to 1 if you have the `stpcpy' function. */
-#define HAVE_STPCPY 1
-
-/* Define to 1 if you have the `strcasecmp' function. */
-#define HAVE_STRCASECMP 1
-
-/* Define to 1 if you have the `strdup' function. */
-#define HAVE_STRDUP 1
-
-/* Define to 1 if you have the `strerror' function. */
-#define HAVE_STRERROR 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_STRINGS_H 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_STRING_H 1
-
-/* Define to 1 if you have the `strtoul' function. */
-#define HAVE_STRTOUL 1
-
-/* Define to 1 if `st_blksize' is member of `struct stat'. */
-#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
-
-/* Define if your `struct stat' has `st_blksize'. Deprecated, use
- `HAVE_STRUCT_STAT_ST_BLKSIZE' instead. */
-#define HAVE_ST_BLKSIZE 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_SYS_PARAM_H 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_SYS_STAT_H 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_SYS_TYPES_H 1
-
-/* Define to 1 if you have the `tsearch' function. */
-/* #undef HAVE_TSEARCH */
-
-/* define if the compiler recognizes typename */
-#define HAVE_TYPENAME
-
-/* Define if you have the 'uintmax_t' type in or . */
-#define HAVE_UINTMAX_T 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_UNISTD_H 1
-
-/* Define if you have the 'unsigned long long' type. */
-#define HAVE_UNSIGNED_LONG_LONG 1
-
-/* Define if you have the 'wchar_t' type. */
-#define HAVE_WCHAR_T 1
-
-/* Define to 1 if you have the `wcslen' function. */
-#define HAVE_WCSLEN 1
-
-/* Define if you have the 'wint_t' type. */
-#define HAVE_WINT_T 1
-
-/* Define to 1 if you have the `__argz_count' function. */
-/* #undef HAVE___ARGZ_COUNT */
-
-/* Define to 1 if you have the `__argz_next' function. */
-/* #undef HAVE___ARGZ_NEXT */
-
-/* Define to 1 if you have the `__argz_stringify' function. */
-/* #undef HAVE___ARGZ_STRINGIFY */
-
-/* Define to 1 if you have the `__fsetlocking' function. */
-#define HAVE___FSETLOCKING 1
-
-/* Define as const if the declaration of iconv() needs const. */
-#define ICONV_CONST
-
-/* Define if integer division by zero raises signal SIGFPE. */
-#define INTDIV0_RAISES_SIGFPE 0
-
-/* Define to the address where bug reports for this package should be sent. */
-#define PACKAGE_BUGREPORT ""
-
-/* Define to the full name of this package. */
-#define PACKAGE_NAME ""
-
-/* Define to the full name and version of this package. */
-#define PACKAGE_STRING ""
-
-/* Define to the one symbol short name of this package. */
-#define PACKAGE_TARNAME ""
-
-/* Define to the version of this package. */
-#define PACKAGE_VERSION ""
-
-/* set this to the path separator */
-#define PATH_SEPARATOR ':'
-
-/* Define if exists and defines unusable PRI* macros. */
-/* #undef PRI_MACROS_BROKEN */
-
-/* set this to the default catalog files list */
-/* #undef SGML_CATALOG_FILES_DEFAULT */
-
-/* set this to the default SGML search path */
-/* #undef SGML_SEARCH_PATH_DEFAULT */
-
-/* The size of a `bool', as computed by sizeof. */
-#define SIZEOF_BOOL 1
-
-/* The size of a `size_t', as computed by sizeof. */
-#define SIZEOF_SIZE_T 4
-
-/* The size of a `unsigned int', as computed by sizeof. */
-#define SIZEOF_UNSIGNED_INT 4
-
-/* The size of a `unsigned short', as computed by sizeof. */
-#define SIZEOF_UNSIGNED_SHORT 2
-
-/* The size of a `wchar_t', as computed by sizeof. */
-#define SIZEOF_WCHAR_T 4
-
-/* Define as the maximum value of type 'size_t', if the system doesn't define
- it. */
-/* #undef SIZE_MAX */
-
-/* define this if h_errno should be declared extern int */
-/* #undef SP_DECLARE_H_ERRNO */
-
-/* define this to include template definitions in the headers */
-#define SP_DEFINE_TEMPLATES 1
-
-/* define this to build a dll */
-/* #undef SP_DLLEXPORT */
-
-/* define this tobuild a dll */
-/* #undef SP_DLLIMPORT */
-
-/* set this to enable DTDDECL support */
-#define SP_DTDDECL 1
-
-/* define this if the new handler takes size_t and returns int */
-/* #undef SP_FANCY_NEW_HANDLER */
-
-/* define this if _setmode is supported */
-/* #undef SP_HAVE_SETMODE */
-
-/* define this if sockets are available */
-/* #undef SP_HAVE_SOCKET */
-
-/* set this to the first line term character */
-/* #undef SP_LINE_TERM1 */
-
-/* set this to the second line term character */
-/* #undef SP_LINE_TERM2 */
-
-/* location of message catalogs */
-#define SP_LOCALE_DIR "/usr/local/share/locale"
-
-/* define this to compile explicit template instantiations */
-/* #undef SP_MANUAL_INST */
-
-/* message domain */
-#define SP_MESSAGE_DOMAIN "sp5"
-
-/* define this to build a multi-byte version */
-#define SP_MULTI_BYTE 1
-
-/* define this to use win32 mutex mechanisms */
-/* #undef SP_MUTEX_WIN32 */
-
-/* define this if your system misses new.h */
-/* #undef SP_NEW_H_MISSING */
-
-/* define this to not compile message texts in */
-/* #undef SP_NO_MESSAGE_TEXT */
-
-/* Package name */
-#define SP_PACKAGE "OpenSP"
-
-/* define this to enable precompiled header support */
-/* #undef SP_PCH */
-
-/* define this if set_new_handler() has to be declared extern "C" */
-/* #undef SP_SET_NEW_HANDLER_EXTERN_C */
-
-/* define this to build a dll */
-/* #undef SP_USE_DLL */
-
-/* define this if you can't or don't want to use the builtin assert() macro */
-/* #undef SP_USE_OWN_ASSERT */
-
-/* Package version */
-#define SP_VERSION "1.5.2"
-
-/* define this if the OS provides wide character interfaces */
-/* #undef SP_WIDE_SYSTEM */
-
-/* set this to enable XML Formatted Messages */
-/* #undef SP_XML */
-
-/* If using the C implementation of alloca, define if you know the
- direction of stack growth for your system; otherwise it will be
- automatically deduced at run-time.
- STACK_DIRECTION > 0 => grows toward higher addresses
- STACK_DIRECTION < 0 => grows toward lower addresses
- STACK_DIRECTION = 0 => direction of growth unknown */
-/* #undef STACK_DIRECTION */
-
-/* Define to 1 if you have the ANSI C header files. */
-/* #undef STDC_HEADERS */
-
-/* Define to 1 if your processor stores words with the most significant byte
- first (like Motorola and SPARC, unlike Intel and VAX). */
-/* #undef WORDS_BIGENDIAN */
-
-/* Define to empty if `const' does not conform to ANSI C. */
-/* #undef const */
-
-/* Define to `__inline__' or `__inline' if that's what the C compiler
- calls it, or to nothing if 'inline' is not supported under any name. */
-#ifndef __cplusplus
-/* #undef inline */
-#endif
-
-/* Define to `long' if does not define. */
-/* #undef off_t */
-
-/* Define as the type of the result of subtracting two pointers, if the system
- doesn't define it. */
-/*#define ptrdiff_t long*/
-
-/* Define to `int' if does not define. */
-/* #undef sig_atomic_t */
-
-/* Define to empty if the C compiler doesn't support this keyword. */
-/* #undef signed */
-
-/* Define to `unsigned' if does not define. */
-/* #undef size_t */
-
-/* Define to unsigned long or unsigned long long if and
- don't define. */
-/* #undef uintmax_t */
-
-
-#ifdef HAVE_UNISTD_H
-#define SP_INCLUDE_UNISTD_H
-#endif
-
-#ifdef HAVE_IO_H
-/* #undef SP_INCLUDE_IO_H */
-#endif
-
-#ifdef HAVE_OSFCN_H
-/* #undef SP_INCLUDE_OSFCN_H */
-#endif
-
-#ifndef SP_MSDOS_FILENAMES
-#define SP_POSIX_FILENAMES
-#endif
-
-#ifdef HAVE_ST_BLKSIZE
-#define SP_STAT_BLKSIZE
-#endif
-
-#ifdef HAVE_BOOL
-#ifndef SP_HAVE_BOOL
-#define SP_HAVE_BOOL
-#endif
-#endif /* HAVE_BOOL */
-
-#ifdef HAVE_TYPENAME
-#define SP_HAVE_TYPENAME
-#endif /* HAVE_TYPENAME */
-
-#if (SIZEOF_BOOL == 1)
-#define SP_SIZEOF_BOOL_1
-#endif
-
-#if (SIZEOF_WCHAR_T == SIZEOF_UNSIGNED_SHORT)
-#define SP_WCHAR_T_USHORT
-#endif
-
-#ifdef SP_HAVE_SETMODE
-#ifndef SP_LINE_TERM1
-#define SP_LINE_TERM1 '\r'
-#define SP_LINE_TERM2 '\n'
-#endif
-#endif /* not SP_HAVE_SETMODE */
-
-#ifndef SP_LINE_TERM1
-#define SP_LINE_TERM1 '\n'
-#endif
-
-#ifndef HAVE_NEW_FOR_SCOPING
-// This simulates the new ANSI "for" scope rules
-#define for if (0); else for
-#endif /* HAVE_NEW_FOR_SCOPING */
-
-#ifndef SP_HAVE_TYPENAME
-#define typename /* as nothing */
-#endif
-
-#ifndef SP_DLLEXPORT
-#define SP_DLLEXPORT /* as nothing */
-#endif
-
-#ifndef SP_DLLIMPORT
-#define SP_DLLIMPORT /* as nothing */
-#endif
-
-#ifdef SP_USE_DLL
-
-#ifdef BUILD_LIBSP
-#define SP_API SP_DLLEXPORT
-#else
-#define SP_API SP_DLLIMPORT
-#endif
-
-#else /* not SP_USE_DLL */
-
-#define SP_API /* as nothing */
-
-#endif /* not SP_USE_DLL */
-
-#ifdef SP_WIDE_SYSTEM
-#ifndef SP_MULTI_BYTE
-#define SP_MULTI_BYTE
-#endif
-#endif
-
-#ifdef HAVE_NAMESPACES
-#define SP_NAMESPACE OpenSP
-#endif /* HAVE_NAMESPACES */
-
-#ifdef SP_NAMESPACE
-#define SP_NAMESPACE_SCOPE SP_NAMESPACE::
-#else
-#define SP_NAMESPACE_SCOPE
-#endif /* SP_NAMESPACE */
-
-#ifdef HAVE_DYNAMIC_CAST
-#define SP_HAVE_RTTI
-#endif /* HAVE_DYNAMIC_CAST */
-
-#ifdef HAVE_PATHNAME_STYLE_DOS
-#define SP_MSDOS_FILENAMES
-#else
-#define SP_POSIX_FILENAMES
-#endif /* HAVE_PATHNAME_STYLE_DOS */
-
-#ifdef HAVE_INSTANTIATIONS
-#ifndef SP_ANSI_CLASS_INST
-#define SP_ANSI_CLASS_INST
-#endif
-#endif /* HAVE_INSTANTIATIONS */
-
-#ifdef HAVE_SETLOCALE
-#ifndef SP_HAVE_LOCALE
-#define SP_HAVE_LOCALE
-#endif
-#endif /* HAVE_SETLOCALE */
-
-#if defined(HAVE_GETTEXT) && defined(ENABLE_NLS)
-#ifndef SP_HAVE_GETTEXT
-#define SP_HAVE_GETTEXT
-#endif
-#endif /* HAVE_GETTEXT && ENABLE_NLS */
-
-#ifdef WORDS_BIGENDIAN
-#define SP_BIG_ENDIAN
-#endif /* WORDS_BIGENDIAN */
-
-#ifdef HAVE_LIBTHREADS
-#define SP_MUTEX_MACH
-#endif /* HAVE_LIBTHREADS */
-
-#ifdef HAVE_LIBPTHREAD
-#define SP_MUTEX_PTHREADS
-#endif /* HAVE_LIBPTHREAD */
-
-#ifdef HAVE_PLACEMENT_OPERATOR_DELETE
-#define SP_HAVE_PLACEMENT_OPERATOR_DELETE
-#endif /* HAVE_PLACEMENT_OPERATOR_DELETE */
-
-#ifndef HAVE_PLACEMENT_OPERATOR_NEW
-#define SP_DECLARE_PLACEMENT_OPERATOR_NEW
-#endif /* HAVE_PLACEMENT_OPERATOR_NEW */
-
-#ifndef HAVE_NAMESPACE_STD
-#define SP_NO_STD_NAMESPACE
-#endif /* HAVE_NAMESPACE_STD */
-
-#if defined(HAVE_NEW) && defined(HAVE_CASSERT)
-#define SP_ANSI_LIB 1
-#endif /* HAVE_NEW && HAVE_CASSERT */
-
-#ifndef HAVE_MUTABLE
-#define mutable
-#endif /* HAVE_MUTABLE */
-
diff --git a/packages/node-libofx/OpenSP-1.5.2/config.h-e b/packages/node-libofx/OpenSP-1.5.2/config.h-e
deleted file mode 100644
index 1733e4d1edc..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/config.h-e
+++ /dev/null
@@ -1,628 +0,0 @@
-/* config.h. Generated by configure. */
-/* config.h.in. Generated from configure.in by autoheader. */
-
-/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
- systems. This function is required for `alloca.c' support on those systems.
- */
-/* #undef CRAY_STACKSEG_END */
-
-/* Define to 1 if using `alloca.c'. */
-/* #undef C_ALLOCA */
-
-/* define this if memmove should be declared extern "C" */
-/* #undef DECLARE_MEMMOVE */
-
-/* define this if strerror should be declared extern "C" */
-/* #undef DECLARE_STRERROR */
-
-/* if this is not set it defaults to 200 */
-/* #undef DEFAULT_ERROR_LIMIT */
-
-/* Define to 1 if translation of program messages to the user's native
- language is requested. */
-#define ENABLE_NLS 1
-
-/* Define to 1 if you have `alloca', as a function or macro. */
-#define HAVE_ALLOCA 1
-
-/* Define to 1 if you have and it should be used (not on Ultrix).
- */
-#define HAVE_ALLOCA_H 1
-
-/* Define to 1 if you have the header file. */
-/* #undef HAVE_ARGZ_H */
-
-/* Define to 1 if you have the `asprintf' function. */
-#define HAVE_ASPRINTF 1
-
-/* define if bool is a built-in type */
-#define HAVE_BOOL
-
-/* Define to 1 if you have the header file. */
-#define HAVE_CASSERT 1
-
-/* Define if you have the gettext() function */
-/* #undef HAVE_CATGETS */
-
-/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
- CoreFoundation framework. */
-/* #undef HAVE_CFLOCALECOPYCURRENT */
-
-/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
- the CoreFoundation framework. */
-/* #undef HAVE_CFPREFERENCESCOPYAPPVALUE */
-
-/* Define if the GNU dcgettext() function is already present or preinstalled.
- */
-/* #undef HAVE_DCGETTEXT */
-
-/* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you
- don't. */
-#define HAVE_DECL_FEOF_UNLOCKED 1
-
-/* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if
- you don't. */
-#define HAVE_DECL_FGETS_UNLOCKED 0
-
-/* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you
- don't. */
-#define HAVE_DECL_GETC_UNLOCKED 1
-
-/* Define to 1 if you have the declaration of `_snprintf', and to 0 if you
- don't. */
-#define HAVE_DECL__SNPRINTF 0
-
-/* Define to 1 if you have the declaration of `_snwprintf', and to 0 if you
- don't. */
-#define HAVE_DECL__SNWPRINTF 0
-
-/* Define to 1 if you have the header file. */
-#define HAVE_DLFCN_H 1
-
-/* define if the compiler supports dynamic_cast<> */
-/* #undef HAVE_DYNAMIC_CAST */
-
-/* Define to 1 if you have the `fwprintf' function. */
-#define HAVE_FWPRINTF 1
-
-/* Define to 1 if you have the `getcwd' function. */
-#define HAVE_GETCWD 1
-
-/* Define to 1 if you have the `getegid' function. */
-#define HAVE_GETEGID 1
-
-/* Define to 1 if you have the `geteuid' function. */
-#define HAVE_GETEUID 1
-
-/* Define to 1 if you have the `getgid' function. */
-#define HAVE_GETGID 1
-
-/* Define to 1 if you have the `getpagesize' function. */
-#define HAVE_GETPAGESIZE 1
-
-/* Define if the GNU gettext() function is already present or preinstalled. */
-/* #undef HAVE_GETTEXT */
-
-/* Define to 1 if you have the `getuid' function. */
-#define HAVE_GETUID 1
-
-/* Define if you have the iconv() function. */
-#define HAVE_ICONV 1
-
-/* define if the compiler supports explicit instantiations */
-#define HAVE_INSTANTIATIONS
-
-/* Define if you have the 'intmax_t' type in or . */
-#define HAVE_INTMAX_T 1
-
-/* Define if exists and doesn't clash with . */
-#define HAVE_INTTYPES_H 1
-
-/* Define if exists, doesn't clash with , and
- declares uintmax_t. */
-#define HAVE_INTTYPES_H_WITH_UINTMAX 1
-
-/* Define to 1 if you have the header file. */
-/* #undef HAVE_IO_H */
-
-/* Define if you have and nl_langinfo(CODESET). */
-#define HAVE_LANGINFO_CODESET 1
-
-/* Define if your file defines LC_MESSAGES. */
-#define HAVE_LC_MESSAGES 1
-
-/* Define to 1 if you have the `pthread' library (-lpthread). */
-#define HAVE_LIBPTHREAD 1
-
-/* Define to 1 if you have the `threads' library (-lthreads). */
-/* #undef HAVE_LIBTHREADS */
-
-/* Define to 1 if you have the header file. */
-#define HAVE_LIMITS_H 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_LOCALE_H 1
-
-/* Define if you have the 'long double' type. */
-#define HAVE_LONG_DOUBLE 1
-
-/* Define if you have the 'long long' type. */
-#define HAVE_LONG_LONG 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_MALLOC_H 1
-
-/* Define to 1 if you have the `memcmp' function. */
-#define HAVE_MEMCMP 1
-
-/* Define to 1 if you have the `memmove' function. */
-#define HAVE_MEMMOVE 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_MEMORY_H 1
-
-/* Define to 1 if you have the `mempcpy' function. */
-#define HAVE_MEMPCPY 1
-
-/* Define to 1 if you have a working `mmap' system call. */
-/* #undef HAVE_MMAP */
-
-/* Define to 1 if you have the `munmap' function. */
-#define HAVE_MUNMAP 1
-
-/* define if the compiler supports the mutable keyword */
-#define HAVE_MUTABLE
-
-/* define if the compiler implements namespaces */
-#define HAVE_NAMESPACES
-
-/* define if the C++ compiler supports the std namespace */
-#define HAVE_NAMESPACE_STD
-
-/* Define to 1 if you have the header file. */
-#define HAVE_NEW 1
-
-/* define if the compiler accepts the new for scoping rules */
-#define HAVE_NEW_FOR_SCOPING
-
-/* Define to 1 if you have the header file. */
-#define HAVE_NL_TYPES_H 1
-
-/* Define to 1 if you have the header file. */
-/* #undef HAVE_OSFCN_H */
-
-/* define if the compiler supports placement operator delete */
-/* #undef HAVE_PLACEMENT_OPERATOR_DELETE */
-
-/* define if placement operator new is declared */
-/* #undef HAVE_PLACEMENT_OPERATOR_NEW */
-
-/* Define if your printf() function supports format strings with positions. */
-#define HAVE_POSIX_PRINTF 1
-
-/* Define to 1 if you have the `putenv' function. */
-#define HAVE_PUTENV 1
-
-/* Define to 1 if you have the `setenv' function. */
-#define HAVE_SETENV 1
-
-/* Define to 1 if you have the `setlocale' function. */
-#define HAVE_SETLOCALE 1
-
-/* Define to 1 if you have the `snprintf' function. */
-#define HAVE_SNPRINTF 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_STDDEF_H 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_STDINT_H 1
-
-/* Define if exists, doesn't clash with , and declares
- uintmax_t. */
-#define HAVE_STDINT_H_WITH_UINTMAX 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_STDLIB_H 1
-
-/* Define to 1 if you have the `stpcpy' function. */
-#define HAVE_STPCPY 1
-
-/* Define to 1 if you have the `strcasecmp' function. */
-#define HAVE_STRCASECMP 1
-
-/* Define to 1 if you have the `strdup' function. */
-#define HAVE_STRDUP 1
-
-/* Define to 1 if you have the `strerror' function. */
-#define HAVE_STRERROR 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_STRINGS_H 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_STRING_H 1
-
-/* Define to 1 if you have the `strtoul' function. */
-#define HAVE_STRTOUL 1
-
-/* Define to 1 if `st_blksize' is member of `struct stat'. */
-#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
-
-/* Define if your `struct stat' has `st_blksize'. Deprecated, use
- `HAVE_STRUCT_STAT_ST_BLKSIZE' instead. */
-#define HAVE_ST_BLKSIZE 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_SYS_PARAM_H 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_SYS_STAT_H 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_SYS_TYPES_H 1
-
-/* Define to 1 if you have the `tsearch' function. */
-/* #undef HAVE_TSEARCH */
-
-/* define if the compiler recognizes typename */
-#define HAVE_TYPENAME
-
-/* Define if you have the 'uintmax_t' type in or . */
-#define HAVE_UINTMAX_T 1
-
-/* Define to 1 if you have the header file. */
-#define HAVE_UNISTD_H 1
-
-/* Define if you have the 'unsigned long long' type. */
-#define HAVE_UNSIGNED_LONG_LONG 1
-
-/* Define if you have the 'wchar_t' type. */
-#define HAVE_WCHAR_T 1
-
-/* Define to 1 if you have the `wcslen' function. */
-#define HAVE_WCSLEN 1
-
-/* Define if you have the 'wint_t' type. */
-#define HAVE_WINT_T 1
-
-/* Define to 1 if you have the `__argz_count' function. */
-/* #undef HAVE___ARGZ_COUNT */
-
-/* Define to 1 if you have the `__argz_next' function. */
-/* #undef HAVE___ARGZ_NEXT */
-
-/* Define to 1 if you have the `__argz_stringify' function. */
-/* #undef HAVE___ARGZ_STRINGIFY */
-
-/* Define to 1 if you have the `__fsetlocking' function. */
-#define HAVE___FSETLOCKING 1
-
-/* Define as const if the declaration of iconv() needs const. */
-#define ICONV_CONST
-
-/* Define if integer division by zero raises signal SIGFPE. */
-#define INTDIV0_RAISES_SIGFPE 0
-
-/* Define to the address where bug reports for this package should be sent. */
-#define PACKAGE_BUGREPORT ""
-
-/* Define to the full name of this package. */
-#define PACKAGE_NAME ""
-
-/* Define to the full name and version of this package. */
-#define PACKAGE_STRING ""
-
-/* Define to the one symbol short name of this package. */
-#define PACKAGE_TARNAME ""
-
-/* Define to the version of this package. */
-#define PACKAGE_VERSION ""
-
-/* set this to the path separator */
-#define PATH_SEPARATOR ':'
-
-/* Define if exists and defines unusable PRI* macros. */
-/* #undef PRI_MACROS_BROKEN */
-
-/* set this to the default catalog files list */
-/* #undef SGML_CATALOG_FILES_DEFAULT */
-
-/* set this to the default SGML search path */
-/* #undef SGML_SEARCH_PATH_DEFAULT */
-
-/* The size of a `bool', as computed by sizeof. */
-#define SIZEOF_BOOL 1
-
-/* The size of a `size_t', as computed by sizeof. */
-#define SIZEOF_SIZE_T 4
-
-/* The size of a `unsigned int', as computed by sizeof. */
-#define SIZEOF_UNSIGNED_INT 4
-
-/* The size of a `unsigned short', as computed by sizeof. */
-#define SIZEOF_UNSIGNED_SHORT 2
-
-/* The size of a `wchar_t', as computed by sizeof. */
-#define SIZEOF_WCHAR_T 4
-
-/* Define as the maximum value of type 'size_t', if the system doesn't define
- it. */
-/* #undef SIZE_MAX */
-
-/* define this if h_errno should be declared extern int */
-/* #undef SP_DECLARE_H_ERRNO */
-
-/* define this to include template definitions in the headers */
-#define SP_DEFINE_TEMPLATES 1
-
-/* define this to build a dll */
-/* #undef SP_DLLEXPORT */
-
-/* define this tobuild a dll */
-/* #undef SP_DLLIMPORT */
-
-/* set this to enable DTDDECL support */
-#define SP_DTDDECL 1
-
-/* define this if the new handler takes size_t and returns int */
-/* #undef SP_FANCY_NEW_HANDLER */
-
-/* define this if _setmode is supported */
-/* #undef SP_HAVE_SETMODE */
-
-/* define this if sockets are available */
-/* #undef SP_HAVE_SOCKET */
-
-/* set this to the first line term character */
-/* #undef SP_LINE_TERM1 */
-
-/* set this to the second line term character */
-/* #undef SP_LINE_TERM2 */
-
-/* location of message catalogs */
-#define SP_LOCALE_DIR "/usr/local/share/locale"
-
-/* define this to compile explicit template instantiations */
-/* #undef SP_MANUAL_INST */
-
-/* message domain */
-#define SP_MESSAGE_DOMAIN "sp5"
-
-/* define this to build a multi-byte version */
-#define SP_MULTI_BYTE 1
-
-/* define this to use win32 mutex mechanisms */
-/* #undef SP_MUTEX_WIN32 */
-
-/* define this if your system misses new.h */
-/* #undef SP_NEW_H_MISSING */
-
-/* define this to not compile message texts in */
-/* #undef SP_NO_MESSAGE_TEXT */
-
-/* Package name */
-#define SP_PACKAGE "OpenSP"
-
-/* define this to enable precompiled header support */
-/* #undef SP_PCH */
-
-/* define this if set_new_handler() has to be declared extern "C" */
-/* #undef SP_SET_NEW_HANDLER_EXTERN_C */
-
-/* define this to build a dll */
-/* #undef SP_USE_DLL */
-
-/* define this if you can't or don't want to use the builtin assert() macro */
-/* #undef SP_USE_OWN_ASSERT */
-
-/* Package version */
-#define SP_VERSION "1.5.2"
-
-/* define this if the OS provides wide character interfaces */
-/* #undef SP_WIDE_SYSTEM */
-
-/* set this to enable XML Formatted Messages */
-/* #undef SP_XML */
-
-/* If using the C implementation of alloca, define if you know the
- direction of stack growth for your system; otherwise it will be
- automatically deduced at run-time.
- STACK_DIRECTION > 0 => grows toward higher addresses
- STACK_DIRECTION < 0 => grows toward lower addresses
- STACK_DIRECTION = 0 => direction of growth unknown */
-/* #undef STACK_DIRECTION */
-
-/* Define to 1 if you have the ANSI C header files. */
-/* #undef STDC_HEADERS */
-
-/* Define to 1 if your processor stores words with the most significant byte
- first (like Motorola and SPARC, unlike Intel and VAX). */
-/* #undef WORDS_BIGENDIAN */
-
-/* Define to empty if `const' does not conform to ANSI C. */
-/* #undef const */
-
-/* Define to `__inline__' or `__inline' if that's what the C compiler
- calls it, or to nothing if 'inline' is not supported under any name. */
-#ifndef __cplusplus
-/* #undef inline */
-#endif
-
-/* Define to `long' if does not define. */
-/* #undef off_t */
-
-/* Define as the type of the result of subtracting two pointers, if the system
- doesn't define it. */
-#define ptrdiff_t long
-
-/* Define to `int' if does not define. */
-/* #undef sig_atomic_t */
-
-/* Define to empty if the C compiler doesn't support this keyword. */
-/* #undef signed */
-
-/* Define to `unsigned' if does not define. */
-/* #undef size_t */
-
-/* Define to unsigned long or unsigned long long if and
- don't define. */
-/* #undef uintmax_t */
-
-
-#ifdef HAVE_UNISTD_H
-#define SP_INCLUDE_UNISTD_H
-#endif
-
-#ifdef HAVE_IO_H
-/* #undef SP_INCLUDE_IO_H */
-#endif
-
-#ifdef HAVE_OSFCN_H
-/* #undef SP_INCLUDE_OSFCN_H */
-#endif
-
-#ifndef SP_MSDOS_FILENAMES
-#define SP_POSIX_FILENAMES
-#endif
-
-#ifdef HAVE_ST_BLKSIZE
-#define SP_STAT_BLKSIZE
-#endif
-
-#ifdef HAVE_BOOL
-#ifndef SP_HAVE_BOOL
-#define SP_HAVE_BOOL
-#endif
-#endif /* HAVE_BOOL */
-
-#ifdef HAVE_TYPENAME
-#define SP_HAVE_TYPENAME
-#endif /* HAVE_TYPENAME */
-
-#if (SIZEOF_BOOL == 1)
-#define SP_SIZEOF_BOOL_1
-#endif
-
-#if (SIZEOF_WCHAR_T == SIZEOF_UNSIGNED_SHORT)
-#define SP_WCHAR_T_USHORT
-#endif
-
-#ifdef SP_HAVE_SETMODE
-#ifndef SP_LINE_TERM1
-#define SP_LINE_TERM1 '\r'
-#define SP_LINE_TERM2 '\n'
-#endif
-#endif /* not SP_HAVE_SETMODE */
-
-#ifndef SP_LINE_TERM1
-#define SP_LINE_TERM1 '\n'
-#endif
-
-#ifndef HAVE_NEW_FOR_SCOPING
-// This simulates the new ANSI "for" scope rules
-#define for if (0); else for
-#endif /* HAVE_NEW_FOR_SCOPING */
-
-#ifndef SP_HAVE_TYPENAME
-#define typename /* as nothing */
-#endif
-
-#ifndef SP_DLLEXPORT
-#define SP_DLLEXPORT /* as nothing */
-#endif
-
-#ifndef SP_DLLIMPORT
-#define SP_DLLIMPORT /* as nothing */
-#endif
-
-#ifdef SP_USE_DLL
-
-#ifdef BUILD_LIBSP
-#define SP_API SP_DLLEXPORT
-#else
-#define SP_API SP_DLLIMPORT
-#endif
-
-#else /* not SP_USE_DLL */
-
-#define SP_API /* as nothing */
-
-#endif /* not SP_USE_DLL */
-
-#ifdef SP_WIDE_SYSTEM
-#ifndef SP_MULTI_BYTE
-#define SP_MULTI_BYTE
-#endif
-#endif
-
-#ifdef HAVE_NAMESPACES
-#define SP_NAMESPACE OpenSP
-#endif /* HAVE_NAMESPACES */
-
-#ifdef SP_NAMESPACE
-#define SP_NAMESPACE_SCOPE SP_NAMESPACE::
-#else
-#define SP_NAMESPACE_SCOPE
-#endif /* SP_NAMESPACE */
-
-#ifdef HAVE_DYNAMIC_CAST
-#define SP_HAVE_RTTI
-#endif /* HAVE_DYNAMIC_CAST */
-
-#ifdef HAVE_PATHNAME_STYLE_DOS
-#define SP_MSDOS_FILENAMES
-#else
-#define SP_POSIX_FILENAMES
-#endif /* HAVE_PATHNAME_STYLE_DOS */
-
-#ifdef HAVE_INSTANTIATIONS
-#ifndef SP_ANSI_CLASS_INST
-#define SP_ANSI_CLASS_INST
-#endif
-#endif /* HAVE_INSTANTIATIONS */
-
-#ifdef HAVE_SETLOCALE
-#ifndef SP_HAVE_LOCALE
-#define SP_HAVE_LOCALE
-#endif
-#endif /* HAVE_SETLOCALE */
-
-#if defined(HAVE_GETTEXT) && defined(ENABLE_NLS)
-#ifndef SP_HAVE_GETTEXT
-#define SP_HAVE_GETTEXT
-#endif
-#endif /* HAVE_GETTEXT && ENABLE_NLS */
-
-#ifdef WORDS_BIGENDIAN
-#define SP_BIG_ENDIAN
-#endif /* WORDS_BIGENDIAN */
-
-#ifdef HAVE_LIBTHREADS
-#define SP_MUTEX_MACH
-#endif /* HAVE_LIBTHREADS */
-
-#ifdef HAVE_LIBPTHREAD
-#define SP_MUTEX_PTHREADS
-#endif /* HAVE_LIBPTHREAD */
-
-#ifdef HAVE_PLACEMENT_OPERATOR_DELETE
-#define SP_HAVE_PLACEMENT_OPERATOR_DELETE
-#endif /* HAVE_PLACEMENT_OPERATOR_DELETE */
-
-#ifndef HAVE_PLACEMENT_OPERATOR_NEW
-#define SP_DECLARE_PLACEMENT_OPERATOR_NEW
-#endif /* HAVE_PLACEMENT_OPERATOR_NEW */
-
-#ifndef HAVE_NAMESPACE_STD
-#define SP_NO_STD_NAMESPACE
-#endif /* HAVE_NAMESPACE_STD */
-
-#if defined(HAVE_NEW) && defined(HAVE_CASSERT)
-#define SP_ANSI_LIB 1
-#endif /* HAVE_NEW && HAVE_CASSERT */
-
-#ifndef HAVE_MUTABLE
-#define mutable
-#endif /* HAVE_MUTABLE */
-
diff --git a/packages/node-libofx/OpenSP-1.5.2/config.h.in b/packages/node-libofx/OpenSP-1.5.2/config.h.in
deleted file mode 100644
index 12a461af357..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/config.h.in
+++ /dev/null
@@ -1,627 +0,0 @@
-/* config.h.in. Generated from configure.in by autoheader. */
-
-/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
- systems. This function is required for `alloca.c' support on those systems.
- */
-#undef CRAY_STACKSEG_END
-
-/* Define to 1 if using `alloca.c'. */
-#undef C_ALLOCA
-
-/* define this if memmove should be declared extern "C" */
-#undef DECLARE_MEMMOVE
-
-/* define this if strerror should be declared extern "C" */
-#undef DECLARE_STRERROR
-
-/* if this is not set it defaults to 200 */
-#undef DEFAULT_ERROR_LIMIT
-
-/* Define to 1 if translation of program messages to the user's native
- language is requested. */
-#undef ENABLE_NLS
-
-/* Define to 1 if you have `alloca', as a function or macro. */
-#undef HAVE_ALLOCA
-
-/* Define to 1 if you have and it should be used (not on Ultrix).
- */
-#undef HAVE_ALLOCA_H
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_ARGZ_H
-
-/* Define to 1 if you have the `asprintf' function. */
-#undef HAVE_ASPRINTF
-
-/* define if bool is a built-in type */
-#undef HAVE_BOOL
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_CASSERT
-
-/* Define if you have the gettext() function */
-#undef HAVE_CATGETS
-
-/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
- CoreFoundation framework. */
-#undef HAVE_CFLOCALECOPYCURRENT
-
-/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
- the CoreFoundation framework. */
-#undef HAVE_CFPREFERENCESCOPYAPPVALUE
-
-/* Define if the GNU dcgettext() function is already present or preinstalled.
- */
-#undef HAVE_DCGETTEXT
-
-/* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you
- don't. */
-#undef HAVE_DECL_FEOF_UNLOCKED
-
-/* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if
- you don't. */
-#undef HAVE_DECL_FGETS_UNLOCKED
-
-/* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you
- don't. */
-#undef HAVE_DECL_GETC_UNLOCKED
-
-/* Define to 1 if you have the declaration of `_snprintf', and to 0 if you
- don't. */
-#undef HAVE_DECL__SNPRINTF
-
-/* Define to 1 if you have the declaration of `_snwprintf', and to 0 if you
- don't. */
-#undef HAVE_DECL__SNWPRINTF
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_DLFCN_H
-
-/* define if the compiler supports dynamic_cast<> */
-#undef HAVE_DYNAMIC_CAST
-
-/* Define to 1 if you have the `fwprintf' function. */
-#undef HAVE_FWPRINTF
-
-/* Define to 1 if you have the `getcwd' function. */
-#undef HAVE_GETCWD
-
-/* Define to 1 if you have the `getegid' function. */
-#undef HAVE_GETEGID
-
-/* Define to 1 if you have the `geteuid' function. */
-#undef HAVE_GETEUID
-
-/* Define to 1 if you have the `getgid' function. */
-#undef HAVE_GETGID
-
-/* Define to 1 if you have the `getpagesize' function. */
-#undef HAVE_GETPAGESIZE
-
-/* Define if the GNU gettext() function is already present or preinstalled. */
-#undef HAVE_GETTEXT
-
-/* Define to 1 if you have the `getuid' function. */
-#undef HAVE_GETUID
-
-/* Define if you have the iconv() function. */
-#undef HAVE_ICONV
-
-/* define if the compiler supports explicit instantiations */
-#undef HAVE_INSTANTIATIONS
-
-/* Define if you have the 'intmax_t' type in or . */
-#undef HAVE_INTMAX_T
-
-/* Define if exists and doesn't clash with . */
-#undef HAVE_INTTYPES_H
-
-/* Define if exists, doesn't clash with , and
- declares uintmax_t. */
-#undef HAVE_INTTYPES_H_WITH_UINTMAX
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_IO_H
-
-/* Define if you have and nl_langinfo(CODESET). */
-#undef HAVE_LANGINFO_CODESET
-
-/* Define if your file defines LC_MESSAGES. */
-#undef HAVE_LC_MESSAGES
-
-/* Define to 1 if you have the `pthread' library (-lpthread). */
-#undef HAVE_LIBPTHREAD
-
-/* Define to 1 if you have the `threads' library (-lthreads). */
-#undef HAVE_LIBTHREADS
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_LIMITS_H
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_LOCALE_H
-
-/* Define if you have the 'long double' type. */
-#undef HAVE_LONG_DOUBLE
-
-/* Define if you have the 'long long' type. */
-#undef HAVE_LONG_LONG
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_MALLOC_H
-
-/* Define to 1 if you have the `memcmp' function. */
-#undef HAVE_MEMCMP
-
-/* Define to 1 if you have the `memmove' function. */
-#undef HAVE_MEMMOVE
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_MEMORY_H
-
-/* Define to 1 if you have the `mempcpy' function. */
-#undef HAVE_MEMPCPY
-
-/* Define to 1 if you have a working `mmap' system call. */
-#undef HAVE_MMAP
-
-/* Define to 1 if you have the `munmap' function. */
-#undef HAVE_MUNMAP
-
-/* define if the compiler supports the mutable keyword */
-#undef HAVE_MUTABLE
-
-/* define if the compiler implements namespaces */
-#undef HAVE_NAMESPACES
-
-/* define if the C++ compiler supports the std namespace */
-#undef HAVE_NAMESPACE_STD
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_NEW
-
-/* define if the compiler accepts the new for scoping rules */
-#undef HAVE_NEW_FOR_SCOPING
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_NL_TYPES_H
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_OSFCN_H
-
-/* define if the compiler supports placement operator delete */
-#undef HAVE_PLACEMENT_OPERATOR_DELETE
-
-/* define if placement operator new is declared */
-#undef HAVE_PLACEMENT_OPERATOR_NEW
-
-/* Define if your printf() function supports format strings with positions. */
-#undef HAVE_POSIX_PRINTF
-
-/* Define to 1 if you have the `putenv' function. */
-#undef HAVE_PUTENV
-
-/* Define to 1 if you have the `setenv' function. */
-#undef HAVE_SETENV
-
-/* Define to 1 if you have the `setlocale' function. */
-#undef HAVE_SETLOCALE
-
-/* Define to 1 if you have the `snprintf' function. */
-#undef HAVE_SNPRINTF
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_STDDEF_H
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_STDINT_H
-
-/* Define if exists, doesn't clash with , and declares
- uintmax_t. */
-#undef HAVE_STDINT_H_WITH_UINTMAX
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_STDLIB_H
-
-/* Define to 1 if you have the `stpcpy' function. */
-#undef HAVE_STPCPY
-
-/* Define to 1 if you have the `strcasecmp' function. */
-#undef HAVE_STRCASECMP
-
-/* Define to 1 if you have the `strdup' function. */
-#undef HAVE_STRDUP
-
-/* Define to 1 if you have the `strerror' function. */
-#undef HAVE_STRERROR
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_STRINGS_H
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_STRING_H
-
-/* Define to 1 if you have the `strtoul' function. */
-#undef HAVE_STRTOUL
-
-/* Define to 1 if `st_blksize' is member of `struct stat'. */
-#undef HAVE_STRUCT_STAT_ST_BLKSIZE
-
-/* Define if your `struct stat' has `st_blksize'. Deprecated, use
- `HAVE_STRUCT_STAT_ST_BLKSIZE' instead. */
-#undef HAVE_ST_BLKSIZE
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_SYS_PARAM_H
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_SYS_STAT_H
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_SYS_TYPES_H
-
-/* Define to 1 if you have the `tsearch' function. */
-#undef HAVE_TSEARCH
-
-/* define if the compiler recognizes typename */
-#undef HAVE_TYPENAME
-
-/* Define if you have the 'uintmax_t' type in or . */
-#undef HAVE_UINTMAX_T
-
-/* Define to 1 if you have the header file. */
-#undef HAVE_UNISTD_H
-
-/* Define if you have the 'unsigned long long' type. */
-#undef HAVE_UNSIGNED_LONG_LONG
-
-/* Define if you have the 'wchar_t' type. */
-#undef HAVE_WCHAR_T
-
-/* Define to 1 if you have the `wcslen' function. */
-#undef HAVE_WCSLEN
-
-/* Define if you have the 'wint_t' type. */
-#undef HAVE_WINT_T
-
-/* Define to 1 if you have the `__argz_count' function. */
-#undef HAVE___ARGZ_COUNT
-
-/* Define to 1 if you have the `__argz_next' function. */
-#undef HAVE___ARGZ_NEXT
-
-/* Define to 1 if you have the `__argz_stringify' function. */
-#undef HAVE___ARGZ_STRINGIFY
-
-/* Define to 1 if you have the `__fsetlocking' function. */
-#undef HAVE___FSETLOCKING
-
-/* Define as const if the declaration of iconv() needs const. */
-#undef ICONV_CONST
-
-/* Define if integer division by zero raises signal SIGFPE. */
-#undef INTDIV0_RAISES_SIGFPE
-
-/* Define to the address where bug reports for this package should be sent. */
-#undef PACKAGE_BUGREPORT
-
-/* Define to the full name of this package. */
-#undef PACKAGE_NAME
-
-/* Define to the full name and version of this package. */
-#undef PACKAGE_STRING
-
-/* Define to the one symbol short name of this package. */
-#undef PACKAGE_TARNAME
-
-/* Define to the version of this package. */
-#undef PACKAGE_VERSION
-
-/* set this to the path separator */
-#undef PATH_SEPARATOR
-
-/* Define if exists and defines unusable PRI* macros. */
-#undef PRI_MACROS_BROKEN
-
-/* set this to the default catalog files list */
-#undef SGML_CATALOG_FILES_DEFAULT
-
-/* set this to the default SGML search path */
-#undef SGML_SEARCH_PATH_DEFAULT
-
-/* The size of a `bool', as computed by sizeof. */
-#undef SIZEOF_BOOL
-
-/* The size of a `size_t', as computed by sizeof. */
-#undef SIZEOF_SIZE_T
-
-/* The size of a `unsigned int', as computed by sizeof. */
-#undef SIZEOF_UNSIGNED_INT
-
-/* The size of a `unsigned short', as computed by sizeof. */
-#undef SIZEOF_UNSIGNED_SHORT
-
-/* The size of a `wchar_t', as computed by sizeof. */
-#undef SIZEOF_WCHAR_T
-
-/* Define as the maximum value of type 'size_t', if the system doesn't define
- it. */
-#undef SIZE_MAX
-
-/* define this if h_errno should be declared extern int */
-#undef SP_DECLARE_H_ERRNO
-
-/* define this to include template definitions in the headers */
-#undef SP_DEFINE_TEMPLATES
-
-/* define this to build a dll */
-#undef SP_DLLEXPORT
-
-/* define this tobuild a dll */
-#undef SP_DLLIMPORT
-
-/* set this to enable DTDDECL support */
-#undef SP_DTDDECL
-
-/* define this if the new handler takes size_t and returns int */
-#undef SP_FANCY_NEW_HANDLER
-
-/* define this if _setmode is supported */
-#undef SP_HAVE_SETMODE
-
-/* define this if sockets are available */
-#undef SP_HAVE_SOCKET
-
-/* set this to the first line term character */
-#undef SP_LINE_TERM1
-
-/* set this to the second line term character */
-#undef SP_LINE_TERM2
-
-/* location of message catalogs */
-#undef SP_LOCALE_DIR
-
-/* define this to compile explicit template instantiations */
-#undef SP_MANUAL_INST
-
-/* message domain */
-#undef SP_MESSAGE_DOMAIN
-
-/* define this to build a multi-byte version */
-#undef SP_MULTI_BYTE
-
-/* define this to use win32 mutex mechanisms */
-#undef SP_MUTEX_WIN32
-
-/* define this if your system misses new.h */
-#undef SP_NEW_H_MISSING
-
-/* define this to not compile message texts in */
-#undef SP_NO_MESSAGE_TEXT
-
-/* Package name */
-#undef SP_PACKAGE
-
-/* define this to enable precompiled header support */
-#undef SP_PCH
-
-/* define this if set_new_handler() has to be declared extern "C" */
-#undef SP_SET_NEW_HANDLER_EXTERN_C
-
-/* define this to build a dll */
-#undef SP_USE_DLL
-
-/* define this if you can't or don't want to use the builtin assert() macro */
-#undef SP_USE_OWN_ASSERT
-
-/* Package version */
-#undef SP_VERSION
-
-/* define this if the OS provides wide character interfaces */
-#undef SP_WIDE_SYSTEM
-
-/* set this to enable XML Formatted Messages */
-#undef SP_XML
-
-/* If using the C implementation of alloca, define if you know the
- direction of stack growth for your system; otherwise it will be
- automatically deduced at run-time.
- STACK_DIRECTION > 0 => grows toward higher addresses
- STACK_DIRECTION < 0 => grows toward lower addresses
- STACK_DIRECTION = 0 => direction of growth unknown */
-#undef STACK_DIRECTION
-
-/* Define to 1 if you have the ANSI C header files. */
-#undef STDC_HEADERS
-
-/* Define to 1 if your processor stores words with the most significant byte
- first (like Motorola and SPARC, unlike Intel and VAX). */
-#undef WORDS_BIGENDIAN
-
-/* Define to empty if `const' does not conform to ANSI C. */
-#undef const
-
-/* Define to `__inline__' or `__inline' if that's what the C compiler
- calls it, or to nothing if 'inline' is not supported under any name. */
-#ifndef __cplusplus
-#undef inline
-#endif
-
-/* Define to `long' if does not define. */
-#undef off_t
-
-/* Define as the type of the result of subtracting two pointers, if the system
- doesn't define it. */
-#undef ptrdiff_t
-
-/* Define to `int' if does not define. */
-#undef sig_atomic_t
-
-/* Define to empty if the C compiler doesn't support this keyword. */
-#undef signed
-
-/* Define to `unsigned' if does not define. */
-#undef size_t
-
-/* Define to unsigned long or unsigned long long if and
- don't define. */
-#undef uintmax_t
-
-
-#ifdef HAVE_UNISTD_H
-#define SP_INCLUDE_UNISTD_H
-#endif
-
-#ifdef HAVE_IO_H
-#undef SP_INCLUDE_IO_H
-#endif
-
-#ifdef HAVE_OSFCN_H
-#undef SP_INCLUDE_OSFCN_H
-#endif
-
-#ifndef SP_MSDOS_FILENAMES
-#define SP_POSIX_FILENAMES
-#endif
-
-#ifdef HAVE_ST_BLKSIZE
-#define SP_STAT_BLKSIZE
-#endif
-
-#ifdef HAVE_BOOL
-#ifndef SP_HAVE_BOOL
-#define SP_HAVE_BOOL
-#endif
-#endif /* HAVE_BOOL */
-
-#ifdef HAVE_TYPENAME
-#define SP_HAVE_TYPENAME
-#endif /* HAVE_TYPENAME */
-
-#if (SIZEOF_BOOL == 1)
-#define SP_SIZEOF_BOOL_1
-#endif
-
-#if (SIZEOF_WCHAR_T == SIZEOF_UNSIGNED_SHORT)
-#define SP_WCHAR_T_USHORT
-#endif
-
-#ifdef SP_HAVE_SETMODE
-#ifndef SP_LINE_TERM1
-#define SP_LINE_TERM1 '\r'
-#define SP_LINE_TERM2 '\n'
-#endif
-#endif /* not SP_HAVE_SETMODE */
-
-#ifndef SP_LINE_TERM1
-#define SP_LINE_TERM1 '\n'
-#endif
-
-#ifndef HAVE_NEW_FOR_SCOPING
-// This simulates the new ANSI "for" scope rules
-#define for if (0); else for
-#endif /* HAVE_NEW_FOR_SCOPING */
-
-#ifndef SP_HAVE_TYPENAME
-#define typename /* as nothing */
-#endif
-
-#ifndef SP_DLLEXPORT
-#define SP_DLLEXPORT /* as nothing */
-#endif
-
-#ifndef SP_DLLIMPORT
-#define SP_DLLIMPORT /* as nothing */
-#endif
-
-#ifdef SP_USE_DLL
-
-#ifdef BUILD_LIBSP
-#define SP_API SP_DLLEXPORT
-#else
-#define SP_API SP_DLLIMPORT
-#endif
-
-#else /* not SP_USE_DLL */
-
-#define SP_API /* as nothing */
-
-#endif /* not SP_USE_DLL */
-
-#ifdef SP_WIDE_SYSTEM
-#ifndef SP_MULTI_BYTE
-#define SP_MULTI_BYTE
-#endif
-#endif
-
-#ifdef HAVE_NAMESPACES
-#define SP_NAMESPACE OpenSP
-#endif /* HAVE_NAMESPACES */
-
-#ifdef SP_NAMESPACE
-#define SP_NAMESPACE_SCOPE SP_NAMESPACE::
-#else
-#define SP_NAMESPACE_SCOPE
-#endif /* SP_NAMESPACE */
-
-#ifdef HAVE_DYNAMIC_CAST
-#define SP_HAVE_RTTI
-#endif /* HAVE_DYNAMIC_CAST */
-
-#ifdef HAVE_PATHNAME_STYLE_DOS
-#define SP_MSDOS_FILENAMES
-#else
-#define SP_POSIX_FILENAMES
-#endif /* HAVE_PATHNAME_STYLE_DOS */
-
-#ifdef HAVE_INSTANTIATIONS
-#ifndef SP_ANSI_CLASS_INST
-#define SP_ANSI_CLASS_INST
-#endif
-#endif /* HAVE_INSTANTIATIONS */
-
-#ifdef HAVE_SETLOCALE
-#ifndef SP_HAVE_LOCALE
-#define SP_HAVE_LOCALE
-#endif
-#endif /* HAVE_SETLOCALE */
-
-#if defined(HAVE_GETTEXT) && defined(ENABLE_NLS)
-#ifndef SP_HAVE_GETTEXT
-#define SP_HAVE_GETTEXT
-#endif
-#endif /* HAVE_GETTEXT && ENABLE_NLS */
-
-#ifdef WORDS_BIGENDIAN
-#define SP_BIG_ENDIAN
-#endif /* WORDS_BIGENDIAN */
-
-#ifdef HAVE_LIBTHREADS
-#define SP_MUTEX_MACH
-#endif /* HAVE_LIBTHREADS */
-
-#ifdef HAVE_LIBPTHREAD
-#define SP_MUTEX_PTHREADS
-#endif /* HAVE_LIBPTHREAD */
-
-#ifdef HAVE_PLACEMENT_OPERATOR_DELETE
-#define SP_HAVE_PLACEMENT_OPERATOR_DELETE
-#endif /* HAVE_PLACEMENT_OPERATOR_DELETE */
-
-#ifndef HAVE_PLACEMENT_OPERATOR_NEW
-#define SP_DECLARE_PLACEMENT_OPERATOR_NEW
-#endif /* HAVE_PLACEMENT_OPERATOR_NEW */
-
-#ifndef HAVE_NAMESPACE_STD
-#define SP_NO_STD_NAMESPACE
-#endif /* HAVE_NAMESPACE_STD */
-
-#if defined(HAVE_NEW) && defined(HAVE_CASSERT)
-#define SP_ANSI_LIB 1
-#endif /* HAVE_NEW && HAVE_CASSERT */
-
-#ifndef HAVE_MUTABLE
-#define mutable
-#endif /* HAVE_MUTABLE */
-
diff --git a/packages/node-libofx/OpenSP-1.5.2/config.log b/packages/node-libofx/OpenSP-1.5.2/config.log
deleted file mode 100644
index e34840dffc7..00000000000
--- a/packages/node-libofx/OpenSP-1.5.2/config.log
+++ /dev/null
@@ -1,2312 +0,0 @@
-This file contains any messages produced by compilers while
-running configure, to aid debugging if configure makes a mistake.
-
-It was created by configure, which was
-generated by GNU Autoconf 2.59. Invocation command line was
-
- $ ./configure --disable-doc-build
-
-## --------- ##
-## Platform. ##
-## --------- ##
-
-hostname = james.local
-uname -m = x86_64
-uname -r = 19.0.0
-uname -s = Darwin
-uname -v = Darwin Kernel Version 19.0.0: Wed Sep 25 20:18:50 PDT 2019; root:xnu-6153.11.26~2/RELEASE_X86_64
-
-/usr/bin/uname -p = i386
-/bin/uname -X = unknown
-
-/bin/arch = unknown
-/usr/bin/arch -k = unknown
-/usr/convex/getsysinfo = unknown
-hostinfo = Mach kernel version:
- Darwin Kernel Version 19.0.0: Wed Sep 25 20:18:50 PDT 2019; root:xnu-6153.11.26~2/RELEASE_X86_64
-Kernel configured for up to 8 processors.
-4 processors are physically available.
-8 processors are logically available.
-Processor type: x86_64h (Intel x86-64h Haswell)
-Processors active: 0 1 2 3 4 5 6 7
-Primary memory available: 16.00 gigabytes
-Default processor set: 361 tasks, 1930 threads, 8 processors
-Load average: 1.66, Mach factor: 6.33
-/bin/machine = unknown
-/usr/bin/oslevel = unknown
-/bin/universe = unknown
-
-PATH: /Users/james/tmp/emsdk/fastcomp/emscripten/system/bin
-PATH: /Users/james/tmp/emsdk
-PATH: /Users/james/tmp/emsdk/fastcomp/emscripten
-PATH: /Users/james/tmp/emsdk/node/8.9.1_64bit/bin
-PATH: /Users/james/.nvm/versions/node/v12.13.0/bin
-PATH: /Users/james/.fastlane/bin
-PATH: /Users/james/.yarn/bin
-PATH: /Users/james/projects/scripts
-PATH: /Users/james/projects/outlet/bin
-PATH: /Users/james/projects/jsshell
-PATH: /Users/james/projects/LLJS/bin
-PATH: /Users/james/projects/emscripten
-PATH: /usr/local/pgsql/bin
-PATH: /usr/local/sbin
-PATH: /usr/local/bin
-PATH: node_modules/.bin
-PATH: /usr/local/opt/ruby/bin
-PATH: /usr/bin
-PATH: /bin
-PATH: /usr/sbin
-PATH: /sbin
-PATH: /Library/Apple/usr/bin
-PATH: /Library/Apple/bin
-PATH: /Library/TeX/texbin
-PATH: /opt/X11/bin
-PATH: /Applications/Wireshark.app/Contents/MacOS
-
-
-## ----------- ##
-## Core tests. ##
-## ----------- ##
-
-configure:1558: checking for a BSD-compatible install
-configure:1613: result: /usr/bin/install -c
-configure:1624: checking whether build environment is sane
-configure:1667: result: yes
-configure:1732: checking for gawk
-configure:1761: result: no
-configure:1732: checking for mawk
-configure:1761: result: no
-configure:1732: checking for nawk
-configure:1761: result: no
-configure:1732: checking for awk
-configure:1748: found /usr/bin/awk
-configure:1758: result: awk
-configure:1768: checking whether make sets $(MAKE)
-configure:1792: result: no
-configure:1947: checking whether to enable maintainer-specific portions of Makefiles
-configure:1956: result: no
-configure:1974: checking whether build environment is sane
-configure:2017: result: yes
-configure:2153: checking for gcc
-configure:2179: result: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc
-configure:2423: checking for C compiler version
-configure:2426: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc --version &5
-emcc (Emscripten gcc/clang-like replacement) 1.38.34 (commit bab28f9a71a98006263006af2ee9229b700d8aa6)
-Copyright (C) 2014 the Emscripten authors (see AUTHORS.txt)
-This is free and open source software under the MIT license.
-There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:2429: $? = 0
-configure:2431: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -v &5
-emcc (Emscripten gcc/clang-like replacement + linker emulating GNU ld) 1.38.34
-clang version 6.0.1 (/b/s/w/ir/cache/git/chromium.googlesource.com-external-github.com-emscripten--core-emscripten--fastcomp--clang 98df4be387dde3e3918fa5bbb5fc43e1a0e1daac) (/b/s/w/ir/cache/git/chromium.googlesource.com-external-github.com-emscripten--core-emscripten--fastcomp 1b4148f39a69c7fc62edadd85e4122b68694dfb7) (emscripten 1.38.31 : 1.38.31)
-Target: x86_64-apple-darwin19.0.0
-Thread model: posix
-InstalledDir: /Users/james/tmp/emsdk/fastcomp/fastcomp/bin
-shared:INFO: (Emscripten: Running sanity checks)
-configure:2434: $? = 0
-configure:2436: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -V &5
-shared:ERROR: no input files
-note that input files without a known suffix are ignored, make sure your input files end with one of: ('.c', '.C', '.i', '.cpp', '.cxx', '.cc', '.c++', '.CPP', '.CXX', '.CC', '.C++', '.ii', '.m', '.mi', '.mm', '.mii', '/dev/null', '.bc', '.o', '.obj', '.lo', '.dylib', '.so', '.a', '.ll', '.h', '.hxx', '.hpp', '.hh', '.H', '.HXX', '.HPP', '.HH')
-configure:2439: $? = 1
-configure:2462: checking for C compiler default output file name
-configure:2465: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc conftest.c >&5
-configure:2468: $? = 0
-configure:2514: result: a.out
-configure:2519: checking whether the C compiler works
-configure:2525: ./a.out
-configure:2528: $? = 0
-configure:2545: result: yes
-configure:2552: checking whether we are cross compiling
-configure:2554: result: no
-configure:2557: checking for suffix of executables
-configure:2559: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c >&5
-configure:2562: $? = 0
-configure:2587: result:
-configure:2593: checking for suffix of object files
-configure:2614: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:2617: $? = 0
-configure:2639: result: o
-configure:2643: checking whether we are using the GNU C compiler
-configure:2667: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:2673: $? = 0
-configure:2677: test -z
- || test ! -s conftest.err
-configure:2680: $? = 0
-configure:2683: test -s conftest.o
-configure:2686: $? = 0
-configure:2699: result: yes
-configure:2705: checking whether /Users/james/tmp/emsdk/fastcomp/emscripten/emcc accepts -g
-configure:2726: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c -g conftest.c >&5
-configure:2732: $? = 0
-configure:2736: test -z
- || test ! -s conftest.err
-configure:2739: $? = 0
-configure:2742: test -s conftest.o
-configure:2745: $? = 0
-configure:2756: result: yes
-configure:2773: checking for /Users/james/tmp/emsdk/fastcomp/emscripten/emcc option to accept ANSI C
-configure:2843: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:2849: $? = 0
-configure:2853: test -z
- || test ! -s conftest.err
-configure:2856: $? = 0
-configure:2859: test -s conftest.o
-configure:2862: $? = 0
-configure:2880: result: none needed
-configure:2898: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-conftest.c:2:3: error: unknown type name 'choke'
- choke me
- ^
-conftest.c:2:11: error: expected ';' after top level declarator
- choke me
- ^
- ;
-2 errors generated.
-shared:ERROR: compiler frontend failed to generate LLVM bitcode, halting
-configure:2904: $? = 1
-configure: failed program was:
-| #ifndef __cplusplus
-| choke me
-| #endif
-configure:3048: checking for style of include used by make
-configure:3076: result: GNU
-configure:3104: checking dependency style of /Users/james/tmp/emsdk/fastcomp/emscripten/emcc
-configure:3194: result: gcc3
-configure:3216: checking how to run the C preprocessor
-configure:3251: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -E conftest.c
-configure:3257: $? = 0
-configure:3289: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -E conftest.c
-conftest.c:12:10: fatal error: 'ac_nonexistent.h' file not found
-#include
- ^~~~~~~~~~~~~~~~~~
-1 error generated.
-configure:3295: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| /* end confdefs.h. */
-| #include
-configure:3334: result: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -E
-configure:3358: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -E conftest.c
-configure:3364: $? = 0
-configure:3396: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -E conftest.c
-conftest.c:12:10: fatal error: 'ac_nonexistent.h' file not found
-#include
- ^~~~~~~~~~~~~~~~~~
-1 error generated.
-configure:3402: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| /* end confdefs.h. */
-| #include
-configure:3539: checking for C++ compiler version
-configure:3542: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ --version &5
-emcc (Emscripten gcc/clang-like replacement) 1.38.34 (commit bab28f9a71a98006263006af2ee9229b700d8aa6)
-Copyright (C) 2014 the Emscripten authors (see AUTHORS.txt)
-This is free and open source software under the MIT license.
-There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:3545: $? = 0
-configure:3547: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -v &5
-emcc (Emscripten gcc/clang-like replacement + linker emulating GNU ld) 1.38.34
-clang version 6.0.1 (/b/s/w/ir/cache/git/chromium.googlesource.com-external-github.com-emscripten--core-emscripten--fastcomp--clang 98df4be387dde3e3918fa5bbb5fc43e1a0e1daac) (/b/s/w/ir/cache/git/chromium.googlesource.com-external-github.com-emscripten--core-emscripten--fastcomp 1b4148f39a69c7fc62edadd85e4122b68694dfb7) (emscripten 1.38.31 : 1.38.31)
-Target: x86_64-apple-darwin19.0.0
-Thread model: posix
-InstalledDir: /Users/james/tmp/emsdk/fastcomp/fastcomp/bin
-shared:INFO: (Emscripten: Running sanity checks)
-configure:3550: $? = 0
-configure:3552: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -V &5
-shared:ERROR: no input files
-note that input files without a known suffix are ignored, make sure your input files end with one of: ('.c', '.C', '.i', '.cpp', '.cxx', '.cc', '.c++', '.CPP', '.CXX', '.CC', '.C++', '.ii', '.m', '.mi', '.mm', '.mii', '/dev/null', '.bc', '.o', '.obj', '.lo', '.dylib', '.so', '.a', '.ll', '.h', '.hxx', '.hpp', '.hh', '.H', '.HXX', '.HPP', '.HH')
-configure:3555: $? = 1
-configure:3558: checking whether we are using the GNU C++ compiler
-configure:3582: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c conftest.cc >&5
-configure:3588: $? = 0
-configure:3592: test -z
- || test ! -s conftest.err
-configure:3595: $? = 0
-configure:3598: test -s conftest.o
-configure:3601: $? = 0
-configure:3614: result: yes
-configure:3620: checking whether /Users/james/tmp/emsdk/fastcomp/emscripten/em++ accepts -g
-configure:3641: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c -g conftest.cc >&5
-configure:3647: $? = 0
-configure:3651: test -z
- || test ! -s conftest.err
-configure:3654: $? = 0
-configure:3657: test -s conftest.o
-configure:3660: $? = 0
-configure:3671: result: yes
-configure:3713: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c -g -O2 conftest.cc >&5
-configure:3719: $? = 0
-configure:3723: test -z
- || test ! -s conftest.err
-configure:3726: $? = 0
-configure:3729: test -s conftest.o
-configure:3732: $? = 0
-configure:3758: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c -g -O2 conftest.cc >&5
-conftest.cc:16:1: error: use of undeclared identifier 'exit'
-exit (42);
-^
-1 error generated.
-shared:ERROR: compiler frontend failed to generate LLVM bitcode, halting
-configure:3764: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| /* end confdefs.h. */
-|
-| int
-| main ()
-| {
-| exit (42);
-| ;
-| return 0;
-| }
-configure:3713: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c -g -O2 conftest.cc >&5
-conftest.cc:12:17: error: use of undeclared identifier 'std'
-extern "C" void std::exit (int) throw (); using std::exit;
- ^
-conftest.cc:12:49: error: use of undeclared identifier 'std'
-extern "C" void std::exit (int) throw (); using std::exit;
- ^
-2 errors generated.
-shared:ERROR: compiler frontend failed to generate LLVM bitcode, halting
-configure:3719: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| /* end confdefs.h. */
-| extern "C" void std::exit (int) throw (); using std::exit;
-| #include
-| int
-| main ()
-| {
-| exit (42);
-| ;
-| return 0;
-| }
-configure:3713: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c -g -O2 conftest.cc >&5
-conftest.cc:12:17: error: use of undeclared identifier 'std'
-extern "C" void std::exit (int); using std::exit;
- ^
-conftest.cc:12:40: error: use of undeclared identifier 'std'
-extern "C" void std::exit (int); using std::exit;
- ^
-2 errors generated.
-shared:ERROR: compiler frontend failed to generate LLVM bitcode, halting
-configure:3719: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| /* end confdefs.h. */
-| extern "C" void std::exit (int); using std::exit;
-| #include
-| int
-| main ()
-| {
-| exit (42);
-| ;
-| return 0;
-| }
-configure:3713: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c -g -O2 conftest.cc >&5
-In file included from conftest.cc:13:
-In file included from /Users/james/tmp/emsdk/fastcomp/emscripten/system/include/libcxx/stdlib.h:94:
-In file included from /Users/james/tmp/emsdk/fastcomp/emscripten/system/include/compat/stdlib.h:14:
-/Users/james/tmp/emsdk/fastcomp/emscripten/system/include/libc/stdlib.h:46:16: error: 'exit' is missing exception specification 'throw()'
-_Noreturn void exit (int);
- ^
-conftest.cc:12:17: note: previous declaration is here
-extern "C" void exit (int) throw ();
- ^
-1 error generated.
-shared:ERROR: compiler frontend failed to generate LLVM bitcode, halting
-configure:3719: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| /* end confdefs.h. */
-| extern "C" void exit (int) throw ();
-| #include
-| int
-| main ()
-| {
-| exit (42);
-| ;
-| return 0;
-| }
-configure:3713: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c -g -O2 conftest.cc >&5
-configure:3719: $? = 0
-configure:3723: test -z
- || test ! -s conftest.err
-configure:3726: $? = 0
-configure:3729: test -s conftest.o
-configure:3732: $? = 0
-configure:3758: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c -g -O2 conftest.cc >&5
-configure:3764: $? = 0
-configure:3768: test -z
- || test ! -s conftest.err
-configure:3771: $? = 0
-configure:3774: test -s conftest.o
-configure:3777: $? = 0
-configure:3802: checking dependency style of /Users/james/tmp/emsdk/fastcomp/emscripten/em++
-configure:3892: result: gcc3
-configure:3914: checking how to run the C++ preprocessor
-configure:3945: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -E conftest.cc
-configure:3951: $? = 0
-configure:3983: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -E conftest.cc
-conftest.cc:15:10: fatal error: 'ac_nonexistent.h' file not found
-#include
- ^~~~~~~~~~~~~~~~~~
-1 error generated.
-configure:3989: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| #ifdef __cplusplus
-| extern "C" void exit (int);
-| #endif
-| /* end confdefs.h. */
-| #include
-configure:4028: result: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -E
-configure:4052: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -E conftest.cc
-configure:4058: $? = 0
-configure:4090: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -E conftest.cc
-conftest.cc:15:10: fatal error: 'ac_nonexistent.h' file not found
-#include
- ^~~~~~~~~~~~~~~~~~
-1 error generated.
-configure:4096: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| #ifdef __cplusplus
-| extern "C" void exit (int);
-| #endif
-| /* end confdefs.h. */
-| #include
-configure:4152: checking for a BSD-compatible install
-configure:4207: result: /usr/bin/install -c
-configure:4218: checking whether ln -s works
-configure:4222: result: yes
-configure:4229: checking whether make sets $(MAKE)
-configure:4253: result: no
-configure:4262: checking for perl
-configure:4280: found /usr/bin/perl
-configure:4292: result: /usr/bin/perl
-configure:4381: checking build system type
-configure:4399: result: i686-apple-darwin19.0.0
-configure:4407: checking host system type
-configure:4421: result: i686-apple-darwin19.0.0
-configure:4429: checking for a sed that does not truncate output
-configure:4483: result: /usr/bin/sed
-configure:4486: checking for egrep
-configure:4496: result: grep -E
-configure:4512: checking for ld used by /Users/james/tmp/emsdk/fastcomp/emscripten/emcc
-shared:ERROR: no input files
-note that input files without a known suffix are ignored, make sure your input files end with one of: ('.c', '.C', '.i', '.cpp', '.cxx', '.cc', '.c++', '.CPP', '.CXX', '.CC', '.C++', '.ii', '.m', '.mi', '.mm', '.mii', '/dev/null', '.bc', '.o', '.obj', '.lo', '.dylib', '.so', '.a', '.ll', '.h', '.hxx', '.hpp', '.hh', '.H', '.HXX', '.HPP', '.HH')
-configure:4579: result: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc
-configure:4588: checking if the linker (/Users/james/tmp/emsdk/fastcomp/emscripten/emcc) is GNU ld
-configure:4603: result: yes
-configure:4608: checking for /Users/james/tmp/emsdk/fastcomp/emscripten/emcc option to reload object files
-configure:4615: result: -r
-configure:4633: checking for BSD-compatible nm
-configure:4675: result: /Users/james/tmp/emsdk/fastcomp/fastcomp/bin/llvm-nm
-configure:4679: checking how to recognise dependent libraries
-configure:4851: result: pass_all
-configure:5061: checking for ANSI C header files
-configure:5086: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:5092: $? = 0
-configure:5096: test -z
- || test ! -s conftest.err
-configure:5099: $? = 0
-configure:5102: test -s conftest.o
-configure:5105: $? = 0
-configure:5194: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c >&5
-conftest.c:32:7: error: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' [-Werror,-Wimplicit-function-declaration]
- exit(2);
- ^
-conftest.c:32:7: note: include the header or explicitly provide a declaration for 'exit'
-1 error generated.
-shared:ERROR: compiler frontend failed to generate LLVM bitcode, halting
-configure:5197: $? = 1
-configure: program exited with status 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| #ifdef __cplusplus
-| extern "C" void exit (int);
-| #endif
-| /* end confdefs.h. */
-| #include
-| #if ((' ' & 0x0FF) == 0x020)
-| # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
-| # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
-| #else
-| # define ISLOWER(c) (('a' <= (c) && (c) <= 'i') || ('j' <= (c) && (c) <= 'r') || ('s' <= (c) && (c) <= 'z'))
-| # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
-| #endif
-|
-| #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
-| int
-| main ()
-| {
-| int i;
-| for (i = 0; i < 256; i++)
-| if (XOR (islower (i), ISLOWER (i))
-| || toupper (i) != TOUPPER (i))
-| exit(2);
-| exit (0);
-| }
-configure:5217: result: no
-configure:5241: checking for sys/types.h
-configure:5257: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:5263: $? = 0
-configure:5267: test -z
- || test ! -s conftest.err
-configure:5270: $? = 0
-configure:5273: test -s conftest.o
-configure:5276: $? = 0
-configure:5287: result: yes
-configure:5241: checking for sys/stat.h
-configure:5257: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:5263: $? = 0
-configure:5267: test -z
- || test ! -s conftest.err
-configure:5270: $? = 0
-configure:5273: test -s conftest.o
-configure:5276: $? = 0
-configure:5287: result: yes
-configure:5241: checking for stdlib.h
-configure:5257: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:5263: $? = 0
-configure:5267: test -z
- || test ! -s conftest.err
-configure:5270: $? = 0
-configure:5273: test -s conftest.o
-configure:5276: $? = 0
-configure:5287: result: yes
-configure:5241: checking for string.h
-configure:5257: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:5263: $? = 0
-configure:5267: test -z
- || test ! -s conftest.err
-configure:5270: $? = 0
-configure:5273: test -s conftest.o
-configure:5276: $? = 0
-configure:5287: result: yes
-configure:5241: checking for memory.h
-configure:5257: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:5263: $? = 0
-configure:5267: test -z
- || test ! -s conftest.err
-configure:5270: $? = 0
-configure:5273: test -s conftest.o
-configure:5276: $? = 0
-configure:5287: result: yes
-configure:5241: checking for strings.h
-configure:5257: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:5263: $? = 0
-configure:5267: test -z
- || test ! -s conftest.err
-configure:5270: $? = 0
-configure:5273: test -s conftest.o
-configure:5276: $? = 0
-configure:5287: result: yes
-configure:5241: checking for inttypes.h
-configure:5257: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:5263: $? = 0
-configure:5267: test -z
- || test ! -s conftest.err
-configure:5270: $? = 0
-configure:5273: test -s conftest.o
-configure:5276: $? = 0
-configure:5287: result: yes
-configure:5241: checking for stdint.h
-configure:5257: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:5263: $? = 0
-configure:5267: test -z
- || test ! -s conftest.err
-configure:5270: $? = 0
-configure:5273: test -s conftest.o
-configure:5276: $? = 0
-configure:5287: result: yes
-configure:5241: checking for unistd.h
-configure:5257: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:5263: $? = 0
-configure:5267: test -z
- || test ! -s conftest.err
-configure:5270: $? = 0
-configure:5273: test -s conftest.o
-configure:5276: $? = 0
-configure:5287: result: yes
-configure:5313: checking dlfcn.h usability
-configure:5325: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:5331: $? = 0
-configure:5335: test -z
- || test ! -s conftest.err
-configure:5338: $? = 0
-configure:5341: test -s conftest.o
-configure:5344: $? = 0
-configure:5354: result: yes
-configure:5358: checking dlfcn.h presence
-configure:5368: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -E conftest.c
-configure:5374: $? = 0
-configure:5394: result: yes
-configure:5429: checking for dlfcn.h
-configure:5436: result: yes
-configure:5459: checking how to run the C++ preprocessor
-configure:5573: result: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -E
-configure:5597: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -E conftest.cc
-configure:5603: $? = 0
-configure:5635: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -E conftest.cc
-conftest.cc:25:10: fatal error: 'ac_nonexistent.h' file not found
-#include
- ^~~~~~~~~~~~~~~~~~
-1 error generated.
-configure:5641: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| #ifdef __cplusplus
-| extern "C" void exit (int);
-| #endif
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| /* end confdefs.h. */
-| #include
-configure:5738: checking for g77
-configure:5767: result: no
-configure:5738: checking for f77
-configure:5767: result: no
-configure:5738: checking for xlf
-configure:5767: result: no
-configure:5738: checking for frt
-configure:5767: result: no
-configure:5738: checking for pgf77
-configure:5767: result: no
-configure:5738: checking for fort77
-configure:5767: result: no
-configure:5738: checking for fl32
-configure:5767: result: no
-configure:5738: checking for af77
-configure:5767: result: no
-configure:5738: checking for f90
-configure:5767: result: no
-configure:5738: checking for xlf90
-configure:5767: result: no
-configure:5738: checking for pgf90
-configure:5767: result: no
-configure:5738: checking for epcf90
-configure:5767: result: no
-configure:5738: checking for f95
-configure:5767: result: no
-configure:5738: checking for fort
-configure:5767: result: no
-configure:5738: checking for xlf95
-configure:5767: result: no
-configure:5738: checking for ifc
-configure:5767: result: no
-configure:5738: checking for efc
-configure:5767: result: no
-configure:5738: checking for pgf95
-configure:5767: result: no
-configure:5738: checking for lf95
-configure:5767: result: no
-configure:5738: checking for gfortran
-configure:5767: result: no
-configure:5779: checking for Fortran 77 compiler version
-configure:5782: --version &5
-./configure: line 5783: --version: command not found
-configure:5785: $? = 127
-configure:5787: -v &5
-./configure: line 5788: -v: command not found
-configure:5790: $? = 127
-configure:5792: -V &5
-./configure: line 5793: -V: command not found
-configure:5795: $? = 127
-configure:5803: checking whether we are using the GNU Fortran 77 compiler
-configure:5817: -c conftest.F >&5
-./configure: line 5818: -c: command not found
-configure:5823: $? = 127
-configure: failed program was:
-| program main
-| #ifndef __GNUC__
-| choke me
-| #endif
-|
-| end
-configure:5849: result: no
-configure:5855: checking whether accepts -g
-configure:5867: -c -g conftest.f >&5
-./configure: line 5868: -c: command not found
-configure:5873: $? = 127
-configure: failed program was:
-| program main
-|
-| end
-configure:5898: result: no
-configure:5928: checking the maximum length of command line arguments
-configure:6020: result: 196608
-configure:6031: checking command to parse /Users/james/tmp/emsdk/fastcomp/fastcomp/bin/llvm-nm output from /Users/james/tmp/emsdk/fastcomp/emscripten/emcc object
-configure:6127: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:6130: $? = 0
-configure:6134: /Users/james/tmp/emsdk/fastcomp/fastcomp/bin/llvm-nm conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
-configure:6137: $? = 0
-configure:6189: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c conftstm.o >&5
-configure:6192: $? = 0
-configure:6230: result: ok
-configure:6234: checking for objdir
-configure:6249: result: .libs
-configure:6339: checking for ar
-configure:6366: result: /Users/james/tmp/emsdk/fastcomp/emscripten/emar
-configure:6419: checking for ranlib
-configure:6446: result: /Users/james/tmp/emsdk/fastcomp/emscripten/emranlib
-configure:6499: checking for strip
-configure:6515: found /usr/bin/strip
-configure:6526: result: strip
-configure:6813: checking if /Users/james/tmp/emsdk/fastcomp/emscripten/emcc static flag works
-configure:6841: result: yes
-configure:6859: checking if /Users/james/tmp/emsdk/fastcomp/emscripten/emcc supports -fno-rtti -fno-exceptions
-configure:6877: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c -fno-rtti -fno-exceptions conftest.c >&5
-configure:6881: $? = 0
-configure:6894: result: yes
-configure:6909: checking for /Users/james/tmp/emsdk/fastcomp/emscripten/emcc option to produce PIC
-configure:7113: result: -fno-common
-configure:7121: checking if /Users/james/tmp/emsdk/fastcomp/emscripten/emcc PIC flag -fno-common works
-configure:7139: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c -fno-common -DPIC conftest.c >&5
-configure:7143: $? = 0
-configure:7156: result: yes
-configure:7180: checking if /Users/james/tmp/emsdk/fastcomp/emscripten/emcc supports -c -o file.o
-configure:7201: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c -o out/conftest2.o conftest.c >&5
-configure:7205: $? = 0
-configure:7227: result: yes
-configure:7253: checking whether the /Users/james/tmp/emsdk/fastcomp/emscripten/emcc linker (/Users/james/tmp/emsdk/fastcomp/emscripten/emcc) supports shared libraries
-configure:8149: result: yes
-configure:8175: checking whether -lc should be explicitly linked in
-configure:8180: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:8183: $? = 0
-configure:8197: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1
-configure:8200: $? = 1
-configure:8212: result: yes
-configure:8220: checking dynamic linker characteristics
-configure:8795: result: darwin19.0.0 dyld
-configure:8799: checking how to hardcode library paths into programs
-configure:8824: result: immediate
-configure:8838: checking whether stripping libraries is possible
-configure:8851: result: yes
-configure:9673: checking if libtool supports shared libraries
-configure:9675: result: yes
-configure:9678: checking whether to build shared libraries
-configure:9699: result: yes
-configure:9702: checking whether to build static libraries
-configure:9706: result: yes
-configure:9798: creating libtool
-configure:10376: checking for ld used by /Users/james/tmp/emsdk/fastcomp/emscripten/em++
-shared:ERROR: no input files
-note that input files without a known suffix are ignored, make sure your input files end with one of: ('.c', '.C', '.i', '.cpp', '.cxx', '.cc', '.c++', '.CPP', '.CXX', '.CC', '.C++', '.ii', '.m', '.mi', '.mm', '.mii', '/dev/null', '.bc', '.o', '.obj', '.lo', '.dylib', '.so', '.a', '.ll', '.h', '.hxx', '.hpp', '.hh', '.H', '.HXX', '.HPP', '.HH')
-configure:10443: result: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc
-configure:10452: checking if the linker (/Users/james/tmp/emsdk/fastcomp/emscripten/emcc) is GNU ld
-configure:10467: result: yes
-configure:10518: checking whether the /Users/james/tmp/emsdk/fastcomp/emscripten/em++ linker (/Users/james/tmp/emsdk/fastcomp/emscripten/emcc) supports shared libraries
-configure:11398: result: yes
-configure:11416: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c -g -O2 conftest.cpp >&5
-configure:11419: $? = 0
-configure:11529: checking for /Users/james/tmp/emsdk/fastcomp/emscripten/em++ option to produce PIC
-configure:11797: result: -fno-common
-configure:11805: checking if /Users/james/tmp/emsdk/fastcomp/emscripten/em++ PIC flag -fno-common works
-configure:11823: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c -g -O2 -fno-common -DPIC conftest.cpp >&5
-configure:11827: $? = 0
-configure:11840: result: yes
-configure:11864: checking if /Users/james/tmp/emsdk/fastcomp/emscripten/em++ supports -c -o file.o
-configure:11885: /Users/james/tmp/emsdk/fastcomp/emscripten/em++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
-configure:11889: $? = 0
-configure:11911: result: yes
-configure:11937: checking whether the /Users/james/tmp/emsdk/fastcomp/emscripten/em++ linker (/Users/james/tmp/emsdk/fastcomp/emscripten/emcc) supports shared libraries
-configure:11962: result: yes
-configure:12033: checking dynamic linker characteristics
-configure:12608: result: darwin19.0.0 dyld
-configure:12612: checking how to hardcode library paths into programs
-configure:12637: result: immediate
-configure:12651: checking whether stripping libraries is possible
-configure:12664: result: yes
-configure:20221: checking for pthread_create in -lpthread
-configure:20251: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c -lpthread >&5
-[0;33mwarning:[0m unexpected number of arguments 0 in call to 'pthread_create', should be 1
-configure:20257: $? = 0
-configure:20261: test -z
- || test ! -s conftest.err
-configure:20264: $? = 0
-configure:20267: test -s conftest
-configure:20270: $? = 0
-configure:20283: result: yes
-configure:20385: checking whether NLS is requested
-configure:20394: result: yes
-configure:20432: checking for msgfmt
-configure:20467: result: no
-configure:20473: checking for gmsgfmt
-configure:20504: result: :
-configure:20543: checking for xgettext
-configure:20578: result: no
-configure:20615: checking for msgmerge
-configure:20649: result: no
-configure:20682: checking whether we are using the GNU C Library 2 or newer
-configure:20713: result: no
-configure:20760: checking for ranlib
-configure:20787: result: /Users/james/tmp/emsdk/fastcomp/emscripten/emranlib
-configure:20799: checking for library containing strerror
-configure:20829: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c -lpthread >&5
-conftest.c:33:6: warning: incompatible redeclaration of library function 'strerror' [-Wincompatible-library-redeclaration]
-char strerror ();
- ^
-conftest.c:33:6: note: 'strerror' is a builtin with type 'char *(int)'
-1 warning generated.
-[0;33mwarning:[0m unexpected number of arguments 0 in call to 'strerror', should be 1
-configure:20835: $? = 0
-configure:20839: test -z
- || test ! -s conftest.err
-configure:20842: $? = 0
-configure:20845: test -s conftest
-configure:20848: $? = 0
-configure:20918: result: none required
-configure:20925: checking for an ANSI C-conforming const
-configure:20992: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:20998: $? = 0
-configure:21002: test -z
- || test ! -s conftest.err
-configure:21005: $? = 0
-configure:21008: test -s conftest.o
-configure:21011: $? = 0
-configure:21022: result: yes
-configure:21033: checking for signed
-configure:21054: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:21060: $? = 0
-configure:21064: test -z
- || test ! -s conftest.err
-configure:21067: $? = 0
-configure:21070: test -s conftest.o
-configure:21073: $? = 0
-configure:21084: result: yes
-configure:21094: checking for inline
-configure:21115: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:21121: $? = 0
-configure:21125: test -z
- || test ! -s conftest.err
-configure:21128: $? = 0
-configure:21131: test -s conftest.o
-configure:21134: $? = 0
-configure:21146: result: inline
-configure:21165: checking for off_t
-configure:21189: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:21195: $? = 0
-configure:21199: test -z
- || test ! -s conftest.err
-configure:21202: $? = 0
-configure:21205: test -s conftest.o
-configure:21208: $? = 0
-configure:21219: result: yes
-configure:21231: checking for size_t
-configure:21255: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:21261: $? = 0
-configure:21265: test -z
- || test ! -s conftest.err
-configure:21268: $? = 0
-configure:21271: test -s conftest.o
-configure:21274: $? = 0
-configure:21285: result: yes
-configure:21298: checking for long long
-configure:21320: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c -lpthread >&5
-configure:21326: $? = 0
-configure:21330: test -z
- || test ! -s conftest.err
-configure:21333: $? = 0
-configure:21336: test -s conftest
-configure:21339: $? = 0
-configure:21351: result: yes
-configure:21362: checking for long double
-configure:21422: result: yes
-configure:21433: checking for wchar_t
-configure:21455: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:21461: $? = 0
-configure:21465: test -z
- || test ! -s conftest.err
-configure:21468: $? = 0
-configure:21471: test -s conftest.o
-configure:21474: $? = 0
-configure:21485: result: yes
-configure:21496: checking for wint_t
-configure:21518: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:21524: $? = 0
-configure:21528: test -z
- || test ! -s conftest.err
-configure:21531: $? = 0
-configure:21534: test -s conftest.o
-configure:21537: $? = 0
-configure:21548: result: yes
-configure:21559: checking for inttypes.h
-configure:21581: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:21587: $? = 0
-configure:21591: test -z
- || test ! -s conftest.err
-configure:21594: $? = 0
-configure:21597: test -s conftest.o
-configure:21600: $? = 0
-configure:21611: result: yes
-configure:21622: checking for stdint.h
-configure:21644: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:21650: $? = 0
-configure:21654: test -z
- || test ! -s conftest.err
-configure:21657: $? = 0
-configure:21660: test -s conftest.o
-configure:21663: $? = 0
-configure:21674: result: yes
-configure:21687: checking for intmax_t
-configure:21717: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:21723: $? = 0
-configure:21727: test -z
- || test ! -s conftest.err
-configure:21730: $? = 0
-configure:21733: test -s conftest.o
-configure:21736: $? = 0
-configure:21747: result: yes
-configure:21759: checking whether printf() supports POSIX/XSI format strings
-configure:21809: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c -lpthread >&5
-configure:21812: $? = 0
-configure:21814: ./conftest
-configure:21817: $? = 0
-configure:21832: result: yes
-configure:21846: checking for working alloca.h
-configure:21867: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c -lpthread >&5
-configure:21873: $? = 0
-configure:21877: test -z
- || test ! -s conftest.err
-configure:21880: $? = 0
-configure:21883: test -s conftest
-configure:21886: $? = 0
-configure:21898: result: yes
-configure:21908: checking for alloca
-configure:21949: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c -lpthread >&5
-configure:21955: $? = 0
-configure:21959: test -z
- || test ! -s conftest.err
-configure:21962: $? = 0
-configure:21965: test -s conftest
-configure:21968: $? = 0
-configure:21980: result: yes
-configure:22209: checking for stdlib.h
-configure:22214: result: yes
-configure:22209: checking for unistd.h
-configure:22214: result: yes
-configure:22358: checking for getpagesize
-configure:22415: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c -lpthread >&5
-configure:22421: $? = 0
-configure:22425: test -z
- || test ! -s conftest.err
-configure:22428: $? = 0
-configure:22431: test -s conftest
-configure:22434: $? = 0
-configure:22446: result: yes
-configure:22456: checking for working mmap
-configure:22598: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c -lpthread >&5
-configure:22601: $? = 0
-configure:22603: ./conftest
-configure:22606: $? = 1
-configure: program exited with status 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| #ifdef __cplusplus
-| extern "C" void exit (int);
-| #endif
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define HAVE_LIBPTHREAD 1
-| #define HAVE_LONG_LONG 1
-| #define HAVE_LONG_DOUBLE 1
-| #define HAVE_WCHAR_T 1
-| #define HAVE_WINT_T 1
-| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
-| #define HAVE_STDINT_H_WITH_UINTMAX 1
-| #define HAVE_INTMAX_T 1
-| #define HAVE_POSIX_PRINTF 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_ALLOCA 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_GETPAGESIZE 1
-| /* end confdefs.h. */
-| #include
-| #if HAVE_SYS_TYPES_H
-| # include
-| #endif
-| #if HAVE_SYS_STAT_H
-| # include
-| #endif
-| #if STDC_HEADERS
-| # include
-| # include
-| #else
-| # if HAVE_STDLIB_H
-| # include
-| # endif
-| #endif
-| #if HAVE_STRING_H
-| # if !STDC_HEADERS && HAVE_MEMORY_H
-| # include
-| # endif
-| # include
-| #endif
-| #if HAVE_STRINGS_H
-| # include
-| #endif
-| #if HAVE_INTTYPES_H
-| # include
-| #else
-| # if HAVE_STDINT_H
-| # include
-| # endif
-| #endif
-| #if HAVE_UNISTD_H
-| # include
-| #endif
-| /* malloc might have been renamed as rpl_malloc. */
-| #undef malloc
-|
-| /* Thanks to Mike Haertel and Jim Avera for this test.
-| Here is a matrix of mmap possibilities:
-| mmap private not fixed
-| mmap private fixed at somewhere currently unmapped
-| mmap private fixed at somewhere already mapped
-| mmap shared not fixed
-| mmap shared fixed at somewhere currently unmapped
-| mmap shared fixed at somewhere already mapped
-| For private mappings, we should verify that changes cannot be read()
-| back from the file, nor mmap's back from the file at a different
-| address. (There have been systems where private was not correctly
-| implemented like the infamous i386 svr4.0, and systems where the
-| VM page cache was not coherent with the file system buffer cache
-| like early versions of FreeBSD and possibly contemporary NetBSD.)
-| For shared mappings, we should conversely verify that changes get
-| propagated back to all the places they're supposed to be.
-|
-| Grep wants private fixed already mapped.
-| The main things grep needs to know about mmap are:
-| * does it exist and is it safe to write into the mmap'd area
-| * how to use it (BSD variants) */
-|
-| #include
-| #include
-|
-| #if !STDC_HEADERS && !HAVE_STDLIB_H
-| char *malloc ();
-| #endif
-|
-| /* This mess was copied from the GNU getpagesize.h. */
-| #if !HAVE_GETPAGESIZE
-| /* Assume that all systems that can run configure have sys/param.h. */
-| # if !HAVE_SYS_PARAM_H
-| # define HAVE_SYS_PARAM_H 1
-| # endif
-|
-| # ifdef _SC_PAGESIZE
-| # define getpagesize() sysconf(_SC_PAGESIZE)
-| # else /* no _SC_PAGESIZE */
-| # if HAVE_SYS_PARAM_H
-| # include
-| # ifdef EXEC_PAGESIZE
-| # define getpagesize() EXEC_PAGESIZE
-| # else /* no EXEC_PAGESIZE */
-| # ifdef NBPG
-| # define getpagesize() NBPG * CLSIZE
-| # ifndef CLSIZE
-| # define CLSIZE 1
-| # endif /* no CLSIZE */
-| # else /* no NBPG */
-| # ifdef NBPC
-| # define getpagesize() NBPC
-| # else /* no NBPC */
-| # ifdef PAGESIZE
-| # define getpagesize() PAGESIZE
-| # endif /* PAGESIZE */
-| # endif /* no NBPC */
-| # endif /* no NBPG */
-| # endif /* no EXEC_PAGESIZE */
-| # else /* no HAVE_SYS_PARAM_H */
-| # define getpagesize() 8192 /* punt totally */
-| # endif /* no HAVE_SYS_PARAM_H */
-| # endif /* no _SC_PAGESIZE */
-|
-| #endif /* no HAVE_GETPAGESIZE */
-|
-| int
-| main ()
-| {
-| char *data, *data2, *data3;
-| int i, pagesize;
-| int fd;
-|
-| pagesize = getpagesize ();
-|
-| /* First, make a file with some known garbage in it. */
-| data = (char *) malloc (pagesize);
-| if (!data)
-| exit (1);
-| for (i = 0; i < pagesize; ++i)
-| *(data + i) = rand ();
-| umask (0);
-| fd = creat ("conftest.mmap", 0600);
-| if (fd < 0)
-| exit (1);
-| if (write (fd, data, pagesize) != pagesize)
-| exit (1);
-| close (fd);
-|
-| /* Next, try to mmap the file at a fixed address which already has
-| something else allocated at it. If we can, also make sure that
-| we see the same garbage. */
-| fd = open ("conftest.mmap", O_RDWR);
-| if (fd < 0)
-| exit (1);
-| data2 = (char *) malloc (2 * pagesize);
-| if (!data2)
-| exit (1);
-| data2 += (pagesize - ((long) data2 & (pagesize - 1))) & (pagesize - 1);
-| if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE,
-| MAP_PRIVATE | MAP_FIXED, fd, 0L))
-| exit (1);
-| for (i = 0; i < pagesize; ++i)
-| if (*(data + i) != *(data2 + i))
-| exit (1);
-|
-| /* Finally, make sure that changes to the mapped area do not
-| percolate back to the file as seen by read(). (This is a bug on
-| some variants of i386 svr4.0.) */
-| for (i = 0; i < pagesize; ++i)
-| *(data2 + i) = *(data2 + i) + 1;
-| data3 = (char *) malloc (pagesize);
-| if (!data3)
-| exit (1);
-| if (read (fd, data3, pagesize) != pagesize)
-| exit (1);
-| for (i = 0; i < pagesize; ++i)
-| if (*(data + i) != *(data3 + i))
-| exit (1);
-| close (fd);
-| exit (0);
-| }
-configure:22620: result: no
-configure:22632: checking whether we are using the GNU C Library 2.1 or newer
-configure:22663: result: no
-configure:22671: checking whether integer division by zero raises SIGFPE
-configure:22733: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c -lpthread >&5
-conftest.c:57:5: error: redefinition of 'nan' as different kind of symbol
-int nan;
- ^
-conftest.c:57:5: note: unguarded header; consider using #ifdef guards or #pragma once
-conftest.c:57:5: note: previous definition is here
-conftest.c:72:7: error: non-object type 'double (const char *)' is not assignable
- nan = y / y;
- ~~~ ^
-2 errors generated.
-shared:ERROR: compiler frontend failed to generate LLVM bitcode, halting
-configure:22736: $? = 1
-configure: program exited with status 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| #ifdef __cplusplus
-| extern "C" void exit (int);
-| #endif
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define HAVE_LIBPTHREAD 1
-| #define HAVE_LONG_LONG 1
-| #define HAVE_LONG_DOUBLE 1
-| #define HAVE_WCHAR_T 1
-| #define HAVE_WINT_T 1
-| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
-| #define HAVE_STDINT_H_WITH_UINTMAX 1
-| #define HAVE_INTMAX_T 1
-| #define HAVE_POSIX_PRINTF 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_ALLOCA 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_GETPAGESIZE 1
-| /* end confdefs.h. */
-|
-| #include
-| #include
-|
-| static void
-| #ifdef __cplusplus
-| sigfpe_handler (int sig)
-| #else
-| sigfpe_handler (sig) int sig;
-| #endif
-| {
-| /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */
-| exit (sig != SIGFPE);
-| }
-|
-| int x = 1;
-| int y = 0;
-| int z;
-| int nan;
-|
-| int main ()
-| {
-| signal (SIGFPE, sigfpe_handler);
-| /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */
-| #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
-| signal (SIGTRAP, sigfpe_handler);
-| #endif
-| /* Linux/SPARC yields signal SIGILL. */
-| #if defined (__sparc__) && defined (__linux__)
-| signal (SIGILL, sigfpe_handler);
-| #endif
-|
-| z = x / y;
-| nan = y / y;
-| exit (1);
-| }
-|
-configure:22756: result: no
-configure:22769: checking for unsigned long long
-configure:22791: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest conftest.c -lpthread >&5
-configure:22797: $? = 0
-configure:22801: test -z
- || test ! -s conftest.err
-configure:22804: $? = 0
-configure:22807: test -s conftest
-configure:22810: $? = 0
-configure:22822: result: yes
-configure:22854: checking for inttypes.h
-configure:22877: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:22883: $? = 0
-configure:22887: test -z
- || test ! -s conftest.err
-configure:22890: $? = 0
-configure:22893: test -s conftest.o
-configure:22896: $? = 0
-configure:22908: result: yes
-configure:22921: checking whether the inttypes.h PRIxNN macros are broken
-configure:22947: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-configure:22953: $? = 0
-configure:22957: test -z
- || test ! -s conftest.err
-configure:22960: $? = 0
-configure:22963: test -s conftest.o
-configure:22966: $? = 0
-configure:22978: result: no
-configure:22995: checking for stdint.h
-configure:23000: result: yes
-configure:23140: checking for SIZE_MAX
-configure:24209: result: yes
-configure:24227: checking for stdint.h
-configure:24232: result: yes
-configure:24374: checking for CFPreferencesCopyAppValue
-configure:24399: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest -I/System/Library/Frameworks/CoreFoundation.framework/Headers conftest.c -lpthread -framework CoreFoundation >&5
-shared:ERROR: CoreFoundation: No such file or directory ("CoreFoundation" was expected to be an input file, based on the commandline arguments provided)
-configure:24405: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| #ifdef __cplusplus
-| extern "C" void exit (int);
-| #endif
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define HAVE_LIBPTHREAD 1
-| #define HAVE_LONG_LONG 1
-| #define HAVE_LONG_DOUBLE 1
-| #define HAVE_WCHAR_T 1
-| #define HAVE_WINT_T 1
-| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
-| #define HAVE_STDINT_H_WITH_UINTMAX 1
-| #define HAVE_INTMAX_T 1
-| #define HAVE_POSIX_PRINTF 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_ALLOCA 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_GETPAGESIZE 1
-| #define INTDIV0_RAISES_SIGFPE 0
-| #define HAVE_UNSIGNED_LONG_LONG 1
-| #define HAVE_UINTMAX_T 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDINT_H 1
-| /* end confdefs.h. */
-| #include
-| int
-| main ()
-| {
-| CFPreferencesCopyAppValue(NULL, NULL)
-| ;
-| return 0;
-| }
-configure:24432: result: no
-configure:24441: checking for CFLocaleCopyCurrent
-configure:24466: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -o conftest -I/System/Library/Frameworks/CoreFoundation.framework/Headers conftest.c -lpthread -framework CoreFoundation >&5
-shared:ERROR: CoreFoundation: No such file or directory ("CoreFoundation" was expected to be an input file, based on the commandline arguments provided)
-configure:24472: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| #ifdef __cplusplus
-| extern "C" void exit (int);
-| #endif
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define HAVE_LIBPTHREAD 1
-| #define HAVE_LONG_LONG 1
-| #define HAVE_LONG_DOUBLE 1
-| #define HAVE_WCHAR_T 1
-| #define HAVE_WINT_T 1
-| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
-| #define HAVE_STDINT_H_WITH_UINTMAX 1
-| #define HAVE_INTMAX_T 1
-| #define HAVE_POSIX_PRINTF 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_ALLOCA 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_GETPAGESIZE 1
-| #define INTDIV0_RAISES_SIGFPE 0
-| #define HAVE_UNSIGNED_LONG_LONG 1
-| #define HAVE_UINTMAX_T 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDINT_H 1
-| /* end confdefs.h. */
-| #include
-| int
-| main ()
-| {
-| CFLocaleCopyCurrent();
-| ;
-| return 0;
-| }
-configure:24499: result: no
-configure:24554: checking for ld used by GCC
-shared:ERROR: no input files
-note that input files without a known suffix are ignored, make sure your input files end with one of: ('.c', '.C', '.i', '.cpp', '.cxx', '.cc', '.c++', '.CPP', '.CXX', '.CC', '.C++', '.ii', '.m', '.mi', '.mm', '.mii', '/dev/null', '.bc', '.o', '.obj', '.lo', '.dylib', '.so', '.a', '.ll', '.h', '.hxx', '.hpp', '.hh', '.H', '.HXX', '.HPP', '.HH')
-configure:24618: result: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc
-configure:24627: checking if the linker (/Users/james/tmp/emsdk/fastcomp/emscripten/emcc) is GNU ld
-configure:24640: result: yes
-configure:24647: checking for shared library run path origin
-configure:24660: result: done
-configure:25066: checking for ptrdiff_t
-configure:25090: /Users/james/tmp/emsdk/fastcomp/emscripten/emcc -c conftest.c >&5
-conftest.c:82:17: error: expected expression
-if ((ptrdiff_t *) 0)
- ^
-conftest.c:82:6: error: use of undeclared identifier 'ptrdiff_t'
-if ((ptrdiff_t *) 0)
- ^
-conftest.c:84:13: error: use of undeclared identifier 'ptrdiff_t'
-if (sizeof (ptrdiff_t))
- ^
-3 errors generated.
-shared:ERROR: compiler frontend failed to generate LLVM bitcode, halting
-configure:25096: $? = 1
-configure: failed program was:
-| /* confdefs.h. */
-|
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define SP_MULTI_BYTE 1
-| #define SP_PACKAGE "OpenSP"
-| #define SP_VERSION "1.5.2"
-| #ifdef __cplusplus
-| extern "C" void exit (int);
-| #endif
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define HAVE_LIBPTHREAD 1
-| #define HAVE_LONG_LONG 1
-| #define HAVE_LONG_DOUBLE 1
-| #define HAVE_WCHAR_T 1
-| #define HAVE_WINT_T 1
-| #define HAVE_INTTYPES_H_WITH_UINTMAX 1
-| #define HAVE_STDINT_H_WITH_UINTMAX 1
-| #define HAVE_INTMAX_T 1
-| #define HAVE_POSIX_PRINTF 1
-| #define HAVE_ALLOCA_H 1
-| #define HAVE_ALLOCA 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_GETPAGESIZE 1
-| #define INTDIV0_RAISES_SIGFPE 0
-| #define HAVE_UNSIGNED_LONG_LONG 1
-| #define HAVE_UINTMAX_T 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_STDINT_H 1
-| /* end confdefs.h. */
-| #include
-| #if HAVE_SYS_TYPES_H
-| # include
-| #endif
-| #if HAVE_SYS_STAT_H
-| # include
-| #endif
-| #if STDC_HEADERS
-| # include
-| # include