diff --git a/.gitignore b/.gitignore
index 8d7486408..ecfcda3a4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -29,7 +29,6 @@ compile/
*.lss
*.map
*.sym
-build/
Makefile
Makefile.in
src/compile
diff --git a/src/build/linux/Makefile b/src/build/linux/Makefile
new file mode 100644
index 000000000..294125bed
--- /dev/null
+++ b/src/build/linux/Makefile
@@ -0,0 +1,81 @@
+###############################################################################
+#
+# Master Makefile for Engine
+#
+# This file invokes the makefiles for specific projects as needed.
+#
+# Typically used targets:
+# make debug Builds the debug version of all applications
+# make release Builds the release version of all applications
+# make publish Does the same thing as "make debug", then copies the
+# newly-build executables to the exe/linux directory
+###############################################################################
+###############################################################################
+# Definitions and includes
+###############################################################################
+
+SRCDIR =../..
+ENGINE_MAKE_DIR =$(SRCDIR)/engine/build/linux
+GAME_MAKE_DIR =$(SRCDIR)/game/build/linux
+
+###############################################################################
+# Rules to invoke the makefiles for specific applications
+###############################################################################
+
+debug_engine:
+ +@make -C $(ENGINE_MAKE_DIR) engine_debug
+
+debug_game:
+ +@make -C $(GAME_MAKE_DIR) game_debug
+
+debug:
+ +@make -C $(GAME_MAKE_DIR) debug_libs
+ +@make debug_engine
+ +@make debug_game
+
+###############################################################################
+# Special targets
+###############################################################################
+
+clean_engine:
+ +@make -C $(ENGINE_MAKE_DIR) clean
+
+clean_game:
+ +@make -C $(GAME_MAKE_DIR) clean
+
+clean: clean_engine clean_game
+
+
+lint_engine:
+ +@make -C $(ENGINE_MAKE_DIR) lint
+
+lint_game:
+ +@make -C $(GAME_MAKE_DIR) lint
+
+lint: lint_engine lint_game
+
+###############################################################################
+# More Special targets
+###############################################################################
+
+cleanall:
+ @find $(SRCDIR) -name .depend -exec rm {} \;
+ @find $(SRCDIR) -name "*.d" -exec rm -f {} \;
+ @find $(SRCDIR) -type d -name compile -depth -exec rm -rf {} \;
+ @find $(SRCDIR) -name "*.o" -exec rm -f {} \;
+ @find $(SRCDIR) -name "*.a" | grep -v libz.a | grep -v libpcre.a | xargs rm -f;
+# TODO So the above is pretty hacky, we stillhave these two lame .a files checked into p4.
+
+cleandepend:
+ @find $(SRCDIR) -name .depend -exec rm {} \;
+
+#dependcheck: .cppsums
+# -@mv .cppsums .cppsums~
+# @find $(SRCDIR) -name "*.cpp" | sum > .cppsums
+# @if ! /usr/bin/diff .cppsums .cppsums~ > /dev/null; then find $(SRCDIR) -name .depend -exec rm {} \; ; fi;
+# @rm .cppsums~
+
+#.cppsums:
+# @find $(SRCDIR) -name .depend -exec rm {} \;
+# @find $(SRCDIR) -name "*.cpp" | sum > .cppsums
+
diff --git a/src/build/linux/Makefile.am b/src/build/linux/Makefile.am
new file mode 100644
index 000000000..19593cbff
--- /dev/null
+++ b/src/build/linux/Makefile.am
@@ -0,0 +1,4 @@
+lib_LTLIBRARIES=libSharedFoundation.la
+##libSharedFoundation_la_SOURCES=/swg/swg/current/src/engine/shared/library/sharedFoundation/src/linux/vsnprintf.cpp
+libSharedFoundation_la_SOURCES=$(mysources)
+AM_CPPFLAGS=-I$(base_dir_soe_shared_foundation)/include/public -I $(libSharedFoundation_la_SOURCES)
diff --git a/src/build/shared/Makefile b/src/build/shared/Makefile
new file mode 100644
index 000000000..81af89d9d
--- /dev/null
+++ b/src/build/shared/Makefile
@@ -0,0 +1,17 @@
+#
+# Copyright 2001, Sony Online Entertainment, Inc.
+# All Rights Reserved.
+#
+# Makefile for creating Emacs workspace data file for fast workspace
+# file opening.
+
+WORKSPACE_FILENAME=swg.ews
+PERL=perl
+
+all:
+ $(PERL) -w make_workspace.pl ../.. > ${WORKSPACE_FILENAME}
+ $(PERL) -w make_workspace.pl ../../../tools >> ${WORKSPACE_FILENAME}
+ $(PERL) -w make_workspace.pl ../../../dsrc >> ${WORKSPACE_FILENAME}
+
+clean:
+ rm -f ${WORKSPACE_FILENAME}
diff --git a/src/build/shared/make_workspace.pl b/src/build/shared/make_workspace.pl
new file mode 100644
index 000000000..68cb92c41
--- /dev/null
+++ b/src/build/shared/make_workspace.pl
@@ -0,0 +1,56 @@
+#!/usr/bin/perl
+
+use File::Find;
+
+# Process command line arguments.
+while ($ARGV[0] =~ /^-/)
+{
+ $_ = shift;
+
+ if ($_ eq "--debug")
+ {
+ $debug = 1;
+ }
+ else
+ {
+ die "unknown command line option";
+ }
+}
+
+# Determine directory to run this on.
+@findDirs = @ARGV ? @ARGV : ('.');
+
+# Scan for appropriate files.
+find(\&FindHandler, @findDirs);
+
+# Done.
+exit(0);
+
+# ===================================================================
+
+sub FindHandler
+{
+ if (-d $_)
+ {
+ # Examining a directory entry.
+
+ # Prune the directory if it's one I want to ignore. This
+ # stops the program from descending any further down this directory.
+ if (m/^(compile|external|Debug|Optimized|Production|Release)$/i)
+ {
+ # Prune it.
+ $File::Find::prune = 1;
+ print STDERR "[Pruned Directory Entry: $File::Find::name]\n" if ($debug);
+ }
+ }
+ elsif (-f $_)
+ {
+ # Handle files that should go in the workspace file.
+ if (m/^.*(c|cpp|def|h|hpp|java|lnt|pl|pm|py|script(?:lib)?|sql|tab|txt)$/)
+ {
+ print "$_:$File::Find::dir/\n";
+ }
+ }
+}
+
+# ===================================================================
diff --git a/src/build/win32/_all.vcproj b/src/build/win32/_all.vcproj
new file mode 100644
index 000000000..7651d7933
--- /dev/null
+++ b/src/build/win32/_all.vcproj
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/build/win32/_all.vcxproj b/src/build/win32/_all.vcxproj
new file mode 100644
index 000000000..9ba582751
--- /dev/null
+++ b/src/build/win32/_all.vcxproj
@@ -0,0 +1,91 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {B333AC21-A6B4-4F5E-92A9-98335FB8C4AE}
+ MakeFileProj
+
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+
+ ./_all.tlb
+
+
+
+
+
+ ./_all.tlb
+
+
+
+
+
+ ./_all.tlb
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/build/win32/_all_client.vcproj b/src/build/win32/_all_client.vcproj
new file mode 100644
index 000000000..ec85aa683
--- /dev/null
+++ b/src/build/win32/_all_client.vcproj
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/build/win32/_all_client.vcxproj b/src/build/win32/_all_client.vcxproj
new file mode 100644
index 000000000..bbce5363a
--- /dev/null
+++ b/src/build/win32/_all_client.vcxproj
@@ -0,0 +1,91 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {A4AC1380-D2AB-4B0D-824A-4918680F5CA4}
+ MakeFileProj
+
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+
+ ./_all_client.tlb
+
+
+
+
+
+ ./_all_client.tlb
+
+
+
+
+
+ ./_all_client.tlb
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/build/win32/_all_client_libraries.vcproj b/src/build/win32/_all_client_libraries.vcproj
new file mode 100644
index 000000000..1d2d89fdf
--- /dev/null
+++ b/src/build/win32/_all_client_libraries.vcproj
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/build/win32/_all_client_libraries.vcxproj b/src/build/win32/_all_client_libraries.vcxproj
new file mode 100644
index 000000000..0e9d3e1b8
--- /dev/null
+++ b/src/build/win32/_all_client_libraries.vcxproj
@@ -0,0 +1,91 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {7986223E-4B89-44B1-AED5-716A5562AAB6}
+ MakeFileProj
+
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+
+ ./_all_client_libraries.tlb
+
+
+
+
+
+ ./_all_client_libraries.tlb
+
+
+
+
+
+ ./_all_client_libraries.tlb
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/build/win32/_all_server.vcproj b/src/build/win32/_all_server.vcproj
new file mode 100644
index 000000000..3889b6d33
--- /dev/null
+++ b/src/build/win32/_all_server.vcproj
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/build/win32/_all_server.vcxproj b/src/build/win32/_all_server.vcxproj
new file mode 100644
index 000000000..5916305a6
--- /dev/null
+++ b/src/build/win32/_all_server.vcxproj
@@ -0,0 +1,91 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {52961080-869C-4053-84B4-44D4DEC48B8B}
+ MakeFileProj
+
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+
+ ./_all_server.tlb
+
+
+
+
+
+ ./_all_server.tlb
+
+
+
+
+
+ ./_all_server.tlb
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/build/win32/_all_server_libraries.vcproj b/src/build/win32/_all_server_libraries.vcproj
new file mode 100644
index 000000000..df044a848
--- /dev/null
+++ b/src/build/win32/_all_server_libraries.vcproj
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/build/win32/_all_server_libraries.vcxproj b/src/build/win32/_all_server_libraries.vcxproj
new file mode 100644
index 000000000..f17dbb636
--- /dev/null
+++ b/src/build/win32/_all_server_libraries.vcxproj
@@ -0,0 +1,91 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {D1FB68C1-A139-4458-9984-1514AC15AC81}
+ MakeFileProj
+
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+
+ ./_all_server_libraries.tlb
+
+
+
+
+
+ ./_all_server_libraries.tlb
+
+
+
+
+
+ ./_all_server_libraries.tlb
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/build/win32/_all_shared_libraries.vcproj b/src/build/win32/_all_shared_libraries.vcproj
new file mode 100644
index 000000000..69a149277
--- /dev/null
+++ b/src/build/win32/_all_shared_libraries.vcproj
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/build/win32/_all_shared_libraries.vcxproj b/src/build/win32/_all_shared_libraries.vcxproj
new file mode 100644
index 000000000..afb7609d3
--- /dev/null
+++ b/src/build/win32/_all_shared_libraries.vcxproj
@@ -0,0 +1,91 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {BEAAA971-E712-4662-A9EE-35AFA3D3F231}
+ MakeFileProj
+
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+
+ ./_all_shared_libraries.tlb
+
+
+
+
+
+ ./_all_shared_libraries.tlb
+
+
+
+
+
+ ./_all_shared_libraries.tlb
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/build/win32/_all_tools.vcproj b/src/build/win32/_all_tools.vcproj
new file mode 100644
index 000000000..94e4f17ea
--- /dev/null
+++ b/src/build/win32/_all_tools.vcproj
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/build/win32/_all_tools.vcxproj b/src/build/win32/_all_tools.vcxproj
new file mode 100644
index 000000000..d2fc939a2
--- /dev/null
+++ b/src/build/win32/_all_tools.vcxproj
@@ -0,0 +1,91 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {CE9F4DC5-8DAC-4704-925C-0E7D0581375C}
+ MakeFileProj
+
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+ Utility
+ v120
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+ .\
+ .\
+
+
+
+ ./_all_tools.tlb
+
+
+
+
+
+ ./_all_tools.tlb
+
+
+
+
+
+ ./_all_tools.tlb
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/build/win32/swg.sln b/src/build/win32/swg.sln
new file mode 100644
index 000000000..8a34da8aa
--- /dev/null
+++ b/src/build/win32/swg.sln
@@ -0,0 +1,2978 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 2013
+VisualStudioVersion = 12.0.31101.0
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AnimationEditor", "..\..\engine\client\application\AnimationEditor\build\win32\AnimationEditor.vcxproj", "{AB9A58E2-734B-45E4-B4BB-C7E9FF6ACA3F}"
+ ProjectSection(ProjectDependencies) = postProject
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ {03F3C054-F380-4618-BE46-6E25061A3587} = {03F3C054-F380-4618-BE46-6E25061A3587}
+ {EAA23F07-4419-4AED-83D2-06654119B6F6} = {EAA23F07-4419-4AED-83D2-06654119B6F6}
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4} = {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D} = {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39} = {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4} = {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264} = {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A} = {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA} = {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ArmorExporterTool", "..\..\engine\shared\application\ArmorExporterTool\build\win32\ArmorExporterTool.vcxproj", "{86D00284-6EAE-4D6C-989F-585AB5B44A14}"
+ ProjectSection(ProjectDependencies) = postProject
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069} = {F8271BF7-CFBF-4DE3-84BB-428058E0B069}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Base", "..\..\external\3rd\library\platform\utils\Base\win32\Base.vcxproj", "{3D6683D1-EAAE-4448-BE3A-8EE545E9592B}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BugTool", "..\..\engine\client\application\BugTool\build\win32\BugTool.vcxproj", "{C05E2B2B-A9A1-4E7E-A35D-2342AF49774E}"
+ ProjectSection(ProjectDependencies) = postProject
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CentralServer", "..\..\engine\server\application\CentralServer\build\win32\CentralServer.vcxproj", "{D5CA7486-D01E-4DCB-883B-8E60F7F64D26}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {4F237764-394D-40CB-9314-DAEDED42E2CD} = {4F237764-394D-40CB-9314-DAEDED42E2CD}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4} = {4EFF0958-FBC8-4053-971A-7022EB0035E4}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {38DF394C-0909-4507-8029-53D960FEA464} = {38DF394C-0909-4507-8029-53D960FEA464}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54} = {861A873C-D6AD-4B8A-9BED-0314A8B74B54}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE} = {67BFDA04-F26E-497F-A6FE-EE52550C15FE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ChatServer", "..\..\engine\server\APPLICATION\CHATSERVER\build\win32\ChatServer.vcxproj", "{30115B9B-5669-4AA0-80BE-1DF73F5F2450}"
+ ProjectSection(ProjectDependencies) = postProject
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE} = {67BFDA04-F26E-497F-A6FE-EE52550C15FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4} = {4EFF0958-FBC8-4053-971A-7022EB0035E4}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {38DF394C-0909-4507-8029-53D960FEA464} = {38DF394C-0909-4507-8029-53D960FEA464}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ClientEffectEditor", "..\..\engine\client\application\ClientEffectEditor\build\win32\ClientEffectEditor.vcxproj", "{99E4A02B-6849-4C82-A9D3-213FD45BFE84}"
+ ProjectSection(ProjectDependencies) = postProject
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ {03F3C054-F380-4618-BE46-6E25061A3587} = {03F3C054-F380-4618-BE46-6E25061A3587}
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D} = {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39} = {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4} = {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264} = {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A} = {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA} = {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ {EAA23F07-4419-4AED-83D2-06654119B6F6} = {EAA23F07-4419-4AED-83D2-06654119B6F6}
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4} = {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CommonAPI", "..\..\external\3rd\library\platform\projects\Session\CommonAPI\CommonAPI.vcxproj", "{5B7D9A11-141E-475B-A9E5-A5DCD4913274}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ConnectionServer", "..\..\engine\server\application\ConnectionServer\build\win32\ConnectionServer.vcxproj", "{2F380D05-A841-4A06-A4F8-11049F0061CD}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {3D6683D1-EAAE-4448-BE3A-8EE545E9592B} = {3D6683D1-EAAE-4448-BE3A-8EE545E9592B}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {4F237764-394D-40CB-9314-DAEDED42E2CD} = {4F237764-394D-40CB-9314-DAEDED42E2CD}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4} = {4EFF0958-FBC8-4053-971A-7022EB0035E4}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {38DF394C-0909-4507-8029-53D960FEA464} = {38DF394C-0909-4507-8029-53D960FEA464}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54} = {861A873C-D6AD-4B8A-9BED-0314A8B74B54}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE} = {67BFDA04-F26E-497F-A6FE-EE52550C15FE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DataLintRspBuilder", "..\..\engine\shared\application\DataLintRspBuilder\build\win32\DataLintRspBuilder.vcxproj", "{5B97B272-B221-439C-8FE8-39A5761BAC25}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DataTableTool", "..\..\engine\shared\application\DataTableTool\build\win32\DataTableTool.vcxproj", "{9262C7EE-E593-46B1-AC7E-F12E5055EB57}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DebugWindow", "..\..\engine\client\application\DebugWindow\build\win32\DebugWindow.vcxproj", "{34FA8B34-C129-4D36-A67B-B1153A5CB366}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Direct3d9", "..\..\engine\client\application\Direct3d9\build\win32\Direct3d9.vcxproj", "{E89A79A9-8488-4D42-BF88-B9833F5607C0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {78041480-C2C5-42A1-A566-C57BC3100BBF} = {78041480-C2C5-42A1-A566-C57BC3100BBF}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Direct3d9_ffp", "..\..\engine\client\application\Direct3d9\build\win32\Direct3d9_ffp.vcxproj", "{2889F119-79C4-4EA7-893A-9E0BD5F871C8}"
+ ProjectSection(ProjectDependencies) = postProject
+ {78041480-C2C5-42A1-A566-C57BC3100BBF} = {78041480-C2C5-42A1-A566-C57BC3100BBF}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Direct3d9_vsps", "..\..\engine\client\application\Direct3d9\build\win32\Direct3d9_vsps.vcxproj", "{CF3B1EE2-D965-44E1-9464-01297964F2CB}"
+ ProjectSection(ProjectDependencies) = postProject
+ {78041480-C2C5-42A1-A566-C57BC3100BBF} = {78041480-C2C5-42A1-A566-C57BC3100BBF}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DllExport", "..\..\engine\client\application\DllExport\build\win32\DllExport.vcxproj", "{78041480-C2C5-42A1-A566-C57BC3100BBF}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LabelHashTool", "..\..\engine\shared\application\LabelHashTool\build\win32\LabelHashTool.vcxproj", "{C234B51D-AAB9-4605-98DF-DC381854FE8C}"
+ ProjectSection(ProjectDependencies) = postProject
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LightningEditor", "..\..\engine\client\application\LightningEditor\build\win32\LightningEditor.vcxproj", "{944B3154-4DC7-4450-BE1E-BAE9D648D1DF}"
+ ProjectSection(ProjectDependencies) = postProject
+ {03F3C054-F380-4618-BE46-6E25061A3587} = {03F3C054-F380-4618-BE46-6E25061A3587}
+ {EAA23F07-4419-4AED-83D2-06654119B6F6} = {EAA23F07-4419-4AED-83D2-06654119B6F6}
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4} = {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D} = {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39} = {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4} = {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264} = {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A} = {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA} = {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LocalizationTool", "..\..\external\ours\application\LocalizationTool\build\win32\LocalizationTool.vcxproj", "{EEF1DD74-8294-4FF8-BA91-D91AD9052714}"
+ ProjectSection(ProjectDependencies) = postProject
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LogServer", "..\..\engine\server\application\LogServer\build\win32\LogServer.vcxproj", "{B678A8AD-B63E-462F-8839-1D11284D08B1}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {4F237764-394D-40CB-9314-DAEDED42E2CD} = {4F237764-394D-40CB-9314-DAEDED42E2CD}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {38DF394C-0909-4507-8029-53D960FEA464} = {38DF394C-0909-4507-8029-53D960FEA464}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54} = {861A873C-D6AD-4B8A-9BED-0314A8B74B54}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE} = {67BFDA04-F26E-497F-A6FE-EE52550C15FE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LoginAPI", "..\..\external\3rd\library\platform\projects\Session\LoginAPI\LoginAPI.vcxproj", "{F2C6B544-BAF0-4534-9479-C79BC09BF2F0}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MayaExporter", "..\..\engine\client\application\MayaExporter\build\win32\MayaExporter.vcxproj", "{BBB380AC-AA99-4177-8F4F-4CD5AAEA1199}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381} = {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {B105EB3E-6860-4077-9833-C6EE5CFEAFBF} = {B105EB3E-6860-4077-9833-C6EE5CFEAFBF}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Miff", "..\..\engine\client\application\Miff\build\win32\Miff.vcxproj", "{7A9CA0AF-B189-44C6-8366-434396B33ECA}"
+ ProjectSection(ProjectDependencies) = postProject
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NpcEditor", "..\..\engine\client\application\NpcEditor\build\win32\NpcEditor.vcxproj", "{EF79AC9C-892B-448A-87AB-ABA65CE4FD19}"
+ ProjectSection(ProjectDependencies) = postProject
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D} = {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264} = {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A} = {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA} = {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4} = {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}
+ {03F3C054-F380-4618-BE46-6E25061A3587} = {03F3C054-F380-4618-BE46-6E25061A3587}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ParticleEditor", "..\..\engine\client\application\ParticleEditor\build\win32\ParticleEditor.vcxproj", "{B75AC10E-38CE-4E3E-9BA4-6A5915DE1C30}"
+ ProjectSection(ProjectDependencies) = postProject
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ {03F3C054-F380-4618-BE46-6E25061A3587} = {03F3C054-F380-4618-BE46-6E25061A3587}
+ {EAA23F07-4419-4AED-83D2-06654119B6F6} = {EAA23F07-4419-4AED-83D2-06654119B6F6}
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4} = {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D} = {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39} = {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4} = {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264} = {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A} = {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA} = {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PlanetServer", "..\..\engine\server\application\PlanetServer\build\win32\PlanetServer.vcxproj", "{4D369B2A-B4D6-4337-9AF7-E8F697F7994D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {4F237764-394D-40CB-9314-DAEDED42E2CD} = {4F237764-394D-40CB-9314-DAEDED42E2CD}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4} = {4EFF0958-FBC8-4053-971A-7022EB0035E4}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {38DF394C-0909-4507-8029-53D960FEA464} = {38DF394C-0909-4507-8029-53D960FEA464}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54} = {861A873C-D6AD-4B8A-9BED-0314A8B74B54}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE} = {67BFDA04-F26E-497F-A6FE-EE52550C15FE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PlanetWatcher", "..\..\engine\shared\application\PlanetWatcher\build\win32\PlanetWatcher.vcxproj", "{5EFB446B-1E95-487F-B1BB-B9767FA86DE3}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "QuestEditor", "..\..\engine\client\application\QuestEditor\build\win32\QuestEditor.vcxproj", "{023405A9-B857-4555-B7A1-46813CBC19C4}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "RemoteDebugTool", "..\..\engine\client\application\RemoteDebugTool\build\win32\RemoteDebugTool.vcxproj", "{ABC58EA0-A1A3-4DBE-A5A3-E56582BC241D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ServerConsole", "..\..\engine\server\APPLICATION\SERVERCONSOLE\build\win32\ServerConsole.vcxproj", "{FA266E3D-BC73-4DC1-B666-B5F34C71085F}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShaderBuilder", "..\..\engine\client\application\ShaderBuilder\build\win32\ShaderBuilder.vcxproj", "{6B75D5AD-DEA7-491B-B93D-9D2C51CBF030}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ShipComponentEditor", "..\..\engine\client\application\ShipComponentEditor\build\win32\ShipComponentEditor.vcxproj", "{05515189-D04C-4A04-A2FF-89DE895817C8}"
+ ProjectSection(ProjectDependencies) = postProject
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D} = {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264} = {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381} = {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A} = {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {8E0FCF44-63B5-4137-9BAA-A740EB10ED94} = {8E0FCF44-63B5-4137-9BAA-A740EB10ED94}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F547B62A-8F5C-48FC-9B3A-103736A41D03} = {F547B62A-8F5C-48FC-9B3A-103736A41D03}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA} = {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SoundEditor", "..\..\engine\client\application\SoundEditor\build\win32\SoundEditor.vcxproj", "{4F6E5721-AE45-47D2-831E-269DF5AE4C69}"
+ ProjectSection(ProjectDependencies) = postProject
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StringFileTool", "..\..\engine\shared\application\StringFileTool\build\win32\StringFileTool.vcxproj", "{35DB55F5-5CA4-43B8-AE55-0437603714A3}"
+ ProjectSection(ProjectDependencies) = postProject
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgClient", "..\..\game\client\application\SwgClient\build\win32\SwgClient.vcxproj", "{2379493D-680B-41DF-9BEF-FFBC09827BAF}"
+ ProjectSection(ProjectDependencies) = postProject
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ {03F3C054-F380-4618-BE46-6E25061A3587} = {03F3C054-F380-4618-BE46-6E25061A3587}
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D} = {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39} = {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264} = {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381} = {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A} = {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54} = {861A873C-D6AD-4B8A-9BED-0314A8B74B54}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA} = {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ {EAA23F07-4419-4AED-83D2-06654119B6F6} = {EAA23F07-4419-4AED-83D2-06654119B6F6}
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4} = {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgClientSetup", "..\..\game\client\application\SwgClientSetup\build\win32\SwgClientSetup.vcxproj", "{9080903C-CB60-41C9-BDA0-3BDE29CFF1B3}"
+ ProjectSection(ProjectDependencies) = postProject
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgContentBuilder", "..\..\game\server\application\SwgContentBuilder\build\win32\SwgContentBuilder.vcxproj", "{E255662F-D219-47D9-872A-8530A3B072CE}"
+ ProjectSection(ProjectDependencies) = postProject
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgContentSync", "..\..\game\shared\application\SwgContentSync\build\win32\SwgContentSync.vcxproj", "{FB9473A9-E72C-4AE9-97D5-89131D2D2324}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgConversationEditor", "..\..\game\server\application\SwgConversationEditor\build\win32\SwgConversationEditor.vcxproj", "{86E1C163-E59B-4408-AB2F-B93E2EB96BF1}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgDatabaseServer", "..\..\game\server\application\SwgDatabaseServer\build\win32\SwgDatabaseServer.vcxproj", "{985EDE24-4618-4F50-A12E-DBE859B232B9}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {9C682884-289D-4E31-B5A8-5B4FE6B10452} = {9C682884-289D-4E31-B5A8-5B4FE6B10452}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {4F237764-394D-40CB-9314-DAEDED42E2CD} = {4F237764-394D-40CB-9314-DAEDED42E2CD}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4} = {4EFF0958-FBC8-4053-971A-7022EB0035E4}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {38DF394C-0909-4507-8029-53D960FEA464} = {38DF394C-0909-4507-8029-53D960FEA464}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {B105EB3E-6860-4077-9833-C6EE5CFEAFBF} = {B105EB3E-6860-4077-9833-C6EE5CFEAFBF}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE} = {67BFDA04-F26E-497F-A6FE-EE52550C15FE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgGameServer", "..\..\game\server\application\SwgGameServer\build\win32\SwgGameServer.vcxproj", "{6D8D49D8-7832-441F-B61B-E5F2C4B42D49}"
+ ProjectSection(ProjectDependencies) = postProject
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069} = {F8271BF7-CFBF-4DE3-84BB-428058E0B069}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB} = {7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A} = {D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {4F237764-394D-40CB-9314-DAEDED42E2CD} = {4F237764-394D-40CB-9314-DAEDED42E2CD}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381} = {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4} = {4EFF0958-FBC8-4053-971A-7022EB0035E4}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {38DF394C-0909-4507-8029-53D960FEA464} = {38DF394C-0909-4507-8029-53D960FEA464}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54} = {861A873C-D6AD-4B8A-9BED-0314A8B74B54}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE} = {67BFDA04-F26E-497F-A6FE-EE52550C15FE}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgGodClient", "..\..\game\client\application\SwgGodClient\build\win32\SwgGodClient.vcxproj", "{F5CF1FEC-1123-4246-B24B-46DEBB3C5146}"
+ ProjectSection(ProjectDependencies) = postProject
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D} = {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39} = {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4} = {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264} = {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381} = {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A} = {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA} = {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ {03F3C054-F380-4618-BE46-6E25061A3587} = {03F3C054-F380-4618-BE46-6E25061A3587}
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4} = {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}
+ {EAA23F07-4419-4AED-83D2-06654119B6F6} = {EAA23F07-4419-4AED-83D2-06654119B6F6}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgLoadClient", "..\..\game\shared\application\SwgLoadClient\build\win32\SwgLoadClient.vcxproj", "{F47EB21E-1EB9-4E05-B07C-030A4AA83CA6}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {38DF394C-0909-4507-8029-53D960FEA464} = {38DF394C-0909-4507-8029-53D960FEA464}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F547B62A-8F5C-48FC-9B3A-103736A41D03} = {F547B62A-8F5C-48FC-9B3A-103736A41D03}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE} = {67BFDA04-F26E-497F-A6FE-EE52550C15FE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgNameGenerator", "..\..\game\server\application\SwgNameGenerator\build\win32\SwgNameGenerator.vcxproj", "{FBBB5B75-30C9-479F-8A6B-A620A35C0D46}"
+ ProjectSection(ProjectDependencies) = postProject
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwooshEditor", "..\..\engine\client\application\SwooshEditor\build\win32\SwooshEditor.vcxproj", "{0C54AD5C-87B2-43C6-A699-03A547FF6E03}"
+ ProjectSection(ProjectDependencies) = postProject
+ {EAA23F07-4419-4AED-83D2-06654119B6F6} = {EAA23F07-4419-4AED-83D2-06654119B6F6}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4} = {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}
+ {03F3C054-F380-4618-BE46-6E25061A3587} = {03F3C054-F380-4618-BE46-6E25061A3587}
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D} = {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39} = {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4} = {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264} = {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A} = {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA} = {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TaskManager", "..\..\engine\server\APPLICATION\TASKMANAGER\build\win32\TaskManager.vcxproj", "{ACAB6CEA-5A4A-4CE4-97D6-333FBA3D8DC0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F} = {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {38DF394C-0909-4507-8029-53D960FEA464} = {38DF394C-0909-4507-8029-53D960FEA464}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE} = {67BFDA04-F26E-497F-A6FE-EE52550C15FE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TemplateCompiler", "..\..\engine\shared\application\TemplateCompiler\build\win32\TemplateCompiler.vcxproj", "{355DDF1F-1DCA-4667-A1F6-11B66FBC4228}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {8E0FCF44-63B5-4137-9BAA-A740EB10ED94} = {8E0FCF44-63B5-4137-9BAA-A740EB10ED94}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F547B62A-8F5C-48FC-9B3A-103736A41D03} = {F547B62A-8F5C-48FC-9B3A-103736A41D03}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TemplateDefinitionCompiler", "..\..\engine\shared\application\TemplateDefinitionCompiler\build\win32\TemplateDefinitionCompiler.vcxproj", "{D21EE827-D349-4EFB-B93B-4B5668AAE8B3}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40} = {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {8E0FCF44-63B5-4137-9BAA-A740EB10ED94} = {8E0FCF44-63B5-4137-9BAA-A740EB10ED94}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TerrainEditor", "..\..\engine\client\application\TerrainEditor\build\win32\TerrainEditor.vcxproj", "{513A5071-8AAE-45CD-B58F-FA81F48137A0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54} = {861A873C-D6AD-4B8A-9BED-0314A8B74B54}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TextureBuilder", "..\..\engine\client\application\TextureBuilder\build\win32\TextureBuilder.vcxproj", "{AEAEB11D-D4E6-444A-AD71-F78DA7F9BD95}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TreeFileBuilder", "..\..\engine\shared\APPLICATION\TREEFILEBUILDER\build\win32\TreeFileBuilder.vcxproj", "{63F95846-C17B-4977-BEDD-D49852137A3D}"
+ ProjectSection(ProjectDependencies) = postProject
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TreeFileExtractor", "..\..\engine\shared\application\TreeFileExtractor\build\win32\TreeFileExtractor.vcxproj", "{DDA6E9E4-501E-4336-84F1-8995098B8656}"
+ ProjectSection(ProjectDependencies) = postProject
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TreeFileRspBuilder", "..\..\engine\shared\application\TreeFileRspBuilder\build\win32\TreeFileRspBuilder.vcxproj", "{6235E2B4-A893-4776-BE5A-C77120DD8548}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UIFontBuilder", "..\..\external\3rd\application\UiFontBuilder\UIFontBuilder.vcxproj", "{34AD1957-929B-46C2-B98B-413F4D31A95C}"
+ ProjectSection(ProjectDependencies) = postProject
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ViewIff", "..\..\engine\client\application\ViewIff\build\win32\ViewIff.vcxproj", "{E1D87320-A777-4672-81BB-CE14321097B0}"
+ ProjectSection(ProjectDependencies) = postProject
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Viewer", "..\..\engine\client\application\Viewer\build\win32\Viewer.vcxproj", "{5FBD3891-61E3-4A49-92FE-CD8225577628}"
+ ProjectSection(ProjectDependencies) = postProject
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0} = {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D} = {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {950E9CF2-CD44-476C-826A-BB7869241F5B} = {950E9CF2-CD44-476C-826A-BB7869241F5B}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50} = {A8036EC1-9682-4315-A3D2-6B26C3245D50}
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883} = {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264} = {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B} = {A378FAB0-5B67-44BD-A3D8-815861792D6B}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381} = {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A} = {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA} = {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4} = {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}
+ {03F3C054-F380-4618-BE46-6E25061A3587} = {03F3C054-F380-4618-BE46-6E25061A3587}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WeaponExporterTool", "..\..\engine\shared\application\WeaponExporterTool\build\win32\WeaponExporterTool.vcxproj", "{1DA25C31-189F-4661-9B65-927B8D05C63B}"
+ ProjectSection(ProjectDependencies) = postProject
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069} = {F8271BF7-CFBF-4DE3-84BB-428058E0B069}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WorldSnapshotViewer", "..\..\engine\client\application\WorldSnapshotViewer\build\win32\WorldSnapshotViewer.vcxproj", "{EC34F97C-F421-4C75-8C8C-91D00E699D33}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027} = {9496A020-65AD-45A6-9ACF-AE4F3358B027}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_all", "_all.vcxproj", "{B333AC21-A6B4-4F5E-92A9-98335FB8C4AE}"
+ ProjectSection(ProjectDependencies) = postProject
+ {CE9F4DC5-8DAC-4704-925C-0E7D0581375C} = {CE9F4DC5-8DAC-4704-925C-0E7D0581375C}
+ {A4AC1380-D2AB-4B0D-824A-4918680F5CA4} = {A4AC1380-D2AB-4B0D-824A-4918680F5CA4}
+ {52961080-869C-4053-84B4-44D4DEC48B8B} = {52961080-869C-4053-84B4-44D4DEC48B8B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_all_client", "_all_client.vcxproj", "{A4AC1380-D2AB-4B0D-824A-4918680F5CA4}"
+ ProjectSection(ProjectDependencies) = postProject
+ {F5CF1FEC-1123-4246-B24B-46DEBB3C5146} = {F5CF1FEC-1123-4246-B24B-46DEBB3C5146}
+ {AB9A58E2-734B-45E4-B4BB-C7E9FF6ACA3F} = {AB9A58E2-734B-45E4-B4BB-C7E9FF6ACA3F}
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB} = {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+ {6B75D5AD-DEA7-491B-B93D-9D2C51CBF030} = {6B75D5AD-DEA7-491B-B93D-9D2C51CBF030}
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0} = {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+ {EF79AC9C-892B-448A-87AB-ABA65CE4FD19} = {EF79AC9C-892B-448A-87AB-ABA65CE4FD19}
+ {5FBD3891-61E3-4A49-92FE-CD8225577628} = {5FBD3891-61E3-4A49-92FE-CD8225577628}
+ {EC34F97C-F421-4C75-8C8C-91D00E699D33} = {EC34F97C-F421-4C75-8C8C-91D00E699D33}
+ {513A5071-8AAE-45CD-B58F-FA81F48137A0} = {513A5071-8AAE-45CD-B58F-FA81F48137A0}
+ {5EFB446B-1E95-487F-B1BB-B9767FA86DE3} = {5EFB446B-1E95-487F-B1BB-B9767FA86DE3}
+ {0C54AD5C-87B2-43C6-A699-03A547FF6E03} = {0C54AD5C-87B2-43C6-A699-03A547FF6E03}
+ {944B3154-4DC7-4450-BE1E-BAE9D648D1DF} = {944B3154-4DC7-4450-BE1E-BAE9D648D1DF}
+ {FA266E3D-BC73-4DC1-B666-B5F34C71085F} = {FA266E3D-BC73-4DC1-B666-B5F34C71085F}
+ {2379493D-680B-41DF-9BEF-FFBC09827BAF} = {2379493D-680B-41DF-9BEF-FFBC09827BAF}
+ {99E4A02B-6849-4C82-A9D3-213FD45BFE84} = {99E4A02B-6849-4C82-A9D3-213FD45BFE84}
+ {4F6E5721-AE45-47D2-831E-269DF5AE4C69} = {4F6E5721-AE45-47D2-831E-269DF5AE4C69}
+ {AEAEB11D-D4E6-444A-AD71-F78DA7F9BD95} = {AEAEB11D-D4E6-444A-AD71-F78DA7F9BD95}
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8} = {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+ {B75AC10E-38CE-4E3E-9BA4-6A5915DE1C30} = {B75AC10E-38CE-4E3E-9BA4-6A5915DE1C30}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_all_client_libraries", "_all_client_libraries.vcxproj", "{7986223E-4B89-44B1-AED5-716A5562AAB6}"
+ ProjectSection(ProjectDependencies) = postProject
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D} = {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B} = {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C} = {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ {147D02D6-C76C-4058-863A-A9B3364C2047} = {147D02D6-C76C-4058-863A-A9B3364C2047}
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264} = {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6} = {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D} = {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ {250A5957-7BB9-4F50-B0E9-19C87136977E} = {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A} = {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27} = {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ {82393D39-3807-4C87-932F-E3571616A7DD} = {82393D39-3807-4C87-932F-E3571616A7DD}
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA} = {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_all_server", "_all_server.vcxproj", "{52961080-869C-4053-84B4-44D4DEC48B8B}"
+ ProjectSection(ProjectDependencies) = postProject
+ {ACAB6CEA-5A4A-4CE4-97D6-333FBA3D8DC0} = {ACAB6CEA-5A4A-4CE4-97D6-333FBA3D8DC0}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {6D8D49D8-7832-441F-B61B-E5F2C4B42D49} = {6D8D49D8-7832-441F-B61B-E5F2C4B42D49}
+ {B678A8AD-B63E-462F-8839-1D11284D08B1} = {B678A8AD-B63E-462F-8839-1D11284D08B1}
+ {30115B9B-5669-4AA0-80BE-1DF73F5F2450} = {30115B9B-5669-4AA0-80BE-1DF73F5F2450}
+ {D5CA7486-D01E-4DCB-883B-8E60F7F64D26} = {D5CA7486-D01E-4DCB-883B-8E60F7F64D26}
+ {FA266E3D-BC73-4DC1-B666-B5F34C71085F} = {FA266E3D-BC73-4DC1-B666-B5F34C71085F}
+ {4D369B2A-B4D6-4337-9AF7-E8F697F7994D} = {4D369B2A-B4D6-4337-9AF7-E8F697F7994D}
+ {985EDE24-4618-4F50-A12E-DBE859B232B9} = {985EDE24-4618-4F50-A12E-DBE859B232B9}
+ {2F380D05-A841-4A06-A4F8-11049F0061CD} = {2F380D05-A841-4A06-A4F8-11049F0061CD}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_all_server_libraries", "_all_server_libraries.vcxproj", "{D1FB68C1-A139-4458-9984-1514AC15AC81}"
+ ProjectSection(ProjectDependencies) = postProject
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069} = {F8271BF7-CFBF-4DE3-84BB-428058E0B069}
+ {7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB} = {7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB}
+ {D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A} = {D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A}
+ {9C682884-289D-4E31-B5A8-5B4FE6B10452} = {9C682884-289D-4E31-B5A8-5B4FE6B10452}
+ {4F237764-394D-40CB-9314-DAEDED42E2CD} = {4F237764-394D-40CB-9314-DAEDED42E2CD}
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4} = {4EFF0958-FBC8-4053-971A-7022EB0035E4}
+ {38DF394C-0909-4507-8029-53D960FEA464} = {38DF394C-0909-4507-8029-53D960FEA464}
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE} = {67BFDA04-F26E-497F-A6FE-EE52550C15FE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_all_shared_libraries", "_all_shared_libraries.vcxproj", "{BEAAA971-E712-4662-A9EE-35AFA3D3F231}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {DF4D72EF-2341-4462-AB78-B130450511DA} = {DF4D72EF-2341-4462-AB78-B130450511DA}
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40} = {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ {070BABEB-131A-4DC7-8621-69407C531F8E} = {070BABEB-131A-4DC7-8621-69407C531F8E}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1} = {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A} = {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5} = {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E} = {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {2338795C-CE02-4902-BEF4-53645A0C3267} = {2338795C-CE02-4902-BEF4-53645A0C3267}
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381} = {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}
+ {882D8E54-0077-440B-94AC-762BDE522E3B} = {882D8E54-0077-440B-94AC-762BDE522E3B}
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE} = {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ {8E0FCF44-63B5-4137-9BAA-A740EB10ED94} = {8E0FCF44-63B5-4137-9BAA-A740EB10ED94}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {B105EB3E-6860-4077-9833-C6EE5CFEAFBF} = {B105EB3E-6860-4077-9833-C6EE5CFEAFBF}
+ {6612CC35-6931-4AC6-A315-E955CA60B643} = {6612CC35-6931-4AC6-A315-E955CA60B643}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F547B62A-8F5C-48FC-9B3A-103736A41D03} = {F547B62A-8F5C-48FC-9B3A-103736A41D03}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66} = {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1} = {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_all_tools", "_all_tools.vcxproj", "{CE9F4DC5-8DAC-4704-925C-0E7D0581375C}"
+ ProjectSection(ProjectDependencies) = postProject
+ {9262C7EE-E593-46B1-AC7E-F12E5055EB57} = {9262C7EE-E593-46B1-AC7E-F12E5055EB57}
+ {DDA6E9E4-501E-4336-84F1-8995098B8656} = {DDA6E9E4-501E-4336-84F1-8995098B8656}
+ {6235E2B4-A893-4776-BE5A-C77120DD8548} = {6235E2B4-A893-4776-BE5A-C77120DD8548}
+ {7A9CA0AF-B189-44C6-8366-434396B33ECA} = {7A9CA0AF-B189-44C6-8366-434396B33ECA}
+ {FB9473A9-E72C-4AE9-97D5-89131D2D2324} = {FB9473A9-E72C-4AE9-97D5-89131D2D2324}
+ {5B97B272-B221-439C-8FE8-39A5761BAC25} = {5B97B272-B221-439C-8FE8-39A5761BAC25}
+ {63F95846-C17B-4977-BEDD-D49852137A3D} = {63F95846-C17B-4977-BEDD-D49852137A3D}
+ {D21EE827-D349-4EFB-B93B-4B5668AAE8B3} = {D21EE827-D349-4EFB-B93B-4B5668AAE8B3}
+ {E1D87320-A777-4672-81BB-CE14321097B0} = {E1D87320-A777-4672-81BB-CE14321097B0}
+ {355DDF1F-1DCA-4667-A1F6-11B66FBC4228} = {355DDF1F-1DCA-4667-A1F6-11B66FBC4228}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "archive", "..\..\external\ours\library\archive\build\win32\archive.vcxproj", "{52153865-1ABF-4FBB-84C4-0FC439716F1E}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "blat", "..\..\external\3rd\library\blat194\build\win32\blat.vcxproj", "{ECBDFCFF-F4AE-475A-AA90-729EB96430A0}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientAnimation", "..\..\engine\client\library\clientAnimation\build\win32\clientAnimation.vcxproj", "{4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientAudio", "..\..\engine\client\library\clientAudio\build\win32\clientAudio.vcxproj", "{250A5957-7BB9-4F50-B0E9-19C87136977E}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientBugReporting", "..\..\engine\client\library\clientBugReporting\build\win32\clientBugReporting.vcxproj", "{147D02D6-C76C-4058-863A-A9B3364C2047}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientDirectInput", "..\..\engine\client\library\clientDirectInput\build\win32\clientDirectInput.vcxproj", "{F1B57BF8-072E-4E69-940A-C254A98DA10D}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientGame", "..\..\engine\client\library\clientGame\build\win32\clientGame.vcxproj", "{D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientGraphics", "..\..\engine\client\library\clientGraphics\build\win32\clientGraphics.vcxproj", "{7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientObject", "..\..\engine\client\library\clientObject\build\win32\clientObject.vcxproj", "{82393D39-3807-4C87-932F-E3571616A7DD}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientParticle", "..\..\engine\client\library\clientParticle\build\win32\clientParticle.vcxproj", "{97A83CDE-723F-47DE-A5C6-B779CF50AE9C}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientSkeletalAnimation", "..\..\engine\client\library\clientSkeletalAnimation\build\win32\clientSkeletalAnimation.vcxproj", "{66BCFD48-0307-41FD-B4D9-9991BF572A27}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientTerrain", "..\..\engine\client\library\clientTerrain\build\win32\clientTerrain.vcxproj", "{2024A6B1-5E9A-4CC9-8243-7232F9B62264}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientTextureRenderer", "..\..\engine\client\library\clientTextureRenderer\build\win32\clientTextureRenderer.vcxproj", "{F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "clientUserInterface", "..\..\engine\client\library\clientUserInterface\build\win32\clientUserInterface.vcxproj", "{92605A4D-BAA0-46E6-9733-6464F6578B6A}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "crypto", "..\..\external\ours\library\crypto\build\win32\crypto.vcxproj", "{861A873C-D6AD-4B8A-9BED-0314A8B74B54}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fileInterface", "..\..\external\ours\library\fileInterface\build\win32\fileInterface.vcxproj", "{DE93996C-CB51-4D61-85A0-A9DFC677445F}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "localization", "..\..\external\ours\library\localization\build\win32\localization.vcxproj", "{0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "localizationArchive", "..\..\external\ours\library\localizationArchive\build\win32\localizationArchive.vcxproj", "{A8036EC1-9682-4315-A3D2-6B26C3245D50}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "serverDatabase", "..\..\engine\server\library\serverDatabase\build\win32\serverDatabase.vcxproj", "{9C682884-289D-4E31-B5A8-5B4FE6B10452}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "serverGame", "..\..\engine\server\library\serverGame\build\win32\serverGame.vcxproj", "{F8271BF7-CFBF-4DE3-84BB-428058E0B069}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "serverKeyShare", "..\..\engine\server\library\serverKeyShare\build\win32\serverKeyShare.vcxproj", "{4F237764-394D-40CB-9314-DAEDED42E2CD}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "serverMetrics", "..\..\engine\server\library\SERVERMETRICS\build\win32\serverMetrics.vcxproj", "{4EFF0958-FBC8-4053-971A-7022EB0035E4}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "serverNetworkMessages", "..\..\engine\server\library\serverNetworkMessages\build\win32\serverNetworkMessages.vcxproj", "{38DF394C-0909-4507-8029-53D960FEA464}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "serverPathfinding", "..\..\engine\server\library\serverPathfinding\build\win32\serverPathfinding.vcxproj", "{7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB}"
+ ProjectSection(ProjectDependencies) = postProject
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381} = {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "serverScript", "..\..\engine\server\library\serverScript\build\win32\serverScript.vcxproj", "{D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "serverUtility", "..\..\engine\server\library\serverUtility\build\win32\serverUtility.vcxproj", "{67BFDA04-F26E-497F-A6FE-EE52550C15FE}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedCollision", "..\..\engine\shared\library\sharedCollision\build\win32\sharedCollision.vcxproj", "{03A9A516-227E-49BB-A1C5-64B34CBDDC66}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedCommandParser", "..\..\engine\shared\library\sharedCommandParser\build\win32\sharedCommandParser.vcxproj", "{20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedCompression", "..\..\engine\shared\library\sharedCompression\build\win32\sharedCompression.vcxproj", "{6BD52B35-92CA-44E4-995E-2B79C7398183}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedDatabaseInterface", "..\..\engine\shared\library\sharedDatabaseInterface\build\win32\sharedDatabaseInterface.vcxproj", "{B105EB3E-6860-4077-9833-C6EE5CFEAFBF}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedDebug", "..\..\engine\shared\library\sharedDebug\build\win32\sharedDebug.vcxproj", "{F3245C29-7760-4956-B1B7-FC483BE417CD}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedFile", "..\..\engine\shared\library\sharedFile\build\win32\sharedFile.vcxproj", "{E0F9D922-DAA7-475E-A95A-7BC540ED58FE}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedFoundation", "..\..\engine\shared\library\sharedFoundation\build\win32\sharedFoundation.vcxproj", "{C595C10E-ADA8-429A-896A-8904A46737D3}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedFoundationTypes", "..\..\engine\shared\library\sharedFoundationTypes\build\win32\sharedFoundationTypes.vcxproj", "{D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedFractal", "..\..\engine\shared\library\sharedFractal\build\win32\sharedFractal.vcxproj", "{882D8E54-0077-440B-94AC-762BDE522E3B}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedGame", "..\..\engine\shared\library\sharedGame\build\win32\sharedGame.vcxproj", "{2338795C-CE02-4902-BEF4-53645A0C3267}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedImage", "..\..\engine\shared\library\sharedImage\build\win32\sharedImage.vcxproj", "{AACBD5D6-D7DD-4FF9-8523-316CCF20115A}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedInputMap", "..\..\engine\shared\library\sharedInputMap\build\win32\sharedInputMap.vcxproj", "{101CF34F-B5FD-4A14-A3E9-FD28078760BE}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedIoWin", "..\..\engine\shared\library\sharedIoWin\build\win32\sharedIoWin.vcxproj", "{03819289-4E8B-44E9-9F3B-A3243C9797C9}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedLog", "..\..\engine\shared\library\sharedLog\build\win32\sharedLog.vcxproj", "{2AE0CEF0-C4F2-4786-A026-8338FB09D61B}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedMath", "..\..\engine\shared\library\sharedMath\build\win32\sharedMath.vcxproj", "{5789EA7C-6596-4DCC-A9FB-DD7582888F90}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedMathArchive", "..\..\engine\shared\library\sharedMathArchive\build\win32\sharedMathArchive.vcxproj", "{0202ADB3-5587-4138-A626-52B7DB52FBBA}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedMemoryManager", "..\..\engine\shared\library\sharedMemoryManager\build\win32\sharedMemoryManager.vcxproj", "{DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedMessageDispatch", "..\..\engine\shared\library\sharedMessageDispatch\build\win32\sharedMessageDispatch.vcxproj", "{C87164F5-14A9-403C-8BC4-217FD40731EA}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedNetwork", "..\..\engine\shared\library\sharedNetwork\build\win32\sharedNetwork.vcxproj", "{DF4D72EF-2341-4462-AB78-B130450511DA}"
+ ProjectSection(ProjectDependencies) = postProject
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE} = {1A7D1159-3474-4520-882F-F1842F0AAFAE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedNetworkMessages", "..\..\engine\shared\library\sharedNetworkMessages\build\win32\sharedNetworkMessages.vcxproj", "{DECF2964-3A66-4FA6-AB27-D4507C5480EA}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedObject", "..\..\engine\shared\library\sharedObject\build\win32\sharedObject.vcxproj", "{AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedPathfinding", "..\..\engine\shared\library\sharedPathfinding\build\win32\sharedPathfinding.vcxproj", "{7D707A5A-CB70-4FD9-83D3-E1E921AE3381}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedRandom", "..\..\engine\shared\library\sharedRandom\build\win32\sharedRandom.vcxproj", "{2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedRegex", "..\..\engine\shared\library\sharedRegex\build\win32\sharedRegex.vcxproj", "{1D87A2E7-F0CF-42E9-BC38-846C53622C40}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedRemoteDebugServer", "..\..\engine\shared\library\sharedRemoteDebugServer\build\win32\sharedRemoteDebugServer.vcxproj", "{AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedSkillSystem", "..\..\engine\shared\library\SHAREDSKILLSYSTEM\build\win32\sharedSkillSystem.vcxproj", "{83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedStatusWindow", "..\..\engine\shared\library\sharedStatusWindow\build\win32\sharedStatusWindow.vcxproj", "{AE9205DD-83FC-4F31-A5B3-70623B3107A1}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedSwitcher", "..\..\engine\shared\library\sharedSwitcher\build\win32\sharedSwitcher.vcxproj", "{070BABEB-131A-4DC7-8621-69407C531F8E}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedSynchronization", "..\..\engine\shared\library\sharedSynchronization\build\win32\sharedSynchronization.vcxproj", "{2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedTemplate", "..\..\engine\shared\library\sharedTemplate\build\win32\sharedTemplate.vcxproj", "{F547B62A-8F5C-48FC-9B3A-103736A41D03}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedTemplateDefinition", "..\..\engine\shared\library\sharedTemplateDefinition\build\win32\sharedTemplateDefinition.vcxproj", "{8E0FCF44-63B5-4137-9BAA-A740EB10ED94}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedTerrain", "..\..\engine\shared\library\sharedTerrain\build\win32\sharedTerrain.vcxproj", "{6612CC35-6931-4AC6-A315-E955CA60B643}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedThread", "..\..\engine\shared\library\sharedThread\build\win32\sharedThread.vcxproj", "{858F7DCE-325A-467C-9DDA-2FE40217286F}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedUtility", "..\..\engine\shared\library\sharedUtility\build\win32\sharedUtility.vcxproj", "{52DF0D16-D070-47FC-B987-8D80B027D114}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sharedXml", "..\..\engine\shared\library\sharedXml\build\win32\sharedXml.vcxproj", "{51E2988C-CE2D-42D7-A27C-06A322B4AAC2}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "singleton", "..\..\external\ours\library\singleton\build\win32\singleton.vcxproj", "{D409A18E-F788-4F1B-BAD1-ED58EE4D458F}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "swgClientUserInterface", "..\..\game\client\library\swgClientUserInterface\build\win32\swgClientUserInterface.vcxproj", "{EAA23F07-4419-4AED-83D2-06654119B6F6}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "swgServerNetworkMessages", "..\..\game\server\library\swgServerNetworkMessages\build\win32\swgServerNetworkMessages.vcxproj", "{950E9CF2-CD44-476C-826A-BB7869241F5B}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "swgSharedNetworkMessages", "..\..\game\shared\library\swgSharedNetworkMessages\build\win32\swgSharedNetworkMessages.vcxproj", "{FCC0F2B5-AADE-4454-AFF2-4D91365B4883}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "swgSharedUtility", "..\..\game\shared\library\swgSharedUtility\build\win32\swgSharedUtility.vcxproj", "{A378FAB0-5B67-44BD-A3D8-815861792D6B}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "udplibrary", "..\..\external\3rd\library\udplibrary\udplibrary.vcxproj", "{1A7D1159-3474-4520-882F-F1842F0AAFAE}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ui", "..\..\external\3rd\library\ui\build\win32\ui.vcxproj", "{D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicode", "..\..\external\ours\library\unicode\build\win32\unicode.vcxproj", "{B97963EF-49E4-477E-85FF-E7FEE7C626D7}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "unicodeArchive", "..\..\external\ours\library\unicodeArchive\build\win32\unicodeArchive.vcxproj", "{41269A52-38B8-4F9A-AE38-1103BB03A10B}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CrashReporter", "..\..\engine\client\application\CrashReporter\build\win32\CrashReporter.vcxproj", "{7927E450-9A0C-46B3-ABF3-34384D6F54CD}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dpvs", "..\..\external\3rd\library\dpvs\implementation\msvc8\dpvs.vcxproj", "{17C00DDF-0E33-40DD-94E8-9A300C9BC15D}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LocalizationToolCon", "..\..\external\ours\application\LocalizationToolCon\build\win32\LocalizationToolCon.vcxproj", "{F84C0A87-E06D-4568-B188-D820FBA2BB25}"
+ ProjectSection(ProjectDependencies) = postProject
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Md5sum", "..\..\engine\shared\application\Md5sum\build\win32\Md5sum.vcxproj", "{6420DB1B-3981-492B-B450-3D7062A1B1FD}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgDraftSchematicEditor", "..\..\game\server\application\SwgDraftSchematicEditor\build\win32\SwgDraftSchematicEditor.vcxproj", "{763D8176-B2AC-40C2-9268-DF61FE9240D2}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgSpaceQuestEditor", "..\..\game\server\application\SwgSpaceQuestEditor\build\win32\SwgSpaceQuestEditor.vcxproj", "{A288C7EF-37FD-49D1-B228-6593D2FCF5B5}"
+ ProjectSection(ProjectDependencies) = postProject
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Turf", "..\..\engine\shared\application\Turf\build\win32\Turf.vcxproj", "{C12FC03D-4C12-4957-A282-E7360833F065}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UpdateLocalizedStrings", "..\..\engine\shared\application\UpdateLocalizedStrings\build\win32\UpdateLocalizedStrings.vcxproj", "{4511DE35-D4E8-41B5-A0DD-F9374AE747C2}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WordCountTool", "..\..\engine\shared\application\WordCountTool\build\win32\WordCountTool.vcxproj", "{0BEACA0C-6862-461F-BCD8-997D2F35B2C7}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "swgClientQtWidgets", "..\..\game\client\library\swgClientQtWidgets\build\win32\swgClientQtWidgets.vcxproj", "{805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UIBuilder", "..\..\external\3rd\application\UiBuilder\UIBuilder.vcxproj", "{8ED77983-9D2D-41C0-8FE2-0C44B924C991}"
+ ProjectSection(ProjectDependencies) = postProject
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D} = {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lcdui", "..\..\external\3rd\library\lcdui_src\build\win32\lcdui.vcxproj", "{20D2AEE7-B60A-4EC9-B187-FA76062A6C39}"
+ ProjectSection(ProjectDependencies) = postProject
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SwgSpaceZoneEditor", "..\..\game\server\application\SwgSpaceZoneEditor\build\win32\SwgSpaceZoneEditor.vcxproj", "{81D4FCA6-F8D8-4FE6-81F3-8D7C05E06479}"
+ ProjectSection(ProjectDependencies) = postProject
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7} = {B97963EF-49E4-477E-85FF-E7FEE7C626D7}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2} = {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA} = {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2} = {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CoreWeaponExporterTool", "..\..\engine\shared\application\CoreWeaponExporterTool\build\win32\CoreWeaponExporterTool.vcxproj", "{5322A6D8-E2FE-420C-B719-3D061EAB4593}"
+ ProjectSection(ProjectDependencies) = postProject
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F} = {DE93996C-CB51-4D61-85A0-A9DFC677445F}
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069} = {F8271BF7-CFBF-4DE3-84BB-428058E0B069}
+ {C87164F5-14A9-403C-8BC4-217FD40731EA} = {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B} = {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2} = {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ {858F7DCE-325A-467C-9DDA-2FE40217286F} = {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4} = {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9} = {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90} = {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E} = {52153865-1ABF-4FBB-84C4-0FC439716F1E}
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA} = {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B} = {41269A52-38B8-4F9A-AE38-1103BB03A10B}
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69} = {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ {6BD52B35-92CA-44E4-995E-2B79C7398183} = {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ {F3245C29-7760-4956-B1B7-FC483BE417CD} = {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD} = {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE} = {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ {52DF0D16-D070-47FC-B987-8D80B027D114} = {52DF0D16-D070-47FC-B987-8D80B027D114}
+ {C595C10E-ADA8-429A-896A-8904A46737D3} = {C595C10E-ADA8-429A-896A-8904A46737D3}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libMozilla", "..\..\external\3rd\library\libMozilla\build\win32\libMozilla.vcxproj", "{C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libEverQuestTCG", "..\..\external\3rd\library\libEverQuestTCG\build\win32\libEverQuestTCG.vcxproj", "{03F3C054-F380-4618-BE46-6E25061A3587}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlib", "..\..\external\3rd\library\zlib-1.2.3\zlib.vcxproj", "{9496A020-65AD-45A6-9ACF-AE4F3358B027}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Optimized|Win32 = Optimized|Win32
+ Release|Win32 = Release|Win32
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {AB9A58E2-734B-45E4-B4BB-C7E9FF6ACA3F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AB9A58E2-734B-45E4-B4BB-C7E9FF6ACA3F}.Debug|Win32.Build.0 = Debug|Win32
+ {AB9A58E2-734B-45E4-B4BB-C7E9FF6ACA3F}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {AB9A58E2-734B-45E4-B4BB-C7E9FF6ACA3F}.Optimized|Win32.Build.0 = Optimized|Win32
+ {AB9A58E2-734B-45E4-B4BB-C7E9FF6ACA3F}.Release|Win32.ActiveCfg = Release|Win32
+ {AB9A58E2-734B-45E4-B4BB-C7E9FF6ACA3F}.Release|Win32.Build.0 = Release|Win32
+ {86D00284-6EAE-4D6C-989F-585AB5B44A14}.Debug|Win32.ActiveCfg = Debug|Win32
+ {86D00284-6EAE-4D6C-989F-585AB5B44A14}.Debug|Win32.Build.0 = Debug|Win32
+ {86D00284-6EAE-4D6C-989F-585AB5B44A14}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {86D00284-6EAE-4D6C-989F-585AB5B44A14}.Optimized|Win32.Build.0 = Optimized|Win32
+ {86D00284-6EAE-4D6C-989F-585AB5B44A14}.Release|Win32.ActiveCfg = Release|Win32
+ {86D00284-6EAE-4D6C-989F-585AB5B44A14}.Release|Win32.Build.0 = Release|Win32
+ {3D6683D1-EAAE-4448-BE3A-8EE545E9592B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {3D6683D1-EAAE-4448-BE3A-8EE545E9592B}.Debug|Win32.Build.0 = Debug|Win32
+ {3D6683D1-EAAE-4448-BE3A-8EE545E9592B}.Optimized|Win32.ActiveCfg = Debug|Win32
+ {3D6683D1-EAAE-4448-BE3A-8EE545E9592B}.Optimized|Win32.Build.0 = Debug|Win32
+ {3D6683D1-EAAE-4448-BE3A-8EE545E9592B}.Release|Win32.ActiveCfg = Release|Win32
+ {3D6683D1-EAAE-4448-BE3A-8EE545E9592B}.Release|Win32.Build.0 = Release|Win32
+ {C05E2B2B-A9A1-4E7E-A35D-2342AF49774E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C05E2B2B-A9A1-4E7E-A35D-2342AF49774E}.Debug|Win32.Build.0 = Debug|Win32
+ {C05E2B2B-A9A1-4E7E-A35D-2342AF49774E}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {C05E2B2B-A9A1-4E7E-A35D-2342AF49774E}.Optimized|Win32.Build.0 = Optimized|Win32
+ {C05E2B2B-A9A1-4E7E-A35D-2342AF49774E}.Release|Win32.ActiveCfg = Release|Win32
+ {C05E2B2B-A9A1-4E7E-A35D-2342AF49774E}.Release|Win32.Build.0 = Release|Win32
+ {D5CA7486-D01E-4DCB-883B-8E60F7F64D26}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D5CA7486-D01E-4DCB-883B-8E60F7F64D26}.Debug|Win32.Build.0 = Debug|Win32
+ {D5CA7486-D01E-4DCB-883B-8E60F7F64D26}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {D5CA7486-D01E-4DCB-883B-8E60F7F64D26}.Optimized|Win32.Build.0 = Optimized|Win32
+ {D5CA7486-D01E-4DCB-883B-8E60F7F64D26}.Release|Win32.ActiveCfg = Release|Win32
+ {D5CA7486-D01E-4DCB-883B-8E60F7F64D26}.Release|Win32.Build.0 = Release|Win32
+ {30115B9B-5669-4AA0-80BE-1DF73F5F2450}.Debug|Win32.ActiveCfg = Debug|Win32
+ {30115B9B-5669-4AA0-80BE-1DF73F5F2450}.Debug|Win32.Build.0 = Debug|Win32
+ {30115B9B-5669-4AA0-80BE-1DF73F5F2450}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {30115B9B-5669-4AA0-80BE-1DF73F5F2450}.Optimized|Win32.Build.0 = Optimized|Win32
+ {30115B9B-5669-4AA0-80BE-1DF73F5F2450}.Release|Win32.ActiveCfg = Release|Win32
+ {30115B9B-5669-4AA0-80BE-1DF73F5F2450}.Release|Win32.Build.0 = Release|Win32
+ {99E4A02B-6849-4C82-A9D3-213FD45BFE84}.Debug|Win32.ActiveCfg = Debug|Win32
+ {99E4A02B-6849-4C82-A9D3-213FD45BFE84}.Debug|Win32.Build.0 = Debug|Win32
+ {99E4A02B-6849-4C82-A9D3-213FD45BFE84}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {99E4A02B-6849-4C82-A9D3-213FD45BFE84}.Optimized|Win32.Build.0 = Optimized|Win32
+ {99E4A02B-6849-4C82-A9D3-213FD45BFE84}.Release|Win32.ActiveCfg = Release|Win32
+ {99E4A02B-6849-4C82-A9D3-213FD45BFE84}.Release|Win32.Build.0 = Release|Win32
+ {5B7D9A11-141E-475B-A9E5-A5DCD4913274}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5B7D9A11-141E-475B-A9E5-A5DCD4913274}.Debug|Win32.Build.0 = Debug|Win32
+ {5B7D9A11-141E-475B-A9E5-A5DCD4913274}.Optimized|Win32.ActiveCfg = Debug Threaded|Win32
+ {5B7D9A11-141E-475B-A9E5-A5DCD4913274}.Optimized|Win32.Build.0 = Debug Threaded|Win32
+ {5B7D9A11-141E-475B-A9E5-A5DCD4913274}.Release|Win32.ActiveCfg = Release|Win32
+ {5B7D9A11-141E-475B-A9E5-A5DCD4913274}.Release|Win32.Build.0 = Release|Win32
+ {2F380D05-A841-4A06-A4F8-11049F0061CD}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2F380D05-A841-4A06-A4F8-11049F0061CD}.Debug|Win32.Build.0 = Debug|Win32
+ {2F380D05-A841-4A06-A4F8-11049F0061CD}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {2F380D05-A841-4A06-A4F8-11049F0061CD}.Optimized|Win32.Build.0 = Optimized|Win32
+ {2F380D05-A841-4A06-A4F8-11049F0061CD}.Release|Win32.ActiveCfg = Release|Win32
+ {2F380D05-A841-4A06-A4F8-11049F0061CD}.Release|Win32.Build.0 = Release|Win32
+ {5B97B272-B221-439C-8FE8-39A5761BAC25}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5B97B272-B221-439C-8FE8-39A5761BAC25}.Debug|Win32.Build.0 = Debug|Win32
+ {5B97B272-B221-439C-8FE8-39A5761BAC25}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {5B97B272-B221-439C-8FE8-39A5761BAC25}.Optimized|Win32.Build.0 = Optimized|Win32
+ {5B97B272-B221-439C-8FE8-39A5761BAC25}.Release|Win32.ActiveCfg = Release|Win32
+ {5B97B272-B221-439C-8FE8-39A5761BAC25}.Release|Win32.Build.0 = Release|Win32
+ {9262C7EE-E593-46B1-AC7E-F12E5055EB57}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9262C7EE-E593-46B1-AC7E-F12E5055EB57}.Debug|Win32.Build.0 = Debug|Win32
+ {9262C7EE-E593-46B1-AC7E-F12E5055EB57}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {9262C7EE-E593-46B1-AC7E-F12E5055EB57}.Optimized|Win32.Build.0 = Optimized|Win32
+ {9262C7EE-E593-46B1-AC7E-F12E5055EB57}.Release|Win32.ActiveCfg = Release|Win32
+ {9262C7EE-E593-46B1-AC7E-F12E5055EB57}.Release|Win32.Build.0 = Release|Win32
+ {34FA8B34-C129-4D36-A67B-B1153A5CB366}.Debug|Win32.ActiveCfg = Debug|Win32
+ {34FA8B34-C129-4D36-A67B-B1153A5CB366}.Debug|Win32.Build.0 = Debug|Win32
+ {34FA8B34-C129-4D36-A67B-B1153A5CB366}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {34FA8B34-C129-4D36-A67B-B1153A5CB366}.Optimized|Win32.Build.0 = Optimized|Win32
+ {34FA8B34-C129-4D36-A67B-B1153A5CB366}.Release|Win32.ActiveCfg = Release|Win32
+ {34FA8B34-C129-4D36-A67B-B1153A5CB366}.Release|Win32.Build.0 = Release|Win32
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0}.Debug|Win32.Build.0 = Debug|Win32
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0}.Optimized|Win32.Build.0 = Optimized|Win32
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0}.Release|Win32.ActiveCfg = Release|Win32
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0}.Release|Win32.Build.0 = Release|Win32
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8}.Debug|Win32.Build.0 = Debug|Win32
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8}.Optimized|Win32.Build.0 = Optimized|Win32
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8}.Release|Win32.ActiveCfg = Release|Win32
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8}.Release|Win32.Build.0 = Release|Win32
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB}.Debug|Win32.ActiveCfg = Debug|Win32
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB}.Debug|Win32.Build.0 = Debug|Win32
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB}.Optimized|Win32.Build.0 = Optimized|Win32
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB}.Release|Win32.ActiveCfg = Release|Win32
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB}.Release|Win32.Build.0 = Release|Win32
+ {78041480-C2C5-42A1-A566-C57BC3100BBF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {78041480-C2C5-42A1-A566-C57BC3100BBF}.Debug|Win32.Build.0 = Debug|Win32
+ {78041480-C2C5-42A1-A566-C57BC3100BBF}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {78041480-C2C5-42A1-A566-C57BC3100BBF}.Optimized|Win32.Build.0 = Optimized|Win32
+ {78041480-C2C5-42A1-A566-C57BC3100BBF}.Release|Win32.ActiveCfg = Release|Win32
+ {78041480-C2C5-42A1-A566-C57BC3100BBF}.Release|Win32.Build.0 = Release|Win32
+ {C234B51D-AAB9-4605-98DF-DC381854FE8C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C234B51D-AAB9-4605-98DF-DC381854FE8C}.Debug|Win32.Build.0 = Debug|Win32
+ {C234B51D-AAB9-4605-98DF-DC381854FE8C}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {C234B51D-AAB9-4605-98DF-DC381854FE8C}.Optimized|Win32.Build.0 = Optimized|Win32
+ {C234B51D-AAB9-4605-98DF-DC381854FE8C}.Release|Win32.ActiveCfg = Release|Win32
+ {C234B51D-AAB9-4605-98DF-DC381854FE8C}.Release|Win32.Build.0 = Release|Win32
+ {944B3154-4DC7-4450-BE1E-BAE9D648D1DF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {944B3154-4DC7-4450-BE1E-BAE9D648D1DF}.Debug|Win32.Build.0 = Debug|Win32
+ {944B3154-4DC7-4450-BE1E-BAE9D648D1DF}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {944B3154-4DC7-4450-BE1E-BAE9D648D1DF}.Optimized|Win32.Build.0 = Optimized|Win32
+ {944B3154-4DC7-4450-BE1E-BAE9D648D1DF}.Release|Win32.ActiveCfg = Release|Win32
+ {944B3154-4DC7-4450-BE1E-BAE9D648D1DF}.Release|Win32.Build.0 = Release|Win32
+ {EEF1DD74-8294-4FF8-BA91-D91AD9052714}.Debug|Win32.ActiveCfg = Debug|Win32
+ {EEF1DD74-8294-4FF8-BA91-D91AD9052714}.Debug|Win32.Build.0 = Debug|Win32
+ {EEF1DD74-8294-4FF8-BA91-D91AD9052714}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {EEF1DD74-8294-4FF8-BA91-D91AD9052714}.Optimized|Win32.Build.0 = Optimized|Win32
+ {EEF1DD74-8294-4FF8-BA91-D91AD9052714}.Release|Win32.ActiveCfg = Release|Win32
+ {EEF1DD74-8294-4FF8-BA91-D91AD9052714}.Release|Win32.Build.0 = Release|Win32
+ {B678A8AD-B63E-462F-8839-1D11284D08B1}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B678A8AD-B63E-462F-8839-1D11284D08B1}.Debug|Win32.Build.0 = Debug|Win32
+ {B678A8AD-B63E-462F-8839-1D11284D08B1}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {B678A8AD-B63E-462F-8839-1D11284D08B1}.Optimized|Win32.Build.0 = Optimized|Win32
+ {B678A8AD-B63E-462F-8839-1D11284D08B1}.Release|Win32.ActiveCfg = Release|Win32
+ {B678A8AD-B63E-462F-8839-1D11284D08B1}.Release|Win32.Build.0 = Release|Win32
+ {F2C6B544-BAF0-4534-9479-C79BC09BF2F0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F2C6B544-BAF0-4534-9479-C79BC09BF2F0}.Debug|Win32.Build.0 = Debug|Win32
+ {F2C6B544-BAF0-4534-9479-C79BC09BF2F0}.Optimized|Win32.ActiveCfg = Debug|Win32
+ {F2C6B544-BAF0-4534-9479-C79BC09BF2F0}.Optimized|Win32.Build.0 = Debug|Win32
+ {F2C6B544-BAF0-4534-9479-C79BC09BF2F0}.Release|Win32.ActiveCfg = Release|Win32
+ {F2C6B544-BAF0-4534-9479-C79BC09BF2F0}.Release|Win32.Build.0 = Release|Win32
+ {BBB380AC-AA99-4177-8F4F-4CD5AAEA1199}.Debug|Win32.ActiveCfg = Debug|Win32
+ {BBB380AC-AA99-4177-8F4F-4CD5AAEA1199}.Debug|Win32.Build.0 = Debug|Win32
+ {BBB380AC-AA99-4177-8F4F-4CD5AAEA1199}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {BBB380AC-AA99-4177-8F4F-4CD5AAEA1199}.Optimized|Win32.Build.0 = Optimized|Win32
+ {BBB380AC-AA99-4177-8F4F-4CD5AAEA1199}.Release|Win32.ActiveCfg = Release|Win32
+ {BBB380AC-AA99-4177-8F4F-4CD5AAEA1199}.Release|Win32.Build.0 = Release|Win32
+ {7A9CA0AF-B189-44C6-8366-434396B33ECA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7A9CA0AF-B189-44C6-8366-434396B33ECA}.Debug|Win32.Build.0 = Debug|Win32
+ {7A9CA0AF-B189-44C6-8366-434396B33ECA}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {7A9CA0AF-B189-44C6-8366-434396B33ECA}.Optimized|Win32.Build.0 = Optimized|Win32
+ {7A9CA0AF-B189-44C6-8366-434396B33ECA}.Release|Win32.ActiveCfg = Release|Win32
+ {7A9CA0AF-B189-44C6-8366-434396B33ECA}.Release|Win32.Build.0 = Release|Win32
+ {EF79AC9C-892B-448A-87AB-ABA65CE4FD19}.Debug|Win32.ActiveCfg = Debug|Win32
+ {EF79AC9C-892B-448A-87AB-ABA65CE4FD19}.Debug|Win32.Build.0 = Debug|Win32
+ {EF79AC9C-892B-448A-87AB-ABA65CE4FD19}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {EF79AC9C-892B-448A-87AB-ABA65CE4FD19}.Optimized|Win32.Build.0 = Optimized|Win32
+ {EF79AC9C-892B-448A-87AB-ABA65CE4FD19}.Release|Win32.ActiveCfg = Release|Win32
+ {EF79AC9C-892B-448A-87AB-ABA65CE4FD19}.Release|Win32.Build.0 = Release|Win32
+ {B75AC10E-38CE-4E3E-9BA4-6A5915DE1C30}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B75AC10E-38CE-4E3E-9BA4-6A5915DE1C30}.Debug|Win32.Build.0 = Debug|Win32
+ {B75AC10E-38CE-4E3E-9BA4-6A5915DE1C30}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {B75AC10E-38CE-4E3E-9BA4-6A5915DE1C30}.Optimized|Win32.Build.0 = Optimized|Win32
+ {B75AC10E-38CE-4E3E-9BA4-6A5915DE1C30}.Release|Win32.ActiveCfg = Release|Win32
+ {B75AC10E-38CE-4E3E-9BA4-6A5915DE1C30}.Release|Win32.Build.0 = Release|Win32
+ {4D369B2A-B4D6-4337-9AF7-E8F697F7994D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4D369B2A-B4D6-4337-9AF7-E8F697F7994D}.Debug|Win32.Build.0 = Debug|Win32
+ {4D369B2A-B4D6-4337-9AF7-E8F697F7994D}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {4D369B2A-B4D6-4337-9AF7-E8F697F7994D}.Optimized|Win32.Build.0 = Optimized|Win32
+ {4D369B2A-B4D6-4337-9AF7-E8F697F7994D}.Release|Win32.ActiveCfg = Release|Win32
+ {4D369B2A-B4D6-4337-9AF7-E8F697F7994D}.Release|Win32.Build.0 = Release|Win32
+ {5EFB446B-1E95-487F-B1BB-B9767FA86DE3}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5EFB446B-1E95-487F-B1BB-B9767FA86DE3}.Debug|Win32.Build.0 = Debug|Win32
+ {5EFB446B-1E95-487F-B1BB-B9767FA86DE3}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {5EFB446B-1E95-487F-B1BB-B9767FA86DE3}.Optimized|Win32.Build.0 = Optimized|Win32
+ {5EFB446B-1E95-487F-B1BB-B9767FA86DE3}.Release|Win32.ActiveCfg = Release|Win32
+ {5EFB446B-1E95-487F-B1BB-B9767FA86DE3}.Release|Win32.Build.0 = Release|Win32
+ {023405A9-B857-4555-B7A1-46813CBC19C4}.Debug|Win32.ActiveCfg = Debug|Win32
+ {023405A9-B857-4555-B7A1-46813CBC19C4}.Debug|Win32.Build.0 = Debug|Win32
+ {023405A9-B857-4555-B7A1-46813CBC19C4}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {023405A9-B857-4555-B7A1-46813CBC19C4}.Optimized|Win32.Build.0 = Optimized|Win32
+ {023405A9-B857-4555-B7A1-46813CBC19C4}.Release|Win32.ActiveCfg = Release|Win32
+ {023405A9-B857-4555-B7A1-46813CBC19C4}.Release|Win32.Build.0 = Release|Win32
+ {ABC58EA0-A1A3-4DBE-A5A3-E56582BC241D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {ABC58EA0-A1A3-4DBE-A5A3-E56582BC241D}.Debug|Win32.Build.0 = Debug|Win32
+ {ABC58EA0-A1A3-4DBE-A5A3-E56582BC241D}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {ABC58EA0-A1A3-4DBE-A5A3-E56582BC241D}.Optimized|Win32.Build.0 = Optimized|Win32
+ {ABC58EA0-A1A3-4DBE-A5A3-E56582BC241D}.Release|Win32.ActiveCfg = Release|Win32
+ {ABC58EA0-A1A3-4DBE-A5A3-E56582BC241D}.Release|Win32.Build.0 = Release|Win32
+ {FA266E3D-BC73-4DC1-B666-B5F34C71085F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FA266E3D-BC73-4DC1-B666-B5F34C71085F}.Debug|Win32.Build.0 = Debug|Win32
+ {FA266E3D-BC73-4DC1-B666-B5F34C71085F}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {FA266E3D-BC73-4DC1-B666-B5F34C71085F}.Optimized|Win32.Build.0 = Optimized|Win32
+ {FA266E3D-BC73-4DC1-B666-B5F34C71085F}.Release|Win32.ActiveCfg = Release|Win32
+ {FA266E3D-BC73-4DC1-B666-B5F34C71085F}.Release|Win32.Build.0 = Release|Win32
+ {6B75D5AD-DEA7-491B-B93D-9D2C51CBF030}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6B75D5AD-DEA7-491B-B93D-9D2C51CBF030}.Debug|Win32.Build.0 = Debug|Win32
+ {6B75D5AD-DEA7-491B-B93D-9D2C51CBF030}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {6B75D5AD-DEA7-491B-B93D-9D2C51CBF030}.Optimized|Win32.Build.0 = Optimized|Win32
+ {6B75D5AD-DEA7-491B-B93D-9D2C51CBF030}.Release|Win32.ActiveCfg = Release|Win32
+ {6B75D5AD-DEA7-491B-B93D-9D2C51CBF030}.Release|Win32.Build.0 = Release|Win32
+ {05515189-D04C-4A04-A2FF-89DE895817C8}.Debug|Win32.ActiveCfg = Debug|Win32
+ {05515189-D04C-4A04-A2FF-89DE895817C8}.Debug|Win32.Build.0 = Debug|Win32
+ {05515189-D04C-4A04-A2FF-89DE895817C8}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {05515189-D04C-4A04-A2FF-89DE895817C8}.Optimized|Win32.Build.0 = Optimized|Win32
+ {05515189-D04C-4A04-A2FF-89DE895817C8}.Release|Win32.ActiveCfg = Release|Win32
+ {05515189-D04C-4A04-A2FF-89DE895817C8}.Release|Win32.Build.0 = Release|Win32
+ {4F6E5721-AE45-47D2-831E-269DF5AE4C69}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4F6E5721-AE45-47D2-831E-269DF5AE4C69}.Debug|Win32.Build.0 = Debug|Win32
+ {4F6E5721-AE45-47D2-831E-269DF5AE4C69}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {4F6E5721-AE45-47D2-831E-269DF5AE4C69}.Optimized|Win32.Build.0 = Optimized|Win32
+ {4F6E5721-AE45-47D2-831E-269DF5AE4C69}.Release|Win32.ActiveCfg = Release|Win32
+ {4F6E5721-AE45-47D2-831E-269DF5AE4C69}.Release|Win32.Build.0 = Release|Win32
+ {35DB55F5-5CA4-43B8-AE55-0437603714A3}.Debug|Win32.ActiveCfg = Debug|Win32
+ {35DB55F5-5CA4-43B8-AE55-0437603714A3}.Debug|Win32.Build.0 = Debug|Win32
+ {35DB55F5-5CA4-43B8-AE55-0437603714A3}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {35DB55F5-5CA4-43B8-AE55-0437603714A3}.Optimized|Win32.Build.0 = Optimized|Win32
+ {35DB55F5-5CA4-43B8-AE55-0437603714A3}.Release|Win32.ActiveCfg = Release|Win32
+ {35DB55F5-5CA4-43B8-AE55-0437603714A3}.Release|Win32.Build.0 = Release|Win32
+ {2379493D-680B-41DF-9BEF-FFBC09827BAF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2379493D-680B-41DF-9BEF-FFBC09827BAF}.Debug|Win32.Build.0 = Debug|Win32
+ {2379493D-680B-41DF-9BEF-FFBC09827BAF}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {2379493D-680B-41DF-9BEF-FFBC09827BAF}.Optimized|Win32.Build.0 = Optimized|Win32
+ {2379493D-680B-41DF-9BEF-FFBC09827BAF}.Release|Win32.ActiveCfg = Release|Win32
+ {2379493D-680B-41DF-9BEF-FFBC09827BAF}.Release|Win32.Build.0 = Release|Win32
+ {9080903C-CB60-41C9-BDA0-3BDE29CFF1B3}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9080903C-CB60-41C9-BDA0-3BDE29CFF1B3}.Debug|Win32.Build.0 = Debug|Win32
+ {9080903C-CB60-41C9-BDA0-3BDE29CFF1B3}.Optimized|Win32.ActiveCfg = Release|Win32
+ {9080903C-CB60-41C9-BDA0-3BDE29CFF1B3}.Optimized|Win32.Build.0 = Release|Win32
+ {9080903C-CB60-41C9-BDA0-3BDE29CFF1B3}.Release|Win32.ActiveCfg = Release|Win32
+ {9080903C-CB60-41C9-BDA0-3BDE29CFF1B3}.Release|Win32.Build.0 = Release|Win32
+ {E255662F-D219-47D9-872A-8530A3B072CE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E255662F-D219-47D9-872A-8530A3B072CE}.Debug|Win32.Build.0 = Debug|Win32
+ {E255662F-D219-47D9-872A-8530A3B072CE}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {E255662F-D219-47D9-872A-8530A3B072CE}.Optimized|Win32.Build.0 = Optimized|Win32
+ {E255662F-D219-47D9-872A-8530A3B072CE}.Release|Win32.ActiveCfg = Release|Win32
+ {E255662F-D219-47D9-872A-8530A3B072CE}.Release|Win32.Build.0 = Release|Win32
+ {FB9473A9-E72C-4AE9-97D5-89131D2D2324}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FB9473A9-E72C-4AE9-97D5-89131D2D2324}.Debug|Win32.Build.0 = Debug|Win32
+ {FB9473A9-E72C-4AE9-97D5-89131D2D2324}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {FB9473A9-E72C-4AE9-97D5-89131D2D2324}.Optimized|Win32.Build.0 = Optimized|Win32
+ {FB9473A9-E72C-4AE9-97D5-89131D2D2324}.Release|Win32.ActiveCfg = Release|Win32
+ {FB9473A9-E72C-4AE9-97D5-89131D2D2324}.Release|Win32.Build.0 = Release|Win32
+ {86E1C163-E59B-4408-AB2F-B93E2EB96BF1}.Debug|Win32.ActiveCfg = Debug|Win32
+ {86E1C163-E59B-4408-AB2F-B93E2EB96BF1}.Debug|Win32.Build.0 = Debug|Win32
+ {86E1C163-E59B-4408-AB2F-B93E2EB96BF1}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {86E1C163-E59B-4408-AB2F-B93E2EB96BF1}.Optimized|Win32.Build.0 = Optimized|Win32
+ {86E1C163-E59B-4408-AB2F-B93E2EB96BF1}.Release|Win32.ActiveCfg = Release|Win32
+ {86E1C163-E59B-4408-AB2F-B93E2EB96BF1}.Release|Win32.Build.0 = Release|Win32
+ {985EDE24-4618-4F50-A12E-DBE859B232B9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {985EDE24-4618-4F50-A12E-DBE859B232B9}.Debug|Win32.Build.0 = Debug|Win32
+ {985EDE24-4618-4F50-A12E-DBE859B232B9}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {985EDE24-4618-4F50-A12E-DBE859B232B9}.Optimized|Win32.Build.0 = Optimized|Win32
+ {985EDE24-4618-4F50-A12E-DBE859B232B9}.Release|Win32.ActiveCfg = Release|Win32
+ {985EDE24-4618-4F50-A12E-DBE859B232B9}.Release|Win32.Build.0 = Release|Win32
+ {6D8D49D8-7832-441F-B61B-E5F2C4B42D49}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6D8D49D8-7832-441F-B61B-E5F2C4B42D49}.Debug|Win32.Build.0 = Debug|Win32
+ {6D8D49D8-7832-441F-B61B-E5F2C4B42D49}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {6D8D49D8-7832-441F-B61B-E5F2C4B42D49}.Optimized|Win32.Build.0 = Optimized|Win32
+ {6D8D49D8-7832-441F-B61B-E5F2C4B42D49}.Release|Win32.ActiveCfg = Release|Win32
+ {6D8D49D8-7832-441F-B61B-E5F2C4B42D49}.Release|Win32.Build.0 = Release|Win32
+ {F5CF1FEC-1123-4246-B24B-46DEBB3C5146}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F5CF1FEC-1123-4246-B24B-46DEBB3C5146}.Debug|Win32.Build.0 = Debug|Win32
+ {F5CF1FEC-1123-4246-B24B-46DEBB3C5146}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {F5CF1FEC-1123-4246-B24B-46DEBB3C5146}.Optimized|Win32.Build.0 = Optimized|Win32
+ {F5CF1FEC-1123-4246-B24B-46DEBB3C5146}.Release|Win32.ActiveCfg = Release|Win32
+ {F5CF1FEC-1123-4246-B24B-46DEBB3C5146}.Release|Win32.Build.0 = Release|Win32
+ {F47EB21E-1EB9-4E05-B07C-030A4AA83CA6}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F47EB21E-1EB9-4E05-B07C-030A4AA83CA6}.Debug|Win32.Build.0 = Debug|Win32
+ {F47EB21E-1EB9-4E05-B07C-030A4AA83CA6}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {F47EB21E-1EB9-4E05-B07C-030A4AA83CA6}.Optimized|Win32.Build.0 = Optimized|Win32
+ {F47EB21E-1EB9-4E05-B07C-030A4AA83CA6}.Release|Win32.ActiveCfg = Release|Win32
+ {F47EB21E-1EB9-4E05-B07C-030A4AA83CA6}.Release|Win32.Build.0 = Release|Win32
+ {FBBB5B75-30C9-479F-8A6B-A620A35C0D46}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FBBB5B75-30C9-479F-8A6B-A620A35C0D46}.Debug|Win32.Build.0 = Debug|Win32
+ {FBBB5B75-30C9-479F-8A6B-A620A35C0D46}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {FBBB5B75-30C9-479F-8A6B-A620A35C0D46}.Optimized|Win32.Build.0 = Optimized|Win32
+ {FBBB5B75-30C9-479F-8A6B-A620A35C0D46}.Release|Win32.ActiveCfg = Release|Win32
+ {FBBB5B75-30C9-479F-8A6B-A620A35C0D46}.Release|Win32.Build.0 = Release|Win32
+ {0C54AD5C-87B2-43C6-A699-03A547FF6E03}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0C54AD5C-87B2-43C6-A699-03A547FF6E03}.Debug|Win32.Build.0 = Debug|Win32
+ {0C54AD5C-87B2-43C6-A699-03A547FF6E03}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {0C54AD5C-87B2-43C6-A699-03A547FF6E03}.Optimized|Win32.Build.0 = Optimized|Win32
+ {0C54AD5C-87B2-43C6-A699-03A547FF6E03}.Release|Win32.ActiveCfg = Release|Win32
+ {0C54AD5C-87B2-43C6-A699-03A547FF6E03}.Release|Win32.Build.0 = Release|Win32
+ {ACAB6CEA-5A4A-4CE4-97D6-333FBA3D8DC0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {ACAB6CEA-5A4A-4CE4-97D6-333FBA3D8DC0}.Debug|Win32.Build.0 = Debug|Win32
+ {ACAB6CEA-5A4A-4CE4-97D6-333FBA3D8DC0}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {ACAB6CEA-5A4A-4CE4-97D6-333FBA3D8DC0}.Optimized|Win32.Build.0 = Optimized|Win32
+ {ACAB6CEA-5A4A-4CE4-97D6-333FBA3D8DC0}.Release|Win32.ActiveCfg = Release|Win32
+ {ACAB6CEA-5A4A-4CE4-97D6-333FBA3D8DC0}.Release|Win32.Build.0 = Release|Win32
+ {355DDF1F-1DCA-4667-A1F6-11B66FBC4228}.Debug|Win32.ActiveCfg = Debug|Win32
+ {355DDF1F-1DCA-4667-A1F6-11B66FBC4228}.Debug|Win32.Build.0 = Debug|Win32
+ {355DDF1F-1DCA-4667-A1F6-11B66FBC4228}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {355DDF1F-1DCA-4667-A1F6-11B66FBC4228}.Optimized|Win32.Build.0 = Optimized|Win32
+ {355DDF1F-1DCA-4667-A1F6-11B66FBC4228}.Release|Win32.ActiveCfg = Release|Win32
+ {355DDF1F-1DCA-4667-A1F6-11B66FBC4228}.Release|Win32.Build.0 = Release|Win32
+ {D21EE827-D349-4EFB-B93B-4B5668AAE8B3}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D21EE827-D349-4EFB-B93B-4B5668AAE8B3}.Debug|Win32.Build.0 = Debug|Win32
+ {D21EE827-D349-4EFB-B93B-4B5668AAE8B3}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {D21EE827-D349-4EFB-B93B-4B5668AAE8B3}.Optimized|Win32.Build.0 = Optimized|Win32
+ {D21EE827-D349-4EFB-B93B-4B5668AAE8B3}.Release|Win32.ActiveCfg = Release|Win32
+ {D21EE827-D349-4EFB-B93B-4B5668AAE8B3}.Release|Win32.Build.0 = Release|Win32
+ {513A5071-8AAE-45CD-B58F-FA81F48137A0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {513A5071-8AAE-45CD-B58F-FA81F48137A0}.Debug|Win32.Build.0 = Debug|Win32
+ {513A5071-8AAE-45CD-B58F-FA81F48137A0}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {513A5071-8AAE-45CD-B58F-FA81F48137A0}.Optimized|Win32.Build.0 = Optimized|Win32
+ {513A5071-8AAE-45CD-B58F-FA81F48137A0}.Release|Win32.ActiveCfg = Release|Win32
+ {513A5071-8AAE-45CD-B58F-FA81F48137A0}.Release|Win32.Build.0 = Release|Win32
+ {AEAEB11D-D4E6-444A-AD71-F78DA7F9BD95}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AEAEB11D-D4E6-444A-AD71-F78DA7F9BD95}.Debug|Win32.Build.0 = Debug|Win32
+ {AEAEB11D-D4E6-444A-AD71-F78DA7F9BD95}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {AEAEB11D-D4E6-444A-AD71-F78DA7F9BD95}.Optimized|Win32.Build.0 = Optimized|Win32
+ {AEAEB11D-D4E6-444A-AD71-F78DA7F9BD95}.Release|Win32.ActiveCfg = Release|Win32
+ {AEAEB11D-D4E6-444A-AD71-F78DA7F9BD95}.Release|Win32.Build.0 = Release|Win32
+ {63F95846-C17B-4977-BEDD-D49852137A3D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {63F95846-C17B-4977-BEDD-D49852137A3D}.Debug|Win32.Build.0 = Debug|Win32
+ {63F95846-C17B-4977-BEDD-D49852137A3D}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {63F95846-C17B-4977-BEDD-D49852137A3D}.Optimized|Win32.Build.0 = Optimized|Win32
+ {63F95846-C17B-4977-BEDD-D49852137A3D}.Release|Win32.ActiveCfg = Release|Win32
+ {63F95846-C17B-4977-BEDD-D49852137A3D}.Release|Win32.Build.0 = Release|Win32
+ {DDA6E9E4-501E-4336-84F1-8995098B8656}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DDA6E9E4-501E-4336-84F1-8995098B8656}.Debug|Win32.Build.0 = Debug|Win32
+ {DDA6E9E4-501E-4336-84F1-8995098B8656}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {DDA6E9E4-501E-4336-84F1-8995098B8656}.Optimized|Win32.Build.0 = Optimized|Win32
+ {DDA6E9E4-501E-4336-84F1-8995098B8656}.Release|Win32.ActiveCfg = Release|Win32
+ {DDA6E9E4-501E-4336-84F1-8995098B8656}.Release|Win32.Build.0 = Release|Win32
+ {6235E2B4-A893-4776-BE5A-C77120DD8548}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6235E2B4-A893-4776-BE5A-C77120DD8548}.Debug|Win32.Build.0 = Debug|Win32
+ {6235E2B4-A893-4776-BE5A-C77120DD8548}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {6235E2B4-A893-4776-BE5A-C77120DD8548}.Optimized|Win32.Build.0 = Optimized|Win32
+ {6235E2B4-A893-4776-BE5A-C77120DD8548}.Release|Win32.ActiveCfg = Release|Win32
+ {6235E2B4-A893-4776-BE5A-C77120DD8548}.Release|Win32.Build.0 = Release|Win32
+ {34AD1957-929B-46C2-B98B-413F4D31A95C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {34AD1957-929B-46C2-B98B-413F4D31A95C}.Debug|Win32.Build.0 = Debug|Win32
+ {34AD1957-929B-46C2-B98B-413F4D31A95C}.Optimized|Win32.ActiveCfg = Debug|Win32
+ {34AD1957-929B-46C2-B98B-413F4D31A95C}.Optimized|Win32.Build.0 = Debug|Win32
+ {34AD1957-929B-46C2-B98B-413F4D31A95C}.Release|Win32.ActiveCfg = Release|Win32
+ {34AD1957-929B-46C2-B98B-413F4D31A95C}.Release|Win32.Build.0 = Release|Win32
+ {E1D87320-A777-4672-81BB-CE14321097B0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E1D87320-A777-4672-81BB-CE14321097B0}.Debug|Win32.Build.0 = Debug|Win32
+ {E1D87320-A777-4672-81BB-CE14321097B0}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {E1D87320-A777-4672-81BB-CE14321097B0}.Optimized|Win32.Build.0 = Optimized|Win32
+ {E1D87320-A777-4672-81BB-CE14321097B0}.Release|Win32.ActiveCfg = Release|Win32
+ {E1D87320-A777-4672-81BB-CE14321097B0}.Release|Win32.Build.0 = Release|Win32
+ {5FBD3891-61E3-4A49-92FE-CD8225577628}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5FBD3891-61E3-4A49-92FE-CD8225577628}.Debug|Win32.Build.0 = Debug|Win32
+ {5FBD3891-61E3-4A49-92FE-CD8225577628}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {5FBD3891-61E3-4A49-92FE-CD8225577628}.Optimized|Win32.Build.0 = Optimized|Win32
+ {5FBD3891-61E3-4A49-92FE-CD8225577628}.Release|Win32.ActiveCfg = Release|Win32
+ {5FBD3891-61E3-4A49-92FE-CD8225577628}.Release|Win32.Build.0 = Release|Win32
+ {1DA25C31-189F-4661-9B65-927B8D05C63B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1DA25C31-189F-4661-9B65-927B8D05C63B}.Debug|Win32.Build.0 = Debug|Win32
+ {1DA25C31-189F-4661-9B65-927B8D05C63B}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {1DA25C31-189F-4661-9B65-927B8D05C63B}.Optimized|Win32.Build.0 = Optimized|Win32
+ {1DA25C31-189F-4661-9B65-927B8D05C63B}.Release|Win32.ActiveCfg = Release|Win32
+ {1DA25C31-189F-4661-9B65-927B8D05C63B}.Release|Win32.Build.0 = Release|Win32
+ {EC34F97C-F421-4C75-8C8C-91D00E699D33}.Debug|Win32.ActiveCfg = Debug|Win32
+ {EC34F97C-F421-4C75-8C8C-91D00E699D33}.Debug|Win32.Build.0 = Debug|Win32
+ {EC34F97C-F421-4C75-8C8C-91D00E699D33}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {EC34F97C-F421-4C75-8C8C-91D00E699D33}.Optimized|Win32.Build.0 = Optimized|Win32
+ {EC34F97C-F421-4C75-8C8C-91D00E699D33}.Release|Win32.ActiveCfg = Release|Win32
+ {EC34F97C-F421-4C75-8C8C-91D00E699D33}.Release|Win32.Build.0 = Release|Win32
+ {B333AC21-A6B4-4F5E-92A9-98335FB8C4AE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B333AC21-A6B4-4F5E-92A9-98335FB8C4AE}.Debug|Win32.Build.0 = Debug|Win32
+ {B333AC21-A6B4-4F5E-92A9-98335FB8C4AE}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {B333AC21-A6B4-4F5E-92A9-98335FB8C4AE}.Optimized|Win32.Build.0 = Optimized|Win32
+ {B333AC21-A6B4-4F5E-92A9-98335FB8C4AE}.Release|Win32.ActiveCfg = Release|Win32
+ {B333AC21-A6B4-4F5E-92A9-98335FB8C4AE}.Release|Win32.Build.0 = Release|Win32
+ {A4AC1380-D2AB-4B0D-824A-4918680F5CA4}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A4AC1380-D2AB-4B0D-824A-4918680F5CA4}.Debug|Win32.Build.0 = Debug|Win32
+ {A4AC1380-D2AB-4B0D-824A-4918680F5CA4}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {A4AC1380-D2AB-4B0D-824A-4918680F5CA4}.Optimized|Win32.Build.0 = Optimized|Win32
+ {A4AC1380-D2AB-4B0D-824A-4918680F5CA4}.Release|Win32.ActiveCfg = Release|Win32
+ {A4AC1380-D2AB-4B0D-824A-4918680F5CA4}.Release|Win32.Build.0 = Release|Win32
+ {7986223E-4B89-44B1-AED5-716A5562AAB6}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7986223E-4B89-44B1-AED5-716A5562AAB6}.Debug|Win32.Build.0 = Debug|Win32
+ {7986223E-4B89-44B1-AED5-716A5562AAB6}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {7986223E-4B89-44B1-AED5-716A5562AAB6}.Optimized|Win32.Build.0 = Optimized|Win32
+ {7986223E-4B89-44B1-AED5-716A5562AAB6}.Release|Win32.ActiveCfg = Release|Win32
+ {7986223E-4B89-44B1-AED5-716A5562AAB6}.Release|Win32.Build.0 = Release|Win32
+ {52961080-869C-4053-84B4-44D4DEC48B8B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {52961080-869C-4053-84B4-44D4DEC48B8B}.Debug|Win32.Build.0 = Debug|Win32
+ {52961080-869C-4053-84B4-44D4DEC48B8B}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {52961080-869C-4053-84B4-44D4DEC48B8B}.Optimized|Win32.Build.0 = Optimized|Win32
+ {52961080-869C-4053-84B4-44D4DEC48B8B}.Release|Win32.ActiveCfg = Release|Win32
+ {52961080-869C-4053-84B4-44D4DEC48B8B}.Release|Win32.Build.0 = Release|Win32
+ {D1FB68C1-A139-4458-9984-1514AC15AC81}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D1FB68C1-A139-4458-9984-1514AC15AC81}.Debug|Win32.Build.0 = Debug|Win32
+ {D1FB68C1-A139-4458-9984-1514AC15AC81}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {D1FB68C1-A139-4458-9984-1514AC15AC81}.Optimized|Win32.Build.0 = Optimized|Win32
+ {D1FB68C1-A139-4458-9984-1514AC15AC81}.Release|Win32.ActiveCfg = Release|Win32
+ {D1FB68C1-A139-4458-9984-1514AC15AC81}.Release|Win32.Build.0 = Release|Win32
+ {BEAAA971-E712-4662-A9EE-35AFA3D3F231}.Debug|Win32.ActiveCfg = Debug|Win32
+ {BEAAA971-E712-4662-A9EE-35AFA3D3F231}.Debug|Win32.Build.0 = Debug|Win32
+ {BEAAA971-E712-4662-A9EE-35AFA3D3F231}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {BEAAA971-E712-4662-A9EE-35AFA3D3F231}.Optimized|Win32.Build.0 = Optimized|Win32
+ {BEAAA971-E712-4662-A9EE-35AFA3D3F231}.Release|Win32.ActiveCfg = Release|Win32
+ {BEAAA971-E712-4662-A9EE-35AFA3D3F231}.Release|Win32.Build.0 = Release|Win32
+ {CE9F4DC5-8DAC-4704-925C-0E7D0581375C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {CE9F4DC5-8DAC-4704-925C-0E7D0581375C}.Debug|Win32.Build.0 = Debug|Win32
+ {CE9F4DC5-8DAC-4704-925C-0E7D0581375C}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {CE9F4DC5-8DAC-4704-925C-0E7D0581375C}.Optimized|Win32.Build.0 = Optimized|Win32
+ {CE9F4DC5-8DAC-4704-925C-0E7D0581375C}.Release|Win32.ActiveCfg = Release|Win32
+ {CE9F4DC5-8DAC-4704-925C-0E7D0581375C}.Release|Win32.Build.0 = Release|Win32
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E}.Debug|Win32.Build.0 = Debug|Win32
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E}.Optimized|Win32.Build.0 = Optimized|Win32
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E}.Release|Win32.ActiveCfg = Release|Win32
+ {52153865-1ABF-4FBB-84C4-0FC439716F1E}.Release|Win32.Build.0 = Release|Win32
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}.Debug|Win32.ActiveCfg = Debug|Win32
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}.Debug|Win32.Build.0 = Debug|Win32
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}.Optimized|Win32.Build.0 = Optimized|Win32
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}.Release|Win32.ActiveCfg = Release|Win32
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}.Release|Win32.Build.0 = Release|Win32
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}.Debug|Win32.Build.0 = Debug|Win32
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}.Optimized|Win32.Build.0 = Optimized|Win32
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}.Release|Win32.ActiveCfg = Release|Win32
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}.Release|Win32.Build.0 = Release|Win32
+ {250A5957-7BB9-4F50-B0E9-19C87136977E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {250A5957-7BB9-4F50-B0E9-19C87136977E}.Debug|Win32.Build.0 = Debug|Win32
+ {250A5957-7BB9-4F50-B0E9-19C87136977E}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {250A5957-7BB9-4F50-B0E9-19C87136977E}.Optimized|Win32.Build.0 = Optimized|Win32
+ {250A5957-7BB9-4F50-B0E9-19C87136977E}.Release|Win32.ActiveCfg = Release|Win32
+ {250A5957-7BB9-4F50-B0E9-19C87136977E}.Release|Win32.Build.0 = Release|Win32
+ {147D02D6-C76C-4058-863A-A9B3364C2047}.Debug|Win32.ActiveCfg = Debug|Win32
+ {147D02D6-C76C-4058-863A-A9B3364C2047}.Debug|Win32.Build.0 = Debug|Win32
+ {147D02D6-C76C-4058-863A-A9B3364C2047}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {147D02D6-C76C-4058-863A-A9B3364C2047}.Optimized|Win32.Build.0 = Optimized|Win32
+ {147D02D6-C76C-4058-863A-A9B3364C2047}.Release|Win32.ActiveCfg = Release|Win32
+ {147D02D6-C76C-4058-863A-A9B3364C2047}.Release|Win32.Build.0 = Release|Win32
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D}.Debug|Win32.Build.0 = Debug|Win32
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D}.Optimized|Win32.Build.0 = Optimized|Win32
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D}.Release|Win32.ActiveCfg = Release|Win32
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D}.Release|Win32.Build.0 = Release|Win32
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}.Debug|Win32.Build.0 = Debug|Win32
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}.Optimized|Win32.Build.0 = Optimized|Win32
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}.Release|Win32.ActiveCfg = Release|Win32
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}.Release|Win32.Build.0 = Release|Win32
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}.Debug|Win32.Build.0 = Debug|Win32
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}.Optimized|Win32.Build.0 = Optimized|Win32
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}.Release|Win32.ActiveCfg = Release|Win32
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}.Release|Win32.Build.0 = Release|Win32
+ {82393D39-3807-4C87-932F-E3571616A7DD}.Debug|Win32.ActiveCfg = Debug|Win32
+ {82393D39-3807-4C87-932F-E3571616A7DD}.Debug|Win32.Build.0 = Debug|Win32
+ {82393D39-3807-4C87-932F-E3571616A7DD}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {82393D39-3807-4C87-932F-E3571616A7DD}.Optimized|Win32.Build.0 = Optimized|Win32
+ {82393D39-3807-4C87-932F-E3571616A7DD}.Release|Win32.ActiveCfg = Release|Win32
+ {82393D39-3807-4C87-932F-E3571616A7DD}.Release|Win32.Build.0 = Release|Win32
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}.Debug|Win32.ActiveCfg = Debug|Win32
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}.Debug|Win32.Build.0 = Debug|Win32
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}.Optimized|Win32.Build.0 = Optimized|Win32
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}.Release|Win32.ActiveCfg = Release|Win32
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}.Release|Win32.Build.0 = Release|Win32
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27}.Debug|Win32.ActiveCfg = Debug|Win32
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27}.Debug|Win32.Build.0 = Debug|Win32
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27}.Optimized|Win32.Build.0 = Optimized|Win32
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27}.Release|Win32.ActiveCfg = Release|Win32
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27}.Release|Win32.Build.0 = Release|Win32
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264}.Debug|Win32.Build.0 = Debug|Win32
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264}.Optimized|Win32.Build.0 = Optimized|Win32
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264}.Release|Win32.ActiveCfg = Release|Win32
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264}.Release|Win32.Build.0 = Release|Win32
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}.Debug|Win32.Build.0 = Debug|Win32
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}.Optimized|Win32.Build.0 = Optimized|Win32
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}.Release|Win32.ActiveCfg = Release|Win32
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}.Release|Win32.Build.0 = Release|Win32
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A}.Debug|Win32.Build.0 = Debug|Win32
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A}.Optimized|Win32.Build.0 = Optimized|Win32
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A}.Release|Win32.ActiveCfg = Release|Win32
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A}.Release|Win32.Build.0 = Release|Win32
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54}.Debug|Win32.ActiveCfg = Debug|Win32
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54}.Debug|Win32.Build.0 = Debug|Win32
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54}.Optimized|Win32.Build.0 = Optimized|Win32
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54}.Release|Win32.ActiveCfg = Release|Win32
+ {861A873C-D6AD-4B8A-9BED-0314A8B74B54}.Release|Win32.Build.0 = Release|Win32
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F}.Debug|Win32.Build.0 = Debug|Win32
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F}.Optimized|Win32.Build.0 = Optimized|Win32
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F}.Release|Win32.ActiveCfg = Release|Win32
+ {DE93996C-CB51-4D61-85A0-A9DFC677445F}.Release|Win32.Build.0 = Release|Win32
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}.Debug|Win32.Build.0 = Debug|Win32
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}.Optimized|Win32.Build.0 = Optimized|Win32
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}.Release|Win32.ActiveCfg = Release|Win32
+ {0FB11BC8-3BD1-4471-8DDA-DA3BC05937B2}.Release|Win32.Build.0 = Release|Win32
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50}.Debug|Win32.Build.0 = Debug|Win32
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50}.Optimized|Win32.Build.0 = Optimized|Win32
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50}.Release|Win32.ActiveCfg = Release|Win32
+ {A8036EC1-9682-4315-A3D2-6B26C3245D50}.Release|Win32.Build.0 = Release|Win32
+ {9C682884-289D-4E31-B5A8-5B4FE6B10452}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9C682884-289D-4E31-B5A8-5B4FE6B10452}.Debug|Win32.Build.0 = Debug|Win32
+ {9C682884-289D-4E31-B5A8-5B4FE6B10452}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {9C682884-289D-4E31-B5A8-5B4FE6B10452}.Optimized|Win32.Build.0 = Optimized|Win32
+ {9C682884-289D-4E31-B5A8-5B4FE6B10452}.Release|Win32.ActiveCfg = Release|Win32
+ {9C682884-289D-4E31-B5A8-5B4FE6B10452}.Release|Win32.Build.0 = Release|Win32
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069}.Debug|Win32.Build.0 = Debug|Win32
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069}.Optimized|Win32.Build.0 = Optimized|Win32
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069}.Release|Win32.ActiveCfg = Release|Win32
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069}.Release|Win32.Build.0 = Release|Win32
+ {4F237764-394D-40CB-9314-DAEDED42E2CD}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4F237764-394D-40CB-9314-DAEDED42E2CD}.Debug|Win32.Build.0 = Debug|Win32
+ {4F237764-394D-40CB-9314-DAEDED42E2CD}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {4F237764-394D-40CB-9314-DAEDED42E2CD}.Optimized|Win32.Build.0 = Optimized|Win32
+ {4F237764-394D-40CB-9314-DAEDED42E2CD}.Release|Win32.ActiveCfg = Release|Win32
+ {4F237764-394D-40CB-9314-DAEDED42E2CD}.Release|Win32.Build.0 = Release|Win32
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4}.Debug|Win32.Build.0 = Debug|Win32
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4}.Optimized|Win32.Build.0 = Optimized|Win32
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4}.Release|Win32.ActiveCfg = Release|Win32
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4}.Release|Win32.Build.0 = Release|Win32
+ {38DF394C-0909-4507-8029-53D960FEA464}.Debug|Win32.ActiveCfg = Debug|Win32
+ {38DF394C-0909-4507-8029-53D960FEA464}.Debug|Win32.Build.0 = Debug|Win32
+ {38DF394C-0909-4507-8029-53D960FEA464}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {38DF394C-0909-4507-8029-53D960FEA464}.Optimized|Win32.Build.0 = Optimized|Win32
+ {38DF394C-0909-4507-8029-53D960FEA464}.Release|Win32.ActiveCfg = Release|Win32
+ {38DF394C-0909-4507-8029-53D960FEA464}.Release|Win32.Build.0 = Release|Win32
+ {7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB}.Debug|Win32.Build.0 = Debug|Win32
+ {7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB}.Optimized|Win32.Build.0 = Optimized|Win32
+ {7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB}.Release|Win32.ActiveCfg = Release|Win32
+ {7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB}.Release|Win32.Build.0 = Release|Win32
+ {D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A}.Debug|Win32.Build.0 = Debug|Win32
+ {D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A}.Optimized|Win32.Build.0 = Optimized|Win32
+ {D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A}.Release|Win32.ActiveCfg = Release|Win32
+ {D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A}.Release|Win32.Build.0 = Release|Win32
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE}.Debug|Win32.Build.0 = Debug|Win32
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE}.Optimized|Win32.Build.0 = Optimized|Win32
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE}.Release|Win32.ActiveCfg = Release|Win32
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE}.Release|Win32.Build.0 = Release|Win32
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66}.Debug|Win32.ActiveCfg = Debug|Win32
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66}.Debug|Win32.Build.0 = Debug|Win32
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66}.Optimized|Win32.Build.0 = Optimized|Win32
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66}.Release|Win32.ActiveCfg = Release|Win32
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66}.Release|Win32.Build.0 = Release|Win32
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}.Debug|Win32.ActiveCfg = Debug|Win32
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}.Debug|Win32.Build.0 = Debug|Win32
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}.Optimized|Win32.Build.0 = Optimized|Win32
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}.Release|Win32.ActiveCfg = Release|Win32
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}.Release|Win32.Build.0 = Release|Win32
+ {6BD52B35-92CA-44E4-995E-2B79C7398183}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6BD52B35-92CA-44E4-995E-2B79C7398183}.Debug|Win32.Build.0 = Debug|Win32
+ {6BD52B35-92CA-44E4-995E-2B79C7398183}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {6BD52B35-92CA-44E4-995E-2B79C7398183}.Optimized|Win32.Build.0 = Optimized|Win32
+ {6BD52B35-92CA-44E4-995E-2B79C7398183}.Release|Win32.ActiveCfg = Release|Win32
+ {6BD52B35-92CA-44E4-995E-2B79C7398183}.Release|Win32.Build.0 = Release|Win32
+ {B105EB3E-6860-4077-9833-C6EE5CFEAFBF}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B105EB3E-6860-4077-9833-C6EE5CFEAFBF}.Debug|Win32.Build.0 = Debug|Win32
+ {B105EB3E-6860-4077-9833-C6EE5CFEAFBF}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {B105EB3E-6860-4077-9833-C6EE5CFEAFBF}.Optimized|Win32.Build.0 = Optimized|Win32
+ {B105EB3E-6860-4077-9833-C6EE5CFEAFBF}.Release|Win32.ActiveCfg = Release|Win32
+ {B105EB3E-6860-4077-9833-C6EE5CFEAFBF}.Release|Win32.Build.0 = Release|Win32
+ {F3245C29-7760-4956-B1B7-FC483BE417CD}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F3245C29-7760-4956-B1B7-FC483BE417CD}.Debug|Win32.Build.0 = Debug|Win32
+ {F3245C29-7760-4956-B1B7-FC483BE417CD}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {F3245C29-7760-4956-B1B7-FC483BE417CD}.Optimized|Win32.Build.0 = Optimized|Win32
+ {F3245C29-7760-4956-B1B7-FC483BE417CD}.Release|Win32.ActiveCfg = Release|Win32
+ {F3245C29-7760-4956-B1B7-FC483BE417CD}.Release|Win32.Build.0 = Release|Win32
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}.Debug|Win32.Build.0 = Debug|Win32
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}.Optimized|Win32.Build.0 = Optimized|Win32
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}.Release|Win32.ActiveCfg = Release|Win32
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}.Release|Win32.Build.0 = Release|Win32
+ {C595C10E-ADA8-429A-896A-8904A46737D3}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C595C10E-ADA8-429A-896A-8904A46737D3}.Debug|Win32.Build.0 = Debug|Win32
+ {C595C10E-ADA8-429A-896A-8904A46737D3}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {C595C10E-ADA8-429A-896A-8904A46737D3}.Optimized|Win32.Build.0 = Optimized|Win32
+ {C595C10E-ADA8-429A-896A-8904A46737D3}.Release|Win32.ActiveCfg = Release|Win32
+ {C595C10E-ADA8-429A-896A-8904A46737D3}.Release|Win32.Build.0 = Release|Win32
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}.Debug|Win32.Build.0 = Debug|Win32
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}.Optimized|Win32.Build.0 = Optimized|Win32
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}.Release|Win32.ActiveCfg = Release|Win32
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}.Release|Win32.Build.0 = Release|Win32
+ {882D8E54-0077-440B-94AC-762BDE522E3B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {882D8E54-0077-440B-94AC-762BDE522E3B}.Debug|Win32.Build.0 = Debug|Win32
+ {882D8E54-0077-440B-94AC-762BDE522E3B}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {882D8E54-0077-440B-94AC-762BDE522E3B}.Optimized|Win32.Build.0 = Optimized|Win32
+ {882D8E54-0077-440B-94AC-762BDE522E3B}.Release|Win32.ActiveCfg = Release|Win32
+ {882D8E54-0077-440B-94AC-762BDE522E3B}.Release|Win32.Build.0 = Release|Win32
+ {2338795C-CE02-4902-BEF4-53645A0C3267}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2338795C-CE02-4902-BEF4-53645A0C3267}.Debug|Win32.Build.0 = Debug|Win32
+ {2338795C-CE02-4902-BEF4-53645A0C3267}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {2338795C-CE02-4902-BEF4-53645A0C3267}.Optimized|Win32.Build.0 = Optimized|Win32
+ {2338795C-CE02-4902-BEF4-53645A0C3267}.Release|Win32.ActiveCfg = Release|Win32
+ {2338795C-CE02-4902-BEF4-53645A0C3267}.Release|Win32.Build.0 = Release|Win32
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}.Debug|Win32.Build.0 = Debug|Win32
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}.Optimized|Win32.Build.0 = Optimized|Win32
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}.Release|Win32.ActiveCfg = Release|Win32
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}.Release|Win32.Build.0 = Release|Win32
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE}.Debug|Win32.Build.0 = Debug|Win32
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE}.Optimized|Win32.Build.0 = Optimized|Win32
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE}.Release|Win32.ActiveCfg = Release|Win32
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE}.Release|Win32.Build.0 = Release|Win32
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9}.Debug|Win32.ActiveCfg = Debug|Win32
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9}.Debug|Win32.Build.0 = Debug|Win32
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9}.Optimized|Win32.Build.0 = Optimized|Win32
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9}.Release|Win32.ActiveCfg = Release|Win32
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9}.Release|Win32.Build.0 = Release|Win32
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}.Debug|Win32.Build.0 = Debug|Win32
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}.Optimized|Win32.Build.0 = Optimized|Win32
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}.Release|Win32.ActiveCfg = Release|Win32
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}.Release|Win32.Build.0 = Release|Win32
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90}.Debug|Win32.Build.0 = Debug|Win32
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90}.Optimized|Win32.Build.0 = Optimized|Win32
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90}.Release|Win32.ActiveCfg = Release|Win32
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90}.Release|Win32.Build.0 = Release|Win32
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA}.Debug|Win32.Build.0 = Debug|Win32
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA}.Optimized|Win32.Build.0 = Optimized|Win32
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA}.Release|Win32.ActiveCfg = Release|Win32
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA}.Release|Win32.Build.0 = Release|Win32
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}.Debug|Win32.Build.0 = Debug|Win32
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}.Optimized|Win32.Build.0 = Optimized|Win32
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}.Release|Win32.ActiveCfg = Release|Win32
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}.Release|Win32.Build.0 = Release|Win32
+ {C87164F5-14A9-403C-8BC4-217FD40731EA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C87164F5-14A9-403C-8BC4-217FD40731EA}.Debug|Win32.Build.0 = Debug|Win32
+ {C87164F5-14A9-403C-8BC4-217FD40731EA}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {C87164F5-14A9-403C-8BC4-217FD40731EA}.Optimized|Win32.Build.0 = Optimized|Win32
+ {C87164F5-14A9-403C-8BC4-217FD40731EA}.Release|Win32.ActiveCfg = Release|Win32
+ {C87164F5-14A9-403C-8BC4-217FD40731EA}.Release|Win32.Build.0 = Release|Win32
+ {DF4D72EF-2341-4462-AB78-B130450511DA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DF4D72EF-2341-4462-AB78-B130450511DA}.Debug|Win32.Build.0 = Debug|Win32
+ {DF4D72EF-2341-4462-AB78-B130450511DA}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {DF4D72EF-2341-4462-AB78-B130450511DA}.Optimized|Win32.Build.0 = Optimized|Win32
+ {DF4D72EF-2341-4462-AB78-B130450511DA}.Release|Win32.ActiveCfg = Release|Win32
+ {DF4D72EF-2341-4462-AB78-B130450511DA}.Release|Win32.Build.0 = Release|Win32
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA}.Debug|Win32.ActiveCfg = Debug|Win32
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA}.Debug|Win32.Build.0 = Debug|Win32
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA}.Optimized|Win32.Build.0 = Optimized|Win32
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA}.Release|Win32.ActiveCfg = Release|Win32
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA}.Release|Win32.Build.0 = Release|Win32
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}.Debug|Win32.Build.0 = Debug|Win32
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}.Optimized|Win32.Build.0 = Optimized|Win32
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}.Release|Win32.ActiveCfg = Release|Win32
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}.Release|Win32.Build.0 = Release|Win32
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}.Debug|Win32.Build.0 = Debug|Win32
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}.Optimized|Win32.Build.0 = Optimized|Win32
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}.Release|Win32.ActiveCfg = Release|Win32
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}.Release|Win32.Build.0 = Release|Win32
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}.Debug|Win32.Build.0 = Debug|Win32
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}.Optimized|Win32.Build.0 = Optimized|Win32
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}.Release|Win32.ActiveCfg = Release|Win32
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}.Release|Win32.Build.0 = Release|Win32
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40}.Debug|Win32.Build.0 = Debug|Win32
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40}.Optimized|Win32.Build.0 = Optimized|Win32
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40}.Release|Win32.ActiveCfg = Release|Win32
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40}.Release|Win32.Build.0 = Release|Win32
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}.Debug|Win32.Build.0 = Debug|Win32
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}.Optimized|Win32.Build.0 = Optimized|Win32
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}.Release|Win32.ActiveCfg = Release|Win32
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}.Release|Win32.Build.0 = Release|Win32
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}.Debug|Win32.Build.0 = Debug|Win32
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}.Optimized|Win32.Build.0 = Optimized|Win32
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}.Release|Win32.ActiveCfg = Release|Win32
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}.Release|Win32.Build.0 = Release|Win32
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1}.Debug|Win32.ActiveCfg = Debug|Win32
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1}.Debug|Win32.Build.0 = Debug|Win32
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1}.Optimized|Win32.Build.0 = Optimized|Win32
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1}.Release|Win32.ActiveCfg = Release|Win32
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1}.Release|Win32.Build.0 = Release|Win32
+ {070BABEB-131A-4DC7-8621-69407C531F8E}.Debug|Win32.ActiveCfg = Debug|Win32
+ {070BABEB-131A-4DC7-8621-69407C531F8E}.Debug|Win32.Build.0 = Debug|Win32
+ {070BABEB-131A-4DC7-8621-69407C531F8E}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {070BABEB-131A-4DC7-8621-69407C531F8E}.Optimized|Win32.Build.0 = Optimized|Win32
+ {070BABEB-131A-4DC7-8621-69407C531F8E}.Release|Win32.ActiveCfg = Release|Win32
+ {070BABEB-131A-4DC7-8621-69407C531F8E}.Release|Win32.Build.0 = Release|Win32
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}.Debug|Win32.ActiveCfg = Debug|Win32
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}.Debug|Win32.Build.0 = Debug|Win32
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}.Optimized|Win32.Build.0 = Optimized|Win32
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}.Release|Win32.ActiveCfg = Release|Win32
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}.Release|Win32.Build.0 = Release|Win32
+ {F547B62A-8F5C-48FC-9B3A-103736A41D03}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F547B62A-8F5C-48FC-9B3A-103736A41D03}.Debug|Win32.Build.0 = Debug|Win32
+ {F547B62A-8F5C-48FC-9B3A-103736A41D03}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {F547B62A-8F5C-48FC-9B3A-103736A41D03}.Optimized|Win32.Build.0 = Optimized|Win32
+ {F547B62A-8F5C-48FC-9B3A-103736A41D03}.Release|Win32.ActiveCfg = Release|Win32
+ {F547B62A-8F5C-48FC-9B3A-103736A41D03}.Release|Win32.Build.0 = Release|Win32
+ {8E0FCF44-63B5-4137-9BAA-A740EB10ED94}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8E0FCF44-63B5-4137-9BAA-A740EB10ED94}.Debug|Win32.Build.0 = Debug|Win32
+ {8E0FCF44-63B5-4137-9BAA-A740EB10ED94}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {8E0FCF44-63B5-4137-9BAA-A740EB10ED94}.Optimized|Win32.Build.0 = Optimized|Win32
+ {8E0FCF44-63B5-4137-9BAA-A740EB10ED94}.Release|Win32.ActiveCfg = Release|Win32
+ {8E0FCF44-63B5-4137-9BAA-A740EB10ED94}.Release|Win32.Build.0 = Release|Win32
+ {6612CC35-6931-4AC6-A315-E955CA60B643}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6612CC35-6931-4AC6-A315-E955CA60B643}.Debug|Win32.Build.0 = Debug|Win32
+ {6612CC35-6931-4AC6-A315-E955CA60B643}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {6612CC35-6931-4AC6-A315-E955CA60B643}.Optimized|Win32.Build.0 = Optimized|Win32
+ {6612CC35-6931-4AC6-A315-E955CA60B643}.Release|Win32.ActiveCfg = Release|Win32
+ {6612CC35-6931-4AC6-A315-E955CA60B643}.Release|Win32.Build.0 = Release|Win32
+ {858F7DCE-325A-467C-9DDA-2FE40217286F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {858F7DCE-325A-467C-9DDA-2FE40217286F}.Debug|Win32.Build.0 = Debug|Win32
+ {858F7DCE-325A-467C-9DDA-2FE40217286F}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {858F7DCE-325A-467C-9DDA-2FE40217286F}.Optimized|Win32.Build.0 = Optimized|Win32
+ {858F7DCE-325A-467C-9DDA-2FE40217286F}.Release|Win32.ActiveCfg = Release|Win32
+ {858F7DCE-325A-467C-9DDA-2FE40217286F}.Release|Win32.Build.0 = Release|Win32
+ {52DF0D16-D070-47FC-B987-8D80B027D114}.Debug|Win32.ActiveCfg = Debug|Win32
+ {52DF0D16-D070-47FC-B987-8D80B027D114}.Debug|Win32.Build.0 = Debug|Win32
+ {52DF0D16-D070-47FC-B987-8D80B027D114}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {52DF0D16-D070-47FC-B987-8D80B027D114}.Optimized|Win32.Build.0 = Optimized|Win32
+ {52DF0D16-D070-47FC-B987-8D80B027D114}.Release|Win32.ActiveCfg = Release|Win32
+ {52DF0D16-D070-47FC-B987-8D80B027D114}.Release|Win32.Build.0 = Release|Win32
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}.Debug|Win32.Build.0 = Debug|Win32
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}.Optimized|Win32.Build.0 = Optimized|Win32
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}.Release|Win32.ActiveCfg = Release|Win32
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}.Release|Win32.Build.0 = Release|Win32
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}.Debug|Win32.Build.0 = Debug|Win32
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}.Optimized|Win32.Build.0 = Optimized|Win32
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}.Release|Win32.ActiveCfg = Release|Win32
+ {D409A18E-F788-4F1B-BAD1-ED58EE4D458F}.Release|Win32.Build.0 = Release|Win32
+ {EAA23F07-4419-4AED-83D2-06654119B6F6}.Debug|Win32.ActiveCfg = Debug|Win32
+ {EAA23F07-4419-4AED-83D2-06654119B6F6}.Debug|Win32.Build.0 = Debug|Win32
+ {EAA23F07-4419-4AED-83D2-06654119B6F6}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {EAA23F07-4419-4AED-83D2-06654119B6F6}.Optimized|Win32.Build.0 = Optimized|Win32
+ {EAA23F07-4419-4AED-83D2-06654119B6F6}.Release|Win32.ActiveCfg = Release|Win32
+ {EAA23F07-4419-4AED-83D2-06654119B6F6}.Release|Win32.Build.0 = Release|Win32
+ {950E9CF2-CD44-476C-826A-BB7869241F5B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {950E9CF2-CD44-476C-826A-BB7869241F5B}.Debug|Win32.Build.0 = Debug|Win32
+ {950E9CF2-CD44-476C-826A-BB7869241F5B}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {950E9CF2-CD44-476C-826A-BB7869241F5B}.Optimized|Win32.Build.0 = Optimized|Win32
+ {950E9CF2-CD44-476C-826A-BB7869241F5B}.Release|Win32.ActiveCfg = Release|Win32
+ {950E9CF2-CD44-476C-826A-BB7869241F5B}.Release|Win32.Build.0 = Release|Win32
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}.Debug|Win32.ActiveCfg = Debug|Win32
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}.Debug|Win32.Build.0 = Debug|Win32
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}.Optimized|Win32.Build.0 = Optimized|Win32
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}.Release|Win32.ActiveCfg = Release|Win32
+ {FCC0F2B5-AADE-4454-AFF2-4D91365B4883}.Release|Win32.Build.0 = Release|Win32
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B}.Debug|Win32.Build.0 = Debug|Win32
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B}.Optimized|Win32.Build.0 = Optimized|Win32
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B}.Release|Win32.ActiveCfg = Release|Win32
+ {A378FAB0-5B67-44BD-A3D8-815861792D6B}.Release|Win32.Build.0 = Release|Win32
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE}.Debug|Win32.Build.0 = Debug|Win32
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE}.Optimized|Win32.Build.0 = Optimized|Win32
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE}.Release|Win32.ActiveCfg = Release|Win32
+ {1A7D1159-3474-4520-882F-F1842F0AAFAE}.Release|Win32.Build.0 = Release|Win32
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}.Debug|Win32.Build.0 = Debug|Win32
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}.Optimized|Win32.Build.0 = Optimized|Win32
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}.Release|Win32.ActiveCfg = Release|Win32
+ {D4ACCB0C-7B66-433D-B715-8EF7F43B8E2D}.Release|Win32.Build.0 = Release|Win32
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7}.Debug|Win32.Build.0 = Debug|Win32
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7}.Optimized|Win32.Build.0 = Optimized|Win32
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7}.Release|Win32.ActiveCfg = Release|Win32
+ {B97963EF-49E4-477E-85FF-E7FEE7C626D7}.Release|Win32.Build.0 = Release|Win32
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B}.Debug|Win32.ActiveCfg = Debug|Win32
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B}.Debug|Win32.Build.0 = Debug|Win32
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B}.Optimized|Win32.Build.0 = Optimized|Win32
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B}.Release|Win32.ActiveCfg = Release|Win32
+ {41269A52-38B8-4F9A-AE38-1103BB03A10B}.Release|Win32.Build.0 = Release|Win32
+ {7927E450-9A0C-46B3-ABF3-34384D6F54CD}.Debug|Win32.ActiveCfg = Debug|Win32
+ {7927E450-9A0C-46B3-ABF3-34384D6F54CD}.Debug|Win32.Build.0 = Debug|Win32
+ {7927E450-9A0C-46B3-ABF3-34384D6F54CD}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {7927E450-9A0C-46B3-ABF3-34384D6F54CD}.Optimized|Win32.Build.0 = Optimized|Win32
+ {7927E450-9A0C-46B3-ABF3-34384D6F54CD}.Release|Win32.ActiveCfg = Release|Win32
+ {7927E450-9A0C-46B3-ABF3-34384D6F54CD}.Release|Win32.Build.0 = Release|Win32
+ {17C00DDF-0E33-40DD-94E8-9A300C9BC15D}.Debug|Win32.ActiveCfg = Debug|Win32
+ {17C00DDF-0E33-40DD-94E8-9A300C9BC15D}.Debug|Win32.Build.0 = Debug|Win32
+ {17C00DDF-0E33-40DD-94E8-9A300C9BC15D}.Optimized|Win32.ActiveCfg = IntelCPP|Win32
+ {17C00DDF-0E33-40DD-94E8-9A300C9BC15D}.Optimized|Win32.Build.0 = IntelCPP|Win32
+ {17C00DDF-0E33-40DD-94E8-9A300C9BC15D}.Release|Win32.ActiveCfg = Release|Win32
+ {17C00DDF-0E33-40DD-94E8-9A300C9BC15D}.Release|Win32.Build.0 = Release|Win32
+ {F84C0A87-E06D-4568-B188-D820FBA2BB25}.Debug|Win32.ActiveCfg = Debug|Win32
+ {F84C0A87-E06D-4568-B188-D820FBA2BB25}.Debug|Win32.Build.0 = Debug|Win32
+ {F84C0A87-E06D-4568-B188-D820FBA2BB25}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {F84C0A87-E06D-4568-B188-D820FBA2BB25}.Optimized|Win32.Build.0 = Optimized|Win32
+ {F84C0A87-E06D-4568-B188-D820FBA2BB25}.Release|Win32.ActiveCfg = Release|Win32
+ {F84C0A87-E06D-4568-B188-D820FBA2BB25}.Release|Win32.Build.0 = Release|Win32
+ {6420DB1B-3981-492B-B450-3D7062A1B1FD}.Debug|Win32.ActiveCfg = Debug|Win32
+ {6420DB1B-3981-492B-B450-3D7062A1B1FD}.Debug|Win32.Build.0 = Debug|Win32
+ {6420DB1B-3981-492B-B450-3D7062A1B1FD}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {6420DB1B-3981-492B-B450-3D7062A1B1FD}.Optimized|Win32.Build.0 = Optimized|Win32
+ {6420DB1B-3981-492B-B450-3D7062A1B1FD}.Release|Win32.ActiveCfg = Release|Win32
+ {6420DB1B-3981-492B-B450-3D7062A1B1FD}.Release|Win32.Build.0 = Release|Win32
+ {763D8176-B2AC-40C2-9268-DF61FE9240D2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {763D8176-B2AC-40C2-9268-DF61FE9240D2}.Debug|Win32.Build.0 = Debug|Win32
+ {763D8176-B2AC-40C2-9268-DF61FE9240D2}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {763D8176-B2AC-40C2-9268-DF61FE9240D2}.Optimized|Win32.Build.0 = Optimized|Win32
+ {763D8176-B2AC-40C2-9268-DF61FE9240D2}.Release|Win32.ActiveCfg = Release|Win32
+ {763D8176-B2AC-40C2-9268-DF61FE9240D2}.Release|Win32.Build.0 = Release|Win32
+ {A288C7EF-37FD-49D1-B228-6593D2FCF5B5}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A288C7EF-37FD-49D1-B228-6593D2FCF5B5}.Debug|Win32.Build.0 = Debug|Win32
+ {A288C7EF-37FD-49D1-B228-6593D2FCF5B5}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {A288C7EF-37FD-49D1-B228-6593D2FCF5B5}.Optimized|Win32.Build.0 = Optimized|Win32
+ {A288C7EF-37FD-49D1-B228-6593D2FCF5B5}.Release|Win32.ActiveCfg = Release|Win32
+ {A288C7EF-37FD-49D1-B228-6593D2FCF5B5}.Release|Win32.Build.0 = Release|Win32
+ {C12FC03D-4C12-4957-A282-E7360833F065}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C12FC03D-4C12-4957-A282-E7360833F065}.Debug|Win32.Build.0 = Debug|Win32
+ {C12FC03D-4C12-4957-A282-E7360833F065}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {C12FC03D-4C12-4957-A282-E7360833F065}.Optimized|Win32.Build.0 = Optimized|Win32
+ {C12FC03D-4C12-4957-A282-E7360833F065}.Release|Win32.ActiveCfg = Release|Win32
+ {C12FC03D-4C12-4957-A282-E7360833F065}.Release|Win32.Build.0 = Release|Win32
+ {4511DE35-D4E8-41B5-A0DD-F9374AE747C2}.Debug|Win32.ActiveCfg = Debug|Win32
+ {4511DE35-D4E8-41B5-A0DD-F9374AE747C2}.Debug|Win32.Build.0 = Debug|Win32
+ {4511DE35-D4E8-41B5-A0DD-F9374AE747C2}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {4511DE35-D4E8-41B5-A0DD-F9374AE747C2}.Optimized|Win32.Build.0 = Optimized|Win32
+ {4511DE35-D4E8-41B5-A0DD-F9374AE747C2}.Release|Win32.ActiveCfg = Release|Win32
+ {4511DE35-D4E8-41B5-A0DD-F9374AE747C2}.Release|Win32.Build.0 = Release|Win32
+ {0BEACA0C-6862-461F-BCD8-997D2F35B2C7}.Debug|Win32.ActiveCfg = Debug|Win32
+ {0BEACA0C-6862-461F-BCD8-997D2F35B2C7}.Debug|Win32.Build.0 = Debug|Win32
+ {0BEACA0C-6862-461F-BCD8-997D2F35B2C7}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {0BEACA0C-6862-461F-BCD8-997D2F35B2C7}.Optimized|Win32.Build.0 = Optimized|Win32
+ {0BEACA0C-6862-461F-BCD8-997D2F35B2C7}.Release|Win32.ActiveCfg = Release|Win32
+ {0BEACA0C-6862-461F-BCD8-997D2F35B2C7}.Release|Win32.Build.0 = Release|Win32
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}.Debug|Win32.ActiveCfg = Debug|Win32
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}.Debug|Win32.Build.0 = Debug|Win32
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}.Optimized|Win32.Build.0 = Optimized|Win32
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}.Release|Win32.ActiveCfg = Release|Win32
+ {805A2FE0-7592-4F4E-BC23-A0D5ABC624B4}.Release|Win32.Build.0 = Release|Win32
+ {8ED77983-9D2D-41C0-8FE2-0C44B924C991}.Debug|Win32.ActiveCfg = Debug|Win32
+ {8ED77983-9D2D-41C0-8FE2-0C44B924C991}.Debug|Win32.Build.0 = Debug|Win32
+ {8ED77983-9D2D-41C0-8FE2-0C44B924C991}.Optimized|Win32.ActiveCfg = Release|Win32
+ {8ED77983-9D2D-41C0-8FE2-0C44B924C991}.Optimized|Win32.Build.0 = Release|Win32
+ {8ED77983-9D2D-41C0-8FE2-0C44B924C991}.Release|Win32.ActiveCfg = Release|Win32
+ {8ED77983-9D2D-41C0-8FE2-0C44B924C991}.Release|Win32.Build.0 = Release|Win32
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}.Debug|Win32.ActiveCfg = Debug|Win32
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}.Debug|Win32.Build.0 = Debug|Win32
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}.Optimized|Win32.Build.0 = Optimized|Win32
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}.Release|Win32.ActiveCfg = Release|Win32
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}.Release|Win32.Build.0 = Release|Win32
+ {81D4FCA6-F8D8-4FE6-81F3-8D7C05E06479}.Debug|Win32.ActiveCfg = Debug|Win32
+ {81D4FCA6-F8D8-4FE6-81F3-8D7C05E06479}.Debug|Win32.Build.0 = Debug|Win32
+ {81D4FCA6-F8D8-4FE6-81F3-8D7C05E06479}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {81D4FCA6-F8D8-4FE6-81F3-8D7C05E06479}.Optimized|Win32.Build.0 = Optimized|Win32
+ {81D4FCA6-F8D8-4FE6-81F3-8D7C05E06479}.Release|Win32.ActiveCfg = Release|Win32
+ {81D4FCA6-F8D8-4FE6-81F3-8D7C05E06479}.Release|Win32.Build.0 = Release|Win32
+ {5322A6D8-E2FE-420C-B719-3D061EAB4593}.Debug|Win32.ActiveCfg = Debug|Win32
+ {5322A6D8-E2FE-420C-B719-3D061EAB4593}.Debug|Win32.Build.0 = Debug|Win32
+ {5322A6D8-E2FE-420C-B719-3D061EAB4593}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {5322A6D8-E2FE-420C-B719-3D061EAB4593}.Optimized|Win32.Build.0 = Optimized|Win32
+ {5322A6D8-E2FE-420C-B719-3D061EAB4593}.Release|Win32.ActiveCfg = Release|Win32
+ {5322A6D8-E2FE-420C-B719-3D061EAB4593}.Release|Win32.Build.0 = Release|Win32
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}.Debug|Win32.ActiveCfg = Debug|Win32
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}.Debug|Win32.Build.0 = Debug|Win32
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}.Optimized|Win32.Build.0 = Optimized|Win32
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}.Release|Win32.ActiveCfg = Release|Win32
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}.Release|Win32.Build.0 = Release|Win32
+ {03F3C054-F380-4618-BE46-6E25061A3587}.Debug|Win32.ActiveCfg = Debug|Win32
+ {03F3C054-F380-4618-BE46-6E25061A3587}.Debug|Win32.Build.0 = Debug|Win32
+ {03F3C054-F380-4618-BE46-6E25061A3587}.Optimized|Win32.ActiveCfg = Optimized|Win32
+ {03F3C054-F380-4618-BE46-6E25061A3587}.Optimized|Win32.Build.0 = Optimized|Win32
+ {03F3C054-F380-4618-BE46-6E25061A3587}.Release|Win32.ActiveCfg = Release|Win32
+ {03F3C054-F380-4618-BE46-6E25061A3587}.Release|Win32.Build.0 = Release|Win32
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027}.Debug|Win32.ActiveCfg = Debug|Win32
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027}.Debug|Win32.Build.0 = Debug|Win32
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027}.Optimized|Win32.ActiveCfg = Release|Win32
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027}.Optimized|Win32.Build.0 = Release|Win32
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027}.Release|Win32.ActiveCfg = Release|Win32
+ {9496A020-65AD-45A6-9ACF-AE4F3358B027}.Release|Win32.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/src/engine/build/linux/Makefile b/src/engine/build/linux/Makefile
new file mode 100644
index 000000000..3280d2534
--- /dev/null
+++ b/src/engine/build/linux/Makefile
@@ -0,0 +1,198 @@
+###############################################################################
+#
+# Master Makefile for Engine
+#
+# This file invokes the makefiles for specific engine projects as needed.
+#
+# Organization:
+# Targets
+# Definitions and includes
+# Application build rules (all applications build required libs implicitly)
+# Special targets (e.g. clean, publish, dependcheck)
+#
+# Typically used targets:
+# make engine_debug Builds the debug version of all libs/applications
+# make engine_release Builds the release version of all libs/applications
+# make noGameServer_ Builds everything except the SwgGameServer and
+# SwgDatabaseServer procs. (libgameServer.a is
+# enormous, so excluding it is sometimes a good
+# idea, if you do not really need to rebuild it.)
+# make Builds a server process and any libraries needed by that process.
+# e.g. make GameServer_d
+###############################################################################
+
+noGameServer_debug: CentralServer_d \
+ ConnectionServer_d \
+ LoginServer_d \
+ ServerConsole_d \
+ PlanetServer_d \
+ TaskManager_d \
+ ChatServer_d \
+ LogServer_d \
+ MetricsServer_d \
+ LoginPing_d \
+ CustomerServiceServer_d \
+ CommoditiesServer_d \
+
+noGameServer_release: CentralServer_r \
+ ConnectionServer_r \
+ LoginServer_r \
+ ServerConsole_r \
+ PlanetServer_r \
+ TaskManager_r \
+ ChatServer_r \
+ LogServer_r \
+ MetricsServer_r \
+ LoginPing_r \
+ CustomerServiceServer_r \
+ CommoditiesServer_r \
+
+engine_debug: noGameServer_debug \
+
+engine_release: noGameServer_release \
+ SwgGameServer_r \
+ SwgDatabaseServer_r \
+
+###############################################################################
+# Definitions and includes
+###############################################################################
+
+SRCDIR =../../..
+SERVER_ENGINE_DIR =$(SRCDIR)/engine/server/application
+SHARED_ENGINE_DIR =$(SRCDIR)/engine/shared/application
+
+SERVER_GAME_DIR =$(SRCDIR)/game/server/application
+
+###############################################################################
+# Rules to invoke the makefiles for specific applications
+###############################################################################
+
+debug_libs:
+ +@make -C $(SERVER_ENGINE_DIR)/PhonyApp/build/linux debug
+
+CentralServer_d:
+ +@make -C $(SERVER_ENGINE_DIR)/CentralServer/build/linux debug
+
+CentralServer_r:
+ +@make -C $(SERVER_ENGINE_DIR)/CentralServer/build/linux release
+
+ConnectionServer_d:
+ +@make -C $(SERVER_ENGINE_DIR)/ConnectionServer/build/linux debug
+
+ConnectionServer_r:
+ +@make -C $(SERVER_ENGINE_DIR)/ConnectionServer/build/linux release
+
+LoginServer_d:
+ +@make -C $(SERVER_ENGINE_DIR)/LoginServer/build/linux debug
+
+LoginServer_r:
+ +@make -C $(SERVER_ENGINE_DIR)/LoginServer/build/linux release
+
+ServerConsole_d:
+ +@make -C $(SERVER_ENGINE_DIR)/ServerConsole/build/linux debug
+
+ServerConsole_r:
+ +@make -C $(SERVER_ENGINE_DIR)/ServerConsole/build/linux release
+
+PlanetServer_d:
+ +@make -C $(SERVER_ENGINE_DIR)/PlanetServer/build/linux debug
+
+PlanetServer_r:
+ +@make -C $(SERVER_ENGINE_DIR)/PlanetServer/build/linux release
+
+TaskManager_d:
+ +@make -C $(SERVER_ENGINE_DIR)/TaskManager/build/linux debug
+
+TaskManager_r:
+ +@make -C $(SERVER_ENGINE_DIR)/TaskManager/build/linux release
+
+ChatServer_d:
+ +@make -C $(SERVER_ENGINE_DIR)/ChatServer/build/linux debug
+
+ChatServer_r:
+ +@make -C $(SERVER_ENGINE_DIR)/ChatServer/build/linux release
+
+CustomerServiceServer_d:
+ +@make -C $(SERVER_ENGINE_DIR)/CustomerServiceServer/build/linux debug
+
+CustomerServiceServer_r:
+ +@make -C $(SERVER_ENGINE_DIR)/CustomerServiceServer/build/linux release
+
+LoginPing_d:
+ +@make -C $(SERVER_ENGINE_DIR)/LoginPing/build/linux debug
+
+LoginPing_r:
+ +@make -C $(SERVER_ENGINE_DIR)/LoginPing/build/linux release
+
+MetricsServer_d:
+ +@make -C $(SERVER_ENGINE_DIR)/MetricsServer/build/linux debug
+
+MetricsServer_r:
+ +@make -C $(SERVER_ENGINE_DIR)/MetricsServer/build/linux release
+
+LogServer_d:
+ +@make -C $(SERVER_ENGINE_DIR)/LogServer/build/linux debug
+
+LogServer_r:
+ +@make -C $(SERVER_ENGINE_DIR)/LogServer/build/linux release
+
+TemplateCompiler_d:
+ +@make -C $(SHARED_ENGINE_DIR)/TemplateCompiler/build/linux debug
+
+TemplateCompiler_r:
+ +@make -C $(SHARED_ENGINE_DIR)/TemplateCompiler/build/linux release
+
+DataTableTool_d:
+ +@make -C $(SHARED_ENGINE_DIR)/DataTableTool/build/linux debug
+
+DataTableTool_r:
+ +@make -C $(SHARED_ENGINE_DIR)/DataTableTool/build/linux release
+
+GameServer_d:
+ +@make -C $(SERVER_ENGINE_DIR)/GameServer/build/linux debug
+
+GameServer_r:
+ +@make -C $(SERVER_ENGINE_DIR)/GameServer/build/linux release
+
+CommoditiesServer_d:
+ @echo " BOGUS CommoditiesServer_d rule, ignoring..."
+# [ ! -f $(SRCDIR)/../dev/linux/CommoditiesServer_d ] || \
+# chmod u+w $(SRCDIR)/../dev/linux/CommoditiesServer_d
+# cp $(SRCDIR)/../exe/linux/CommoditiesServer_d $(SRCDIR)/../dev/linux
+
+CommoditiesServer_r:
+ [ ! -f $(SRCDIR)/../dev/linux/CommoditiesServer_r ] || \
+ chmod u+w $(SRCDIR)/../dev/linux/CommoditiesServer_r
+ cp $(SRCDIR)/../exe/linux/CommoditiesServer_r $(SRCDIR)/../dev/linux
+
+###############################################################################
+# Special targets
+###############################################################################
+
+clean:
+ +@make -C $(SERVER_ENGINE_DIR)/LoginServer/build/linux clean
+ +@make -C $(SERVER_ENGINE_DIR)/ServerConsole/build/linux clean
+ +@make -C $(SERVER_ENGINE_DIR)/CentralServer/build/linux clean
+ +@make -C $(SERVER_GAME_DIR)/SwgGameServer/build/linux clean
+ +@make -C $(SERVER_GAME_DIR)/SwgDatabaseServer/build/linux clean
+ +@make -C $(SERVER_ENGINE_DIR)/ConnectionServer/build/linux clean
+ +@make -C $(SERVER_ENGINE_DIR)/TaskManager/build/linux clean
+ +@make -C $(SERVER_ENGINE_DIR)/PlanetServer/build/linux clean
+ +@make -C $(SERVER_ENGINE_DIR)/ChatServer/build/linux clean
+ +@make -C $(SERVER_ENGINE_DIR)/CustomerServiceServer/build/linux clean
+ +@make -C $(SERVER_ENGINE_DIR)/LogServer/build/linux clean
+ +@make -C $(SERVER_ENGINE_DIR)/MetricsServer/build/linux clean
+ +@make -C $(SERVER_ENGINE_DIR)/LoginPing/build/linux clean
+
+lint:
+ +@make -C $(SERVER_ENGINE_DIR)/LoginServer/build/linux lint
+ +@make -C $(SERVER_ENGINE_DIR)/ServerConsole/build/linux lint
+ +@make -C $(SERVER_ENGINE_DIR)/CentralServer/build/linux lint
+ +@make -C $(SERVER_ENGINE_DIR)/SwgGameServer/build/linux lint
+ +@make -C $(SERVER_ENGINE_DIR)/SwgDatabaseServer/build/linux lint
+ +@make -C $(SERVER_ENGINE_DIR)/ConnectionServer/build/linux lint
+ +@make -C $(SERVER_ENGINE_DIR)/TaskManager/build/linux lint
+ +@make -C $(SERVER_ENGINE_DIR)/PlanetServer/build/linux lint
+ +@make -C $(SERVER_ENGINE_DIR)/ChatServer/build/linux lint
+ +@make -C $(SERVER_ENGINE_DIR)/LogServer/build/linux lint
+
diff --git a/src/engine/build/linux/platformDefs.mak b/src/engine/build/linux/platformDefs.mak
new file mode 100644
index 000000000..059c7642d
--- /dev/null
+++ b/src/engine/build/linux/platformDefs.mak
@@ -0,0 +1,3 @@
+PLATFORM =linux
+#PLATFORM_DEFINES =-DLINUX -DJNI_IBM_JAVA
+PLATFORM_DEFINES =-DLINUX
diff --git a/src/engine/build/shared_unix/application.mak b/src/engine/build/shared_unix/application.mak
new file mode 100644
index 000000000..9cf6ebe4c
--- /dev/null
+++ b/src/engine/build/shared_unix/application.mak
@@ -0,0 +1,130 @@
+ifeq ($(VERBOSE_BUILD),)
+V =@
+else
+V =
+endif
+
+DEBUG_OBJ_DIR = ../../../../../../compile/linux/$(OUTPUT)/debug
+RELEASE_OBJ_DIR = ../../../../../../compile/linux/$(OUTPUT)/release
+
+TOOLS_DIR = ../../../../../../../tools
+
+FINAL_OUTPUT_DEBUG = $(OUTPUT)_d
+FINAL_OUTPUT_RELEASE = $(OUTPUT)_r
+
+DEPENDENCY_LIST = $(SRC_LIST:.cpp=.d)
+
+RELEASE_OBJ_LIST = $(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SRC_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST = $(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SRC_LIST:.cpp=.o)))
+
+INCLUDE_DIRS += /usr/include /usr/include/libxml2
+
+CPP_FLAGS_RELEASE = -g -O2 $(addprefix -I,$(INCLUDE_DIRS)) $(RELEASE_PLATFORM_CPP_FLAGS) $(PLATFORM_DEFINES) -Wno-ctor-dtor-privacy -D__STL_NO_BAD_ALLOC
+CPP_FLAGS_DEBUG = -g $(addprefix -I,$(INCLUDE_DIRS)) $(DEBUG_PLATFORM_CPP_FLAGS) $(PLATFORM_DEFINES) -Wall -Wno-unknown-pragmas -Werror -Wno-ctor-dtor-privacy -D_DEBUG -D__STL_NO_BAD_ALLOC -Wformat -Wreturn-type -Wimplicit
+
+#DEBUG_LINK_FLAGS += -lncurses -rdynamic -Xlinker -rpath -Xlinker ./
+DEBUG_LINK_FLAGS += -lxml2 -lz -lncurses -Wl,--rpath -Wl,$(SHARED_DEBUG_LIB_PATH)
+
+RELEASE_LINK_FLAGS += -rdynamic -Xlinker -rpath -Xlinker ./
+
+BASE_OUTPUT_DIR = ../../../../../../../dev/linux
+DEBUG_FINAL_OUTPUT_DIR = $(BASE_OUTPUT_DIR)/debug
+
+DEBUG_SYM_LINK = $(V)cd $(BASE_OUTPUT_DIR) && ln -sf debug/$(FINAL_OUTPUT_DEBUG) $(OUTPUT)
+
+
+LINT_SCRIPT = $(BOOTPRINT_SRC_PATH)/../tools/swglint.sh
+LINT_TARGETS = $(addsuffix .lint,$(SRC_LIST))
+
+#Following separates the shared libraries into names and paths
+#so that we can link them with just their names, not the entire path:
+
+DEBUG_SHARED_LIB_LINK_FLAGS = $(addprefix -l, $(notdir $(subst lib,,$(DEBUG_SHARED_LIBRARIES:.so=))))
+DEBUG_SHARED_LIB_LINK_DIRS = -L$(SHARED_DEBUG_LIB_PATH)
+DEBUG_DEPS = $(DEBUG_LINK_LIBRARIES:.a=.a_dep)
+SHARED_DEBUG_DEPS = $(DEBUG_SHARED_LIBRARIES:.so=.so_dep)
+
+
+all: debug
+
+lint: $(LINT_TARGETS)
+
+
+%.cpp.lint : %.cpp
+ @echo prerequisite: $(subst .lint,,$@)
+ @echo output: $@
+ $(LINT_SCRIPT) $(subst .lint,,$@)
+ touch $@
+
+#######################################################
+# Debug
+#######################################################
+
+debug: .depend $(DEBUG_DEPS) $(SHARED_DEBUG_DEPS) debug_custom_step
+ +$(V)$(MAKE) $(DEBUG_FINAL_OUTPUT_DIR)/$(FINAL_OUTPUT_DEBUG)
+
+$(DEBUG_FINAL_OUTPUT_DIR)/$(FINAL_OUTPUT_DEBUG): $(DEBUG_FINAL_OUTPUT_DIR) $(DEBUG_OBJ_DIR)/$(OUTPUT)
+ @echo Creating debug: $(OUTPUT) $@
+ $(V)cp -f $(DEBUG_OBJ_DIR)/$(OUTPUT) $(DEBUG_FINAL_OUTPUT_DIR)/$(FINAL_OUTPUT_DEBUG)
+ $(DEBUG_SYM_LINK)
+
+$(DEBUG_FINAL_OUTPUT_DIR):
+ $(V)mkdir -p $(DEBUG_FINAL_OUTPUT_DIR)
+
+$(DEBUG_OBJ_DIR)/$(OUTPUT): $(DEBUG_OBJ_DIR) $(DEBUG_OBJ_LIST) $(DEBUG_LINK_LIBRARIES)
+ @echo Creating debug: $(OUTPUT) $@
+ $(V)$(CPP) $(CPP_FLAGS_DEBUG) $(DEBUG_LINK_FLAGS) -o $(DEBUG_OBJ_DIR)/$(OUTPUT) $(DEBUG_SHARED_LIB_LINK_DIRS) $(DEBUG_SHARED_LIB_LINK_FLAGS) $(DEBUG_OBJ_LIST) $(DEBUG_LINK_LIBRARIES)
+ $(DEBUG_SYM_LINK)
+
+$(DEBUG_OBJ_DIR):
+ $(V)mkdir -p $(DEBUG_OBJ_DIR)
+
+$(DEBUG_OBJ_LIST):
+ @echo $(notdir $(basename $@)).cpp
+ $(V)$(CPP) $(CPP_FLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SRC_LIST))
+
+
+#######################################################
+# .depend
+#######################################################
+
+ifneq ($(MAKECMDGOALS),clean)
+ifneq ($(MAKECMDGOALS),depend)
+include .depend
+endif
+endif
+
+#depend: .depend $(DEPENDENCY_LIST)
+# $(V)perl $(BOOTPRINT_SRC_PATH)/../tools/programmer/linux/dependcat.pl $(DEPENDENCY_LIST) > .depend
+# $(V)rm $(DEPENDENCY_LIST)
+
+depend: .depend $(DEPENDENCY_LIST)
+ $(V)perl $(BOOTPRINT_SRC_PATH)/../tools/dependcat.pl $(DEPENDENCY_LIST) > .depend
+ $(V)rm $(DEPENDENCY_LIST)
+
+.depend:
+ touch .depend
+ +$(MAKE) depend_custom_step
+ +$(MAKE) depend
+
+.PHONY : $(DEPENDENCY_LIST)
+
+$(DEPENDENCY_LIST):
+ @echo Generating dependencies for $(notdir $(@:.d=.cpp))
+ @echo -n $(DEBUG_OBJ_DIR)/ >> $@
+ $(V)$(CPP) $(PLATFORM_DEFINES) $(CPP_FLAGS_RELEASE) -MM $(addprefix -I,$(INCLUDE_DIRS)) $(@:.d=.cpp) >> $@
+
+#######################################################
+# clean
+#######################################################
+
+clean: cleandepend cleandebug
+
+cleandepend:
+ rm -f .depend
+
+cleandebug:
+ rm -Rf $(DEBUG_OBJ_DIR)
+ rm -f $(DEBUG_FINAL_OUTPUT_DIR)/$(FINAL_OUTPUT_DEBUG)
+
+
diff --git a/src/engine/build/shared_unix/defs.mak b/src/engine/build/shared_unix/defs.mak
new file mode 100644
index 000000000..a652e7e47
--- /dev/null
+++ b/src/engine/build/shared_unix/defs.mak
@@ -0,0 +1,663 @@
+#put the target "default" first in case make is invoked w/o specifying a target
+
+default: all
+
+ifeq ($(BULLSEYE_BUILD),)
+CPP = g++
+else
+CPP = /opt/app/bullseyecoverage/bin/g++
+BULLSEYE_LIB = /opt/app/bullseyecoverage/lib/libcov.a
+$(BULLSEYE_LIB)_dep:
+ ls -l $(BULLSEYE_LIB)
+
+COVFILE = /home/bdalton/text.cov
+
+endif
+
+BOOTPRINT_LIB_PATH =../../../../../../compile/$(PLATFORM)
+BOOTPRINT_SRC_PATH =../../../../../..
+SHARED_DEBUG_LIB_PATH =../../../../../../../dev/linux/debug/lib
+
+#engine source tree defines
+
+COLLISION_BASE_PATH =engine/shared/library/sharedCollision
+COLLISION_PATH =$(BOOTPRINT_SRC_PATH)/$(COLLISION_BASE_PATH)
+COLLISION_INCLUDE_PATH =$(COLLISION_PATH)/include/public
+COLLISION_BUILD_PATH =$(COLLISION_PATH)/build/$(PLATFORM)
+COLLISION_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedCollision.so
+$(COLLISION_DEBUG_LIB)_dep:
+ +$(V)make -C $(COLLISION_BUILD_PATH) debug
+
+COMMAND_PARSER_BASE_PATH =engine/shared/library/sharedCommandParser
+COMMAND_PARSER_PATH =$(BOOTPRINT_SRC_PATH)/$(COMMAND_PARSER_BASE_PATH)
+COMMAND_PARSER_INCLUDE_PATH =$(COMMAND_PARSER_PATH)/include/public
+COMMAND_PARSER_BUILD_PATH =$(COMMAND_PARSER_PATH)/build/$(PLATFORM)
+COMMAND_PARSER_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedCommandParser.so
+$(COMMAND_PARSER_DEBUG_LIB)_dep:
+ +$(V)make -C $(COMMAND_PARSER_BUILD_PATH) debug
+
+COMPRESSION_BASE_PATH =engine/shared/library/sharedCompression
+COMPRESSION_PATH =$(BOOTPRINT_SRC_PATH)/$(COMPRESSION_BASE_PATH)
+COMPRESSION_INCLUDE_PATH =$(COMPRESSION_PATH)/include/public
+COMPRESSION_BUILD_PATH =$(COMPRESSION_PATH)/build/$(PLATFORM)
+COMPRESSION_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedCompression.so
+$(COMPRESSION_DEBUG_LIB)_dep:
+ +$(V)make -C $(COMPRESSION_BUILD_PATH) debug
+
+DEBUG_BASE_PATH =engine/shared/library/sharedDebug
+DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(DEBUG_BASE_PATH)
+DEBUG_INCLUDE_PATH =$(DEBUG_PATH)/include/public
+DEBUG_BUILD_PATH =$(DEBUG_PATH)/build/$(PLATFORM)
+DEBUG_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedDebug.so
+DEBUG_RELEASE_PROJECT =$(DEBUG_BUILD_PATH)/bugus_release
+$(DEBUG_DEBUG_LIB)_dep:
+ +$(V)make -C $(DEBUG_BUILD_PATH) debug
+
+FILE_BASE_PATH =engine/shared/library/sharedFile
+FILE_PATH =$(BOOTPRINT_SRC_PATH)/$(FILE_BASE_PATH)
+FILE_INCLUDE_PATH =$(FILE_PATH)/include/public
+FILE_BUILD_PATH =$(FILE_PATH)/build/$(PLATFORM)
+FILE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedFile.so
+$(FILE_DEBUG_LIB)_dep:
+ +$(V)make -C $(FILE_BUILD_PATH) debug
+
+FOUNDATION_BASE_PATH =engine/shared/library/sharedFoundation
+FOUNDATION_PATH =$(BOOTPRINT_SRC_PATH)/$(FOUNDATION_BASE_PATH)
+FOUNDATION_INCLUDE_PATH =$(FOUNDATION_PATH)/include/public
+FOUNDATION_BUILD_PATH =$(FOUNDATION_PATH)/build/$(PLATFORM)
+FOUNDATION_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedFoundation.so
+$(FOUNDATION_DEBUG_LIB)_dep:
+ +$(V)make -C $(FOUNDATION_BUILD_PATH) debug
+
+FOUNDATION_TYPES_BASE_PATH =engine/shared/library/sharedFoundationTypes
+FOUNDATION_TYPES_PATH =$(BOOTPRINT_SRC_PATH)/$(FOUNDATION_TYPES_BASE_PATH)
+FOUNDATION_TYPES_INCLUDE_PATH =$(FOUNDATION_TYPES_PATH)/include/public
+
+FRACTAL_BASE_PATH =engine/shared/library/sharedFractal
+FRACTAL_PATH =$(BOOTPRINT_SRC_PATH)/$(FRACTAL_BASE_PATH)
+FRACTAL_INCLUDE_PATH =$(FRACTAL_PATH)/include/public
+FRACTAL_BUILD_PATH =$(FRACTAL_PATH)/build/$(PLATFORM)
+FRACTAL_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedFractal.so
+$(FRACTAL_DEBUG_LIB)_dep:
+ +$(V)make -C $(FRACTAL_BUILD_PATH) debug
+
+IMAGE_BASE_PATH =engine/shared/library/sharedImage
+IMAGE_PATH =$(BOOTPRINT_SRC_PATH)/$(IMAGE_BASE_PATH)
+IMAGE_INCLUDE_PATH =$(IMAGE_PATH)/include/public
+IMAGE_BUILD_PATH =$(IMAGE_PATH)/build/$(PLATFORM)
+IMAGE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedImage.so
+$(IMAGE_DEBUG_LIB)_dep:
+ +$(V)make -C $(IMAGE_BUILD_PATH) debug
+
+IOWIN_BASE_PATH =engine/shared/library/sharedIoWin
+IOWIN_PATH =$(BOOTPRINT_SRC_PATH)/$(IOWIN_BASE_PATH)
+IOWIN_INCLUDE_PATH =$(IOWIN_PATH)/include/public
+IOWIN_BUILD_PATH =$(IOWIN_PATH)/build/$(PLATFORM)
+IOWIN_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedIoWin.so
+$(IOWIN_DEBUG_LIB)_dep:
+ +$(V)make -C $(IOWIN_BUILD_PATH) debug
+
+LOG_BASE_PATH =engine/shared/library/sharedLog
+LOG_PATH =$(BOOTPRINT_SRC_PATH)/$(LOG_BASE_PATH)
+LOG_INCLUDE_PATH =$(LOG_PATH)/include/public
+LOG_BUILD_PATH =$(LOG_PATH)/build/$(PLATFORM)
+LOG_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedLog.so
+$(LOG_DEBUG_LIB)_dep:
+ +$(V)make -C $(LOG_BUILD_PATH) debug
+
+MATH_BASE_PATH =engine/shared/library/sharedMath
+MATH_PATH =$(BOOTPRINT_SRC_PATH)/$(MATH_BASE_PATH)
+MATH_INCLUDE_PATH =$(MATH_PATH)/include/public
+MATH_BUILD_PATH =$(MATH_PATH)/build/$(PLATFORM)
+MATH_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedMath.so
+$(MATH_DEBUG_LIB)_dep:
+ +$(V)make -C $(MATH_BUILD_PATH) debug
+
+MATH_ARCHIVE_BASE_PATH =engine/shared/library/sharedMathArchive
+MATH_ARCHIVE_PATH =$(BOOTPRINT_SRC_PATH)/$(MATH_ARCHIVE_BASE_PATH)
+MATH_ARCHIVE_INCLUDE_PATH =$(MATH_ARCHIVE_PATH)/include/public
+
+MEMORY_MANAGER_BASE_PATH =engine/shared/library/sharedMemoryManager
+MEMORY_MANAGER_PATH =$(BOOTPRINT_SRC_PATH)/$(MEMORY_MANAGER_BASE_PATH)
+MEMORY_MANAGER_INCLUDE_PATH =$(MEMORY_MANAGER_PATH)/include/public
+MEMORY_MANAGER_BUILD_PATH =$(MEMORY_MANAGER_PATH)/build/$(PLATFORM)
+MEMORY_MANAGER_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedMemoryManager.so
+$(MEMORY_MANAGER_DEBUG_LIB)_dep:
+ +$(V)make -C $(MEMORY_MANAGER_BUILD_PATH) debug
+
+MESSAGE_DISPATCH_BASE_PATH =engine/shared/library/sharedMessageDispatch
+MESSAGE_DISPATCH_PATH =$(BOOTPRINT_SRC_PATH)/$(MESSAGE_DISPATCH_BASE_PATH)
+MESSAGE_DISPATCH_INCLUDE_PATH =$(MESSAGE_DISPATCH_PATH)/include/public
+MESSAGE_DISPATCH_BUILD_PATH =$(MESSAGE_DISPATCH_PATH)/build/$(PLATFORM)
+MESSAGE_DISPATCH_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedMessageDispatch.so
+$(MESSAGE_DISPATCH_DEBUG_LIB)_dep:
+ +$(V)make -C $(MESSAGE_DISPATCH_BUILD_PATH) debug
+
+NETWORK_MESSAGES_BASE_PATH =engine/shared/library/sharedNetworkMessages
+NETWORK_MESSAGES_PATH =$(BOOTPRINT_SRC_PATH)/$(NETWORK_MESSAGES_BASE_PATH)
+NETWORK_MESSAGES_INCLUDE_PATH =$(NETWORK_MESSAGES_PATH)/include/public
+NETWORK_MESSAGES_BUILD_PATH =$(NETWORK_MESSAGES_PATH)/build/$(PLATFORM)
+NETWORK_MESSAGES_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedNetworkMessages.so
+$(NETWORK_MESSAGES_DEBUG_LIB)_dep:
+ +$(V)make -C $(NETWORK_MESSAGES_BUILD_PATH) debug
+
+OBJECT_BASE_PATH =engine/shared/library/sharedObject
+OBJECT_PATH =$(BOOTPRINT_SRC_PATH)/$(OBJECT_BASE_PATH)
+OBJECT_INCLUDE_PATH =$(OBJECT_PATH)/include/public
+OBJECT_BUILD_PATH =$(OBJECT_PATH)/build/$(PLATFORM)
+OBJECT_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedObject.so
+$(OBJECT_DEBUG_LIB)_dep:
+ +$(V)make -C $(OBJECT_BUILD_PATH) debug
+
+SKILL_SYSTEM_BASE_PATH =engine/shared/library/sharedSkillSystem
+SKILL_SYSTEM_PATH =$(BOOTPRINT_SRC_PATH)/$(SKILL_SYSTEM_BASE_PATH)
+SKILL_SYSTEM_INCLUDE_PATH =$(SKILL_SYSTEM_PATH)/include/public
+SKILL_SYSTEM_BUILD_PATH =$(SKILL_SYSTEM_PATH)/build/$(PLATFORM)
+SKILL_SYSTEM_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedSkillSystem.so
+$(SKILL_SYSTEM_DEBUG_LIB)_dep:
+ +$(V)make -C $(SKILL_SYSTEM_BUILD_PATH) debug
+
+PATHFINDING_BASE_PATH =engine/shared/library/sharedPathfinding
+PATHFINDING_PATH =$(BOOTPRINT_SRC_PATH)/$(PATHFINDING_BASE_PATH)
+PATHFINDING_INCLUDE_PATH =$(PATHFINDING_PATH)/include/public
+PATHFINDING_BUILD_PATH =$(PATHFINDING_PATH)/build/$(PLATFORM)
+PATHFINDING_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedPathfinding.so
+$(PATHFINDING_DEBUG_LIB)_dep:
+ +$(V)make -C $(PATHFINDING_BUILD_PATH) debug
+
+RANDOM_BASE_PATH =engine/shared/library/sharedRandom
+RANDOM_PATH =$(BOOTPRINT_SRC_PATH)/$(RANDOM_BASE_PATH)
+RANDOM_INCLUDE_PATH =$(RANDOM_PATH)/include/public
+RANDOM_BUILD_PATH =$(RANDOM_PATH)/build/$(PLATFORM)
+RANDOM_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedRandom.so
+$(RANDOM_DEBUG_LIB)_dep:
+ +$(V)make -C $(RANDOM_BUILD_PATH) debug
+
+REGEX_BASE_PATH =external/3rd/library/regex
+REGEX_PATH =$(BOOTPRINT_SRC_PATH)/$(REGEX_BASE_PATH)
+REGEX_INCLUDE_PATH =$(REGEX_PATH)
+REGEX_BUILD_PATH =$(REGEX_PATH)/libs/regex/build/gcc
+REGEX_DEBUG_LIB =$(REGEX_BUILD_PATH)/libboost_regex_debug.a
+
+
+SHARED_DATABASE_INTERFACE_BASE_PATH =engine/shared/library/sharedDatabaseInterface
+SHARED_DATABASE_INTERFACE_PATH =$(BOOTPRINT_SRC_PATH)/$(SHARED_DATABASE_INTERFACE_BASE_PATH)
+SHARED_DATABASE_INTERFACE_INCLUDE_PATH =$(SHARED_DATABASE_INTERFACE_PATH)/include/public
+SHARED_DATABASE_INTERFACE_BUILD_PATH =$(SHARED_DATABASE_INTERFACE_PATH)/build/$(PLATFORM)
+SHARED_DATABASE_INTERFACE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedDatabaseInterface.so
+$(SHARED_DATABASE_INTERFACE_DEBUG_LIB)_dep:
+ +$(V)make -C $(SHARED_DATABASE_INTERFACE_BUILD_PATH) debug
+
+
+SHARED_REGEX_BASE_PATH =engine/shared/library/sharedRegex
+SHARED_REGEX_PATH =$(BOOTPRINT_SRC_PATH)/$(SHARED_REGEX_BASE_PATH)
+SHARED_REGEX_INCLUDE_PATH =$(SHARED_REGEX_PATH)/include/public
+SHARED_REGEX_BUILD_PATH =$(SHARED_REGEX_PATH)/build/$(PLATFORM)
+SHARED_REGEX_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedRegex.so
+$(SHARED_REGEX_DEBUG_LIB)_dep:
+ +$(V)make -C $(SHARED_REGEX_BUILD_PATH) debug
+
+SWITCHER_BASE_PATH =engine/shared/library/sharedSwitcher
+SWITCHER_PATH =$(BOOTPRINT_SRC_PATH)/$(SWITCHER_BASE_PATH)
+SWITCHER_INCLUDE_PATH =$(SWITCHER_PATH)/include/public
+SWITCHER_BUILD_PATH =$(SWITCHER_PATH)/build/$(PLATFORM)
+SWITCHER_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedSwitcher.so
+
+SYNCHRONIZATION_BASE_PATH =engine/shared/library/sharedSynchronization
+SYNCHRONIZATION_PATH =$(BOOTPRINT_SRC_PATH)/$(SYNCHRONIZATION_BASE_PATH)
+SYNCHRONIZATION_INCLUDE_PATH =$(SYNCHRONIZATION_PATH)/include/public
+SYNCHRONIZATION_BUILD_PATH =$(SYNCHRONIZATION_PATH)/build/$(PLATFORM)
+SYNCHRONIZATION_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedSynchronization.so
+$(SYNCHRONIZATION_DEBUG_LIB)_dep:
+ +$(V)make -C $(SYNCHRONIZATION_BUILD_PATH) debug
+
+TEMPLATE_BASE_PATH =engine/shared/library/sharedTemplate
+TEMPLATE_PATH =$(BOOTPRINT_SRC_PATH)/$(TEMPLATE_BASE_PATH)
+TEMPLATE_INCLUDE_PATH =$(TEMPLATE_PATH)/include/public
+TEMPLATE_BUILD_PATH =$(TEMPLATE_PATH)/build/$(PLATFORM)
+TEMPLATE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedTemplate.so
+$(TEMPLATE_DEBUG_LIB)_dep:
+ +$(V)make -C $(TEMPLATE_BUILD_PATH) debug
+
+TEMPLATE_DEFINITION_BASE_PATH =engine/shared/library/sharedTemplateDefinition
+TEMPLATE_DEFINITION_PATH =$(BOOTPRINT_SRC_PATH)/$(TEMPLATE_DEFINITION_BASE_PATH)
+TEMPLATE_DEFINITION_INCLUDE_PATH =$(TEMPLATE_DEFINITION_PATH)/include/public
+TEMPLATE_DEFINITION_BUILD_PATH =$(TEMPLATE_DEFINITION_PATH)/build/$(PLATFORM)
+TEMPLATE_DEFINITION_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedTemplateDefinition.so
+$(TEMPLATE_DEFINITION_DEBUG_LIB)_dep:
+ +$(V)make -C $(TEMPLATE_DEFINITION_BUILD_PATH) debug
+
+TERRAIN_BASE_PATH =engine/shared/library/sharedTerrain
+TERRAIN_PATH =$(BOOTPRINT_SRC_PATH)/$(TERRAIN_BASE_PATH)
+TERRAIN_INCLUDE_PATH =$(TERRAIN_PATH)/include/public
+TERRAIN_BUILD_PATH =$(TERRAIN_PATH)/build/$(PLATFORM)
+TERRAIN_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedTerrain.so
+$(TERRAIN_DEBUG_LIB)_dep:
+ +$(V)make -C $(TERRAIN_BUILD_PATH) debug
+
+THREAD_BASE_PATH =engine/shared/library/sharedThread
+THREAD_PATH =$(BOOTPRINT_SRC_PATH)/$(THREAD_BASE_PATH)
+THREAD_INCLUDE_PATH =$(THREAD_PATH)/include/public
+THREAD_BUILD_PATH =$(THREAD_PATH)/build/$(PLATFORM)
+THREAD_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedThread.so
+$(THREAD_DEBUG_LIB)_dep:
+ +$(V)make -C $(THREAD_BUILD_PATH) debug
+
+UTILITY_BASE_PATH =engine/shared/library/sharedUtility
+UTILITY_PATH =$(BOOTPRINT_SRC_PATH)/$(UTILITY_BASE_PATH)
+UTILITY_INCLUDE_PATH =$(UTILITY_PATH)/include/public
+UTILITY_BUILD_PATH =$(UTILITY_PATH)/build/$(PLATFORM)
+UTILITY_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libsharedUtility.so
+$(UTILITY_DEBUG_LIB)_dep:
+ +$(V)make -C $(UTILITY_BUILD_PATH) debug
+
+ORACLE_CLIENT_PATH =$(ORACLE_HOME)
+ORACLE_CLIENT_LIB =$(ORACLE_CLIENT_PATH)/lib/libclntsh.so
+$(ORACLE_CLIENT_LIB)_dep:
+ @[ -f $(ORACLE_CLIENT_LIB) ] || echo " [$(ORACLE_CLIENT_LIB)] is missing!"
+ $(V)cd $(SHARED_DEBUG_LIB_PATH) && ln -sf $(ORACLE_CLIENT_LIB)
+
+LIBXML_INCLUDE_PATH =/usr/include/libxml2
+LIBXML_LIB =/usr/lib/libxml2.so
+$(LIBXML_LIB)_dep:
+ @[ -f $(LIBXML_LIB) ] || echo " [$(LIBXML_LIB)] is missing!"
+ $(V)cd $(SHARED_DEBUG_LIB_PATH) && ln -sf $(LIBXML_LIB)
+
+SERVER_GAME_BASE_PATH =engine/server/library/serverGame
+SERVER_GAME_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_GAME_BASE_PATH)
+SERVER_GAME_INCLUDE_PATH =$(SERVER_GAME_PATH)/include/public
+SERVER_GAME_BUILD_PATH =$(SERVER_GAME_PATH)/build/$(PLATFORM)
+SERVER_GAME_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverGame.so
+$(SERVER_GAME_DEBUG_LIB)_dep:
+ +$(V)make -C $(SERVER_GAME_BUILD_PATH) debug
+
+SERVER_KEYSHARE_BASE_PATH =engine/server/library/serverKeyShare
+SERVER_KEYSHARE_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_KEYSHARE_BASE_PATH)
+SERVER_KEYSHARE_INCLUDE_PATH =$(SERVER_KEYSHARE_PATH)/include/public
+SERVER_KEYSHARE_BUILD_PATH =$(SERVER_KEYSHARE_PATH)/build/$(PLATFORM)
+SERVER_KEYSHARE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverKeyShare.so
+$(SERVER_KEYSHARE_DEBUG_LIB)_dep:
+ +$(V)make -C $(SERVER_KEYSHARE_BUILD_PATH) debug
+
+SERVER_METRICS_BASE_PATH =engine/server/library/serverMetrics
+SERVER_METRICS_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_METRICS_BASE_PATH)
+SERVER_METRICS_INCLUDE_PATH =$(SERVER_METRICS_PATH)/include/public
+SERVER_METRICS_BUILD_PATH =$(SERVER_METRICS_PATH)/build/$(PLATFORM)
+SERVER_METRICS_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverMetrics.so
+$(SERVER_METRICS_DEBUG_LIB)_dep:
+ +$(V)make -C $(SERVER_METRICS_BUILD_PATH) debug
+
+SERVER_NETWORK_MESSAGES_BASE_PATH =engine/server/library/serverNetworkMessages
+SERVER_NETWORK_MESSAGES_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_NETWORK_MESSAGES_BASE_PATH)
+SERVER_NETWORK_MESSAGES_INCLUDE_PATH =$(SERVER_NETWORK_MESSAGES_PATH)/include/public
+SERVER_NETWORK_MESSAGES_BUILD_PATH =$(SERVER_NETWORK_MESSAGES_PATH)/build/$(PLATFORM)
+SERVER_NETWORK_MESSAGES_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverNetworkMessages.so
+$(SERVER_NETWORK_MESSAGES_DEBUG_LIB)_dep:
+ +$(V)make -C $(SERVER_NETWORK_MESSAGES_BUILD_PATH) debug
+
+SERVER_PATHFINDING_BASE_PATH =engine/server/library/serverPathfinding
+SERVER_PATHFINDING_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_PATHFINDING_BASE_PATH)
+SERVER_PATHFINDING_INCLUDE_PATH =$(SERVER_PATHFINDING_PATH)/include/public
+SERVER_PATHFINDING_BUILD_PATH =$(SERVER_PATHFINDING_PATH)/build/$(PLATFORM)
+SERVER_PATHFINDING_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverPathfinding.so
+$(SERVER_PATHFINDING_DEBUG_LIB)_dep:
+ +$(V)make -C $(SERVER_PATHFINDING_BUILD_PATH) debug
+
+SERVER_SCRIPT_BASE_PATH =engine/server/library/serverScript
+SERVER_SCRIPT_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_SCRIPT_BASE_PATH)
+SERVER_SCRIPT_INCLUDE_PATH =$(SERVER_SCRIPT_PATH)/include/public
+SERVER_SCRIPT_BUILD_PATH =$(SERVER_SCRIPT_PATH)/build/$(PLATFORM)
+SERVER_SCRIPT_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverScript.so
+$(SERVER_SCRIPT_DEBUG_LIB)_dep:
+ +$(V)make -C $(SERVER_SCRIPT_BUILD_PATH) debug
+
+SERVER_UTILITY_BASE_PATH =engine/server/library/serverUtility
+SERVER_UTILITY_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_UTILITY_BASE_PATH)
+SERVER_UTILITY_INCLUDE_PATH =$(SERVER_UTILITY_PATH)/include/public
+SERVER_UTILITY_BUILD_PATH =$(SERVER_UTILITY_PATH)/build/$(PLATFORM)
+SERVER_UTILITY_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverUtility.so
+$(SERVER_UTILITY_DEBUG_LIB)_dep:
+ +$(V)make -C $(SERVER_UTILITY_BUILD_PATH) debug
+
+SERVER_DATABASE_BASE_PATH =engine/server/library/serverDatabase
+SERVER_DATABASE_PATH =$(BOOTPRINT_SRC_PATH)/$(SERVER_DATABASE_BASE_PATH)
+SERVER_DATABASE_INCLUDE_PATH =$(SERVER_DATABASE_PATH)/include/public
+SERVER_DATABASE_BUILD_PATH =$(SERVER_DATABASE_PATH)/build/$(PLATFORM)
+SERVER_DATABASE_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libserverDatabase.so
+$(SERVER_DATABASE_DEBUG_LIB)_dep:
+ +$(V)make -C $(SERVER_DATABASE_BUILD_PATH) debug
+
+CLIENT_REMOTE_DEBUG_BASE_PATH =engine/client/library/clientRemoteDebug
+CLIENT_REMOTE_DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(CLIENT_REMOTE_DEBUG_BASE_PATH)
+CLIENT_REMOTE_DEBUG_INCLUDE_PATH =$(CLIENT_REMOTE_DEBUG_PATH)/include/public
+CLIENT_REMOTE_DEBUG_BUILD_PATH =$(CLIENT_REMOTE_DEBUG_PATH)/build/$(PLATFORM)
+CLIENT_REMOTE_DEBUG_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH )/debug/libclientRemoteDebug.so
+
+
+# TODO: These really belong in game's defs.mak
+
+SWG_SERVER_NETWORK_MESSAGES_BASE_PATH =game/server/library/swgServerNetworkMessages
+SWG_SERVER_NETWORK_MESSAGES_PATH =$(BOOTPRINT_SRC_PATH)/$(SWG_SERVER_NETWORK_MESSAGES_BASE_PATH)
+SWG_SERVER_NETWORK_MESSAGES_INCLUDE_PATH =$(SWG_SERVER_NETWORK_MESSAGES_PATH)/include/public
+SWG_SERVER_NETWORK_MESSAGES_BUILD_PATH =$(SWG_SERVER_NETWORK_MESSAGES_PATH)/build/$(PLATFORM)
+SWG_SERVER_NETWORK_MESSAGES_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libswgServerNetworkMessages.so
+$(SWG_SERVER_NETWORK_MESSAGES_DEBUG_LIB)_dep:
+ +$(V)make -C $(SWG_SERVER_NETWORK_MESSAGES_BUILD_PATH) debug
+
+SWG_SHARED_NETWORK_MESSAGES_BASE_PATH =game/shared/library/swgSharedNetworkMessages
+SWG_SHARED_NETWORK_MESSAGES_PATH =$(BOOTPRINT_SRC_PATH)/$(SWG_SHARED_NETWORK_MESSAGES_BASE_PATH)
+SWG_SHARED_NETWORK_MESSAGES_INCLUDE_PATH =$(SWG_SHARED_NETWORK_MESSAGES_PATH)/include/public
+SWG_SHARED_NETWORK_MESSAGES_BUILD_PATH =$(SWG_SHARED_NETWORK_MESSAGES_PATH)/build/$(PLATFORM)
+SWG_SHARED_NETWORK_MESSAGES_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libswgSharedNetworkMessages.so
+$(SWG_SHARED_NETWORK_MESSAGES_DEBUG_LIB)_dep:
+ +$(V)make -C $(SWG_SHARED_NETWORK_MESSAGES_BUILD_PATH) debug
+
+SWG_SHARED_UTILITY_BASE_PATH =game/shared/library/swgSharedUtility
+SWG_SHARED_UTILITY_PATH =$(BOOTPRINT_SRC_PATH)/$(SWG_SHARED_UTILITY_BASE_PATH)
+SWG_SHARED_UTILITY_INCLUDE_PATH =$(SWG_SHARED_UTILITY_PATH)/include/public
+SWG_SHARED_UTILITY_BUILD_PATH =$(SWG_SHARED_UTILITY_PATH)/build/$(PLATFORM)
+SWG_SHARED_UTILITY_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libswgSharedUtility.so
+$(SWG_SHARED_UTILITY_DEBUG_LIB)_dep:
+ +$(V)make -C $(SWG_SHARED_UTILITY_BUILD_PATH) debug
+
+
+#external source tree defines
+
+STL_BASE_PATH =external/3rd/library/stlport453
+STL_PATH =$(BOOTPRINT_SRC_PATH)/$(STL_BASE_PATH)
+STL_INCLUDE_PATH = $(STL_PATH)/stlport
+STL_LIB = $(STL_PATH)/lib/libstlport_gcc.a
+$(STL_LIB)_dep:
+ make -C $(STL_PATH)/src -f gcc-linux.mak all_static
+
+ZLIB_BASE_PATH =external/3rd/library/zlib
+ZLIB_PATH =$(BOOTPRINT_SRC_PATH)/$(ZLIB_BASE_PATH)
+ZLIB_INCLUDE_PATH = $(ZLIB_PATH)/include
+ZLIB_LIB = $(ZLIB_PATH)/lib/linux/libz.a
+$(ZLIB_LIB)_dep:
+ @[ -f $(ZLIB_LIB) ] || echo " [$(ZLIB_LIB)] is missing!"
+
+BOOST_BASE_PATH = external/3rd/library/boost
+BOOST_INCLUDE_PATH = $(BOOTPRINT_SRC_PATH)/$(BOOST_BASE_PATH)
+
+PCRE_BASE_PATH =external/3rd/library/pcre/4.1/linux
+PCRE_PATH =$(BOOTPRINT_SRC_PATH)/$(PCRE_BASE_PATH)
+PCRE_INCLUDE_PATH =$(PCRE_PATH)/include
+PCRE_BUILD_PATH =$(PCRE_PATH)/lib
+PCRE_DEBUG_LIB =$(PCRE_BUILD_PATH)/libpcre.a
+$(PCRE_DEBUG_LIB)_dep:
+ @[ -f $(PCRE_DEBUG_LIB) ] || @echo " [$(PCRE_DEBUG_LIB)] is missing!"
+
+
+SHARED_GAME_BASE_PATH =engine/shared/library/sharedGame
+SHARED_GAME_PATH =$(BOOTPRINT_SRC_PATH)/$(SHARED_GAME_BASE_PATH)
+SHARED_GAME_INCLUDE_PATH = $(SHARED_GAME_PATH)/include/public
+SHARED_GAME_BUILD_PATH = $(SHARED_GAME_PATH)/build/$(PLATFORM)
+SHARED_GAME_DEBUG_LIB = $(SHARED_DEBUG_LIB_PATH)/libsharedGame.so
+$(SHARED_GAME_DEBUG_LIB)_dep:
+ +$(V)make -C $(SHARED_GAME_BUILD_PATH) debug
+
+SHARED_NETWORK_BASE_PATH =engine/shared/library/sharedNetwork
+SHARED_NETWORK_PATH =$(BOOTPRINT_SRC_PATH)/$(SHARED_NETWORK_BASE_PATH)
+SHARED_NETWORK_INCLUDE_PATH = $(SHARED_NETWORK_PATH)/include/public
+SHARED_NETWORK_BUILD_PATH = $(SHARED_NETWORK_PATH)/build/$(PLATFORM)
+SHARED_NETWORK_DEBUG_LIB = $(SHARED_DEBUG_LIB_PATH)/libsharedNetwork.so
+$(SHARED_NETWORK_DEBUG_LIB)_dep:
+ +$(V)make -C $(SHARED_NETWORK_BUILD_PATH) debug
+
+SHARED_XML_BASE_PATH =engine/shared/library/sharedXml
+SHARED_XML_PATH =$(BOOTPRINT_SRC_PATH)/$(SHARED_XML_BASE_PATH)
+SHARED_XML_INCLUDE_PATH = $(SHARED_XML_PATH)/include/public
+SHARED_XML_BUILD_PATH = $(SHARED_XML_PATH)/build/$(PLATFORM)
+SHARED_XML_DEBUG_LIB = $(SHARED_DEBUG_LIB_PATH)/libsharedXml.so
+$(SHARED_XML_DEBUG_LIB)_dep:
+ +$(V)make -C $(SHARED_XML_BUILD_PATH) debug
+
+SESSIONAPI_BASE_PATH =external/3rd/library/platform
+SESSIONAPI_PATH =$(BOOTPRINT_SRC_PATH)/$(SESSIONAPI_BASE_PATH)
+SESSIONAPI_INCLUDE_PATH = $(SESSIONAPI_PATH)/projects
+
+UDPLIBRARY_BASE_PATH =external/3rd/library/udplibrary
+UDPLIBRARY_PATH =$(BOOTPRINT_SRC_PATH)/$(UDPLIBRARY_BASE_PATH)
+UDPLIBRARY_INCLUDE_PATH = $(UDPLIBRARY_PATH)
+UDPLIBRARY_BUILD_PATH = $(UDPLIBRARY_PATH)
+UDPLIBRARY_DEBUG_LIB = $(UDPLIBRARY_PATH)/output/debug/libudplibrary.a
+$(UDPLIBRARY_DEBUG_LIB)_dep:
+ +$(V)make -C $(UDPLIBRARY_BUILD_PATH) debug
+ +$(V)make -C $(UDPLIBRARY_BUILD_PATH) release
+
+ARCHIVE_BASE_PATH =external/ours/library/archive
+ARCHIVE_PATH =$(BOOTPRINT_SRC_PATH)/$(ARCHIVE_BASE_PATH)
+ARCHIVE_INCLUDE_PATH =$(ARCHIVE_PATH)/include
+ARCHIVE_BUILD_PATH =$(ARCHIVE_PATH)/build/$(PLATFORM)
+#ARCHIVE_DEBUG_LIB =$(BOOTPRINT_LIB_PATH)/archive/debug/libourArchive.so
+ARCHIVE_DEBUG_LIB =$(BOOTPRINT_LIB_PATH)/archive/debug/libarchive.so
+$(ARCHIVE_DEBUG_LIB)_dep:
+ +$(V)make -j 1 -C $(ARCHIVE_BUILD_PATH) debug
+
+FILE_INTERFACE_BASE_PATH =external/ours/library/fileInterface
+FILE_INTERFACE_PATH =$(BOOTPRINT_SRC_PATH)/$(FILE_INTERFACE_BASE_PATH)
+FILE_INTERFACE_INCLUDE_PATH =$(FILE_INTERFACE_PATH)/include/public
+FILE_INTERFACE_BUILD_PATH =$(FILE_INTERFACE_PATH)/build/$(PLATFORM)
+FILE_INTERFACE_DEBUG_LIB =$(FILE_INTERFACE_BUILD_PATH)/output/debug/libfileInterface.so
+$(FILE_INTERFACE_DEBUG_LIB)_dep:
+ +$(V)make -j 1 -C $(FILE_INTERFACE_BUILD_PATH) debug
+
+UNICODE_ARCHIVE_BASE_PATH =external/ours/library/unicodeArchive
+UNICODE_ARCHIVE_PATH =$(BOOTPRINT_SRC_PATH)/$(UNICODE_ARCHIVE_BASE_PATH)
+UNICODE_ARCHIVE_INCLUDE_PATH =$(UNICODE_ARCHIVE_PATH)/include/public
+UNICODE_ARCHIVE_BUILD_PATH =$(UNICODE_ARCHIVE_PATH)/build/$(PLATFORM)
+UNICODE_ARCHIVE_DEBUG_LIB =$(UNICODE_ARCHIVE_BUILD_PATH)/output/debug/libunicodeArchive.so
+$(UNICODE_ARCHIVE_DEBUG_LIB)_dep:
+ +$(V)make -j 1 -C $(UNICODE_ARCHIVE_BUILD_PATH) debug
+
+CRYPTO_BASE_PATH =external/ours/library/crypto
+CRYPTO_PATH =$(BOOTPRINT_SRC_PATH)/$(CRYPTO_BASE_PATH)
+CRYPTO_BUILD_PATH =$(CRYPTO_PATH)/build/$(PLATFORM)
+CRYPTO_DEBUG_LIB =$(SHARED_DEBUG_LIB_PATH)/libcrypto.so
+$(CRYPTO_DEBUG_LIB)_dep:
+ +$(V)make -j 1 -C $(CRYPTO_BUILD_PATH) debug
+
+#./swg/current/src/external/ours/library/unicode/compile/linux/Debug/libunicode.a
+
+UNICODE_BASE_PATH =external/ours/library/unicode
+UNICODE_PATH =$(BOOTPRINT_SRC_PATH)/$(UNICODE_BASE_PATH)
+UNICODE_INCLUDE_PATH =$(UNICODE_PATH)/include
+UNICODE_BUILD_PATH =$(UNICODE_PATH)/build/$(PLATFORM)
+UNICODE_DEBUG_LIB =$(UNICODE_PATH)/compile/linux/Debug/libunicode.so
+$(UNICODE_DEBUG_LIB)_dep:
+ +$(V)make -j 1 -C $(UNICODE_BUILD_PATH) debug
+
+LOCALIZATION_BASE_PATH =external/ours/library/localization
+LOCALIZATION_PATH =$(BOOTPRINT_SRC_PATH)/$(LOCALIZATION_BASE_PATH)
+LOCALIZATION_INCLUDE_PATH =$(LOCALIZATION_PATH)/include
+LOCALIZATION_BUILD_PATH =$(LOCALIZATION_PATH)/build/$(PLATFORM)
+LOCALIZATION_DEBUG_LIB =$(LOCALIZATION_PATH)/compile/linux/Debug/liblocalization.so
+$(LOCALIZATION_DEBUG_LIB)_dep:
+ +$(V)make -j 1 -C $(LOCALIZATION_BUILD_PATH) debug
+
+LOCALIZATION_ARCHIVE_BASE_PATH =external/ours/library/localizationArchive
+LOCALIZATION_ARCHIVE_PATH =$(BOOTPRINT_SRC_PATH)/$(LOCALIZATION_ARCHIVE_BASE_PATH)
+LOCALIZATION_ARCHIVE_INCLUDE_PATH =$(LOCALIZATION_ARCHIVE_PATH)/include/public
+LOCALIZATION_ARCHIVE_BUILD_PATH =$(LOCALIZATION_ARCHIVE_PATH)/build/$(PLATFORM)
+LOCALIZATION_ARCHIVE_DEBUG_LIB =$(LOCALIZATION_ARCHIVE_PATH)/compile/linux/Debug/liblocalizationArchive.so
+$(LOCALIZATION_ARCHIVE_DEBUG_LIB)_dep:
+ +$(V)make -j 1 -C $(LOCALIZATION_ARCHIVE_BUILD_PATH) debug
+
+SESSIONAPI_BASE_PATH =external/3rd/library/platform
+SESSIONAPI_PATH =$(BOOTPRINT_SRC_PATH)/$(SESSIONAPI_BASE_PATH)
+SESSIONAPI_INCLUDE_PATH =$(SESSIONAPI_PATH)/projects
+LOGINAPI_DEBUG_LIB =$(SESSIONAPI_PATH)/lib/debug/libLoginAPI.a
+COMMONAPI_DEBUG_LIB =$(SESSIONAPI_PATH)/lib/debug/libCommonAPI.a
+
+$(LOGINAPI_DEBUG_LIB)_dep:
+ make -C $(SESSIONAPI_PATH)/projects/Session/LoginAPI debug
+
+$(COMMONAPI_DEBUG_LIB)_dep:
+ make -C $(SESSIONAPI_PATH)/projects/Session/CommonAPI debug
+
+
+MONAPI_BASE_PATH =external/3rd/library/platform/MonAPI2
+MONAPI_BUILD_PATH =$(BOOTPRINT_SRC_PATH)/$(MONAPI_BASE_PATH)
+MONAPI_DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(MONAPI_BASE_PATH)/lib
+MONAPI_INCLUDE_PATH =$(BOOTPRINT_SRC_PATH)/external/3rd/library/platform
+MONAPI_DEBUG_LIB =$(MONAPI_DEBUG_PATH)/libmonapi.a
+$(MONAPI_DEBUG_LIB)_dep:
+ +$(V)make -C $(MONAPI_BUILD_PATH) -f Makefile.oldBuildSystem debug
+
+
+CHATAPI_BASE_PATH =external/3rd/library/soePlatform/ChatAPI2/ChatAPI
+CHATAPI_BUILD_PATH =$(BOOTPRINT_SRC_PATH)/$(CHATAPI_BASE_PATH)/projects/Chat/ChatMono
+CHATAPI_DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(CHATAPI_BASE_PATH)/lib/debug
+CHATAPI_RELEASE_PATH =$(BOOTPRINT_SRC_PATH)/$(CHATAPI_BASE_PATH)/lib/release
+CHATAPI_INCLUDE_PATH_ONE =$(BOOTPRINT_SRC_PATH)/$(CHATAPI_BASE_PATH)/utils
+CHATAPI_INCLUDE_PATH_TWO =$(BOOTPRINT_SRC_PATH)/$(CHATAPI_BASE_PATH)/projects/Chat
+CHATAPI_DEBUG_LIB =$(CHATAPI_DEBUG_PATH)/libChatAPI.a
+$(CHATAPI_DEBUG_LIB)_dep:
+ +$(V)make -C $(CHATAPI_BUILD_PATH) -f Makefile debug
+
+CSASSIST_BASE_PATH =external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi
+CSASSIST_BUILD_PATH =$(BOOTPRINT_SRC_PATH)/$(CSASSIST_BASE_PATH)
+CSASSIST_DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(CSASSIST_BASE_PATH)/debug
+CSASSIST_RELEASE_PATH =$(BOOTPRINT_SRC_PATH)/$(CSASSIST_BASE_PATH)/release
+CSASSIST_INCLUDE_PATH =$(BOOTPRINT_SRC_PATH)/$(CSASSIST_BASE_PATH)
+CSASSIST_DEBUG_LIB =$(CSASSIST_DEBUG_PATH)/libCSAssistgameapi.a
+$(CSASSIST_DEBUG_LIB)_dep:
+ +$(V)make -C $(CSASSIST_BUILD_PATH) debug
+
+
+LIBBASE_BASE_PATH =external/3rd/library/platform
+LIBBASE_BUILD_PATH =$(BOOTPRINT_SRC_PATH)/$(LIBBASE_BASE_PATH)/utils/Base/linux
+LIBBASE_DEBUG_PATH =$(BOOTPRINT_SRC_PATH)/$(LIBBASE_BASE_PATH)/lib/debug
+LIBBASE_RELEASE_PATH =$(BOOTPRINT_SRC_PATH)/$(LIBBASE_BASE_PATH)/lib/release
+LIBBASE_INCLUDE_PATH_1 =$(BOOTPRINT_SRC_PATH)/$(LIBBASE_BASE_PATH)/Base/linux
+LIBBASE_INCLUDE_PATH_2 =$(BOOTPRINT_SRC_PATH)/$(LIBBASE_BASE_PATH)/Base
+LIBBASE_DEBUG_LIB =$(LIBBASE_DEBUG_PATH)/libBase_MT.a
+$(LIBBASE_DEBUG_LIB)_dep:
+ +$(V)$(MAKE) -C $(LIBBASE_BUILD_PATH) debug_mt
+
+
+#######################################################################
+# Common library variables
+
+COMMON_ENGINE_LIBRARY_INCLUDES = \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(MEMORY_MANAGER_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(ARCHIVE_INCLUDE_PATH) \
+ $(LOCALIZATION_INCLUDE_PATH) \
+ $(LOCALIZATION_ARCHIVE_INCLUDE_PATH) \
+ $(UNICODE_INCLUDE_PATH) \
+ $(UNICODE_ARCHIVE_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(ZLIB_INCLUDE_PATH) \
+ $(SHARED_GAME_INCLUDE_PATH) \
+ $(SHARED_XML_INCLUDE_PATH)
+
+
+#######################################################################
+# Common application variables
+
+COMMON_ENGINE_INCLUDES = \
+ $(COMPRESSION_INCLUDE_PATH) \
+ $(LIBBASE_INCLUDE_PATH_1) \
+ $(LIBBASE_INCLUDE_PATH_2) \
+ $(CRYPTO_PATH) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FILE_INTERFACE_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(ARCHIVE_INCLUDE_PATH) \
+ $(IMAGE_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(UNICODE_INCLUDE_PATH) \
+ $(UNICODE_ARCHIVE_INCLUDE_PATH) \
+ $(MEMORY_MANAGER_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(SKILL_SYSTEM_INCLUDE_PATH) \
+ $(PATHFINDING_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(SERVER_KEYSHARE_INCLUDE_PATH) \
+ $(SERVER_METRICS_INCLUDE_PATH) \
+ $(SERVER_NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(SERVER_UTILITY_INCLUDE_PATH) \
+ $(SHARED_NETWORK_INCLUDE_PATH) \
+ $(SHARED_XML_INCLUDE_PATH) \
+ $(LIBXML_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(ZLIB_INCLUDE_PATH) \
+ $(LOCALIZATION_INCLUDE_PATH) \
+ $(LOCALIZATION_ARCHIVE_INCLUDE_PATH) \
+ $(LOG_INCLUDE_PATH) \
+ ../../../../../../external/ours/library/singleton/include
+
+
+ifeq ($(BULLSEYE_BUILD),)
+COMMON_ENGINE_DEBUG_LIBS = \
+ $(UDPLIBRARY_DEBUG_LIB) \
+ $(COMMONAPI_DEBUG_LIB) \
+ $(LOGINAPI_DEBUG_LIB) \
+ $(LIBBASE_DEBUG_LIB)
+else
+COMMON_ENGINE_DEBUG_LIBS = \
+ $(UDPLIBRARY_DEBUG_LIB) \
+ $(COMMONAPI_DEBUG_LIB) \
+ $(LOGINAPI_DEBUG_LIB) \
+ $(LIBBASE_DEBUG_LIB) \
+ $(BULLSEYE_LIB)
+endif
+
+COMMON_ENGINE_SHARED_DEBUG_LIBS= \
+ $(COLLISION_DEBUG_LIB) \
+ $(OBJECT_DEBUG_LIB) \
+ $(TERRAIN_DEBUG_LIB) \
+ $(ARCHIVE_DEBUG_LIB) \
+ $(CRYPTO_DEBUG_LIB) \
+ $(COMPRESSION_DEBUG_LIB) \
+ $(DEBUG_DEBUG_LIB) \
+ $(FILE_DEBUG_LIB) \
+ $(FILE_INTERFACE_DEBUG_LIB) \
+ $(FRACTAL_DEBUG_LIB) \
+ $(FOUNDATION_DEBUG_LIB) \
+ $(IMAGE_DEBUG_LIB) \
+ $(LOCALIZATION_DEBUG_LIB) \
+ $(LOCALIZATION_ARCHIVE_DEBUG_LIB) \
+ $(LOG_DEBUG_LIB) \
+ $(MATH_DEBUG_LIB) \
+ $(MESSAGE_DISPATCH_DEBUG_LIB) \
+ $(RANDOM_DEBUG_LIB) \
+ $(SHARED_NETWORK_DEBUG_LIB) \
+ $(SHARED_XML_DEBUG_LIB) \
+ $(LIBXML_LIB) \
+ $(SERVER_KEYSHARE_DEBUG_LIB) \
+ $(SERVER_METRICS_DEBUG_LIB) \
+ $(NETWORK_MESSAGES_DEBUG_LIB) \
+ $(SERVER_NETWORK_MESSAGES_DEBUG_LIB) \
+ $(SERVER_UTILITY_DEBUG_LIB) \
+ $(SYNCHRONIZATION_DEBUG_LIB) \
+ $(THREAD_DEBUG_LIB) \
+ $(UNICODE_DEBUG_LIB) \
+ $(UTILITY_DEBUG_LIB) \
+ $(UNICODE_ARCHIVE_DEBUG_LIB) \
+ $(MEMORY_MANAGER_DEBUG_LIB) \
+
+# empty targets, can oan be overriden by specific project makefiles
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+custom_clean_step:
+
diff --git a/src/engine/build/shared_unix/library.mak b/src/engine/build/shared_unix/library.mak
new file mode 100644
index 000000000..9cf7d2efb
--- /dev/null
+++ b/src/engine/build/shared_unix/library.mak
@@ -0,0 +1,134 @@
+#This makefile assumes that defs.mak is already included by the project specific makefile
+
+ifeq ($(VERBOSE_BUILD),)
+V =@
+else
+V =
+endif
+
+ifeq ($(W_ERROR),)
+W_ERROR=-Werror
+endif
+
+ifeq ($(STATIC_LIB),)
+CUSTOM_CPP_FLAGS += -fPIC
+CUSTOM_LINK_FLAGS = -shared
+
+DYN_LINK = -lc
+DEBUG_OUTPUT = lib$(LIBRARY).so.0.0
+LINK_FLAGS = $(CUSTOM_LINK_FLAGS)
+DEBUG_SYM_LINK = $(V)cd $(SHARED_DEBUG_LIB_PATH) && ln -sf ../../../../src/compile/linux/$(LIBRARY)/debug/$(DEBUG_OUTPUT) lib$(LIBRARY).so
+
+ifeq ($(BULLSEYE_BUILD),)
+LINK = g++
+else
+LINK = /opt/app/bullseyecoverage/bin/g++
+endif
+
+else
+CUSTOM_LINK_FLAGS =
+DYN_LINK =
+CUSTOM_CPP_FLAGS =
+DEBUG_OUTPUT = lib$(LIBRARY)_d.a
+LINK_FLAGS = -r -static
+DEBUG_SYM_LINK =
+LINK = ld
+endif
+
+
+INCLUDE_DIRS_FINAL =$(INCLUDE_DIRS) $(STL_INCLUDE_PATH) /usr/include /usr/include/libxml2
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell [ -d $$PWD/../../src/$(PLATFORM) ] && find ../../src/$(PLATFORM) -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST) $(CUSTOM_SRC_LIST)
+DEPENDENCY_LIST = $(SRC_LIST:.cpp=.d)
+
+DEBUG_OUTPUT_DIR = $(BOOTPRINT_LIB_PATH)/$(LIBRARY)/debug
+
+DEBUG_OBJ_LIST = $(addprefix $(DEBUG_OUTPUT_DIR)/, $(notdir $(SRC_LIST:.cpp=.o)))
+CPP_FLAGS_DEBUG = -g $(addprefix -I,$(INCLUDE_DIRS_FINAL)) $(PLATFORM_DEFINES) $(CUSTOM_CPP_FLAGS) -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE -DUSING_STL -D_DEBUG -D__STL_NO_BAD_ALLOC -Wall -Wno-unknown-pragmas $(W_ERROR) -Wno-ctor-dtor-privacy -Wformat -Wreturn-type -Wimplicit -ftemplate-depth-25
+#LINK_FLAGS = -r $(CUSTOM_LINK_FLAGS) #for .so libs you need -shared
+#DEBUG_OUTPUT = lib$(LIBRARY)_d.a
+
+RELEASE_OUTPUT_DIR = $(BOOTPRINT_LIB_PATH)/$(LIBRARY)/release
+RELEASE_OBJ_LIST = $(addprefix $(RELEASE_OUTPUT_DIR)/, $(notdir $(SRC_LIST:.cpp=.o)))
+CPP_FLAGS_RELEASE = -g -O2 $(addprefix -I,$(INCLUDE_DIRS_FINAL)) -Wno-ctor-dtor-privacy $(PLATFORM_DEFINES) -D__STL_NO_BAD_ALLOC -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(CUSTOM_CPP_FLAGS) -Wno-unknown-pragmas -DUSING_STL
+RELEASE_OUTPUT = lib$(LIBRARY)_r.a
+
+LINT_SCRIPT = $(BOOTPRINT_SRC_PATH)/../tools/swglint.sh
+LINT_TARGETS = $(addsuffix .lint,$(SRC_LIST))
+.PHONY : release
+
+
+%.cpp.lint : %.cpp
+ @echo prerequisite: $(subst .lint,,$@)
+ @echo output: $@
+ $(LINT_SCRIPT) $(subst .lint,,$@)
+ touch $@
+
+all : debug release tags
+
+publish:
+
+lint: $(LINT_TARGETS)
+
+$(LINT_TARGETS): $(SRC_LIST)
+ $(LINT_SCRIPT) $(subst .lint,,$@)
+ touch $@
+
+debug: debug_custom_step
+ +$(V)$(MAKE) $(SHARED_DEBUG_LIB_PATH)/$(DEBUG_OUTPUT)
+
+$(SHARED_DEBUG_LIB_PATH):
+ $(V)mkdir -p $(SHARED_DEBUG_LIB_PATH)
+
+$(SHARED_DEBUG_LIB_PATH)/$(DEBUG_OUTPUT): $(SHARED_DEBUG_LIB_PATH) $(DEBUG_OUTPUT_DIR)/$(DEBUG_OUTPUT)
+
+$(DEBUG_OUTPUT_DIR):
+ $(V)mkdir -p $(DEBUG_OUTPUT_DIR)
+
+$(DEBUG_OBJ_LIST):
+ @echo $(notdir $(basename $@)).cpp
+ $(V)$(CPP) $(CPP_FLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SRC_LIST))
+
+$(DEBUG_OUTPUT_DIR)/$(DEBUG_OUTPUT): $(DEBUG_OUTPUT_DIR) $(DEBUG_OBJ_LIST)
+ @echo Creating debug library $@
+ $(V)$(LINK) $(LINK_FLAGS) -o $(DEBUG_OUTPUT_DIR)/$(DEBUG_OUTPUT) $(DYN_LINK) $(DEBUG_OBJ_LIST)
+ $(DEBUG_SYM_LINK)
+
+ifneq ($(MAKECMDGOALS),clean)
+ifneq ($(MAKECMDGOALS),depend)
+include .depend
+endif
+endif
+
+.PHONY : $(DEPENDENCY_LIST)
+
+#depend: .depend $(DEPENDENCY_LIST)
+# $(V)perl $(BOOTPRINT_SRC_PATH)/../tools/programmer/linux/dependcat.pl $(DEPENDENCY_LIST) > .depend
+# $(V)rm $(DEPENDENCY_LIST)
+
+depend: .depend $(DEPENDENCY_LIST)
+ $(V)perl $(BOOTPRINT_SRC_PATH)/../tools/dependcat.pl $(DEPENDENCY_LIST) > .depend
+ $(V)rm $(DEPENDENCY_LIST)
+
+.depend:
+ touch .depend
+ +make depend_custom_step
+ +make depend
+
+$(DEPENDENCY_LIST):
+ @echo Generating dependencies for $(notdir $(@:.d=.cpp))
+ @echo -n $(DEBUG_OUTPUT_DIR)/ >> $@
+ $(V)$(CPP) $(PLATFORM_DEFINES) $(CPP_FLAGS_RELEASE) -MM $(addprefix -I,$(INCLUDE_DIRS_FINAL)) $(@:.d=.cpp)>> $@
+
+clean: custom_clean_step
+ touch .depend
+ rm -Rf $(DEBUG_OUTPUT_DIR)
+ rm -f .depend
+
+#Create emacs Tags for source files for easy browsing
+tags : $(SRC_LIST)
+ @mkdir -p Tags
+ @etags $(SRC_LIST)
+ @mv -f TAGS Tags
diff --git a/src/engine/client/application/AnimationEditor/build/win32/AnimationEditor.vcproj b/src/engine/client/application/AnimationEditor/build/win32/AnimationEditor.vcproj
new file mode 100644
index 000000000..0340d8897
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/AnimationEditor.vcproj
@@ -0,0 +1,3634 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/AnimationEditor/build/win32/AnimationEditor.vcxproj b/src/engine/client/application/AnimationEditor/build/win32/AnimationEditor.vcxproj
new file mode 100644
index 000000000..e66630d49
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/AnimationEditor.vcxproj
@@ -0,0 +1,1128 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {AB9A58E2-734B-45E4-B4BB-C7E9FF6ACA3F}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\AnimationEditor\Debug;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\..\library\clientAnimation\include\public;..\..\..\..\library\clientAudio\include\public;..\..\..\..\library\clientBugReporting\include\public;..\..\..\..\library\clientDirectInput\include\public;..\..\..\..\library\clientGame\include\public;..\..\..\..\library\clientGraphics\include\public;..\..\..\..\library\clientObject\include\public;..\..\..\..\library\clientParticle\include\public;..\..\..\..\library\clientSkeletalAnimation\include\public;..\..\..\..\library\clientTerrain\include\public;..\..\..\..\library\clientTextureRenderer\include\public;..\..\..\..\library\clientUserInterface\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ AnimationEditor\FirstAnimationEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-debug.lib;VideoCapture_debug.lib;ImageCapture_debug.lib;Smart_debug.lib;SoeUtil_debug.lib;ZlibUtil_debug.lib;picn20md.lib;ws2_32.lib;winmm.lib;dinput8.lib;dsound.lib;dxguid.lib;dpvs.lib;mss32.lib;libpcre.a;qt-mt334.lib;qtmain.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ LIBCMT;MSVCRTD;libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\AnimationEditor\Optimized;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\..\library\clientAnimation\include\public;..\..\..\..\library\clientAudio\include\public;..\..\..\..\library\clientBugReporting\include\public;..\..\..\..\library\clientDirectInput\include\public;..\..\..\..\library\clientGame\include\public;..\..\..\..\library\clientGraphics\include\public;..\..\..\..\library\clientObject\include\public;..\..\..\..\library\clientParticle\include\public;..\..\..\..\library\clientSkeletalAnimation\include\public;..\..\..\..\library\clientTerrain\include\public;..\..\..\..\library\clientTextureRenderer\include\public;..\..\..\..\library\clientUserInterface\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ AnimationEditor\FirstAnimationEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-release.lib;VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;ws2_32.lib;winmm.lib;dinput8.lib;dsound.lib;dxguid.lib;dpvs.lib;mss32.lib;libpcre.a;qt-mt334.lib;qtmain.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ LIBCMT;MSVCRTD;libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\AnimationEditor\Release;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\..\library\clientAnimation\include\public;..\..\..\..\library\clientAudio\include\public;..\..\..\..\library\clientBugReporting\include\public;..\..\..\..\library\clientDirectInput\include\public;..\..\..\..\library\clientGame\include\public;..\..\..\..\library\clientGraphics\include\public;..\..\..\..\library\clientObject\include\public;..\..\..\..\library\clientParticle\include\public;..\..\..\..\library\clientSkeletalAnimation\include\public;..\..\..\..\library\clientTerrain\include\public;..\..\..\..\library\clientTextureRenderer\include\public;..\..\..\..\library\clientUserInterface\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ AnimationEditor\FirstAnimationEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-release.lib;VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;ws2_32.lib;winmm.lib;dinput8.lib;dsound.lib;dxguid.lib;dpvs.lib;mss32.lib;libpcre.a;qt-mt334.lib;qtmain.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ MaxSpeed
+
+
+ Level3
+
+
+ Level3
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ dir /B /S %(RootDir)%(Directory)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed AnimationEditor
+
+ $(TargetDir)..\EmbeddedImages.cpp;%(Outputs)
+ dir /B /S %(RootDir)%(Directory)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed AnimationEditor
+
+ $(TargetDir)..\EmbeddedImages.cpp;%(Outputs)
+ dir /B /S %(RootDir)%(Directory)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed AnimationEditor
+
+ $(TargetDir)..\EmbeddedImages.cpp;%(Outputs)
+
+
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+
+
+ {ecbdfcff-f4ae-475a-aa90-729eb96430a0}
+ false
+
+
+ {20d2aee7-b60a-4ec9-b187-fa76062a6c39}
+ false
+
+
+ {03f3c054-f380-4618-be46-6e25061a3587}
+ false
+
+
+ {c6c1e14a-dedb-48c6-b028-0c9e4eff5dc4}
+ false
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {d4accb0c-7b66-433d-b715-8ef7f43b8e2d}
+ false
+
+
+ {9496a020-65ad-45a6-9acf-ae4f3358b027}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {d409a18e-f788-4f1b-bad1-ed58ee4d458f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {805a2fe0-7592-4f4e-bc23-a0d5abc624b4}
+ false
+
+
+ {eaa23f07-4419-4aed-83d2-06654119b6f6}
+ false
+
+
+ {950e9cf2-cd44-476c-826a-bb7869241f5b}
+ false
+
+
+ {fcc0f2b5-aade-4454-aff2-4d91365b4883}
+ false
+
+
+ {a378fab0-5b67-44bd-a3d8-815861792d6b}
+ false
+
+
+ {03a9a516-227e-49bb-a1c5-64b34cbddc66}
+ false
+
+
+ {20d4d8eb-87ca-4c5f-8ba3-ffc898563c40}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {882d8e54-0077-440b-94ac-762bde522e3b}
+ false
+
+
+ {2338795c-ce02-4902-bef4-53645a0c3267}
+ false
+
+
+ {aacbd5d6-d7dd-4ff9-8523-316ccf20115a}
+ false
+
+
+ {101cf34f-b5fd-4a14-a3e9-fd28078760be}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {ac1277c1-ce5a-4ece-9be3-6b4647b657a5}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {1d87a2e7-f0cf-42e9-bc38-846c53622c40}
+ false
+
+
+ {afa9ad0a-6e1a-4004-a1ff-8293eb957ef1}
+ false
+
+
+ {83ea2b87-762e-4ec6-bb06-2dcbae759d6e}
+ false
+
+
+ {ae9205dd-83fc-4f31-a5b3-70623b3107a1}
+ false
+
+
+ {070babeb-131a-4dc7-8621-69407c531f8e}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {6612cc35-6931-4ac6-a315-e955ca60b643}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {51e2988c-ce2d-42d7-a27c-06a322b4aac2}
+ false
+
+
+ {4af54aee-35f9-473c-8c2e-c24d2eedb17b}
+ false
+
+
+ {250a5957-7bb9-4f50-b0e9-19c87136977e}
+ false
+
+
+ {147d02d6-c76c-4058-863a-a9b3364c2047}
+ false
+
+
+ {f1b57bf8-072e-4e69-940a-c254a98da10d}
+ false
+
+
+ {d10d1a1a-6129-4ef1-b3d7-5c12ee53dfca}
+ false
+
+
+ {7c4b8a91-be83-4bfe-af94-f75ce39fe67d}
+ false
+
+
+ {82393d39-3807-4c87-932f-e3571616a7dd}
+ false
+
+
+ {97a83cde-723f-47de-a5c6-b779cf50ae9c}
+ false
+
+
+ {66bcfd48-0307-41fd-b4d9-9991bf572a27}
+ false
+
+
+ {2024a6b1-5e9a-4cc9-8243-7232f9b62264}
+ false
+
+
+ {f1fdc6af-af8c-42a5-826e-c66ae9cc6ca6}
+ false
+
+
+ {92605a4d-baa0-46e6-9733-6464f6578b6a}
+ false
+
+
+ {e89a79a9-8488-4d42-bf88-b9833f5607c0}
+ false
+
+
+ {2889f119-79c4-4ea7-893a-9e0bd5f871c8}
+ false
+
+
+ {cf3b1ee2-d965-44e1-9464-01297964f2cb}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/AnimationEditor/build/win32/additionalFiles.rsp b/src/engine/client/application/AnimationEditor/build/win32/additionalFiles.rsp
new file mode 100644
index 000000000..6408275c5
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/additionalFiles.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\AnimationEditor\EmbeddedImages.cpp
diff --git a/src/engine/client/application/AnimationEditor/build/win32/ignoreLibraries.rsp b/src/engine/client/application/AnimationEditor/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..02c2687a2
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,2 @@
+libc
+MSVCRT
diff --git a/src/engine/client/application/AnimationEditor/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/AnimationEditor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..7b9a54d46
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1,2 @@
+LIBCMT
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/AnimationEditor/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/AnimationEditor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..7b9a54d46
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1,2 @@
+LIBCMT
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/AnimationEditor/build/win32/includePaths.rsp b/src/engine/client/application/AnimationEditor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..66b2e4263
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/includePaths.rsp
@@ -0,0 +1,57 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/libEverQuestTCG/include/public
+../../../../../../external/3rd/library/libxml2-2.6.7.win32/include
+../../../../../../external/3rd/library/pcre/4.1/win32/include
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/ui/include
+../../../../../../external/3rd/library/libMozilla/include/public
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/client/library/swgClientQtWidgets/include/public
+../../../../../../game/client/library/swgClientUserInterface/include/public
+../../../../../../game/shared/library/swgSharedNetworkMessages/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedImage/include/public
+../../../../../shared/library/sharedInputMap/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedNetworkMessages/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedRegex/include/public
+../../../../../shared/library/sharedSkillSystem/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../../../shared/library/sharedXml/include/public
+../../../../library/clientAnimation/include/public
+../../../../library/clientAudio/include/public
+../../../../library/clientBugReporting/include/public
+../../../../library/clientDirectInput/include/public
+../../../../library/clientGame/include/public
+../../../../library/clientGraphics/include/public
+../../../../library/clientObject/include/public
+../../../../library/clientParticle/include/public
+../../../../library/clientSkeletalAnimation/include/public
+../../../../library/clientTerrain/include/public
+../../../../library/clientTextureRenderer/include/public
+../../../../library/clientUserInterface/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/application/AnimationEditor/build/win32/includePaths_d.rsp b/src/engine/client/application/AnimationEditor/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..66110eb8a
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+../../../../../../compile/win32/AnimationEditor/Debug
diff --git a/src/engine/client/application/AnimationEditor/build/win32/includePaths_o.rsp b/src/engine/client/application/AnimationEditor/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..dd52ce9fc
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+../../../../../../compile/win32/AnimationEditor/Optimized
diff --git a/src/engine/client/application/AnimationEditor/build/win32/includePaths_r.rsp b/src/engine/client/application/AnimationEditor/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..f524dee5c
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+../../../../../../compile/win32/AnimationEditor/Release
diff --git a/src/engine/client/application/AnimationEditor/build/win32/libraries.rsp b/src/engine/client/application/AnimationEditor/build/win32/libraries.rsp
new file mode 100644
index 000000000..4da26722a
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/libraries.rsp
@@ -0,0 +1,18 @@
+ws2_32.lib
+winmm.lib
+dinput8.lib
+dsound.lib
+dxguid.lib
+dpvs.lib
+mss32.lib
+libpcre.a
+qt-mt334.lib
+qtmain.lib
+mswsock.lib
+lgLcd.lib
+nspr4.lib
+plc4.lib
+profdirserviceprovider_s.lib
+xpcom.lib
+xul.lib
+vivoxSharedWrapper_release.lib
diff --git a/src/engine/client/application/AnimationEditor/build/win32/libraries_d.rsp b/src/engine/client/application/AnimationEditor/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..35485a1e9
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/libraries_d.rsp
@@ -0,0 +1,7 @@
+libxml2-win32-debug.lib
+VideoCapture_debug.lib
+ImageCapture_debug.lib
+Smart_debug.lib
+SoeUtil_debug.lib
+ZlibUtil_debug.lib
+picn20md.lib
diff --git a/src/engine/client/application/AnimationEditor/build/win32/libraries_o.rsp b/src/engine/client/application/AnimationEditor/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..55942c217
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/libraries_o.rsp
@@ -0,0 +1,7 @@
+libxml2-win32-release.lib
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/AnimationEditor/build/win32/libraries_r.rsp b/src/engine/client/application/AnimationEditor/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..55942c217
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/libraries_r.rsp
@@ -0,0 +1,7 @@
+libxml2-win32-release.lib
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/AnimationEditor/build/win32/libraryPaths.rsp b/src/engine/client/application/AnimationEditor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..0a3a78cd4
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/libraryPaths.rsp
@@ -0,0 +1,16 @@
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
+..\..\..\..\..\..\external\3rd\library\miles\lib\win
+..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\lcdui\lib
+../../../../../../external/3rd/library/libMozilla/include/private/lib/release
+..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib
+../../../../../../external/3rd/library/videocapture/VideoCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/ImageCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/Smart/lib/win32
+../../../../../../external/3rd/library/videocapture/ZlibUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/SoeUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/PICTools/Lib/win32
diff --git a/src/engine/client/application/AnimationEditor/build/win32/mocHeaders.rsp b/src/engine/client/application/AnimationEditor/build/win32/mocHeaders.rsp
new file mode 100644
index 000000000..729a4fc99
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/mocHeaders.rsp
@@ -0,0 +1,22 @@
+..\..\src\shared\ashFormat\ActionGroupListItem.h
+..\..\src\shared\ashFormat\ActionGroupRootListItem.h
+..\..\src\shared\ashFormat\ActionListItem.h
+..\..\src\shared\ashFormat\DetailStateListItem.h
+..\..\src\shared\ashFormat\MovementActionListItem.h
+..\..\src\shared\ashFormat\StateLinkListItem.h
+..\..\src\shared\core\AnimationEditorGameWidget.h
+..\..\src\shared\core\FindDialog.h
+..\..\src\shared\core\FindReplaceDialog.h
+..\..\src\shared\latFormat\ActionGeneratorListItem.h
+..\..\src\shared\latFormat\DirectionAnimationChoiceListItem.h
+..\..\src\shared\latFormat\LogicalAnimationListItem.h
+..\..\src\shared\latFormat\LogicalAnimationTableWidget.h
+..\..\src\shared\latFormat\PriorityBlendAnimationListItem.h
+..\..\src\shared\latFormat\PriorityGroupListItem.h
+..\..\src\shared\latFormat\ProxyAnimationListItem.h
+..\..\src\shared\latFormat\SpeedAnimationChoiceListItem.h
+..\..\src\shared\latFormat\SpeedAnimationListItem.h
+..\..\src\shared\latFormat\StringSelectorAnimationListItem.h
+..\..\src\shared\latFormat\StringSelectorChoiceListItem.h
+..\..\src\shared\latFormat\TimeScaleAnimationListItem.h
+..\..\src\shared\latFormat\YawAnimationListItem.h
diff --git a/src/engine/client/application/AnimationEditor/build/win32/settings.rsp b/src/engine/client/application/AnimationEditor/build/win32/settings.rsp
new file mode 100644
index 000000000..f561650fc
--- /dev/null
+++ b/src/engine/client/application/AnimationEditor/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+qt334
+debugInline
diff --git a/src/engine/client/application/BugTool/build/win32/BugTool.vcproj b/src/engine/client/application/BugTool/build/win32/BugTool.vcproj
new file mode 100644
index 000000000..fb41ce2a6
--- /dev/null
+++ b/src/engine/client/application/BugTool/build/win32/BugTool.vcproj
@@ -0,0 +1,621 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/BugTool/build/win32/BugTool.vcxproj b/src/engine/client/application/BugTool/build/win32/BugTool.vcxproj
new file mode 100644
index 000000000..16c8124f9
--- /dev/null
+++ b/src/engine/client/application/BugTool/build/win32/BugTool.vcxproj
@@ -0,0 +1,266 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {C05E2B2B-A9A1-4E7E-A35D-2342AF49774E}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\BugTool\Debug;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\include\private;..\..\include\public;..\..\ui;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ BugTool\FirstBugTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;qt-mt334.lib;qtmain.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;%(AdditionalLibraryDirectories)
+ libcmt;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\BugTool\Optimized;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\include\private;..\..\include\public;..\..\ui;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ BugTool\FirstBugTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;qt-mt334.lib;qtmain.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;%(AdditionalLibraryDirectories)
+ libcmt;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\BugTool\Release;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\include\private;..\..\include\public;..\..\ui;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ BugTool\FirstBugTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;qt-mt334.lib;qtmain.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;%(AdditionalLibraryDirectories)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+ Level3
+ true
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+ true
+
+
+ Level3
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+
+
+ {ecbdfcff-f4ae-475a-aa90-729eb96430a0}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/BugTool/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/BugTool/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/BugTool/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/BugTool/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/BugTool/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/BugTool/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/BugTool/build/win32/includePaths.rsp b/src/engine/client/application/BugTool/build/win32/includePaths.rsp
new file mode 100644
index 000000000..c2dcf7508
--- /dev/null
+++ b/src/engine/client/application/BugTool/build/win32/includePaths.rsp
@@ -0,0 +1,5 @@
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../include/private
+../../include/public
+../../ui
\ No newline at end of file
diff --git a/src/engine/client/application/BugTool/build/win32/includePaths_d.rsp b/src/engine/client/application/BugTool/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..ee6eb315c
--- /dev/null
+++ b/src/engine/client/application/BugTool/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+../../../../../../compile/win32/BugTool/Debug
diff --git a/src/engine/client/application/BugTool/build/win32/includePaths_o.rsp b/src/engine/client/application/BugTool/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..f46f4f344
--- /dev/null
+++ b/src/engine/client/application/BugTool/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+../../../../../../compile/win32/BugTool/Optimized
diff --git a/src/engine/client/application/BugTool/build/win32/includePaths_r.rsp b/src/engine/client/application/BugTool/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..22459a249
--- /dev/null
+++ b/src/engine/client/application/BugTool/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+../../../../../../compile/win32/BugTool/Release
diff --git a/src/engine/client/application/BugTool/build/win32/libraries.rsp b/src/engine/client/application/BugTool/build/win32/libraries.rsp
new file mode 100644
index 000000000..7b04f68a6
--- /dev/null
+++ b/src/engine/client/application/BugTool/build/win32/libraries.rsp
@@ -0,0 +1,3 @@
+ws2_32.lib
+qt-mt305.lib
+qtmain.lib
diff --git a/src/engine/client/application/BugTool/build/win32/libraryPaths.rsp b/src/engine/client/application/BugTool/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..db47bc6e5
--- /dev/null
+++ b/src/engine/client/application/BugTool/build/win32/libraryPaths.rsp
@@ -0,0 +1,3 @@
+../../../../../../external/3rd/library/qt/3.3.4/lib
+../../../../../../external/3rd/library/stlport453/lib/win32
+../../../../../../external/3rd/library/regex/libs/regex/build/vc6-stlport
diff --git a/src/engine/client/application/BugTool/build/win32/settings.rsp b/src/engine/client/application/BugTool/build/win32/settings.rsp
new file mode 100644
index 000000000..f561650fc
--- /dev/null
+++ b/src/engine/client/application/BugTool/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+qt334
+debugInline
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/ClientEffectEditor.vcproj b/src/engine/client/application/ClientEffectEditor/build/win32/ClientEffectEditor.vcproj
new file mode 100644
index 000000000..45d7c0152
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/ClientEffectEditor.vcproj
@@ -0,0 +1,736 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/ClientEffectEditor.vcxproj b/src/engine/client/application/ClientEffectEditor/build/win32/ClientEffectEditor.vcxproj
new file mode 100644
index 000000000..6e0cc7c4c
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/ClientEffectEditor.vcxproj
@@ -0,0 +1,560 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {99E4A02B-6849-4C82-A9D3-213FD45BFE84}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\ClientEffectEditor\Debug;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\..\library\clientAnimation\include\public;..\..\..\..\library\clientAudio\include\public;..\..\..\..\library\clientBugReporting\include\public;..\..\..\..\library\clientDirectInput\include\public;..\..\..\..\library\clientGame\include\public;..\..\..\..\library\clientGraphics\include\public;..\..\..\..\library\clientObject\include\public;..\..\..\..\library\clientParticle\include\public;..\..\..\..\library\clientSkeletalAnimation\include\public;..\..\..\..\library\clientTerrain\include\public;..\..\..\..\library\clientTextureRenderer\include\public;..\..\..\..\library\clientUserInterface\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ ClientEffectEditor\FirstClientEffectEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_debug.lib;ImageCapture_debug.lib;Smart_debug.lib;SoeUtil_debug.lib;ZlibUtil_debug.lib;picn20md.lib;ws2_32.lib;winmm.lib;dinput8.lib;dsound.lib;dxguid.lib;dpvs.lib;libxml2-win32-release.lib;mss32.lib;libpcre.a;qt-mt334.lib;qtmain.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ LIBCMT;MSVCRTD;libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\ClientEffectEditor\Optimized;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\..\library\clientAnimation\include\public;..\..\..\..\library\clientAudio\include\public;..\..\..\..\library\clientBugReporting\include\public;..\..\..\..\library\clientDirectInput\include\public;..\..\..\..\library\clientGame\include\public;..\..\..\..\library\clientGraphics\include\public;..\..\..\..\library\clientObject\include\public;..\..\..\..\library\clientParticle\include\public;..\..\..\..\library\clientSkeletalAnimation\include\public;..\..\..\..\library\clientTerrain\include\public;..\..\..\..\library\clientTextureRenderer\include\public;..\..\..\..\library\clientUserInterface\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ ClientEffectEditor\FirstClientEffectEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;ws2_32.lib;winmm.lib;dinput8.lib;dsound.lib;dxguid.lib;dpvs.lib;libxml2-win32-release.lib;mss32.lib;libpcre.a;qt-mt334.lib;qtmain.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ LIBCMT;MSVCRTD;libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\ClientEffectEditor\Release;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\..\library\clientAnimation\include\public;..\..\..\..\library\clientAudio\include\public;..\..\..\..\library\clientBugReporting\include\public;..\..\..\..\library\clientDirectInput\include\public;..\..\..\..\library\clientGame\include\public;..\..\..\..\library\clientGraphics\include\public;..\..\..\..\library\clientObject\include\public;..\..\..\..\library\clientParticle\include\public;..\..\..\..\library\clientSkeletalAnimation\include\public;..\..\..\..\library\clientTerrain\include\public;..\..\..\..\library\clientTextureRenderer\include\public;..\..\..\..\library\clientUserInterface\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ ClientEffectEditor\FirstClientEffectEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;ws2_32.lib;winmm.lib;dinput8.lib;dsound.lib;dxguid.lib;dpvs.lib;libxml2-win32-release.lib;mss32.lib;libpcre.a;qt-mt334.lib;qtmain.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ MaxSpeed
+
+
+ Level3
+
+
+ Level3
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+ true
+
+
+ Level3
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+
+
+ dir /B /S %(RootDir)%(Directory)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed ClientEffectEditor
+
+ $(TargetDir)..\EmbeddedImages.cpp;%(Outputs)
+ dir /B /S %(RootDir)%(Directory)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed ClientEffectEditor
+
+ $(TargetDir)..\EmbeddedImages.cpp;%(Outputs)
+ dir /B /S %(RootDir)%(Directory)*.png | perl ..\..\..\..\..\..\..\tools\xargs.pl ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)..\EmbeddedImages.cpp -embed ClientEffectEditor
+
+ $(TargetDir)..\EmbeddedImages.cpp;%(Outputs)
+
+
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+
+
+
+
+
+
+
+
+ {ecbdfcff-f4ae-475a-aa90-729eb96430a0}
+ false
+
+
+ {20d2aee7-b60a-4ec9-b187-fa76062a6c39}
+ false
+
+
+ {03f3c054-f380-4618-be46-6e25061a3587}
+ false
+
+
+ {c6c1e14a-dedb-48c6-b028-0c9e4eff5dc4}
+ false
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {d4accb0c-7b66-433d-b715-8ef7f43b8e2d}
+ false
+
+
+ {9496a020-65ad-45a6-9acf-ae4f3358b027}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {d409a18e-f788-4f1b-bad1-ed58ee4d458f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {805a2fe0-7592-4f4e-bc23-a0d5abc624b4}
+ false
+
+
+ {eaa23f07-4419-4aed-83d2-06654119b6f6}
+ false
+
+
+ {fcc0f2b5-aade-4454-aff2-4d91365b4883}
+ false
+
+
+ {a378fab0-5b67-44bd-a3d8-815861792d6b}
+ false
+
+
+ {03a9a516-227e-49bb-a1c5-64b34cbddc66}
+ false
+
+
+ {20d4d8eb-87ca-4c5f-8ba3-ffc898563c40}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {882d8e54-0077-440b-94ac-762bde522e3b}
+ false
+
+
+ {2338795c-ce02-4902-bef4-53645a0c3267}
+ false
+
+
+ {aacbd5d6-d7dd-4ff9-8523-316ccf20115a}
+ false
+
+
+ {101cf34f-b5fd-4a14-a3e9-fd28078760be}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {ac1277c1-ce5a-4ece-9be3-6b4647b657a5}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {1d87a2e7-f0cf-42e9-bc38-846c53622c40}
+ false
+
+
+ {afa9ad0a-6e1a-4004-a1ff-8293eb957ef1}
+ false
+
+
+ {83ea2b87-762e-4ec6-bb06-2dcbae759d6e}
+ false
+
+
+ {ae9205dd-83fc-4f31-a5b3-70623b3107a1}
+ false
+
+
+ {070babeb-131a-4dc7-8621-69407c531f8e}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {6612cc35-6931-4ac6-a315-e955ca60b643}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {51e2988c-ce2d-42d7-a27c-06a322b4aac2}
+ false
+
+
+ {4af54aee-35f9-473c-8c2e-c24d2eedb17b}
+ false
+
+
+ {250a5957-7bb9-4f50-b0e9-19c87136977e}
+ false
+
+
+ {147d02d6-c76c-4058-863a-a9b3364c2047}
+ false
+
+
+ {f1b57bf8-072e-4e69-940a-c254a98da10d}
+ false
+
+
+ {d10d1a1a-6129-4ef1-b3d7-5c12ee53dfca}
+ false
+
+
+ {7c4b8a91-be83-4bfe-af94-f75ce39fe67d}
+ false
+
+
+ {82393d39-3807-4c87-932f-e3571616a7dd}
+ false
+
+
+ {97a83cde-723f-47de-a5c6-b779cf50ae9c}
+ false
+
+
+ {66bcfd48-0307-41fd-b4d9-9991bf572a27}
+ false
+
+
+ {2024a6b1-5e9a-4cc9-8243-7232f9b62264}
+ false
+
+
+ {f1fdc6af-af8c-42a5-826e-c66ae9cc6ca6}
+ false
+
+
+ {92605a4d-baa0-46e6-9733-6464f6578b6a}
+ false
+
+
+ {e89a79a9-8488-4d42-bf88-b9833f5607c0}
+ false
+
+
+ {2889f119-79c4-4ea7-893a-9e0bd5f871c8}
+ false
+
+
+ {cf3b1ee2-d965-44e1-9464-01297964f2cb}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/additionalFiles.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/additionalFiles.rsp
new file mode 100644
index 000000000..e578e24bb
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/additionalFiles.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\ClientEffectEditor\EmbeddedImages.cpp
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/ignoreLibraries.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..67a40c6b6
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,2 @@
+libc
+MSVCRT
\ No newline at end of file
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..7b9a54d46
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1,2 @@
+LIBCMT
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..7b9a54d46
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1,2 @@
+LIBCMT
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/includePaths.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..d53342bd0
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/includePaths.rsp
@@ -0,0 +1,49 @@
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/libEverQuestTCG/include/public
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/ui/include
+../../../../../../external/3rd/library/libMozilla/include/public
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/client/library/swgClientQtWidgets/include/public
+../../../../../../game/client/library/swgClientUserInterface/include/public
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedImage/include/public
+../../../../../shared/library/sharedInputMap/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedNetworkMessages/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedRegex/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../../../shared/library/sharedXml/include/public
+../../../../library/clientAnimation/include/public
+../../../../library/clientAudio/include/public
+../../../../library/clientBugReporting/include/public
+../../../../library/clientDirectInput/include/public
+../../../../library/clientGame/include/public
+../../../../library/clientGraphics/include/public
+../../../../library/clientObject/include/public
+../../../../library/clientParticle/include/public
+../../../../library/clientSkeletalAnimation/include/public
+../../../../library/clientTerrain/include/public
+../../../../library/clientTextureRenderer/include/public
+../../../../library/clientUserInterface/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/includePaths_d.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..21bef093c
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+../../../../../../compile/win32/ClientEffectEditor/Debug
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/includePaths_o.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..4793e6be8
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+../../../../../../compile/win32/ClientEffectEditor/Optimized
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/includePaths_r.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..40f707b9f
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+../../../../../../compile/win32/ClientEffectEditor/Release
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/libraries.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/libraries.rsp
new file mode 100644
index 000000000..1b28e394e
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/libraries.rsp
@@ -0,0 +1,19 @@
+ws2_32.lib
+winmm.lib
+dinput8.lib
+dsound.lib
+dxguid.lib
+dpvs.lib
+libxml2-win32-release.lib
+mss32.lib
+libpcre.a
+qt-mt334.lib
+qtmain.lib
+mswsock.lib
+lgLcd.lib
+nspr4.lib
+plc4.lib
+profdirserviceprovider_s.lib
+xpcom.lib
+xul.lib
+vivoxSharedWrapper_release.lib
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/libraries_d.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..b06f09281
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/libraries_d.rsp
@@ -0,0 +1,6 @@
+VideoCapture_debug.lib
+ImageCapture_debug.lib
+Smart_debug.lib
+SoeUtil_debug.lib
+ZlibUtil_debug.lib
+picn20md.lib
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/libraries_o.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/libraries_o.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/libraries_r.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/libraries_r.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/libraryPaths.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..e68410861
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/libraryPaths.rsp
@@ -0,0 +1,16 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
+..\..\..\..\..\..\external\3rd\library\miles\lib\win
+..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
+..\..\..\..\..\..\external\3rd\library\lcdui\lib
+../../../../../../external/3rd/library/libMozilla/include/private/lib/release
+..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib
+../../../../../../external/3rd/library/videocapture/VideoCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/ImageCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/Smart/lib/win32
+../../../../../../external/3rd/library/videocapture/ZlibUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/SoeUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/PICTools/Lib/win32
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/mocHeaders.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/mocHeaders.rsp
new file mode 100644
index 000000000..f496d6d3a
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/mocHeaders.rsp
@@ -0,0 +1 @@
+..\..\src\shared\core\ClientEffectGameWidget.h
diff --git a/src/engine/client/application/ClientEffectEditor/build/win32/settings.rsp b/src/engine/client/application/ClientEffectEditor/build/win32/settings.rsp
new file mode 100644
index 000000000..a1744c504
--- /dev/null
+++ b/src/engine/client/application/ClientEffectEditor/build/win32/settings.rsp
@@ -0,0 +1,4 @@
+qt334
+incremental_r_no
+
+debugInline
diff --git a/src/engine/client/application/CrashReporter/build/win32/CrashReporter.vcproj b/src/engine/client/application/CrashReporter/build/win32/CrashReporter.vcproj
new file mode 100644
index 000000000..d396c9d30
--- /dev/null
+++ b/src/engine/client/application/CrashReporter/build/win32/CrashReporter.vcproj
@@ -0,0 +1,324 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/CrashReporter/build/win32/CrashReporter.vcxproj b/src/engine/client/application/CrashReporter/build/win32/CrashReporter.vcxproj
new file mode 100644
index 000000000..5064f6e09
--- /dev/null
+++ b/src/engine/client/application/CrashReporter/build/win32/CrashReporter.vcxproj
@@ -0,0 +1,207 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {7927E450-9A0C-46B3-ABF3-34384D6F54CD}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\blat194\src\win32;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ CrashReporter\FirstCrashReporter.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\blat194\src\win32;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ CrashReporter\FirstCrashReporter.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\blat194\src\win32;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ CrashReporter\FirstCrashReporter.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/CrashReporter/build/win32/ignoreLibraries.rsp b/src/engine/client/application/CrashReporter/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/client/application/CrashReporter/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/client/application/CrashReporter/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/CrashReporter/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/CrashReporter/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/CrashReporter/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/CrashReporter/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/CrashReporter/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/CrashReporter/build/win32/includePaths.rsp b/src/engine/client/application/CrashReporter/build/win32/includePaths.rsp
new file mode 100644
index 000000000..f6f8dabc2
--- /dev/null
+++ b/src/engine/client/application/CrashReporter/build/win32/includePaths.rsp
@@ -0,0 +1,9 @@
+../../../../../../engine/client/library/clientBugReporting/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/blat194/src/win32
+../../include/public
diff --git a/src/engine/client/application/CrashReporter/build/win32/libraries.rsp b/src/engine/client/application/CrashReporter/build/win32/libraries.rsp
new file mode 100644
index 000000000..25723f134
--- /dev/null
+++ b/src/engine/client/application/CrashReporter/build/win32/libraries.rsp
@@ -0,0 +1 @@
+ws2_32.lib zlib.lib
\ No newline at end of file
diff --git a/src/engine/client/application/CrashReporter/build/win32/libraryPaths.rsp b/src/engine/client/application/CrashReporter/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..e8706c8aa
--- /dev/null
+++ b/src/engine/client/application/CrashReporter/build/win32/libraryPaths.rsp
@@ -0,0 +1,3 @@
+../../../../../../external/3rd/library/stlport453/lib/win32
+../../../../../../external/3rd/library/regex/libs/regex/build/vc6-stlport
+../../../../../../external/3rd/library/zlib/lib/win32
diff --git a/src/engine/client/application/CrashReporter/build/win32/settings.rsp b/src/engine/client/application/CrashReporter/build/win32/settings.rsp
new file mode 100644
index 000000000..d52a41014
--- /dev/null
+++ b/src/engine/client/application/CrashReporter/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console
+copyDev
+debugInline
diff --git a/src/engine/client/application/DebugWindow/build/win32/DebugWindow.vcproj b/src/engine/client/application/DebugWindow/build/win32/DebugWindow.vcproj
new file mode 100644
index 000000000..966e60c52
--- /dev/null
+++ b/src/engine/client/application/DebugWindow/build/win32/DebugWindow.vcproj
@@ -0,0 +1,358 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/DebugWindow/build/win32/DebugWindow.vcxproj b/src/engine/client/application/DebugWindow/build/win32/DebugWindow.vcxproj
new file mode 100644
index 000000000..87f540b5b
--- /dev/null
+++ b/src/engine/client/application/DebugWindow/build/win32/DebugWindow.vcxproj
@@ -0,0 +1,209 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {34FA8B34-C129-4D36-A67B-B1153A5CB366}
+
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\../../../../../../compile/win32/debugWindow/Debug\
+ .\../../../../../../compile/win32/debugWindow/Debug\
+ true
+ true
+
+
+ .\../../../../../../compile/win32/debugWindow/Release\
+ .\../../../../../../compile/win32/debugWindow/Release\
+ true
+ false
+
+
+ .\../../../../../../compile/win32/debugWindow/Optimized\
+ .\../../../../../../compile/win32/debugWindow/Optimized\
+ true
+ true
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.tlb
+
+
+
+ Disabled
+ OnlyExplicitInline
+ WIN32;_DEBUG;_WINDOWS;_USRDLL;DEBUGWINDOW_EXPORTS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ false
+ .\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.pch
+ .\../../../../../../compile/win32/debugWindow/Debug/
+ .\../../../../../../compile/win32/debugWindow/Debug/
+ .\../../../../../../compile/win32/debugWindow/Debug/
+ Level4
+ true
+ ProgramDatabase
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ .\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.dll
+ true
+ true
+ .\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.pdb
+ 0x61B00000
+ .\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.lib
+ MachineX86
+
+
+ true
+ .\../../../../../../compile/win32/debugWindow/Debug/DebugWindow.bsc
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\../../../../../../compile/win32/debugWindow/Release/DebugWindow.tlb
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ WIN32;NDEBUG;_WINDOWS;_USRDLL;DEBUGWINDOW_EXPORTS;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ .\../../../../../../compile/win32/debugWindow/Release/DebugWindow.pch
+ .\../../../../../../compile/win32/debugWindow/Release/
+ .\../../../../../../compile/win32/debugWindow/Release/
+ .\../../../../../../compile/win32/debugWindow/Release/
+ Level4
+ true
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ .\../../../../../../compile/win32/debugWindow/Release/DebugWindow.dll
+ true
+ .\../../../../../../compile/win32/debugWindow/Release/DebugWindow.pdb
+ 0x61B00000
+ .\../../../../../../compile/win32/debugWindow/Release/DebugWindow.lib
+ MachineX86
+
+
+ true
+ .\../../../../../../compile/win32/debugWindow/Release/DebugWindow.bsc
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.tlb
+
+
+
+ Disabled
+ WIN32;_DEBUG;_WINDOWS;_USRDLL;DEBUGWINDOW_EXPORTS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ .\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.pch
+ .\../../../../../../compile/win32/debugWindow/Optimized/
+ .\../../../../../../compile/win32/debugWindow/Optimized/
+ .\../../../../../../compile/win32/debugWindow/Optimized/
+ Level4
+ true
+ ProgramDatabase
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ .\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.dll
+ true
+ true
+ .\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.pdb
+ 0x61B00000
+ .\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.lib
+ MachineX86
+
+
+ true
+ .\../../../../../../compile/win32/debugWindow/Optimized/DebugWindow.bsc
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/Direct3d9/build/win32/Direct3d9.vcproj b/src/engine/client/application/Direct3d9/build/win32/Direct3d9.vcproj
new file mode 100644
index 000000000..33a9d0388
--- /dev/null
+++ b/src/engine/client/application/Direct3d9/build/win32/Direct3d9.vcproj
@@ -0,0 +1,1143 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/Direct3d9/build/win32/Direct3d9.vcxproj b/src/engine/client/application/Direct3d9/build/win32/Direct3d9.vcxproj
new file mode 100644
index 000000000..b53d44eee
--- /dev/null
+++ b/src/engine/client/application/Direct3d9/build/win32/Direct3d9.vcxproj
@@ -0,0 +1,309 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {E89A79A9-8488-4D42-BF88-B9833F5607C0}
+
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Debug\
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Debug\
+ true
+ false
+ false
+
+
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Release\
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Release\
+ false
+
+
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized\
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized\
+ true
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/Direct3d9.tlb
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ _DEBUG;DEBUG_LEVEL=2;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;VSPS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ false
+ true
+ Use
+ FirstDirect3d9.h
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/Direct3d9.pch
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)
+ ..\..\..\..\..\..\compile\win32\Direct3d9\Debug\gl05_d.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc; libcp;%(IgnoreSpecificDefaultLibraries)
+ DllExport.dll;%(DelayLoadDLLs)
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/gl05_d.pdb
+ 0x62A00000
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/gl05_d.lib
+ MachineX86
+ /SAFESEH:NO %(AdditionalOptions)
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Debug/Direct3d9.bsc
+
+
+ Copy debug dll
+ copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl05_d.dll
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Release/Direct3d9.tlb
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ NDEBUG;DEBUG_LEVEL=0;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;VSPS;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ Use
+ FirstDirect3d9.h
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Release/Direct3d9.pch
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Release/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Release/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Release/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)
+ ..\..\..\..\..\..\compile\win32\Direct3d9\Release\gl05_r.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc; libcp;%(IgnoreSpecificDefaultLibraries)
+ DllExport.dll;%(DelayLoadDLLs)
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Release/gl05_r.pdb
+ 0x62A00000
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Release/gl05_r.lib
+ MachineX86
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Release/Direct3d9.bsc
+
+
+ Copy production dll
+ copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl05_r.dll
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/Direct3d9.tlb
+
+
+
+ Disabled
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ _DEBUG;DEBUG_LEVEL=1;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;VSPS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ Use
+ FirstDirect3d9.h
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/Direct3d9.pch
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/
+ Level4
+ false
+ true
+ ProgramDatabase
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)
+ ..\..\..\..\..\..\compile\win32\Direct3d9\Optimized\gl05_o.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc; libcp;%(IgnoreSpecificDefaultLibraries)
+ DllExport.dll;%(DelayLoadDLLs)
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/gl05_o.pdb
+ 0x62A00000
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/gl05_o.lib
+ MachineX86
+ /SAFESEH:NO %(AdditionalOptions)
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9\Optimized/Direct3d9.bsc
+
+
+ Copy optimized dll
+ copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl05_o.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {78041480-c2c5-42a1-a566-c57bc3100bbf}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/Direct3d9/build/win32/Direct3d9_ffp.vcproj b/src/engine/client/application/Direct3d9/build/win32/Direct3d9_ffp.vcproj
new file mode 100644
index 000000000..da27060ac
--- /dev/null
+++ b/src/engine/client/application/Direct3d9/build/win32/Direct3d9_ffp.vcproj
@@ -0,0 +1,1139 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/Direct3d9/build/win32/Direct3d9_ffp.vcxproj b/src/engine/client/application/Direct3d9/build/win32/Direct3d9_ffp.vcxproj
new file mode 100644
index 000000000..4b961ec40
--- /dev/null
+++ b/src/engine/client/application/Direct3d9/build/win32/Direct3d9_ffp.vcxproj
@@ -0,0 +1,308 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {2889F119-79C4-4EA7-893A-9E0BD5F871C8}
+
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug\
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug\
+ true
+ false
+ false
+
+
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized\
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized\
+ true
+ false
+
+
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release\
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/Direct3d9_ffp.tlb
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ _DEBUG;DEBUG_LEVEL=2;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ false
+ true
+ Use
+ FirstDirect3d9.h
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/Direct3d9_ffp.pch
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)
+ ..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug\gl06_d.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc; libcp;%(IgnoreSpecificDefaultLibraries)
+ DllExport.dll;%(DelayLoadDLLs)
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/gl06_d.pdb
+ 0x62A00000
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/gl06_d.lib
+ MachineX86
+ /SAFESEH:NO %(AdditionalOptions)
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Debug/Direct3d9_ffp.bsc
+
+
+ Copy debug dll
+ copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl06_d.dll
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/Direct3d9_ffp.tlb
+
+
+
+ Disabled
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ _DEBUG;DEBUG_LEVEL=1;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ Use
+ FirstDirect3d9.h
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/Direct3d9_ffp.pch
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/
+ Level4
+ false
+ true
+ ProgramDatabase
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)
+ ..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized\gl06_o.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc; libcp;%(IgnoreSpecificDefaultLibraries)
+ DllExport.dll;%(DelayLoadDLLs)
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/gl06_o.pdb
+ 0x62A00000
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/gl06_o.lib
+ MachineX86
+ /SAFESEH:NO %(AdditionalOptions)
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Optimized/Direct3d9_ffp.bsc
+
+
+ Copy optimized dll
+ copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl06_o.dll
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/Direct3d9_ffp.tlb
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ NDEBUG;DEBUG_LEVEL=0;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;FFP;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ Use
+ FirstDirect3d9.h
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/Direct3d9_ffp.pch
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)
+ ..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release\gl06_r.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc; libcp;%(IgnoreSpecificDefaultLibraries)
+ DllExport.dll;%(DelayLoadDLLs)
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/gl06_r.pdb
+ 0x62A00000
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/gl06_r.lib
+ MachineX86
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_ffp\Release/Direct3d9_ffp.bsc
+
+
+ Copy production dll
+ copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl06_r.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {78041480-c2c5-42a1-a566-c57bc3100bbf}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/Direct3d9/build/win32/Direct3d9_vsps.vcproj b/src/engine/client/application/Direct3d9/build/win32/Direct3d9_vsps.vcproj
new file mode 100644
index 000000000..7e003f3d6
--- /dev/null
+++ b/src/engine/client/application/Direct3d9/build/win32/Direct3d9_vsps.vcproj
@@ -0,0 +1,1143 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/Direct3d9/build/win32/Direct3d9_vsps.vcxproj b/src/engine/client/application/Direct3d9/build/win32/Direct3d9_vsps.vcxproj
new file mode 100644
index 000000000..2ab2abd03
--- /dev/null
+++ b/src/engine/client/application/Direct3d9/build/win32/Direct3d9_vsps.vcxproj
@@ -0,0 +1,309 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {CF3B1EE2-D965-44E1-9464-01297964F2CB}
+
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug\
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug\
+ true
+ false
+ false
+
+
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized\
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized\
+ true
+ false
+
+
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release\
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release\
+ false
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/Direct3d9_vsps.tlb
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ _DEBUG;DEBUG_LEVEL=2;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;VSPS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ false
+ true
+ Use
+ FirstDirect3d9.h
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/Direct3d9_vsps.pch
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)
+ ..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug\gl07_d.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc; libcp;%(IgnoreSpecificDefaultLibraries)
+ DllExport.dll;%(DelayLoadDLLs)
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/gl07_d.pdb
+ 0x62A00000
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/gl07_d.lib
+ MachineX86
+ /SAFESEH:NO %(AdditionalOptions)
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Debug/Direct3d9_vsps.bsc
+
+
+ Copy debug dll
+ copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl07_d.dll
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/Direct3d9_vsps.tlb
+
+
+
+ Disabled
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ _DEBUG;DEBUG_LEVEL=1;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;VSPS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ Use
+ FirstDirect3d9.h
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/Direct3d9_vsps.pch
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/
+ Level4
+ false
+ true
+ ProgramDatabase
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)
+ ..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized\gl07_o.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc; libcp;%(IgnoreSpecificDefaultLibraries)
+ DllExport.dll;%(DelayLoadDLLs)
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/gl07_o.pdb
+ 0x62A00000
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/gl07_o.lib
+ MachineX86
+ /SAFESEH:NO %(AdditionalOptions)
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Optimized/Direct3d9_vsps.bsc
+
+
+ Copy optimized dll
+ copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl07_o.dll
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/Direct3d9_vsps.tlb
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libjpeg\include;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ NDEBUG;DEBUG_LEVEL=0;WIN32;_WINDOWS;_USRDLL;DIRECT3D9_EXPORTS;VSPS;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ Use
+ FirstDirect3d9.h
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/Direct3d9_vsps.pch
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ libjpeg.lib;odbc32.lib;odbccp32.lib;winmm.lib;delayimp.lib;dxguid.lib;d3d9.lib;d3dx9.lib;ddraw.lib;dxerr9.lib;%(AdditionalDependencies)
+ ..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release\gl07_r.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libjpeg\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc; libcp;%(IgnoreSpecificDefaultLibraries)
+ DllExport.dll;%(DelayLoadDLLs)
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/gl07_r.pdb
+ 0x62A00000
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/gl07_r.lib
+ MachineX86
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\Direct3d9_vsps\Release/Direct3d9_vsps.bsc
+
+
+ Copy production dll
+ copy $(TargetPath) ..\..\..\..\..\..\..\dev\win32\gl07_r.dll
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {78041480-c2c5-42a1-a566-c57bc3100bbf}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/DllExport/build/win32/DllExport.vcproj b/src/engine/client/application/DllExport/build/win32/DllExport.vcproj
new file mode 100644
index 000000000..044b8d0bf
--- /dev/null
+++ b/src/engine/client/application/DllExport/build/win32/DllExport.vcproj
@@ -0,0 +1,370 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/DllExport/build/win32/DllExport.vcxproj b/src/engine/client/application/DllExport/build/win32/DllExport.vcxproj
new file mode 100644
index 000000000..7a6085e6d
--- /dev/null
+++ b/src/engine/client/application/DllExport/build/win32/DllExport.vcxproj
@@ -0,0 +1,218 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {78041480-C2C5-42A1-A566-C57BC3100BBF}
+
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\..\..\..\..\..\..\compile\win32\DllExport\Optimized\
+ .\..\..\..\..\..\..\compile\win32\DllExport\Optimized\
+ true
+
+
+ .\..\..\..\..\..\..\compile\win32\DllExport\Release\
+ .\..\..\..\..\..\..\compile\win32\DllExport\Release\
+ false
+
+
+ .\..\..\..\..\..\..\compile\win32\DllExport\Debug\
+ .\..\..\..\..\..\..\compile\win32\DllExport\Debug\
+ true
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.tlb
+
+
+
+ Disabled
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\library\clientGraphics\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;_USRDLL;DIRECT3D8_EXPORTS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ .\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.pch
+ .\..\..\..\..\..\..\compile\win32\DllExport\Optimized/
+ .\..\..\..\..\..\..\compile\win32\DllExport\Optimized/
+ .\..\..\..\..\..\..\compile\win32\DllExport\Optimized/
+ Level4
+ false
+ true
+ ProgramDatabase
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ .\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc; libcp;%(IgnoreSpecificDefaultLibraries)
+ true
+ .\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.pdb
+ .\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.lib
+ MachineX86
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\DllExport\Optimized/DllExport.bsc
+
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.tlb
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\library\clientGraphics\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_WINDOWS;_USRDLL;DIRECT3D8_EXPORTS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ .\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.pch
+ .\..\..\..\..\..\..\compile\win32\DllExport\Release/
+ .\..\..\..\..\..\..\compile\win32\DllExport\Release/
+ .\..\..\..\..\..\..\compile\win32\DllExport\Release/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ .\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ .\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.pdb
+ .\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.lib
+ MachineX86
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\DllExport\Release/DllExport.bsc
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.tlb
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\library\clientGraphics\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_WINDOWS;_USRDLL;DIRECT3D8_EXPORTS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ false
+ true
+ .\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.pch
+ .\..\..\..\..\..\..\compile\win32\DllExport\Debug/
+ .\..\..\..\..\..\..\compile\win32\DllExport\Debug/
+ .\..\..\..\..\..\..\compile\win32\DllExport\Debug/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ .\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.dll
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc; libcp;%(IgnoreSpecificDefaultLibraries)
+ true
+ .\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.pdb
+ .\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.lib
+ MachineX86
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\DllExport\Debug/DllExport.bsc
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/LightningEditor/build/win32/LightningEditor.vcproj b/src/engine/client/application/LightningEditor/build/win32/LightningEditor.vcproj
new file mode 100644
index 000000000..86fe51976
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/LightningEditor.vcproj
@@ -0,0 +1,717 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/LightningEditor/build/win32/LightningEditor.vcxproj b/src/engine/client/application/LightningEditor/build/win32/LightningEditor.vcxproj
new file mode 100644
index 000000000..dccd7cb55
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/LightningEditor.vcxproj
@@ -0,0 +1,548 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {944B3154-4DC7-4450-BE1E-BAE9D648D1DF}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\LightningEditor\Debug;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstLightningEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_debug.lib;ImageCapture_debug.lib;Smart_debug.lib;SoeUtil_debug.lib;ZlibUtil_debug.lib;picn20md.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;MSVCRTD;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+ /SAFESEH:NO %(AdditionalOptions)
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\LightningEditor\Optimized;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstLightningEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;MSVCRTD;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\LightningEditor\Release;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstLightningEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+ Level3
+ true
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+ true
+
+
+ Level3
+
+
+ Create
+ Create
+ Create
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+
+
+ {ecbdfcff-f4ae-475a-aa90-729eb96430a0}
+ false
+
+
+ {20d2aee7-b60a-4ec9-b187-fa76062a6c39}
+ false
+
+
+ {03f3c054-f380-4618-be46-6e25061a3587}
+ false
+
+
+ {c6c1e14a-dedb-48c6-b028-0c9e4eff5dc4}
+ false
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {d4accb0c-7b66-433d-b715-8ef7f43b8e2d}
+ false
+
+
+ {9496a020-65ad-45a6-9acf-ae4f3358b027}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {d409a18e-f788-4f1b-bad1-ed58ee4d458f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {805a2fe0-7592-4f4e-bc23-a0d5abc624b4}
+ false
+
+
+ {eaa23f07-4419-4aed-83d2-06654119b6f6}
+ false
+
+
+ {950e9cf2-cd44-476c-826a-bb7869241f5b}
+ false
+
+
+ {fcc0f2b5-aade-4454-aff2-4d91365b4883}
+ false
+
+
+ {a378fab0-5b67-44bd-a3d8-815861792d6b}
+ false
+
+
+ {03a9a516-227e-49bb-a1c5-64b34cbddc66}
+ false
+
+
+ {20d4d8eb-87ca-4c5f-8ba3-ffc898563c40}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {882d8e54-0077-440b-94ac-762bde522e3b}
+ false
+
+
+ {2338795c-ce02-4902-bef4-53645a0c3267}
+ false
+
+
+ {aacbd5d6-d7dd-4ff9-8523-316ccf20115a}
+ false
+
+
+ {101cf34f-b5fd-4a14-a3e9-fd28078760be}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {ac1277c1-ce5a-4ece-9be3-6b4647b657a5}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {1d87a2e7-f0cf-42e9-bc38-846c53622c40}
+ false
+
+
+ {afa9ad0a-6e1a-4004-a1ff-8293eb957ef1}
+ false
+
+
+ {83ea2b87-762e-4ec6-bb06-2dcbae759d6e}
+ false
+
+
+ {ae9205dd-83fc-4f31-a5b3-70623b3107a1}
+ false
+
+
+ {070babeb-131a-4dc7-8621-69407c531f8e}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {6612cc35-6931-4ac6-a315-e955ca60b643}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {51e2988c-ce2d-42d7-a27c-06a322b4aac2}
+ false
+
+
+ {4af54aee-35f9-473c-8c2e-c24d2eedb17b}
+ false
+
+
+ {250a5957-7bb9-4f50-b0e9-19c87136977e}
+ false
+
+
+ {147d02d6-c76c-4058-863a-a9b3364c2047}
+ false
+
+
+ {f1b57bf8-072e-4e69-940a-c254a98da10d}
+ false
+
+
+ {d10d1a1a-6129-4ef1-b3d7-5c12ee53dfca}
+ false
+
+
+ {7c4b8a91-be83-4bfe-af94-f75ce39fe67d}
+ false
+
+
+ {82393d39-3807-4c87-932f-e3571616a7dd}
+ false
+
+
+ {97a83cde-723f-47de-a5c6-b779cf50ae9c}
+ false
+
+
+ {66bcfd48-0307-41fd-b4d9-9991bf572a27}
+ false
+
+
+ {2024a6b1-5e9a-4cc9-8243-7232f9b62264}
+ false
+
+
+ {f1fdc6af-af8c-42a5-826e-c66ae9cc6ca6}
+ false
+
+
+ {92605a4d-baa0-46e6-9733-6464f6578b6a}
+ false
+
+
+ {e89a79a9-8488-4d42-bf88-b9833f5607c0}
+ false
+
+
+ {2889f119-79c4-4ea7-893a-9e0bd5f871c8}
+ false
+
+
+ {cf3b1ee2-d965-44e1-9464-01297964f2cb}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/LightningEditor/build/win32/ignoreLibraries.rsp b/src/engine/client/application/LightningEditor/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..30d5d08e2
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,2 @@
+msvcrt
+libc
diff --git a/src/engine/client/application/LightningEditor/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/LightningEditor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..bd4ee297c
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1,2 @@
+libcmt
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/LightningEditor/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/LightningEditor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..bd4ee297c
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1,2 @@
+libcmt
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/LightningEditor/build/win32/includePaths.rsp b/src/engine/client/application/LightningEditor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..4566ff1a3
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/includePaths.rsp
@@ -0,0 +1,52 @@
+../../../../../../engine/client/library/clientAnimation/include/public
+../../../../../../engine/client/library/clientAudio/include/public
+../../../../../../engine/client/library/clientBugReporting/include/public
+../../../../../../engine/client/library/clientDirectInput/include/public
+../../../../../../engine/client/library/clientGame/include/public
+../../../../../../engine/client/library/clientGraphics/include/public
+../../../../../../engine/client/library/clientObject/include/public
+../../../../../../engine/client/library/clientParticle/include/public
+../../../../../../engine/client/library/clientSkeletalAnimation/include/public
+../../../../../../engine/client/library/clientTerrain/include/public
+../../../../../../engine/client/library/clientTextureRenderer/include/public
+../../../../../../engine/client/library/clientUserInterface/include/public
+../../../../../../engine/shared/library/sharedCollision/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedGame/include/public
+../../../../../../engine/shared/library/sharedImage/include/public
+../../../../../../engine/shared/library/sharedInputMap/include/public
+../../../../../../engine/shared/library/sharedIoWin/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedObject/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedRegex/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedTerrain/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../engine/shared/library/sharedXml/include/public
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/libEverQuestTCG/include/public
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/3rd/library/perforce/include
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/ui/include
+../../../../../../external/3rd/library/libMozilla/include/public
+../../../../../../external/ours/library/Unicode/include
+../../../../../../external/ours/library/UnicodeArchive/include/public
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../game/client/library/swgClientQtWidgets/include/public
+../../../../../../game/client/library/swgClientUserInterface/include/public
diff --git a/src/engine/client/application/LightningEditor/build/win32/includePaths_d.rsp b/src/engine/client/application/LightningEditor/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..8b47337f6
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\LightningEditor\Debug
diff --git a/src/engine/client/application/LightningEditor/build/win32/includePaths_o.rsp b/src/engine/client/application/LightningEditor/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..b9de77c4c
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\LightningEditor\Optimized
diff --git a/src/engine/client/application/LightningEditor/build/win32/includePaths_r.rsp b/src/engine/client/application/LightningEditor/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..a2264dffd
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\LightningEditor\Release
diff --git a/src/engine/client/application/LightningEditor/build/win32/libraries.rsp b/src/engine/client/application/LightningEditor/build/win32/libraries.rsp
new file mode 100644
index 000000000..7f4c91a9b
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/libraries.rsp
@@ -0,0 +1,23 @@
+qt-mt334.lib
+qtmain.lib
+Mss32.lib
+dpvs.lib
+ws2_32.lib
+dxguid.lib
+dsound.lib
+dinput8.lib
+oldnames.lib
+libpcre.a
+libclient.lib
+libsupp.lib
+librpc.lib
+libxml2-win32-release.lib
+winmm.lib
+mswsock.lib
+lgLcd.lib
+nspr4.lib
+plc4.lib
+profdirserviceprovider_s.lib
+xpcom.lib
+xul.lib
+vivoxSharedWrapper_release.lib
diff --git a/src/engine/client/application/LightningEditor/build/win32/libraries_d.rsp b/src/engine/client/application/LightningEditor/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..b06f09281
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/libraries_d.rsp
@@ -0,0 +1,6 @@
+VideoCapture_debug.lib
+ImageCapture_debug.lib
+Smart_debug.lib
+SoeUtil_debug.lib
+ZlibUtil_debug.lib
+picn20md.lib
diff --git a/src/engine/client/application/LightningEditor/build/win32/libraries_o.rsp b/src/engine/client/application/LightningEditor/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/libraries_o.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/LightningEditor/build/win32/libraries_r.rsp b/src/engine/client/application/LightningEditor/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/libraries_r.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/LightningEditor/build/win32/libraryPaths.rsp b/src/engine/client/application/LightningEditor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..52577abad
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/libraryPaths.rsp
@@ -0,0 +1,17 @@
+..\..\..\..\..\..\external\3rd\library\miles\lib\win
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
+..\..\..\..\..\..\external\3rd\library\perforce\lib\win32
+..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\lcdui\lib
+../../../../../../external/3rd/library/libMozilla/include/private/lib/release
+..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib
+../../../../../../external/3rd/library/videocapture/VideoCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/ImageCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/Smart/lib/win32
+../../../../../../external/3rd/library/videocapture/ZlibUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/SoeUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/PICTools/Lib/win32
diff --git a/src/engine/client/application/LightningEditor/build/win32/mocHeaders.rsp b/src/engine/client/application/LightningEditor/build/win32/mocHeaders.rsp
new file mode 100644
index 000000000..fc07be7c6
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/mocHeaders.rsp
@@ -0,0 +1,2 @@
+..\..\src\win32\LightningEditorGameWidget.h
+..\..\src\win32\MainWindow.h
diff --git a/src/engine/client/application/LightningEditor/build/win32/settings.rsp b/src/engine/client/application/LightningEditor/build/win32/settings.rsp
new file mode 100644
index 000000000..d6fd67da2
--- /dev/null
+++ b/src/engine/client/application/LightningEditor/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+qt334 p4 noPchDirectory
+debugInline
diff --git a/src/engine/client/application/MayaExporter/build/win32/MayaExporter.vcproj b/src/engine/client/application/MayaExporter/build/win32/MayaExporter.vcproj
new file mode 100644
index 000000000..444191e0f
--- /dev/null
+++ b/src/engine/client/application/MayaExporter/build/win32/MayaExporter.vcproj
@@ -0,0 +1,2585 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/MayaExporter/build/win32/MayaExporter.vcxproj b/src/engine/client/application/MayaExporter/build/win32/MayaExporter.vcxproj
new file mode 100644
index 000000000..4c63ec6d8
--- /dev/null
+++ b/src/engine/client/application/MayaExporter/build/win32/MayaExporter.vcxproj
@@ -0,0 +1,535 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {BBB380AC-AA99-4177-8F4F-4CD5AAEA1199}
+
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+ DynamicLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\../../../../../../compile/win32/MayaExporter/Release\
+ .\../../../../../../compile/win32/MayaExporter/Release\
+ false
+
+
+ .\../../../../../../compile/win32/MayaExporter/Optimized\
+ .\../../../../../../compile/win32/MayaExporter/Optimized\
+ true
+
+
+ .\../../../../../../compile/win32/MayaExporter/Debug\
+ .\../../../../../../compile/win32/MayaExporter/Debug\
+ true
+
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\../../../../../../compile/win32/MayaExporter/Release/MayaExporter.tlb
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\alienbrain123\include;..\..\..\..\..\..\external\3rd\library\ati_compress;..\..\..\..\..\..\external\3rd\library\atidxtc;..\..\..\..\..\..\external\3rd\library\atl\include;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\maya7\include;..\..\..\..\..\..\external\3rd\library\nvtristrip;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\client\library\clientUmbra\include\public;..\..\..\..\..\client\library\clientUtility\include\public;..\..\..\..\..\client\library\clientVertexAnimation\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDatabaseInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedStatusWindow\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\shared;%(AdditionalIncludeDirectories)
+ NDEBUG;DEBUG_LEVEL=0;NO_DATABASE=0;OS_NT;CASE_INSENSITIVE;WIN32;_WINDOWS;_USRDLL;MayaExporter_EXPORTS;NT_PLUGIN;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ Use
+ FirstMayaExporter.h
+ .\../../../../../../compile/win32/MayaExporter/Release/MayaExporter.pch
+ .\../../../../../../compile/win32/MayaExporter/Release/
+ .\../../../../../../compile/win32/MayaExporter/Release/
+ .\../../../../../../compile/win32/MayaExporter/Release/
+ Level4
+ false
+ true
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ NxN_alienbrain_XDK_123.lib;Foundation.lib;OpenMaya.lib;dxguid.lib;ws2_32.lib;OpenMayaAnim.lib;dpvs.lib;atidxtc.lib;libclient.lib;oldnames.lib;wsock32.lib;librpc.lib;libsupp.lib;odbc32.lib;odbccp32.lib;Mss32.lib;oci.lib;ociw32.lib;libxml2-win32-release.lib;ati_compress.lib;%(AdditionalDependencies)
+ ../../../../../../compile/win32/MayaExporter/Release/MayaExporter.mll
+ true
+ ..\..\..\..\..\..\external\3rd\library\alienbrain123\lib;..\..\..\..\..\..\external\3rd\library\ati_compress;..\..\..\..\..\..\external\3rd\library\atidxtc;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\maya7\lib;..\..\..\..\..\..\external\3rd\library\mfc\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\nvtristrip;..\..\..\..\..\..\external\3rd\library\oracle_win32\ora80\oci\lib\msvc;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ .\../../../../../../compile/win32/MayaExporter/Release/MayaExporter.pdb
+ .\../../../../../../compile/win32/MayaExporter/Release/MayaExporter.lib
+ MachineX86
+
+
+ true
+ .\../../../../../../compile/win32/MayaExporter/Release/MayaExporter.bsc
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\../../../../../../compile/win32/MayaExporter/Optimized/MayaExporter.tlb
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\alienbrain123\include;..\..\..\..\..\..\external\3rd\library\ati_compress;..\..\..\..\..\..\external\3rd\library\atidxtc;..\..\..\..\..\..\external\3rd\library\atl\include;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\maya7\include;..\..\..\..\..\..\external\3rd\library\nvtristrip;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\client\library\clientUmbra\include\public;..\..\..\..\..\client\library\clientUtility\include\public;..\..\..\..\..\client\library\clientVertexAnimation\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDatabaseInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedStatusWindow\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\shared;%(AdditionalIncludeDirectories)
+ _DEBUG;DEBUG_LEVEL=1;NO_DATABASE=0;OS_NT;CASE_INSENSITIVE;WIN32;_WINDOWS;_USRDLL;MayaExporter_EXPORTS;NT_PLUGIN;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ Use
+ FirstMayaExporter.h
+ .\../../../../../../compile/win32/MayaExporter/Optimized/MayaExporter.pch
+ .\../../../../../../compile/win32/MayaExporter/Optimized/
+ .\../../../../../../compile/win32/MayaExporter/Optimized/
+ .\../../../../../../compile/win32/MayaExporter/Optimized/
+ Level4
+ false
+ true
+ ProgramDatabase
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ NxN_alienbrain_XDK_123.lib;Foundation.lib;OpenMaya.lib;dxguid.lib;ws2_32.lib;OpenMayaAnim.lib;dpvs.lib;atidxtc.lib;libclient.lib;oldnames.lib;wsock32.lib;librpc.lib;libsupp.lib;odbc32.lib;odbccp32.lib;Mss32.lib;oci.lib;ociw32.lib;libxml2-win32-release.lib;ati_compress.lib;%(AdditionalDependencies)
+ ../../../../../../compile/win32/MayaExporter/Optimized/MayaExporter.mll
+ true
+ ..\..\..\..\..\..\external\3rd\library\alienbrain123\lib;..\..\..\..\..\..\external\3rd\library\ati_compress;..\..\..\..\..\..\external\3rd\library\atidxtc;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\maya7\lib;..\..\..\..\..\..\external\3rd\library\mfc\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\nvtristrip;..\..\..\..\..\..\external\3rd\library\oracle_win32\ora80\oci\lib\msvc;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;%(AdditionalLibraryDirectories)
+ libcd;libc;libcmt;%(IgnoreSpecificDefaultLibraries)
+ true
+ .\../../../../../../compile/win32/MayaExporter/Optimized/MayaExporter.pdb
+ .\../../../../../../compile/win32/MayaExporter/Optimized/MayaExporter.lib
+ MachineX86
+
+
+ true
+ .\../../../../../../compile/win32/MayaExporter/Optimized/MayaExporter.bsc
+
+
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ true
+ true
+ Win32
+ .\../../../../../../compile/win32/MayaExporter/Debug/MayaExporter.tlb
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\alienbrain123\include;..\..\..\..\..\..\external\3rd\library\ati_compress;..\..\..\..\..\..\external\3rd\library\atidxtc;..\..\..\..\..\..\external\3rd\library\atl\include;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\maya7\include;..\..\..\..\..\..\external\3rd\library\nvtristrip;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\client\library\clientUmbra\include\public;..\..\..\..\..\client\library\clientUtility\include\public;..\..\..\..\..\client\library\clientVertexAnimation\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDatabaseInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedStatusWindow\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\shared;%(AdditionalIncludeDirectories)
+ _DEBUG;DEBUG_LEVEL=2;NO_DATABASE=0;OS_NT;CASE_INSENSITIVE;WIN32;_WINDOWS;_USRDLL;MayaExporter_EXPORTS;NT_PLUGIN;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ false
+ true
+ Use
+ FirstMayaExporter.h
+ .\../../../../../../compile/win32/MayaExporter/Debug/MayaExporter.pch
+ .\../../../../../../compile/win32/MayaExporter/Debug/
+ .\../../../../../../compile/win32/MayaExporter/Debug/
+ .\../../../../../../compile/win32/MayaExporter/Debug/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ ati_compress.lib;NxN_alienbrain_XDK_123.lib;Foundation.lib;OpenMaya.lib;dxguid.lib;ws2_32.lib;OpenMayaAnim.lib;dpvs.lib;atidxtc.lib;libclient.lib;oldnames.lib;wsock32.lib;librpc.lib;libsupp.lib;odbc32.lib;odbccp32.lib;Mss32.lib;oci.lib;ociw32.lib;libxml2-win32-release.lib;%(AdditionalDependencies)
+ c:\program files\Alias\Maya7.0\bin\plug-ins\MayaExporter.mll
+ true
+ ..\..\..\..\..\..\external\3rd\library\alienbrain123\lib;..\..\..\..\..\..\external\3rd\library\ati_compress;..\..\..\..\..\..\external\3rd\library\atidxtc;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\maya7\lib;..\..\..\..\..\..\external\3rd\library\mfc\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\nvtristrip;..\..\..\..\..\..\external\3rd\library\oracle_win32\ora80\oci\lib\msvc;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;%(AdditionalLibraryDirectories)
+ libcd;libc;libcmt;%(IgnoreSpecificDefaultLibraries)
+ true
+ .\../../../../../../compile/win32/MayaExporter/Debug/MayaExporter.pdb
+ .\../../../../../../compile/win32/MayaExporter/Debug/MayaExporter.lib
+ MachineX86
+
+
+ true
+ .\../../../../../../compile/win32/MayaExporter/Debug/MayaExporter.bsc
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ..\..\src\win32;%(AdditionalIncludeDirectories)
+ ..\..\src\win32;%(AdditionalIncludeDirectories)
+ ..\..\src\win32;%(AdditionalIncludeDirectories)
+
+
+
+
+
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {950e9cf2-cd44-476c-826a-bb7869241f5b}
+ false
+
+
+ {fcc0f2b5-aade-4454-aff2-4d91365b4883}
+ false
+
+
+ {a378fab0-5b67-44bd-a3d8-815861792d6b}
+ false
+
+
+ {03a9a516-227e-49bb-a1c5-64b34cbddc66}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {b105eb3e-6860-4077-9833-c6ee5cfeafbf}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {2338795c-ce02-4902-bef4-53645a0c3267}
+ false
+
+
+ {aacbd5d6-d7dd-4ff9-8523-316ccf20115a}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {ac1277c1-ce5a-4ece-9be3-6b4647b657a5}
+ false
+
+
+ {7d707a5a-cb70-4fd9-83d3-e1e921ae3381}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {ae9205dd-83fc-4f31-a5b3-70623b3107a1}
+ false
+
+
+ {070babeb-131a-4dc7-8621-69407c531f8e}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {6612cc35-6931-4ac6-a315-e955ca60b643}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {51e2988c-ce2d-42d7-a27c-06a322b4aac2}
+ false
+
+
+ {4af54aee-35f9-473c-8c2e-c24d2eedb17b}
+ false
+
+
+ {250a5957-7bb9-4f50-b0e9-19c87136977e}
+ false
+
+
+ {7c4b8a91-be83-4bfe-af94-f75ce39fe67d}
+ false
+
+
+ {82393d39-3807-4c87-932f-e3571616a7dd}
+ false
+
+
+ {97a83cde-723f-47de-a5c6-b779cf50ae9c}
+ false
+
+
+ {66bcfd48-0307-41fd-b4d9-9991bf572a27}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/MayaExporter/build/win32/ignoreLibraries.rsp b/src/engine/client/application/MayaExporter/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/client/application/MayaExporter/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/client/application/MayaExporter/build/win32/libraries.rsp b/src/engine/client/application/MayaExporter/build/win32/libraries.rsp
new file mode 100644
index 000000000..ca63bd4d5
--- /dev/null
+++ b/src/engine/client/application/MayaExporter/build/win32/libraries.rsp
@@ -0,0 +1 @@
+zlib.lib
diff --git a/src/engine/client/application/MayaExporter/build/win32/libraryPaths.rsp b/src/engine/client/application/MayaExporter/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..00e95c77a
--- /dev/null
+++ b/src/engine/client/application/MayaExporter/build/win32/libraryPaths.rsp
@@ -0,0 +1,14 @@
+..\..\..\..\..\..\external\3rd\library\alienbrain123\lib
+..\..\..\..\..\..\external\3rd\library\ati_compress
+..\..\..\..\..\..\external\3rd\library\atidxtc
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
+..\..\..\..\..\..\external\3rd\library\maya7\lib
+..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL
+..\..\..\..\..\..\external\3rd\library\miles\lib\win
+..\..\..\..\..\..\external\3rd\library\nvtristrip
+..\..\..\..\..\..\external\3rd\library\oracle_win32\ora80\oci\lib\msvc
+..\..\..\..\..\..\external\3rd\library\perforce\lib\win32
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
+..\..\..\..\..\..\external\3rd\library\directx9\lib
diff --git a/src/engine/client/application/Miff/build/linux/Makefile b/src/engine/client/application/Miff/build/linux/Makefile
new file mode 100644
index 000000000..a6d22725c
--- /dev/null
+++ b/src/engine/client/application/Miff/build/linux/Makefile
@@ -0,0 +1,76 @@
+# Experimental makefile for Miff-Unix
+
+INCLUDE_DIRS = \
+ -I../../../../../shared/library/sharedCompression/include/public \
+ -I../../../../../shared/library/sharedDebug/include/public \
+ -I../../../../../shared/library/sharedFile/include/public \
+ -I../../../../../shared/library/sharedFoundation/include/public \
+ -I../../../../../shared/library/sharedFoundationTypes/include/public \
+ -I../../../../../shared/library/sharedMemoryManager/include/public \
+ -I../../../../../shared/library/sharedThread/include/public \
+ -I../../../../../../external/3rd/library/stlport453/stlport \
+ -I../../../../../../external/ours/library/fileInterface/include/public
+
+GPP_FLAGS = -g -Wall -Wno-unused -Wno-unknown-pragmas -Werror -Wno-ctor-dtor-privacy -D_DEBUG -D__STL_NO_BAD_ALLOC -DLINUX $(INCLUDE_DIRS) # Always builds with debugging info
+GCC_FLAGS = -w #no warnings for code generated by yacc -- it's not our fault
+
+LIBS = \
+ ../../../../../../compile/linux/sharedCompression/debug/libsharedCompression_d.a \
+ ../../../../../../compile/linux/sharedDebug/debug/libsharedDebug_d.a \
+ ../../../../../../compile/linux/sharedFile/debug/libsharedFile_d.a \
+ ../../../../../../compile/linux/sharedFoundation/debug/libsharedFoundation_d.a \
+ ../../../../../../compile/linux/sharedMath/debug/libsharedMath_d.a \
+ ../../../../../../compile/linux/sharedMemoryManager/debug/libsharedMemoryManager_d.a \
+ ../../../../../../compile/linux/sharedRandom/debug/libsharedRandom_d.a \
+ ../../../../../../compile/linux/sharedSynchronization/debug/libsharedSynchronization_d.a \
+ ../../../../../../compile/linux/sharedThread/debug/libsharedThread_d.a \
+ ../../../../../../external/3rd/library/stlport453/lib/libstlport_gcc.a \
+ ../../../../../../external/ours/library/fileInterface/build/linux/output/debug/libfileInterface.a \
+ ../../../../../../external/ours/library/archive/build/linux/output/debug/libarchive.a \
+ ../../../../../../external/ours/library/unicode/compile/linux/Debug/libunicode.a \
+ ../../../../../../external/ours/library/unicodeArchive/build/linux/output/debug/libunicodeArchive.a \
+ ../../../../../../external/ours/library/localization/compile/linux/Debug/libLocalization.a \
+ ../../../../../../external/ours/library/localizationArchive/compile/linux/Debug/libLocalizationArchive.a \
+ -lncurses -lz -ldl
+
+
+SRCDIR = ../../src/linux
+OBJDIR = ../../src/linux
+OBJS = $(addprefix $(OBJDIR)/, lex_yy.o parser.o miff.o InputFileHandler.o OutputFileHandler.o)
+
+miff: $(OBJS) $(LIBS)
+ g++ $(OBJS) $(LIBS) -lpthread -g -o miff
+
+$(OBJDIR)/lex_yy.o: $(SRCDIR)/lex_yy.c $(SRCDIR)/parser.h
+ gcc $(GCC_FLAGS) $(SRCDIR)/lex_yy.c -c -g -o $(OBJDIR)/lex_yy.o
+
+$(OBJDIR)/parser.o: $(SRCDIR)/parser.c $(SRCDIR)/parser.h
+ gcc $(GCC_FLAGS) $(SRCDIR)/parser.c -c -g -o $(OBJDIR)/parser.o
+
+$(OBJDIR)/miff.o: $(SRCDIR)/miff.cpp
+ g++ $(GPP_FLAGS) $(SRCDIR)/miff.cpp -c -g -o $(OBJDIR)/miff.o
+
+$(OBJDIR)/InputFileHandler.o: $(SRCDIR)/InputFileHandler.cpp
+ g++ $(GPP_FLAGS) $(SRCDIR)/InputFileHandler.cpp -c -g -o $(OBJDIR)/InputFileHandler.o
+
+$(OBJDIR)/OutputFileHandler.o: $(SRCDIR)/OutputFileHandler.cpp
+ g++ $(GPP_FLAGS) $(SRCDIR)/OutputFileHandler.cpp -c -g -o $(OBJDIR)/OutputFileHandler.o
+
+$(SRCDIR)/lex_yy.c: $(SRCDIR)/parser.lex
+ flex -w -o$(SRCDIR)/lex_yy.c $(SRCDIR)/parser.lex
+
+$(SRCDIR)/parser.c $(SRCDIR)/parser.h: $(SRCDIR)/parser.yac
+ bison -d -o$(SRCDIR)/parser.c $(SRCDIR)/parser.yac
+
+clean:
+ rm -f $(OBJS) $(SRCDIR)/parser.c $(SRCDIR)/parser.h $(SRCDIR)/lex_yy.c .depend
+
+include .depend
+
+.depend:
+ @echo Generating dependencies for miff
+ @touch .depend
+ @g++ -MM $(GPP_FLAGS) $(INCLUDE_DIRS) $(SRCDIR)/miff.cpp -c -g >> .depend
+ @g++ -MM $(GPP_FLAGS) $(INCLUDE_DIRS) $(SRCDIR)/InputFileHandler.cpp -c -g >> .depend
+ @g++ -MM $(GPP_FLAGS) $(INCLUDE_DIRS) $(SRCDIR)/OutputFileHandler.cpp -c -g >> .depend
+
diff --git a/src/engine/client/application/Miff/build/win32/Miff.vcxproj b/src/engine/client/application/Miff/build/win32/Miff.vcxproj
new file mode 100644
index 000000000..4b6701665
--- /dev/null
+++ b/src/engine/client/application/Miff/build/win32/Miff.vcxproj
@@ -0,0 +1,304 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {7A9CA0AF-B189-44C6-8366-434396B33ECA}
+
+
+
+ Application
+ v120
+ false
+ Unicode
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\../../../../../../compile/win32/Miff/Optimized\
+ .\../../../../../../compile/win32/Miff/Optimized\
+ true
+
+
+ .\../../../../../../compile/win32/Miff/Release\
+ .\../../../../../../compile/win32/Miff/Release\
+ false
+
+
+ .\../../../../../../compile/win32/Miff/Debug\
+ .\../../../../../../compile/win32/Miff/Debug\
+ true
+
+
+
+ .\../../../../../../compile/win32/Miff/Optimized/Miff.tlb
+
+
+
+ Disabled
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_CONSOLE;DEBUG_LEVEL=1;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ .\../../../../../../compile/win32/Miff/Optimized/Miff.pch
+ .\../../../../../../compile/win32/Miff/Optimized/
+ .\../../../../../../compile/win32/Miff/Optimized/
+ .\../../../../../../compile/win32/Miff/Optimized/
+ Level4
+ false
+ true
+ ProgramDatabase
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ wsock32.lib;zlib.lib;%(AdditionalDependencies)
+ .\../../../../../../compile/win32/Miff/Optimized/Miff.exe
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ LIBC;LIBCMTD;%(IgnoreSpecificDefaultLibraries)
+ true
+ .\../../../../../../compile/win32/Miff/Optimized/Miff.pdb
+ Console
+ MachineX86
+
+
+ true
+ .\../../../../../../compile/win32/Miff/Optimized/Miff.bsc
+
+
+
+
+ .\../../../../../../compile/win32/Miff/Release/Miff.tlb
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_CONSOLE;DEBUG_LEVEL=0;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ .\../../../../../../compile/win32/Miff/Release/Miff.pch
+ .\../../../../../../compile/win32/Miff/Release/
+ .\../../../../../../compile/win32/Miff/Release/
+ .\../../../../../../compile/win32/Miff/Release/
+ Level4
+ false
+ true
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ wsock32.lib;zlib.lib;%(AdditionalDependencies)
+ .\../../../../../../compile/win32/Miff/Release/Miff.exe
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ .\../../../../../../compile/win32/Miff/Release/Miff.pdb
+ Console
+ MachineX86
+
+
+ true
+ .\../../../../../../compile/win32/Miff/Release/Miff.bsc
+
+
+
+
+ .\../../../../../../compile/win32/Miff/Debug/Miff.tlb
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_CONSOLE;DEBUG_LEVEL=2;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ false
+ true
+ .\../../../../../../compile/win32/Miff/Debug/Miff.pch
+ .\../../../../../../compile/win32/Miff/Debug/
+ .\../../../../../../compile/win32/Miff/Debug/
+ .\../../../../../../compile/win32/Miff/Debug/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ wsock32.lib;zlib.lib;%(AdditionalDependencies)
+ .\../../../../../../compile/win32/Miff/Debug/Miff.exe
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ LIBC;LIBCMT;%(IgnoreSpecificDefaultLibraries)
+ true
+ .\../../../../../../compile/win32/Miff/Debug/Miff.pdb
+ Console
+ MachineX86
+
+
+ true
+ .\../../../../../../compile/win32/Miff/Debug/Miff.bsc
+
+
+
+
+
+ false
+ false
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+ Generating lexer...
+ flex -w -o$(IntDir)..\lex_yy.c %(FullPath)
+
+ $(IntDir)..\lex_yy.c;%(Outputs)
+ Generating lexer...
+ flex -w -o$(IntDir)..\lex_yy.c %(FullPath)
+
+ $(IntDir)..\lex_yy.c;%(Outputs)
+ Generating lexer...
+ flex -w -o$(IntDir)..\lex_yy.c %(FullPath)
+
+ $(IntDir)..\lex_yy.c;%(Outputs)
+
+
+ Generating parser...
+ bison -d -o $(IntDir)..\parser.c ../../src/win32/parser.yac
+
+ $(IntDir)..\parser.c;$(IntDir)..\parser.h;%(Outputs)
+ Generating parser...
+ bison -d -o $(IntDir)..\parser.c ../../src/win32/parser.yac
+
+ $(IntDir)..\parser.c;$(IntDir)..\parser.h;%(Outputs)
+ Generating parser...
+ bison -d -o $(IntDir)..\parser.c ../../src/win32/parser.yac
+
+ $(IntDir)..\parser.c;$(IntDir)..\parser.h;%(Outputs)
+
+
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {1d87a2e7-f0cf-42e9-bc38-846c53622c40}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/Miff/build/win32/bison.simple b/src/engine/client/application/Miff/build/win32/bison.simple
new file mode 100644
index 000000000..5f8f386e6
--- /dev/null
+++ b/src/engine/client/application/Miff/build/win32/bison.simple
@@ -0,0 +1,698 @@
+/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
+#line 3 "bison.simple"
+
+/* Skeleton output parser for bison,
+ Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
+
+ 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, 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+/* As a special exception, when this file is copied by Bison into a
+ Bison output file, you may use that output file without restriction.
+ This special exception was added by the Free Software Foundation
+ in version 1.24 of Bison. */
+
+#define MSDOS 1
+
+#ifndef alloca
+#ifdef __GNUC__
+#define alloca __builtin_alloca
+#else /* not GNU C. */
+#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
+#include
+#else /* not sparc */
+#if defined (MSDOS) && !defined (__TURBOC__)
+#include
+#else /* not MSDOS, or __TURBOC__ */
+#if defined(_AIX)
+#include
+ #pragma alloca
+#else /* not MSDOS, __TURBOC__, or _AIX */
+#ifdef __hpux
+#ifdef __cplusplus
+extern "C" {
+void *alloca (unsigned int);
+};
+#else /* not __cplusplus */
+void *alloca ();
+#endif /* not __cplusplus */
+#endif /* __hpux */
+#endif /* not _AIX */
+#endif /* not MSDOS, or __TURBOC__ */
+#endif /* not sparc. */
+#endif /* not GNU C. */
+#endif /* alloca not defined. */
+
+#ifdef MSDOS
+#define alloca(n) malloc(n)
+#endif
+
+/* This is the parser code that is written into each bison parser
+ when the %semantic_parser declaration is not specified in the grammar.
+ It was written by Richard Stallman by simplifying the hairy parser
+ used when %semantic_parser is specified. */
+
+/* Note: there must be only one dollar sign in this file.
+ It is replaced by the list of actions, each action
+ as one case of the switch. */
+
+#define yyerrok (yyerrstatus = 0)
+#define yyclearin (yychar = YYEMPTY)
+#define YYEMPTY -2
+#define YYEOF 0
+#define YYACCEPT return(0)
+#define YYABORT return(1)
+#define YYERROR goto yyerrlab1
+/* Like YYERROR except do call yyerror.
+ This remains here temporarily to ease the
+ transition to the new meaning of YYERROR, for GCC.
+ Once GCC version 2 has supplanted version 1, this can go. */
+#define YYFAIL goto yyerrlab
+#define YYRECOVERING() (!!yyerrstatus)
+#define YYBACKUP(token, value) \
+do \
+ if (yychar == YYEMPTY && yylen == 1) \
+ { yychar = (token), yylval = (value); \
+ yychar1 = YYTRANSLATE (yychar); \
+ YYPOPSTACK; \
+ goto yybackup; \
+ } \
+ else \
+ { yyerror ("syntax error: cannot back up"); YYERROR; } \
+while (0)
+
+#define YYTERROR 1
+#define YYERRCODE 256
+
+#ifndef YYPURE
+#define YYLEX yylex()
+#endif
+
+#ifdef YYPURE
+#ifdef YYLSP_NEEDED
+#ifdef YYLEX_PARAM
+#define YYLEX yylex(&yylval, &yylloc, YYLEX_PARAM)
+#else
+#define YYLEX yylex(&yylval, &yylloc)
+#endif
+#else /* not YYLSP_NEEDED */
+#ifdef YYLEX_PARAM
+#define YYLEX yylex(&yylval, YYLEX_PARAM)
+#else
+#define YYLEX yylex(&yylval)
+#endif
+#endif /* not YYLSP_NEEDED */
+#endif
+
+/* If nonreentrant, generate the variables here */
+
+#ifndef YYPURE
+
+int yychar; /* the lookahead symbol */
+YYSTYPE yylval; /* the semantic value of the */
+ /* lookahead symbol */
+
+#ifdef YYLSP_NEEDED
+YYLTYPE yylloc; /* location data for the lookahead */
+ /* symbol */
+#endif
+
+int yynerrs; /* number of parse errors so far */
+#endif /* not YYPURE */
+
+#if YYDEBUG != 0
+int yydebug = 1; /* nonzero means print parse trace */
+/* Since this is uninitialized, it does not stop multiple parsers
+ from coexisting. */
+#endif
+
+/* YYINITDEPTH indicates the initial size of the parser's stacks */
+
+#ifndef YYINITDEPTH
+#define YYINITDEPTH 200
+#endif
+
+/* YYMAXDEPTH is the maximum size the stacks can grow to
+ (effective only if the built-in stack extension method is used). */
+
+#if YYMAXDEPTH == 0
+#undef YYMAXDEPTH
+#endif
+
+#ifndef YYMAXDEPTH
+#define YYMAXDEPTH 10000
+#endif
+
+/* Prevent warning if -Wstrict-prototypes. */
+#ifdef __GNUC__
+int yyparse (void);
+#endif
+
+#if __GNUC__ > 1 /* GNU C and GNU C++ define this. */
+#define __yy_memcpy(TO,FROM,COUNT) __builtin_memcpy(TO,FROM,COUNT)
+#else /* not GNU C or C++ */
+#ifndef __cplusplus
+
+/* This is the most reliable way to avoid incompatibilities
+ in available built-in functions on various systems. */
+static void
+__yy_memcpy (to, from, count)
+ char *to;
+ char *from;
+ int count;
+{
+ register char *f = from;
+ register char *t = to;
+ register int i = count;
+
+ while (i-- > 0)
+ *t++ = *f++;
+}
+
+#else /* __cplusplus */
+
+/* This is the most reliable way to avoid incompatibilities
+ in available built-in functions on various systems. */
+static void
+__yy_memcpy (char *to, char *from, int count)
+{
+ register char *f = from;
+ register char *t = to;
+ register int i = count;
+
+ while (i-- > 0)
+ *t++ = *f++;
+}
+
+#endif
+#endif
+
+#line 196 "bison.simple"
+
+/* The user can define YYPARSE_PARAM as the name of an argument to be passed
+ into yyparse. The argument should have type void *.
+ It should actually point to an object.
+ Grammar actions can access the variable by casting it
+ to the proper pointer type. */
+
+#ifdef YYPARSE_PARAM
+#ifdef __cplusplus
+#define YYPARSE_PARAM_ARG void *YYPARSE_PARAM
+#define YYPARSE_PARAM_DECL
+#else /* not __cplusplus */
+#define YYPARSE_PARAM_ARG YYPARSE_PARAM
+#define YYPARSE_PARAM_DECL void *YYPARSE_PARAM;
+#endif /* not __cplusplus */
+#else /* not YYPARSE_PARAM */
+#define YYPARSE_PARAM_ARG
+#define YYPARSE_PARAM_DECL
+#endif /* not YYPARSE_PARAM */
+
+int
+yyparse(YYPARSE_PARAM_ARG)
+ YYPARSE_PARAM_DECL
+{
+ register int yystate;
+ register int yyn;
+ register short *yyssp;
+ register YYSTYPE *yyvsp;
+ int yyerrstatus; /* number of tokens to shift before error messages enabled */
+ int yychar1 = 0; /* lookahead token as an internal (translated) token number */
+
+ short yyssa[YYINITDEPTH]; /* the state stack */
+ YYSTYPE yyvsa[YYINITDEPTH]; /* the semantic value stack */
+
+ short *yyss = yyssa; /* refer to the stacks thru separate pointers */
+ YYSTYPE *yyvs = yyvsa; /* to allow yyoverflow to reallocate them elsewhere */
+
+#ifdef YYLSP_NEEDED
+ YYLTYPE yylsa[YYINITDEPTH]; /* the location stack */
+ YYLTYPE *yyls = yylsa;
+ YYLTYPE *yylsp;
+
+#define YYPOPSTACK (yyvsp--, yyssp--, yylsp--)
+#else
+#define YYPOPSTACK (yyvsp--, yyssp--)
+#endif
+
+ int yystacksize = YYINITDEPTH;
+
+#ifdef YYPURE
+ int yychar;
+ YYSTYPE yylval;
+ int yynerrs;
+#ifdef YYLSP_NEEDED
+ YYLTYPE yylloc;
+#endif
+#endif
+
+ YYSTYPE yyval; /* the variable used to return */
+ /* semantic values from the action */
+ /* routines */
+
+ int yylen;
+
+#if YYDEBUG != 0
+ if (yydebug)
+ fprintf(stderr, "Starting parse\n");
+#endif
+
+ yystate = 0;
+ yyerrstatus = 0;
+ yynerrs = 0;
+ yychar = YYEMPTY; /* Cause a token to be read. */
+
+ /* Initialize stack pointers.
+ Waste one element of value and location stack
+ so that they stay on the same level as the state stack.
+ The wasted elements are never initialized. */
+
+ yyssp = yyss - 1;
+ yyvsp = yyvs;
+#ifdef YYLSP_NEEDED
+ yylsp = yyls;
+#endif
+
+/* Push a new state, which is found in yystate . */
+/* In all cases, when you get here, the value and location stacks
+ have just been pushed. so pushing a state here evens the stacks. */
+yynewstate:
+
+ *++yyssp = yystate;
+
+ if (yyssp >= yyss + yystacksize - 1)
+ {
+ /* Give user a chance to reallocate the stack */
+ /* Use copies of these so that the &'s don't force the real ones into memory. */
+ YYSTYPE *yyvs1 = yyvs;
+ short *yyss1 = yyss;
+#ifdef YYLSP_NEEDED
+ YYLTYPE *yyls1 = yyls;
+#endif
+
+ /* Get the current used size of the three stacks, in elements. */
+ int size = yyssp - yyss + 1;
+
+#ifdef yyoverflow
+ /* Each stack pointer address is followed by the size of
+ the data in use in that stack, in bytes. */
+#ifdef YYLSP_NEEDED
+ /* This used to be a conditional around just the two extra args,
+ but that might be undefined if yyoverflow is a macro. */
+ yyoverflow("parser stack overflow",
+ &yyss1, size * sizeof (*yyssp),
+ &yyvs1, size * sizeof (*yyvsp),
+ &yyls1, size * sizeof (*yylsp),
+ &yystacksize);
+#else
+ yyoverflow("parser stack overflow",
+ &yyss1, size * sizeof (*yyssp),
+ &yyvs1, size * sizeof (*yyvsp),
+ &yystacksize);
+#endif
+
+ yyss = yyss1; yyvs = yyvs1;
+#ifdef YYLSP_NEEDED
+ yyls = yyls1;
+#endif
+#else /* no yyoverflow */
+ /* Extend the stack our own way. */
+ if (yystacksize >= YYMAXDEPTH)
+ {
+ yyerror("parser stack overflow");
+ return 2;
+ }
+ yystacksize *= 2;
+ if (yystacksize > YYMAXDEPTH)
+ yystacksize = YYMAXDEPTH;
+ yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
+ __yy_memcpy ((char *)yyss, (char *)yyss1, size * sizeof (*yyssp));
+ yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
+ __yy_memcpy ((char *)yyvs, (char *)yyvs1, size * sizeof (*yyvsp));
+#ifdef YYLSP_NEEDED
+ yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
+ __yy_memcpy ((char *)yyls, (char *)yyls1, size * sizeof (*yylsp));
+#endif
+#endif /* no yyoverflow */
+
+ yyssp = yyss + size - 1;
+ yyvsp = yyvs + size - 1;
+#ifdef YYLSP_NEEDED
+ yylsp = yyls + size - 1;
+#endif
+
+#if YYDEBUG != 0
+ if (yydebug)
+ fprintf(stderr, "Stack size increased to %d\n", yystacksize);
+#endif
+
+ if (yyssp >= yyss + yystacksize - 1)
+ YYABORT;
+ }
+
+#if YYDEBUG != 0
+ if (yydebug)
+ fprintf(stderr, "Entering state %d\n", yystate);
+#endif
+
+ goto yybackup;
+ yybackup:
+
+/* Do appropriate processing given the current state. */
+/* Read a lookahead token if we need one and don't already have one. */
+/* yyresume: */
+
+ /* First try to decide what to do without reference to lookahead token. */
+
+ yyn = yypact[yystate];
+ if (yyn == YYFLAG)
+ goto yydefault;
+
+ /* Not known => get a lookahead token if don't already have one. */
+
+ /* yychar is either YYEMPTY or YYEOF
+ or a valid token in external form. */
+
+ if (yychar == YYEMPTY)
+ {
+#if YYDEBUG != 0
+ if (yydebug)
+ fprintf(stderr, "Reading a token: ");
+#endif
+ yychar = YYLEX;
+ }
+
+ /* Convert token to internal form (in yychar1) for indexing tables with */
+
+ if (yychar <= 0) /* This means end of input. */
+ {
+ yychar1 = 0;
+ yychar = YYEOF; /* Don't call YYLEX any more */
+
+#if YYDEBUG != 0
+ if (yydebug)
+ fprintf(stderr, "Now at end of input.\n");
+#endif
+ }
+ else
+ {
+ yychar1 = YYTRANSLATE(yychar);
+
+#if YYDEBUG != 0
+ if (yydebug)
+ {
+ fprintf (stderr, "Next token is %d (%s", yychar, yytname[yychar1]);
+ /* Give the individual parser a way to print the precise meaning
+ of a token, for further debugging info. */
+#ifdef YYPRINT
+ YYPRINT (stderr, yychar, yylval);
+#endif
+ fprintf (stderr, ")\n");
+ }
+#endif
+ }
+
+ yyn += yychar1;
+ if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != yychar1)
+ goto yydefault;
+
+ yyn = yytable[yyn];
+
+ /* yyn is what to do for this token type in this state.
+ Negative => reduce, -yyn is rule number.
+ Positive => shift, yyn is new state.
+ New state is final state => don't bother to shift,
+ just return success.
+ 0, or most negative number => error. */
+
+ if (yyn < 0)
+ {
+ if (yyn == YYFLAG)
+ goto yyerrlab;
+ yyn = -yyn;
+ goto yyreduce;
+ }
+ else if (yyn == 0)
+ goto yyerrlab;
+
+ if (yyn == YYFINAL)
+ YYACCEPT;
+
+ /* Shift the lookahead token. */
+
+#if YYDEBUG != 0
+ if (yydebug)
+ fprintf(stderr, "Shifting token %d (%s), ", yychar, yytname[yychar1]);
+#endif
+
+ /* Discard the token being shifted unless it is eof. */
+ if (yychar != YYEOF)
+ yychar = YYEMPTY;
+
+ *++yyvsp = yylval;
+#ifdef YYLSP_NEEDED
+ *++yylsp = yylloc;
+#endif
+
+ /* count tokens shifted since error; after three, turn off error status. */
+ if (yyerrstatus) yyerrstatus--;
+
+ yystate = yyn;
+ goto yynewstate;
+
+/* Do the default action for the current state. */
+yydefault:
+
+ yyn = yydefact[yystate];
+ if (yyn == 0)
+ goto yyerrlab;
+
+/* Do a reduction. yyn is the number of a rule to reduce with. */
+yyreduce:
+ yylen = yyr2[yyn];
+ if (yylen > 0)
+ yyval = yyvsp[1-yylen]; /* implement default value of the action */
+
+#if YYDEBUG != 0
+ if (yydebug)
+ {
+ int i;
+
+ fprintf (stderr, "Reducing via rule %d (line %d), ",
+ yyn, yyrline[yyn]);
+
+ /* Print the symbols being reduced, and their result. */
+ for (i = yyprhs[yyn]; yyrhs[i] > 0; i++)
+ fprintf (stderr, "%s ", yytname[yyrhs[i]]);
+ fprintf (stderr, " -> %s\n", yytname[yyr1[yyn]]);
+ }
+#endif
+
+$ /* the action file gets copied in in place of this dollarsign */
+#line 498 "bison.simple"
+
+ yyvsp -= yylen;
+ yyssp -= yylen;
+#ifdef YYLSP_NEEDED
+ yylsp -= yylen;
+#endif
+
+#if YYDEBUG != 0
+ if (yydebug)
+ {
+ short *ssp1 = yyss - 1;
+ fprintf (stderr, "state stack now");
+ while (ssp1 != yyssp)
+ fprintf (stderr, " %d", *++ssp1);
+ fprintf (stderr, "\n");
+ }
+#endif
+
+ *++yyvsp = yyval;
+
+#ifdef YYLSP_NEEDED
+ yylsp++;
+ if (yylen == 0)
+ {
+ yylsp->first_line = yylloc.first_line;
+ yylsp->first_column = yylloc.first_column;
+ yylsp->last_line = (yylsp-1)->last_line;
+ yylsp->last_column = (yylsp-1)->last_column;
+ yylsp->text = 0;
+ }
+ else
+ {
+ yylsp->last_line = (yylsp+yylen-1)->last_line;
+ yylsp->last_column = (yylsp+yylen-1)->last_column;
+ }
+#endif
+
+ /* Now "shift" the result of the reduction.
+ Determine what state that goes to,
+ based on the state we popped back to
+ and the rule number reduced by. */
+
+ yyn = yyr1[yyn];
+
+ yystate = yypgoto[yyn - YYNTBASE] + *yyssp;
+ if (yystate >= 0 && yystate <= YYLAST && yycheck[yystate] == *yyssp)
+ yystate = yytable[yystate];
+ else
+ yystate = yydefgoto[yyn - YYNTBASE];
+
+ goto yynewstate;
+
+yyerrlab: /* here on detecting error */
+
+ if (! yyerrstatus)
+ /* If not already recovering from an error, report this error. */
+ {
+ ++yynerrs;
+
+#ifdef YYERROR_VERBOSE
+ yyn = yypact[yystate];
+
+ if (yyn > YYFLAG && yyn < YYLAST)
+ {
+ int size = 0;
+ char *msg;
+ int x, count;
+
+ count = 0;
+ /* Start X at -yyn if nec to avoid negative indexes in yycheck. */
+ for (x = (yyn < 0 ? -yyn : 0);
+ x < (sizeof(yytname) / sizeof(char *)); x++)
+ if (yycheck[x + yyn] == x)
+ size += strlen(yytname[x]) + 15, count++;
+ msg = (char *) malloc(size + 15);
+ if (msg != 0)
+ {
+ strcpy(msg, "parse error");
+
+ if (count < 5)
+ {
+ count = 0;
+ for (x = (yyn < 0 ? -yyn : 0);
+ x < (sizeof(yytname) / sizeof(char *)); x++)
+ if (yycheck[x + yyn] == x)
+ {
+ strcat(msg, count == 0 ? ", expecting `" : " or `");
+ strcat(msg, yytname[x]);
+ strcat(msg, "'");
+ count++;
+ }
+ }
+ yyerror(msg);
+ free(msg);
+ }
+ else
+ yyerror ("parse error; also virtual memory exceeded");
+ }
+ else
+#endif /* YYERROR_VERBOSE */
+ yyerror("parse error");
+ }
+
+ goto yyerrlab1;
+yyerrlab1: /* here on error raised explicitly by an action */
+
+ if (yyerrstatus == 3)
+ {
+ /* if just tried and failed to reuse lookahead token after an error, discard it. */
+
+ /* return failure if at end of input */
+ if (yychar == YYEOF)
+ YYABORT;
+
+#if YYDEBUG != 0
+ if (yydebug)
+ fprintf(stderr, "Discarding token %d (%s).\n", yychar, yytname[yychar1]);
+#endif
+
+ yychar = YYEMPTY;
+ }
+
+ /* Else will try to reuse lookahead token
+ after shifting the error token. */
+
+ yyerrstatus = 3; /* Each real token shifted decrements this */
+
+ goto yyerrhandle;
+
+yyerrdefault: /* current state does not do anything special for the error token. */
+
+#if 0
+ /* This is wrong; only states that explicitly want error tokens
+ should shift them. */
+ yyn = yydefact[yystate]; /* If its default is to accept any token, ok. Otherwise pop it.*/
+ if (yyn) goto yydefault;
+#endif
+
+yyerrpop: /* pop the current state because it cannot handle the error token */
+
+ if (yyssp == yyss) YYABORT;
+ yyvsp--;
+ yystate = *--yyssp;
+#ifdef YYLSP_NEEDED
+ yylsp--;
+#endif
+
+#if YYDEBUG != 0
+ if (yydebug)
+ {
+ short *ssp1 = yyss - 1;
+ fprintf (stderr, "Error: state stack now");
+ while (ssp1 != yyssp)
+ fprintf (stderr, " %d", *++ssp1);
+ fprintf (stderr, "\n");
+ }
+#endif
+
+yyerrhandle:
+
+ yyn = yypact[yystate];
+ if (yyn == YYFLAG)
+ goto yyerrdefault;
+
+ yyn += YYTERROR;
+ if (yyn < 0 || yyn > YYLAST || yycheck[yyn] != YYTERROR)
+ goto yyerrdefault;
+
+ yyn = yytable[yyn];
+ if (yyn < 0)
+ {
+ if (yyn == YYFLAG)
+ goto yyerrpop;
+ yyn = -yyn;
+ goto yyreduce;
+ }
+ else if (yyn == 0)
+ goto yyerrpop;
+
+ if (yyn == YYFINAL)
+ YYACCEPT;
+
+#if YYDEBUG != 0
+ if (yydebug)
+ fprintf(stderr, "Shifting error token, ");
+#endif
+
+ *++yyvsp = yylval;
+#ifdef YYLSP_NEEDED
+ *++yylsp = yylloc;
+#endif
+
+ yystate = yyn;
+ goto yynewstate;
+}
diff --git a/src/engine/client/application/Miff/build/win32/miff.vcproj b/src/engine/client/application/Miff/build/win32/miff.vcproj
new file mode 100644
index 000000000..76c9903e6
--- /dev/null
+++ b/src/engine/client/application/Miff/build/win32/miff.vcproj
@@ -0,0 +1,569 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/NpcEditor/build/win32/NpcEditor.vcproj b/src/engine/client/application/NpcEditor/build/win32/NpcEditor.vcproj
new file mode 100644
index 000000000..8175e870f
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/NpcEditor.vcproj
@@ -0,0 +1,2125 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/NpcEditor/build/win32/NpcEditor.vcxproj b/src/engine/client/application/NpcEditor/build/win32/NpcEditor.vcxproj
new file mode 100644
index 000000000..db7de8939
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/NpcEditor.vcxproj
@@ -0,0 +1,896 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {EF79AC9C-892B-448A-87AB-ABA65CE4FD19}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\NpcEditor\Debug;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstNpcEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_debug.lib;ImageCapture_debug.lib;Smart_debug.lib;SoeUtil_debug.lib;ZlibUtil_debug.lib;picn20md.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;MSVCRTD;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+ /SAFESEH:NO %(AdditionalOptions)
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\NpcEditor\Optimized;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstNpcEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;MSVCRTD;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\NpcEditor\Release;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstNpcEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {ecbdfcff-f4ae-475a-aa90-729eb96430a0}
+ false
+
+
+ {03f3c054-f380-4618-be46-6e25061a3587}
+ false
+
+
+ {c6c1e14a-dedb-48c6-b028-0c9e4eff5dc4}
+ false
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {d4accb0c-7b66-433d-b715-8ef7f43b8e2d}
+ false
+
+
+ {9496a020-65ad-45a6-9acf-ae4f3358b027}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {d409a18e-f788-4f1b-bad1-ed58ee4d458f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {950e9cf2-cd44-476c-826a-bb7869241f5b}
+ false
+
+
+ {fcc0f2b5-aade-4454-aff2-4d91365b4883}
+ false
+
+
+ {a378fab0-5b67-44bd-a3d8-815861792d6b}
+ false
+
+
+ {03a9a516-227e-49bb-a1c5-64b34cbddc66}
+ false
+
+
+ {20d4d8eb-87ca-4c5f-8ba3-ffc898563c40}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {882d8e54-0077-440b-94ac-762bde522e3b}
+ false
+
+
+ {2338795c-ce02-4902-bef4-53645a0c3267}
+ false
+
+
+ {aacbd5d6-d7dd-4ff9-8523-316ccf20115a}
+ false
+
+
+ {101cf34f-b5fd-4a14-a3e9-fd28078760be}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {ac1277c1-ce5a-4ece-9be3-6b4647b657a5}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {1d87a2e7-f0cf-42e9-bc38-846c53622c40}
+ false
+
+
+ {afa9ad0a-6e1a-4004-a1ff-8293eb957ef1}
+ false
+
+
+ {83ea2b87-762e-4ec6-bb06-2dcbae759d6e}
+ false
+
+
+ {ae9205dd-83fc-4f31-a5b3-70623b3107a1}
+ false
+
+
+ {070babeb-131a-4dc7-8621-69407c531f8e}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {6612cc35-6931-4ac6-a315-e955ca60b643}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {51e2988c-ce2d-42d7-a27c-06a322b4aac2}
+ false
+
+
+ {4af54aee-35f9-473c-8c2e-c24d2eedb17b}
+ false
+
+
+ {250a5957-7bb9-4f50-b0e9-19c87136977e}
+ false
+
+
+ {147d02d6-c76c-4058-863a-a9b3364c2047}
+ false
+
+
+ {f1b57bf8-072e-4e69-940a-c254a98da10d}
+ false
+
+
+ {d10d1a1a-6129-4ef1-b3d7-5c12ee53dfca}
+ false
+
+
+ {7c4b8a91-be83-4bfe-af94-f75ce39fe67d}
+ false
+
+
+ {82393d39-3807-4c87-932f-e3571616a7dd}
+ false
+
+
+ {97a83cde-723f-47de-a5c6-b779cf50ae9c}
+ false
+
+
+ {66bcfd48-0307-41fd-b4d9-9991bf572a27}
+ false
+
+
+ {2024a6b1-5e9a-4cc9-8243-7232f9b62264}
+ false
+
+
+ {f1fdc6af-af8c-42a5-826e-c66ae9cc6ca6}
+ false
+
+
+ {92605a4d-baa0-46e6-9733-6464f6578b6a}
+ false
+
+
+ {e89a79a9-8488-4d42-bf88-b9833f5607c0}
+ false
+
+
+ {2889f119-79c4-4ea7-893a-9e0bd5f871c8}
+ false
+
+
+ {cf3b1ee2-d965-44e1-9464-01297964f2cb}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/NpcEditor/build/win32/ignoreLibraries.rsp b/src/engine/client/application/NpcEditor/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..30d5d08e2
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,2 @@
+msvcrt
+libc
diff --git a/src/engine/client/application/NpcEditor/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/NpcEditor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..bd4ee297c
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1,2 @@
+libcmt
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/NpcEditor/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/NpcEditor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..bd4ee297c
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1,2 @@
+libcmt
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/NpcEditor/build/win32/includePaths.rsp b/src/engine/client/application/NpcEditor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..823449882
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/includePaths.rsp
@@ -0,0 +1,54 @@
+../../../../../../engine/client/library/clientAnimation/include/public
+../../../../../../engine/client/library/clientAudio/include/public
+../../../../../../engine/client/library/clientDirectInput/include/public
+../../../../../../engine/client/library/clientGame/include/public
+../../../../../../engine/client/library/clientGraphics/include/public
+../../../../../../engine/client/library/clientObject/include/public
+../../../../../../engine/client/library/clientParticle/include/public
+../../../../../../engine/client/library/clientSkeletalAnimation/include/public
+../../../../../../engine/client/library/clientTerrain/include/public
+../../../../../../engine/client/library/clientTextureRenderer/include/public
+../../../../../../engine/client/library/clientUserInterface/include/public
+../../../../../../engine/client/library/clientBugReporting/include/public
+../../../../../../engine/shared/library/sharedCollision/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedGame/include/public
+../../../../../../engine/shared/library/sharedImage/include/public
+../../../../../../engine/shared/library/sharedInputMap/include/public
+../../../../../../engine/shared/library/sharedIoWin/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedObject/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedRegex/include/public
+../../../../../../engine/shared/library/sharedSkillSystem/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedTerrain/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../engine/shared/library/sharedXml/include/public
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/libEverQuestTCG/include/public
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/3rd/library/perforce/include
+../../../../../../external/3rd/library/pcre/4.1/win32/include
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/ui/include
+../../../../../../external/3rd/library/libMozilla/include/public
+../../../../../../external/ours/library/Unicode/include
+../../../../../../external/ours/library/UnicodeArchive/include/public
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../game/shared/library/swgSharedUtility/include/public
diff --git a/src/engine/client/application/NpcEditor/build/win32/includePaths_d.rsp b/src/engine/client/application/NpcEditor/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..7d114c6f7
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\NpcEditor\Debug
diff --git a/src/engine/client/application/NpcEditor/build/win32/includePaths_o.rsp b/src/engine/client/application/NpcEditor/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..a7a143160
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\NpcEditor\Optimized
diff --git a/src/engine/client/application/NpcEditor/build/win32/includePaths_r.rsp b/src/engine/client/application/NpcEditor/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..26ff37a20
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\NpcEditor\Release
diff --git a/src/engine/client/application/NpcEditor/build/win32/libraries.rsp b/src/engine/client/application/NpcEditor/build/win32/libraries.rsp
new file mode 100644
index 000000000..ba4ea5ebd
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/libraries.rsp
@@ -0,0 +1,22 @@
+qt-mt334.lib
+qtmain.lib
+Mss32.lib
+dpvs.lib
+ws2_32.lib
+dxguid.lib
+dsound.lib
+dinput8.lib
+oldnames.lib
+libpcre.a
+libclient.lib
+libsupp.lib
+librpc.lib
+libxml2-win32-release.lib
+winmm.lib
+mswsock.lib
+nspr4.lib
+plc4.lib
+profdirserviceprovider_s.lib
+xpcom.lib
+xul.lib
+vivoxSharedWrapper_release.lib
diff --git a/src/engine/client/application/NpcEditor/build/win32/libraries_d.rsp b/src/engine/client/application/NpcEditor/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..b06f09281
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/libraries_d.rsp
@@ -0,0 +1,6 @@
+VideoCapture_debug.lib
+ImageCapture_debug.lib
+Smart_debug.lib
+SoeUtil_debug.lib
+ZlibUtil_debug.lib
+picn20md.lib
diff --git a/src/engine/client/application/NpcEditor/build/win32/libraries_o.rsp b/src/engine/client/application/NpcEditor/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/libraries_o.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/NpcEditor/build/win32/libraries_r.rsp b/src/engine/client/application/NpcEditor/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/libraries_r.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/NpcEditor/build/win32/libraryPaths.rsp b/src/engine/client/application/NpcEditor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..963a333a9
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/libraryPaths.rsp
@@ -0,0 +1,16 @@
+..\..\..\..\..\..\external\3rd\library\miles\lib\win
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
+..\..\..\..\..\..\external\3rd\library\perforce\lib\win32
+..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+../../../../../../external/3rd/library/libMozilla/include/private/lib/release
+..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib
+../../../../../../external/3rd/library/videocapture/VideoCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/ImageCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/Smart/lib/win32
+../../../../../../external/3rd/library/videocapture/ZlibUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/SoeUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/PICTools/Lib/win32
diff --git a/src/engine/client/application/NpcEditor/build/win32/mocHeaders.rsp b/src/engine/client/application/NpcEditor/build/win32/mocHeaders.rsp
new file mode 100644
index 000000000..fdca3f26f
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/mocHeaders.rsp
@@ -0,0 +1,7 @@
+..\..\src\win32\GameWidget.h
+..\..\src\win32\MainWindow.h
+..\..\src\win32\CustomVariableWidget.h
+..\..\src\win32\NewNpcDialog.h
+..\..\src\win32\PaletteColorPicker.h
+..\..\src\win32\SaveDialog.h
+..\..\src\win32\TemplateConfigDialog.h
diff --git a/src/engine/client/application/NpcEditor/build/win32/settings.rsp b/src/engine/client/application/NpcEditor/build/win32/settings.rsp
new file mode 100644
index 000000000..d6fd67da2
--- /dev/null
+++ b/src/engine/client/application/NpcEditor/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+qt334 p4 noPchDirectory
+debugInline
diff --git a/src/engine/client/application/ParticleEditor/build/win32/ParticleEditor.vcproj b/src/engine/client/application/ParticleEditor/build/win32/ParticleEditor.vcproj
new file mode 100644
index 000000000..125783674
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/ParticleEditor.vcproj
@@ -0,0 +1,4211 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/ParticleEditor/build/win32/ParticleEditor.vcxproj b/src/engine/client/application/ParticleEditor/build/win32/ParticleEditor.vcxproj
new file mode 100644
index 000000000..81c446c99
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/ParticleEditor.vcxproj
@@ -0,0 +1,1470 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {B75AC10E-38CE-4E3E-9BA4-6A5915DE1C30}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\ParticleEditor\Debug;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstParticleEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_debug.lib;ImageCapture_debug.lib;Smart_debug.lib;SoeUtil_debug.lib;ZlibUtil_debug.lib;picn20md.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;MSVCRTD;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+ /SAFESEH:NO %(AdditionalOptions)
+ Enabled
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\ParticleEditor\Optimized;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstParticleEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;MSVCRTD;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\ParticleEditor\Release;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstParticleEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+
+
+
+
+
+
+
+
+ {ecbdfcff-f4ae-475a-aa90-729eb96430a0}
+ false
+
+
+ {20d2aee7-b60a-4ec9-b187-fa76062a6c39}
+ false
+
+
+ {03f3c054-f380-4618-be46-6e25061a3587}
+ false
+
+
+ {c6c1e14a-dedb-48c6-b028-0c9e4eff5dc4}
+ false
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {d4accb0c-7b66-433d-b715-8ef7f43b8e2d}
+ false
+
+
+ {9496a020-65ad-45a6-9acf-ae4f3358b027}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {d409a18e-f788-4f1b-bad1-ed58ee4d458f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {805a2fe0-7592-4f4e-bc23-a0d5abc624b4}
+ false
+
+
+ {eaa23f07-4419-4aed-83d2-06654119b6f6}
+ false
+
+
+ {950e9cf2-cd44-476c-826a-bb7869241f5b}
+ false
+
+
+ {fcc0f2b5-aade-4454-aff2-4d91365b4883}
+ false
+
+
+ {a378fab0-5b67-44bd-a3d8-815861792d6b}
+ false
+
+
+ {03a9a516-227e-49bb-a1c5-64b34cbddc66}
+ false
+
+
+ {20d4d8eb-87ca-4c5f-8ba3-ffc898563c40}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {882d8e54-0077-440b-94ac-762bde522e3b}
+ false
+
+
+ {2338795c-ce02-4902-bef4-53645a0c3267}
+ false
+
+
+ {aacbd5d6-d7dd-4ff9-8523-316ccf20115a}
+ false
+
+
+ {101cf34f-b5fd-4a14-a3e9-fd28078760be}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {ac1277c1-ce5a-4ece-9be3-6b4647b657a5}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {1d87a2e7-f0cf-42e9-bc38-846c53622c40}
+ false
+
+
+ {afa9ad0a-6e1a-4004-a1ff-8293eb957ef1}
+ false
+
+
+ {83ea2b87-762e-4ec6-bb06-2dcbae759d6e}
+ false
+
+
+ {ae9205dd-83fc-4f31-a5b3-70623b3107a1}
+ false
+
+
+ {070babeb-131a-4dc7-8621-69407c531f8e}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {6612cc35-6931-4ac6-a315-e955ca60b643}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {51e2988c-ce2d-42d7-a27c-06a322b4aac2}
+ false
+
+
+ {4af54aee-35f9-473c-8c2e-c24d2eedb17b}
+ false
+
+
+ {250a5957-7bb9-4f50-b0e9-19c87136977e}
+ false
+
+
+ {147d02d6-c76c-4058-863a-a9b3364c2047}
+ false
+
+
+ {f1b57bf8-072e-4e69-940a-c254a98da10d}
+ false
+
+
+ {d10d1a1a-6129-4ef1-b3d7-5c12ee53dfca}
+ false
+
+
+ {7c4b8a91-be83-4bfe-af94-f75ce39fe67d}
+ false
+
+
+ {82393d39-3807-4c87-932f-e3571616a7dd}
+ false
+
+
+ {97a83cde-723f-47de-a5c6-b779cf50ae9c}
+ false
+
+
+ {66bcfd48-0307-41fd-b4d9-9991bf572a27}
+ false
+
+
+ {2024a6b1-5e9a-4cc9-8243-7232f9b62264}
+ false
+
+
+ {f1fdc6af-af8c-42a5-826e-c66ae9cc6ca6}
+ false
+
+
+ {92605a4d-baa0-46e6-9733-6464f6578b6a}
+ false
+
+
+ {e89a79a9-8488-4d42-bf88-b9833f5607c0}
+ false
+
+
+ {2889f119-79c4-4ea7-893a-9e0bd5f871c8}
+ false
+
+
+ {cf3b1ee2-d965-44e1-9464-01297964f2cb}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/ParticleEditor/build/win32/ignoreLibraries.rsp b/src/engine/client/application/ParticleEditor/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..30d5d08e2
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,2 @@
+msvcrt
+libc
diff --git a/src/engine/client/application/ParticleEditor/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/ParticleEditor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..bd4ee297c
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1,2 @@
+libcmt
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/ParticleEditor/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/ParticleEditor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..bd4ee297c
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1,2 @@
+libcmt
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/ParticleEditor/build/win32/includePaths.rsp b/src/engine/client/application/ParticleEditor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..1d4586fc9
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/includePaths.rsp
@@ -0,0 +1,51 @@
+../../../../../../engine/client/library/clientAnimation/include/public
+../../../../../../engine/client/library/clientAudio/include/public
+../../../../../../engine/client/library/clientBugReporting/include/public
+../../../../../../engine/client/library/clientDirectInput/include/public
+../../../../../../engine/client/library/clientGame/include/public
+../../../../../../engine/client/library/clientGraphics/include/public
+../../../../../../engine/client/library/clientObject/include/public
+../../../../../../engine/client/library/clientParticle/include/public
+../../../../../../engine/client/library/clientSkeletalAnimation/include/public
+../../../../../../engine/client/library/clientTerrain/include/public
+../../../../../../engine/client/library/clientTextureRenderer/include/public
+../../../../../../engine/client/library/clientUserInterface/include/public
+../../../../../../engine/shared/library/sharedCollision/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedGame/include/public
+../../../../../../engine/shared/library/sharedImage/include/public
+../../../../../../engine/shared/library/sharedInputMap/include/public
+../../../../../../engine/shared/library/sharedIoWin/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedObject/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedRegex/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedTerrain/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../engine/shared/library/sharedXml/include/public
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/libEverQuestTCG/include/public
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/3rd/library/perforce/include
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/ui/include
+../../../../../../external/3rd/library/libMozilla/include/public
+../../../../../../external/ours/library/Unicode/include
+../../../../../../external/ours/library/UnicodeArchive/include/public
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../game/client/library/swgClientUserInterface/include/public
diff --git a/src/engine/client/application/ParticleEditor/build/win32/includePaths_d.rsp b/src/engine/client/application/ParticleEditor/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..ea51c6728
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\ParticleEditor\Debug
diff --git a/src/engine/client/application/ParticleEditor/build/win32/includePaths_o.rsp b/src/engine/client/application/ParticleEditor/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..8061f499f
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\ParticleEditor\Optimized
diff --git a/src/engine/client/application/ParticleEditor/build/win32/includePaths_r.rsp b/src/engine/client/application/ParticleEditor/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..1b6bf63f4
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\ParticleEditor\Release
diff --git a/src/engine/client/application/ParticleEditor/build/win32/libraries.rsp b/src/engine/client/application/ParticleEditor/build/win32/libraries.rsp
new file mode 100644
index 000000000..7f4c91a9b
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/libraries.rsp
@@ -0,0 +1,23 @@
+qt-mt334.lib
+qtmain.lib
+Mss32.lib
+dpvs.lib
+ws2_32.lib
+dxguid.lib
+dsound.lib
+dinput8.lib
+oldnames.lib
+libpcre.a
+libclient.lib
+libsupp.lib
+librpc.lib
+libxml2-win32-release.lib
+winmm.lib
+mswsock.lib
+lgLcd.lib
+nspr4.lib
+plc4.lib
+profdirserviceprovider_s.lib
+xpcom.lib
+xul.lib
+vivoxSharedWrapper_release.lib
diff --git a/src/engine/client/application/ParticleEditor/build/win32/libraries_d.rsp b/src/engine/client/application/ParticleEditor/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..b06f09281
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/libraries_d.rsp
@@ -0,0 +1,6 @@
+VideoCapture_debug.lib
+ImageCapture_debug.lib
+Smart_debug.lib
+SoeUtil_debug.lib
+ZlibUtil_debug.lib
+picn20md.lib
diff --git a/src/engine/client/application/ParticleEditor/build/win32/libraries_o.rsp b/src/engine/client/application/ParticleEditor/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/libraries_o.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/ParticleEditor/build/win32/libraries_r.rsp b/src/engine/client/application/ParticleEditor/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/libraries_r.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/ParticleEditor/build/win32/libraryPaths.rsp b/src/engine/client/application/ParticleEditor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..52577abad
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/libraryPaths.rsp
@@ -0,0 +1,17 @@
+..\..\..\..\..\..\external\3rd\library\miles\lib\win
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
+..\..\..\..\..\..\external\3rd\library\perforce\lib\win32
+..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\lcdui\lib
+../../../../../../external/3rd/library/libMozilla/include/private/lib/release
+..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib
+../../../../../../external/3rd/library/videocapture/VideoCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/ImageCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/Smart/lib/win32
+../../../../../../external/3rd/library/videocapture/ZlibUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/SoeUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/PICTools/Lib/win32
diff --git a/src/engine/client/application/ParticleEditor/build/win32/mocHeaders.rsp b/src/engine/client/application/ParticleEditor/build/win32/mocHeaders.rsp
new file mode 100644
index 000000000..8648c0205
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/mocHeaders.rsp
@@ -0,0 +1,29 @@
+..\..\src\win32\Attribute.h
+..\..\src\win32\AttributeEditor.h
+..\..\src\win32\AttributeViewParticleAttachment.h
+..\..\src\win32\AttributeWidgetParticleAttachment.h
+..\..\src\win32\ColorRampEdit.h
+..\..\src\win32\FadeDialog.h
+..\..\src\win32\FlatLineDialog.h
+..\..\src\win32\GameWidget.h
+..\..\src\win32\MainWindow.h
+..\..\src\win32\PEAttributeView.h
+..\..\src\win32\PEAttributeViewParticleEffect.h
+..\..\src\win32\PEAttributeViewParticleEffectGroup.h
+..\..\src\win32\PEAttributeViewParticleEmitter.h
+..\..\src\win32\PEAttributeViewParticleEmitterGroup.h
+..\..\src\win32\PEAttributeViewParticleMesh.h
+..\..\src\win32\PEAttributeViewParticleQuad.h
+..\..\src\win32\PEAttributeViewer.h
+..\..\src\win32\PEAttributeWidgetMesh.h
+..\..\src\win32\ParticleAttribute.h
+..\..\src\win32\ParticleEffectAttribute.h
+..\..\src\win32\ParticleEffectListViewer.h
+..\..\src\win32\ParticleEffectTransformEdit.h
+..\..\src\win32\ParticleEmitterAttribute.h
+..\..\src\win32\ParticleEmitterGroupAttribute.h
+..\..\src\win32\ParticleNameAttribute.h
+..\..\src\win32\ParticleTimingAttribute.h
+..\..\src\win32\SinWaveDialog.h
+..\..\src\win32\TextureAttribute.h
+..\..\src\win32\WaveFormEdit.h
diff --git a/src/engine/client/application/ParticleEditor/build/win32/settings.rsp b/src/engine/client/application/ParticleEditor/build/win32/settings.rsp
new file mode 100644
index 000000000..5becfca8e
--- /dev/null
+++ b/src/engine/client/application/ParticleEditor/build/win32/settings.rsp
@@ -0,0 +1,5 @@
+qt334
+p4
+noPchDirectory
+
+debugInline
diff --git a/src/engine/client/application/QuestEditor/build/win32/QuestEditor.vcproj b/src/engine/client/application/QuestEditor/build/win32/QuestEditor.vcproj
new file mode 100644
index 000000000..a3961084a
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/QuestEditor.vcproj
@@ -0,0 +1,2999 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/QuestEditor/build/win32/QuestEditor.vcxproj b/src/engine/client/application/QuestEditor/build/win32/QuestEditor.vcxproj
new file mode 100644
index 000000000..08ff95720
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/QuestEditor.vcxproj
@@ -0,0 +1,868 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {023405A9-B857-4555-B7A1-46813CBC19C4}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\QuestEditor\Debug;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstQuestEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libpcre.a;oldnames.lib;qt-mt334.lib;qtmain.lib;qui.lib;winmm.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;msvcrtd;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\QuestEditor\Optimized;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstQuestEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libpcre.a;oldnames.lib;qt-mt334.lib;qtmain.lib;qui.lib;winmm.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ msvcrtd;libcmt;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\QuestEditor\Release;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstQuestEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libpcre.a;oldnames.lib;qt-mt334.lib;qtmain.lib;qui.lib;winmm.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/QuestEditor/build/win32/ignoreLibraries.rsp b/src/engine/client/application/QuestEditor/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..30d5d08e2
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,2 @@
+msvcrt
+libc
diff --git a/src/engine/client/application/QuestEditor/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/QuestEditor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..644798bab
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1,2 @@
+libcmt
+msvcrtd
diff --git a/src/engine/client/application/QuestEditor/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/QuestEditor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..e9f9ca8b2
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1,2 @@
+msvcrtd
+libcmt
diff --git a/src/engine/client/application/QuestEditor/build/win32/includePaths.rsp b/src/engine/client/application/QuestEditor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..083c0db69
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/includePaths.rsp
@@ -0,0 +1,24 @@
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMemoryBlockManager/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../external/3rd/library/pcre/4.1/win32/include
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/Unicode/include
+../../../../../../external/ours/library/UnicodeArchive/include/public
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
diff --git a/src/engine/client/application/QuestEditor/build/win32/includePaths_d.rsp b/src/engine/client/application/QuestEditor/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..c33b811da
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\QuestEditor\Debug
diff --git a/src/engine/client/application/QuestEditor/build/win32/includePaths_o.rsp b/src/engine/client/application/QuestEditor/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..6c7172822
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\QuestEditor\Optimized
diff --git a/src/engine/client/application/QuestEditor/build/win32/includePaths_r.rsp b/src/engine/client/application/QuestEditor/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..f8635b5ff
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\QuestEditor\Release
diff --git a/src/engine/client/application/QuestEditor/build/win32/libraries.rsp b/src/engine/client/application/QuestEditor/build/win32/libraries.rsp
new file mode 100644
index 000000000..3c2ee41a2
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/libraries.rsp
@@ -0,0 +1,8 @@
+libpcre.a
+oldnames.lib
+qt-mt334.lib
+qtmain.lib
+qui.lib
+winmm.lib
+ws2_32.lib
+zlib.lib
diff --git a/src/engine/client/application/QuestEditor/build/win32/libraryPaths.rsp b/src/engine/client/application/QuestEditor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..b1da07b56
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/libraryPaths.rsp
@@ -0,0 +1,4 @@
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
+..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/client/application/QuestEditor/build/win32/mocHeaders.rsp b/src/engine/client/application/QuestEditor/build/win32/mocHeaders.rsp
new file mode 100644
index 000000000..31f410726
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/mocHeaders.rsp
@@ -0,0 +1,30 @@
+..\..\src\win32\ElementPropertyEditor.h
+..\..\src\win32\ListPropertyEditor.h
+..\..\src\win32\MainWindow.h
+..\..\src\win32\NodeDrag.h
+..\..\src\win32\PropertyList\PropertyBoolItem.h
+..\..\src\win32\PropertyList\PropertyColorItem.h
+..\..\src\win32\PropertyList\PropertyCoordItem.h
+..\..\src\win32\PropertyList\PropertyCursorItem.h
+..\..\src\win32\PropertyList\PropertyDateItem.h
+..\..\src\win32\PropertyList\PropertyDateTimeItem.h
+..\..\src\win32\PropertyList\PropertyDoubleItem.h
+..\..\src\win32\PropertyList\PropertyEnumItem.h
+..\..\src\win32\PropertyList\PropertyFileItem.h
+..\..\src\win32\PropertyList\PropertyFontItem.h
+..\..\src\win32\PropertyList\PropertyIntItem.h
+..\..\src\win32\PropertyList\PropertyKeySequenceItem.h
+..\..\src\win32\PropertyList\PropertyLayoutItem.h
+..\..\src\win32\PropertyList\PropertyList.h
+..\..\src\win32\PropertyList\PropertyListItem.h
+..\..\src\win32\PropertyList\PropertyPixmapItem.h
+..\..\src\win32\PropertyList\PropertySizePolicyItem.h
+..\..\src\win32\PropertyList\PropertyTextItem.h
+..\..\src\win32\PropertyList\PropertyTimeItem.h
+..\..\src\win32\PropertyCompoundItem.h
+..\..\src\win32\PropertyRelativeFileItem.h
+..\..\src\win32\QuestEditor.h
+..\..\src\win32\QuestInputStringValidator.h
+..\..\src\win32\TaskPropertyEditor.h
+..\..\src\win32\ToolProcess.h
+..\..\src\win32\TreeListView.h
diff --git a/src/engine/client/application/QuestEditor/build/win32/settings.rsp b/src/engine/client/application/QuestEditor/build/win32/settings.rsp
new file mode 100644
index 000000000..d6fd67da2
--- /dev/null
+++ b/src/engine/client/application/QuestEditor/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+qt334 p4 noPchDirectory
+debugInline
diff --git a/src/engine/client/application/RemoteDebugTool/build/linux/Makefile b/src/engine/client/application/RemoteDebugTool/build/linux/Makefile
new file mode 100644
index 000000000..590c2d330
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/linux/Makefile
@@ -0,0 +1,57 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOURCE=500 -D_GNU_SOURCE -DTRUE=TRUE $(PERSONAL_FLAGS)
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOURCE=500 -D_GNU_SOURCE -DTRUE=TRUE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+OUTPUT = remoteDebugTool
+
+DEBUG_LINK_FLAGS += -lpthread -lodbc -L/usr/lib/qt-3.0.3/lib -lqui -ldl
+RELEASE_LINK_FLAGS += -lpthread -lodbc -L/usr/lib/qt-3.0.3/lib -lqui -ldl
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ ../../include/private \
+ ../../include/public \
+ $(ARCHIVE_INCLUDE_PATH) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(SHARED_NETWORK_INCLUDE_PATH) \
+ $(CLIENT_REMOTE_DEBUG_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ /usr/lib/qt-3.0.3/include \
+
+DEBUG_LINK_LIBRARIES = \
+ $(CLIENT_REMOTE_DEBUG_DEBUG_LIB) \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(UNICODE_DEBUG_LIB)
+
+DEBUG_SHARED_LIBRARIES = \
+
+RELEASE_LINK_LIBRARIES = \
+ $(CLIENT_REMOTE_DEBUG_RELEASE_LIB) \
+ $(COMMON_ENGINE_RELEASE_LIBS) \
+ $(UNICODE_RELEASE_LIB)
+
+RELEASE_SHARED_LIBRARIES = \
+
+SHARED_SRC_LIST = $(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =
+SRC_LIST = $(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+debug_custom_step:
+release_custom_step:
+depend_custom_step:
+
+%.moc: %.h
+ moc -o $@ $<
+
+include ../../../../../build/shared_unix/application.mak
+
+
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/RemoteDebugTool.vcproj b/src/engine/client/application/RemoteDebugTool/build/win32/RemoteDebugTool.vcproj
new file mode 100644
index 000000000..9f19d4bd0
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/RemoteDebugTool.vcproj
@@ -0,0 +1,624 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/RemoteDebugTool.vcxproj b/src/engine/client/application/RemoteDebugTool/build/win32/RemoteDebugTool.vcxproj
new file mode 100644
index 000000000..bf67c0c08
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/RemoteDebugTool.vcxproj
@@ -0,0 +1,296 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {ABC58EA0-A1A3-4DBE-A5A3-E56582BC241D}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\RemoteDebugTool\Debug;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientDirectInput\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientParticle\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\client\library\clientUserInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIOWin\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\..\compile\win32\RemoteDebugTool;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstRemoteDebugTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ qt-mt334.lib;qtmain.lib;Mss32.lib;ws2_32.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\\3rd\library\regex\libs\regex\build\vc7-stlport;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;msvcrt;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\RemoteDebugTool\Optimized;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientDirectInput\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientParticle\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\client\library\clientUserInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIOWin\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\..\compile\win32\RemoteDebugTool;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstRemoteDebugTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ qt-mt334.lib;qtmain.lib;Mss32.lib;ws2_32.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\\3rd\library\regex\libs\regex\build\vc7-stlport;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;msvcrt;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\RemoteDebugTool\Release;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientDirectInput\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientParticle\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\client\library\clientUserInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIOWin\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\..\compile\win32\RemoteDebugTool;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstRemoteDebugTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ qt-mt334.lib;qtmain.lib;Mss32.lib;ws2_32.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\\3rd\library\regex\libs\regex\build\vc7-stlport;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ msvcrt;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc %(FullPath) -p ..\..\..\..\..\..\engine\client\application\remoteDebugTool\build\win32 -o $(TargetDir)..\%(Filename).moc
+
+ $(TargetDir)..\%(Filename).moc;%(Outputs)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc %(FullPath) -p ..\..\..\..\..\..\engine\client\application\remoteDebugTool\build\win32 -o $(TargetDir)..\%(Filename).moc
+
+ $(TargetDir)..\%(Filename).moc;%(Outputs)
+
+
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc %(FullPath) -p ..\..\..\..\..\..\engine\client\application\remoteDebugTool\build\win32 -o $(TargetDir)..\%(Filename).moc
+
+ $(TargetDir)..\%(Filename).moc;%(Outputs)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc %(FullPath) -p ..\..\..\..\..\..\engine\client\application\remoteDebugTool\build\win32 -o $(TargetDir)..\%(Filename).moc
+
+ $(TargetDir)..\%(Filename).moc;%(Outputs)
+
+
+
+
+
+
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/ignoreLibraries.rsp b/src/engine/client/application/RemoteDebugTool/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..dc2120aba
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,2 @@
+msvcrt
+
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/RemoteDebugTool/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/RemoteDebugTool/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/includePaths.rsp b/src/engine/client/application/RemoteDebugTool/build/win32/includePaths.rsp
new file mode 100644
index 000000000..2a3dc63cd
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/includePaths.rsp
@@ -0,0 +1,34 @@
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../client/library/clientAnimation/include/public
+../../../../../client/library/clientAudio/include/public
+../../../../../client/library/clientDirectInput/include/public
+../../../../../client/library/clientGame/include/public
+../../../../../client/library/clientGraphics/include/public
+../../../../../client/library/clientObject/include/public
+../../../../../client/library/clientParticle/include/public
+../../../../../client/library/clientSkeletalAnimation/include/public
+../../../../../client/library/clientTerrain/include/public
+../../../../../client/library/clientTextureRenderer/include/public
+../../../../../client/library/clientUserInterface/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedIOWin/include/public
+../../../../../shared/library/sharedImage/include/public
+../../../../../shared/library/sharedLog/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../../compile/win32/RemoteDebugTool
+../../src/shared
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/includePaths_d.rsp b/src/engine/client/application/RemoteDebugTool/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..db4443faa
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\RemoteDebugTool\Debug
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/includePaths_o.rsp b/src/engine/client/application/RemoteDebugTool/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..76010953f
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\RemoteDebugTool\Optimized
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/includePaths_r.rsp b/src/engine/client/application/RemoteDebugTool/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..81ccb73ce
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\RemoteDebugTool\Release
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/libraries.rsp b/src/engine/client/application/RemoteDebugTool/build/win32/libraries.rsp
new file mode 100644
index 000000000..294bef6a1
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/libraries.rsp
@@ -0,0 +1,4 @@
+qt-mt334.lib
+qtmain.lib
+Mss32.lib
+ws2_32.lib
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/libraryPaths.rsp b/src/engine/client/application/RemoteDebugTool/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..ffc13e3be
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/libraryPaths.rsp
@@ -0,0 +1,7 @@
+..\..\..\..\..\..\external\3rd\library\miles\lib\win
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\perforce\lib\win32
+..\..\..\..\..\..\external\\3rd\library\regex\libs\regex\build\vc7-stlport
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
diff --git a/src/engine/client/application/RemoteDebugTool/build/win32/settings.rsp b/src/engine/client/application/RemoteDebugTool/build/win32/settings.rsp
new file mode 100644
index 000000000..ff9b896d6
--- /dev/null
+++ b/src/engine/client/application/RemoteDebugTool/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+qt334 noPchDirectory
+debugInline
diff --git a/src/engine/client/application/ShaderBuilder/build/win32/ShaderBuilder.vcproj b/src/engine/client/application/ShaderBuilder/build/win32/ShaderBuilder.vcproj
new file mode 100644
index 000000000..b24e7ced0
--- /dev/null
+++ b/src/engine/client/application/ShaderBuilder/build/win32/ShaderBuilder.vcproj
@@ -0,0 +1,1525 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/ShaderBuilder/build/win32/ShaderBuilder.vcxproj b/src/engine/client/application/ShaderBuilder/build/win32/ShaderBuilder.vcxproj
new file mode 100644
index 000000000..49f4448e3
--- /dev/null
+++ b/src/engine/client/application/ShaderBuilder/build/win32/ShaderBuilder.vcxproj
@@ -0,0 +1,438 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {6B75D5AD-DEA7-491B-B93D-9D2C51CBF030}
+ MFCProj
+
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+ Application
+ v120
+ Static
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientBugReporting\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstShaderBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ d3d9.lib;d3dx9.lib;dxguid.lib;dsound.lib;dpvs.lib;ws2_32.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientBugReporting\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstShaderBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ d3d9.lib;d3dx9.lib;dxguid.lib;dsound.lib;dpvs.lib;ws2_32.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientBugReporting\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ true
+ FirstShaderBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ d3d9.lib;d3dx9.lib;dxguid.lib;dsound.lib;dpvs.lib;ws2_32.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {ecbdfcff-f4ae-475a-aa90-729eb96430a0}
+ false
+
+
+ {9496a020-65ad-45a6-9acf-ae4f3358b027}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {147d02d6-c76c-4058-863a-a9b3364c2047}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/ShaderBuilder/build/win32/ignoreLibraries.rsp b/src/engine/client/application/ShaderBuilder/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/client/application/ShaderBuilder/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/client/application/ShaderBuilder/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/ShaderBuilder/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/ShaderBuilder/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/ShaderBuilder/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/ShaderBuilder/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/ShaderBuilder/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/ShaderBuilder/build/win32/includePaths.rsp b/src/engine/client/application/ShaderBuilder/build/win32/includePaths.rsp
new file mode 100644
index 000000000..d38bf8433
--- /dev/null
+++ b/src/engine/client/application/ShaderBuilder/build/win32/includePaths.rsp
@@ -0,0 +1,24 @@
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/atlmfc/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../client/library/clientAudio/include/public
+../../../../../client/library/clientBugReporting/include/public
+../../../../../client/library/clientGraphics/include/public
+../../../../../client/library/clientObject/include/public
+../../../../../client/library/clientSkeletalAnimation/include/public
+../../../../../client/library/clientTextureRenderer/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedImage/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../include/private
diff --git a/src/engine/client/application/ShaderBuilder/build/win32/libraries.rsp b/src/engine/client/application/ShaderBuilder/build/win32/libraries.rsp
new file mode 100644
index 000000000..573b9a2c0
--- /dev/null
+++ b/src/engine/client/application/ShaderBuilder/build/win32/libraries.rsp
@@ -0,0 +1,6 @@
+d3d9.lib
+d3dx9.lib
+dxguid.lib
+dsound.lib
+dpvs.lib
+ws2_32.lib
diff --git a/src/engine/client/application/ShaderBuilder/build/win32/libraryPaths.rsp b/src/engine/client/application/ShaderBuilder/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..6641660fe
--- /dev/null
+++ b/src/engine/client/application/ShaderBuilder/build/win32/libraryPaths.rsp
@@ -0,0 +1,4 @@
+../../../../../../external/3rd/library/directx9/lib
+../../../../../../external/3rd/library/dpvs/lib/win32-x86
+../../../../../../external/3rd/library/atlmfc/lib/INTEL
+../../../../../../external/3rd/library/stlport453/lib/win32
diff --git a/src/engine/client/application/ShaderBuilder/build/win32/settings.rsp b/src/engine/client/application/ShaderBuilder/build/win32/settings.rsp
new file mode 100644
index 000000000..7ff1646c8
--- /dev/null
+++ b/src/engine/client/application/ShaderBuilder/build/win32/settings.rsp
@@ -0,0 +1,5 @@
+mfc
+noPchDirectory
+
+
+debugInline
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/ShipComponentEditor.vcproj b/src/engine/client/application/ShipComponentEditor/build/win32/ShipComponentEditor.vcproj
new file mode 100644
index 000000000..3722165a4
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/ShipComponentEditor.vcproj
@@ -0,0 +1,4074 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/ShipComponentEditor.vcxproj b/src/engine/client/application/ShipComponentEditor/build/win32/ShipComponentEditor.vcxproj
new file mode 100644
index 000000000..4b7958cb5
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/ShipComponentEditor.vcxproj
@@ -0,0 +1,1434 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {05515189-D04C-4A04-A2FF-89DE895817C8}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\ShipComponentEditor\Debug;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedTemplate\include\public;..\..\..\..\..\..\engine\shared\library\sharedTemplateDefinition\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstShipComponentEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ dinput8.lib;dpvs.lib;dsound.lib;dxguid.lib;libpcre.a;libxml2-win32-release.lib;mss32.lib;mswsock.lib;qt-mt334.lib;qtmain.lib;winmm.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;%(AdditionalLibraryDirectories)
+ libcmt;libc;libcd;msvcrt;msvcrtd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\ShipComponentEditor\Optimized;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedTemplate\include\public;..\..\..\..\..\..\engine\shared\library\sharedTemplateDefinition\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstShipComponentEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ dinput8.lib;dpvs.lib;dsound.lib;dxguid.lib;libpcre.a;libxml2-win32-release.lib;mss32.lib;mswsock.lib;qt-mt334.lib;qtmain.lib;winmm.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;%(AdditionalLibraryDirectories)
+ libcmt;libc;libcd;msvcrt;msvcrtd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\ShipComponentEditor\Release;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedTemplate\include\public;..\..\..\..\..\..\engine\shared\library\sharedTemplateDefinition\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstShipComponentEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ dinput8.lib;dpvs.lib;dsound.lib;dxguid.lib;libpcre.a;libxml2-win32-release.lib;mss32.lib;mswsock.lib;qt-mt334.lib;qtmain.lib;winmm.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;%(AdditionalLibraryDirectories)
+ libcmtd;libc;libcd;msvcrt;msvcrtd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+
+
+ {ecbdfcff-f4ae-475a-aa90-729eb96430a0}
+ false
+
+
+ {d4accb0c-7b66-433d-b715-8ef7f43b8e2d}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {fcc0f2b5-aade-4454-aff2-4d91365b4883}
+ false
+
+
+ {a378fab0-5b67-44bd-a3d8-815861792d6b}
+ false
+
+
+ {03a9a516-227e-49bb-a1c5-64b34cbddc66}
+ false
+
+
+ {20d4d8eb-87ca-4c5f-8ba3-ffc898563c40}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {882d8e54-0077-440b-94ac-762bde522e3b}
+ false
+
+
+ {2338795c-ce02-4902-bef4-53645a0c3267}
+ false
+
+
+ {aacbd5d6-d7dd-4ff9-8523-316ccf20115a}
+ false
+
+
+ {101cf34f-b5fd-4a14-a3e9-fd28078760be}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {ac1277c1-ce5a-4ece-9be3-6b4647b657a5}
+ false
+
+
+ {7d707a5a-cb70-4fd9-83d3-e1e921ae3381}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {1d87a2e7-f0cf-42e9-bc38-846c53622c40}
+ false
+
+
+ {afa9ad0a-6e1a-4004-a1ff-8293eb957ef1}
+ false
+
+
+ {83ea2b87-762e-4ec6-bb06-2dcbae759d6e}
+ false
+
+
+ {ae9205dd-83fc-4f31-a5b3-70623b3107a1}
+ false
+
+
+ {070babeb-131a-4dc7-8621-69407c531f8e}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {8e0fcf44-63b5-4137-9baa-a740eb10ed94}
+ false
+
+
+ {f547b62a-8f5c-48fc-9b3a-103736a41d03}
+ false
+
+
+ {6612cc35-6931-4ac6-a315-e955ca60b643}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {51e2988c-ce2d-42d7-a27c-06a322b4aac2}
+ false
+
+
+ {4af54aee-35f9-473c-8c2e-c24d2eedb17b}
+ false
+
+
+ {250a5957-7bb9-4f50-b0e9-19c87136977e}
+ false
+
+
+ {147d02d6-c76c-4058-863a-a9b3364c2047}
+ false
+
+
+ {f1b57bf8-072e-4e69-940a-c254a98da10d}
+ false
+
+
+ {d10d1a1a-6129-4ef1-b3d7-5c12ee53dfca}
+ false
+
+
+ {7c4b8a91-be83-4bfe-af94-f75ce39fe67d}
+ false
+
+
+ {82393d39-3807-4c87-932f-e3571616a7dd}
+ false
+
+
+ {97a83cde-723f-47de-a5c6-b779cf50ae9c}
+ false
+
+
+ {66bcfd48-0307-41fd-b4d9-9991bf572a27}
+ false
+
+
+ {2024a6b1-5e9a-4cc9-8243-7232f9b62264}
+ false
+
+
+ {f1fdc6af-af8c-42a5-826e-c66ae9cc6ca6}
+ false
+
+
+ {92605a4d-baa0-46e6-9733-6464f6578b6a}
+ false
+
+
+ {e89a79a9-8488-4d42-bf88-b9833f5607c0}
+ false
+
+
+ {2889f119-79c4-4ea7-893a-9e0bd5f871c8}
+ false
+
+
+ {cf3b1ee2-d965-44e1-9464-01297964f2cb}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..d37d498b3
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,4 @@
+libc
+libcd
+msvcrt
+msvcrtd
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries_r.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries_r.rsp
new file mode 100644
index 000000000..6ea17ceb5
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/ignoreLibraries_r.rsp
@@ -0,0 +1 @@
+libcmtd
\ No newline at end of file
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/includePaths.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..e57437d1c
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/includePaths.rsp
@@ -0,0 +1,40 @@
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../engine/client/library/clientAudio/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedGame/include/public
+../../../../../../engine/shared/library/sharedImage/include/public
+../../../../../../engine/shared/library/sharedInputMap/include/public
+../../../../../../engine/shared/library/sharedIoWin/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedTemplate/include/public
+../../../../../../engine/shared/library/sharedTemplateDefinition/include/public
+../../../../../../engine/shared/library/sharedObject/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../engine/server/library/serverGame/include/public
+../../../../../../engine/server/library/serverUtility/include/public
+../../../../../../engine/client/library/clientGame/include/public
+../../../../../../engine/client/library/clientSkeletalAnimation/include/public
+../../../../../../engine/client/library/clientGraphics/include/public
+../../../../../../engine/client/library/clientAnimation/include/public
+../../../../../../engine/client/library/clientObject/include/public
+../../../../../../engine/client/library/clientParticle/include/public
+../../../../../../engine/client/library/clientDirectInput/include/public
+../../../../../../engine/client/library/clientDirectInput/include/public
\ No newline at end of file
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/includePaths_d.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..e08f575fc
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\ShipComponentEditor\Debug
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/includePaths_o.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..e9e1d60cd
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\ShipComponentEditor\Optimized
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/includePaths_r.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..6dfe6dfdf
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\ShipComponentEditor\Release
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/libraries.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/libraries.rsp
new file mode 100644
index 000000000..035ba229a
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/libraries.rsp
@@ -0,0 +1,13 @@
+dinput8.lib
+dpvs.lib
+dsound.lib
+dxguid.lib
+libpcre.a
+libxml2-win32-release.lib
+mss32.lib
+mswsock.lib
+qt-mt334.lib
+qtmain.lib
+winmm.lib
+ws2_32.lib
+zlib.lib
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/libraryPaths.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..6fe32499a
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/libraryPaths.rsp
@@ -0,0 +1,8 @@
+../../../../../../external/3rd/library/directx9/lib
+../../../../../../external/3rd/library/dpvs/lib/win32-x86
+../../../../../../external/3rd/library/libxml2-2.6.7.win32/lib
+../../../../../../external/3rd/library/miles/lib/win
+../../../../../../external/3rd/library/pcre/4.1/win32/lib
+../../../../../../external/3rd/library/stlport453/lib/win32
+../../../../../../external/3rd/library/zlib/lib/win32
+../../../../../../external/3rd/library/qt/3.3.4/lib
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/mocHeaders.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/mocHeaders.rsp
new file mode 100644
index 000000000..0ebb2a43b
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/mocHeaders.rsp
@@ -0,0 +1,19 @@
+..\..\src\win32\AudioDebugWidget.h
+..\..\src\win32\SoundDebugInformationWidget.h
+..\..\src\win32\ShipComponentEditor.h
+..\..\src\win32\ChassisEditor.h
+..\..\src\win32\ChassisEditorList.h
+..\..\src\win32\ChassisEditorDetails.h
+..\..\src\win32\ComponentDescriptors.h
+..\..\src\win32\ComponentDescriptorsList.h
+..\..\src\win32\ComponentDescriptorsDetails.h
+..\..\src\win32\SoundGroupTemplateWidget.h
+..\..\src\win32\SoundTemplateWidget.h
+..\..\src\win32\ChassisNewDialog.h
+..\..\src\win32\TemplateNewDialog.h
+..\..\src\win32\CompatibilityEditor.h
+..\..\src\win32\CompatibilityConfirmDialog.h
+..\..\src\win32\AttachmentsChassisEditor.h
+..\..\src\win32\AttachmentsChassisEditorList.h
+..\..\src\win32\AttachmentsChassisEditorDetails.h
+..\..\src\win32\AttachmentsChooser.h
\ No newline at end of file
diff --git a/src/engine/client/application/ShipComponentEditor/build/win32/settings.rsp b/src/engine/client/application/ShipComponentEditor/build/win32/settings.rsp
new file mode 100644
index 000000000..41591a47d
--- /dev/null
+++ b/src/engine/client/application/ShipComponentEditor/build/win32/settings.rsp
@@ -0,0 +1,4 @@
+qt334
+noPchDirectory
+
+debugInline
diff --git a/src/engine/client/application/SoundEditor/build/win32/SoundEditor.vcproj b/src/engine/client/application/SoundEditor/build/win32/SoundEditor.vcproj
new file mode 100644
index 000000000..0ff55448e
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/SoundEditor.vcproj
@@ -0,0 +1,1439 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/SoundEditor/build/win32/SoundEditor.vcxproj b/src/engine/client/application/SoundEditor/build/win32/SoundEditor.vcxproj
new file mode 100644
index 000000000..7fc415236
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/SoundEditor.vcxproj
@@ -0,0 +1,490 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {4F6E5721-AE45-47D2-831E-269DF5AE4C69}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\SoundEditor\Debug;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstSoundEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-debug.lib;ws2_32.lib;mss32.lib;dpvs.lib;dxguid.lib;dsound.lib;dinput8.lib;qt-mt334.lib;qtmain.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\regex\libs\regex\build\vc7-stlport;..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;libcd;msvcrt;msvcrtd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+ /SAFESEH:NO %(AdditionalOptions)
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\SoundEditor\Optimized;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstSoundEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-release.lib;ws2_32.lib;mss32.lib;dpvs.lib;dxguid.lib;dsound.lib;dinput8.lib;qt-mt334.lib;qtmain.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\regex\libs\regex\build\vc7-stlport;..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;libcd;msvcrt;msvcrtd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\SoundEditor\Release;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstSoundEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-release.lib;ws2_32.lib;mss32.lib;dpvs.lib;dxguid.lib;dsound.lib;dinput8.lib;qt-mt334.lib;qtmain.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\regex\libs\regex\build\vc7-stlport;..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmtd;libc;libcd;msvcrt;msvcrtd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries.rsp b/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..d37d498b3
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,4 @@
+libc
+libcd
+msvcrt
+msvcrtd
diff --git a/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries_r.rsp b/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries_r.rsp
new file mode 100644
index 000000000..6ea17ceb5
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/ignoreLibraries_r.rsp
@@ -0,0 +1 @@
+libcmtd
\ No newline at end of file
diff --git a/src/engine/client/application/SoundEditor/build/win32/includePaths.rsp b/src/engine/client/application/SoundEditor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..63e0e11af
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/includePaths.rsp
@@ -0,0 +1,28 @@
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../engine/client/library/clientAudio/include/public
+../../../../../../engine/client/library/clientBugReporting/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedImage/include/public
+../../../../../../engine/shared/library/sharedInputMap/include/public
+../../../../../../engine/shared/library/sharedIoWin/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedObject/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
diff --git a/src/engine/client/application/SoundEditor/build/win32/includePaths_d.rsp b/src/engine/client/application/SoundEditor/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..405a07bdb
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\SoundEditor\Debug
diff --git a/src/engine/client/application/SoundEditor/build/win32/includePaths_o.rsp b/src/engine/client/application/SoundEditor/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..85e480997
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\SoundEditor\Optimized
diff --git a/src/engine/client/application/SoundEditor/build/win32/includePaths_r.rsp b/src/engine/client/application/SoundEditor/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..727d1d6a0
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\SoundEditor\Release
diff --git a/src/engine/client/application/SoundEditor/build/win32/libraries.rsp b/src/engine/client/application/SoundEditor/build/win32/libraries.rsp
new file mode 100644
index 000000000..3331519c9
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/libraries.rsp
@@ -0,0 +1,9 @@
+ws2_32.lib
+mss32.lib
+dpvs.lib
+dxguid.lib
+dsound.lib
+dinput8.lib
+qt-mt334.lib
+qtmain.lib
+mswsock.lib
diff --git a/src/engine/client/application/SoundEditor/build/win32/libraries_d.rsp b/src/engine/client/application/SoundEditor/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..22514643a
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/libraries_d.rsp
@@ -0,0 +1,2 @@
+libxml2-win32-debug.lib
+
diff --git a/src/engine/client/application/SoundEditor/build/win32/libraries_o.rsp b/src/engine/client/application/SoundEditor/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..969d25e20
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/libraries_o.rsp
@@ -0,0 +1,2 @@
+libxml2-win32-release.lib
+
diff --git a/src/engine/client/application/SoundEditor/build/win32/libraries_r.rsp b/src/engine/client/application/SoundEditor/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..969d25e20
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/libraries_r.rsp
@@ -0,0 +1,2 @@
+libxml2-win32-release.lib
+
diff --git a/src/engine/client/application/SoundEditor/build/win32/libraryPaths.rsp b/src/engine/client/application/SoundEditor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..be2575baf
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/libraryPaths.rsp
@@ -0,0 +1,8 @@
+..\..\..\..\..\..\external\3rd\library\miles\lib\win
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
+..\..\..\..\..\..\external\3rd\library\perforce\lib\win32
+..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc7-stlport
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
diff --git a/src/engine/client/application/SoundEditor/build/win32/mocHeaders.rsp b/src/engine/client/application/SoundEditor/build/win32/mocHeaders.rsp
new file mode 100644
index 000000000..a5a71af33
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/mocHeaders.rsp
@@ -0,0 +1,5 @@
+..\..\src\win32\AudioDebugWidget.h
+..\..\src\win32\SoundDebugInformationWidget.h
+..\..\src\win32\SoundEditor.h
+..\..\src\win32\SoundGroupTemplateWidget.h
+..\..\src\win32\SoundTemplateWidget.h
\ No newline at end of file
diff --git a/src/engine/client/application/SoundEditor/build/win32/settings.rsp b/src/engine/client/application/SoundEditor/build/win32/settings.rsp
new file mode 100644
index 000000000..41591a47d
--- /dev/null
+++ b/src/engine/client/application/SoundEditor/build/win32/settings.rsp
@@ -0,0 +1,4 @@
+qt334
+noPchDirectory
+
+debugInline
diff --git a/src/engine/client/application/SwooshEditor/build/win32/SwooshEditor.vcproj b/src/engine/client/application/SwooshEditor/build/win32/SwooshEditor.vcproj
new file mode 100644
index 000000000..c5ec84d46
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/SwooshEditor.vcproj
@@ -0,0 +1,717 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/SwooshEditor/build/win32/SwooshEditor.vcxproj b/src/engine/client/application/SwooshEditor/build/win32/SwooshEditor.vcxproj
new file mode 100644
index 000000000..10ecaa443
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/SwooshEditor.vcxproj
@@ -0,0 +1,286 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {0C54AD5C-87B2-43C6-A699-03A547FF6E03}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\SwooshEditor\Debug;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstSwooshEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_debug.lib;ImageCapture_debug.lib;Smart_debug.lib;SoeUtil_debug.lib;ZlibUtil_debug.lib;picn20md.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;MSVCRTD;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+ /SAFESEH:NO %(AdditionalOptions)
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\SwooshEditor\Optimized;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstSwooshEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;MSVCRTD;msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\SwooshEditor\Release;..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientTextureRenderer\include\public;..\..\..\..\..\..\engine\client\library\clientUserInterface\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedImage\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedRegex\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedXml\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\Unicode\include;..\..\..\..\..\..\external\ours\library\UnicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\game\client\library\swgClientQtWidgets\include\public;..\..\..\..\..\..\game\client\library\swgClientUserInterface\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;CASE_INSENSITIVE;OS_NT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstSwooshEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;qt-mt334.lib;qtmain.lib;Mss32.lib;dpvs.lib;ws2_32.lib;dxguid.lib;dsound.lib;dinput8.lib;oldnames.lib;libpcre.a;libclient.lib;libsupp.lib;librpc.lib;libxml2-win32-release.lib;winmm.lib;mswsock.lib;lgLcd.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\external\3rd\library\lcdui\lib;..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ msvcrt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+ Level3
+ true
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+ true
+
+
+ Level3
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/SwooshEditor/build/win32/ignoreLibraries.rsp b/src/engine/client/application/SwooshEditor/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..30d5d08e2
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,2 @@
+msvcrt
+libc
diff --git a/src/engine/client/application/SwooshEditor/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/SwooshEditor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..bd4ee297c
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1,2 @@
+libcmt
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/SwooshEditor/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/SwooshEditor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..bd4ee297c
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1,2 @@
+libcmt
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/SwooshEditor/build/win32/includePaths.rsp b/src/engine/client/application/SwooshEditor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..766b30451
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/includePaths.rsp
@@ -0,0 +1,55 @@
+../../../../../../engine/client/library/clientAnimation/include/public
+../../../../../../engine/client/library/clientAudio/include/public
+../../../../../../engine/client/library/clientBugReporting/include/public
+../../../../../../engine/client/library/clientDirectInput/include/public
+../../../../../../engine/client/library/clientGame/include/public
+../../../../../../engine/client/library/clientGraphics/include/public
+../../../../../../engine/client/library/clientObject/include/public
+../../../../../../engine/client/library/clientParticle/include/public
+../../../../../../engine/client/library/clientSkeletalAnimation/include/public
+../../../../../../engine/client/library/clientTerrain/include/public
+../../../../../../engine/client/library/clientTextureRenderer/include/public
+../../../../../../engine/client/library/clientUserInterface/include/public
+../../../../../../engine/shared/library/sharedCollision/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedGame/include/public
+../../../../../../engine/shared/library/sharedImage/include/public
+../../../../../../engine/shared/library/sharedInputMap/include/public
+../../../../../../engine/shared/library/sharedIoWin/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedObject/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedRegex/include/public
+../../../../../../engine/shared/library/sharedSkillSystem/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedTerrain/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../engine/shared/library/sharedXml/include/public
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/libEverQuestTCG/include/public
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/3rd/library/perforce/include
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/ui/include
+../../../../../../external/3rd/library/libMozilla/include/public
+../../../../../../external/ours/library/Unicode/include
+../../../../../../external/ours/library/UnicodeArchive/include/public
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../game/client/library/swgClientQtWidgets/include/public
+../../../../../../game/client/library/swgClientUserInterface/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
diff --git a/src/engine/client/application/SwooshEditor/build/win32/includePaths_d.rsp b/src/engine/client/application/SwooshEditor/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..e1c75ea04
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\SwooshEditor\Debug
diff --git a/src/engine/client/application/SwooshEditor/build/win32/includePaths_o.rsp b/src/engine/client/application/SwooshEditor/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..bdcf494ea
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\SwooshEditor\Optimized
diff --git a/src/engine/client/application/SwooshEditor/build/win32/includePaths_r.rsp b/src/engine/client/application/SwooshEditor/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..a1888e61b
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\SwooshEditor\Release
diff --git a/src/engine/client/application/SwooshEditor/build/win32/libraries.rsp b/src/engine/client/application/SwooshEditor/build/win32/libraries.rsp
new file mode 100644
index 000000000..7f4c91a9b
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/libraries.rsp
@@ -0,0 +1,23 @@
+qt-mt334.lib
+qtmain.lib
+Mss32.lib
+dpvs.lib
+ws2_32.lib
+dxguid.lib
+dsound.lib
+dinput8.lib
+oldnames.lib
+libpcre.a
+libclient.lib
+libsupp.lib
+librpc.lib
+libxml2-win32-release.lib
+winmm.lib
+mswsock.lib
+lgLcd.lib
+nspr4.lib
+plc4.lib
+profdirserviceprovider_s.lib
+xpcom.lib
+xul.lib
+vivoxSharedWrapper_release.lib
diff --git a/src/engine/client/application/SwooshEditor/build/win32/libraries_d.rsp b/src/engine/client/application/SwooshEditor/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..b06f09281
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/libraries_d.rsp
@@ -0,0 +1,6 @@
+VideoCapture_debug.lib
+ImageCapture_debug.lib
+Smart_debug.lib
+SoeUtil_debug.lib
+ZlibUtil_debug.lib
+picn20md.lib
diff --git a/src/engine/client/application/SwooshEditor/build/win32/libraries_o.rsp b/src/engine/client/application/SwooshEditor/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/libraries_o.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/SwooshEditor/build/win32/libraries_r.rsp b/src/engine/client/application/SwooshEditor/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/libraries_r.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/SwooshEditor/build/win32/libraryPaths.rsp b/src/engine/client/application/SwooshEditor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..52577abad
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/libraryPaths.rsp
@@ -0,0 +1,17 @@
+..\..\..\..\..\..\external\3rd\library\miles\lib\win
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
+..\..\..\..\..\..\external\3rd\library\perforce\lib\win32
+..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\lcdui\lib
+../../../../../../external/3rd/library/libMozilla/include/private/lib/release
+..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib
+../../../../../../external/3rd/library/videocapture/VideoCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/ImageCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/Smart/lib/win32
+../../../../../../external/3rd/library/videocapture/ZlibUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/SoeUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/PICTools/Lib/win32
diff --git a/src/engine/client/application/SwooshEditor/build/win32/mocHeaders.rsp b/src/engine/client/application/SwooshEditor/build/win32/mocHeaders.rsp
new file mode 100644
index 000000000..643ab4efd
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/mocHeaders.rsp
@@ -0,0 +1,2 @@
+..\..\src\win32\SwooshEditorGameWidget.h
+..\..\src\win32\MainWindow.h
diff --git a/src/engine/client/application/SwooshEditor/build/win32/settings.rsp b/src/engine/client/application/SwooshEditor/build/win32/settings.rsp
new file mode 100644
index 000000000..d6fd67da2
--- /dev/null
+++ b/src/engine/client/application/SwooshEditor/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+qt334 p4 noPchDirectory
+debugInline
diff --git a/src/engine/client/application/TemplateEditor/build/win32/TemplateEditor.vcproj b/src/engine/client/application/TemplateEditor/build/win32/TemplateEditor.vcproj
new file mode 100644
index 000000000..e9fd8760b
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/TemplateEditor.vcproj
@@ -0,0 +1,2167 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/TemplateEditor/build/win32/ignoreLibraries.rsp b/src/engine/client/application/TemplateEditor/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..30d5d08e2
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,2 @@
+msvcrt
+libc
diff --git a/src/engine/client/application/TemplateEditor/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/TemplateEditor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/TemplateEditor/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/TemplateEditor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/TemplateEditor/build/win32/includePaths.rsp b/src/engine/client/application/TemplateEditor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..3fec5e7a5
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/includePaths.rsp
@@ -0,0 +1,25 @@
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/perforce/include
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/regex
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedTemplate/include/public
+../../../../../shared/library/sharedTemplateDefinition/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
diff --git a/src/engine/client/application/TemplateEditor/build/win32/includePaths_d.rsp b/src/engine/client/application/TemplateEditor/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..1cd68b465
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\TemplateEditor\Debug
diff --git a/src/engine/client/application/TemplateEditor/build/win32/includePaths_o.rsp b/src/engine/client/application/TemplateEditor/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..9681fc6f8
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\TemplateEditor\Optimized
diff --git a/src/engine/client/application/TemplateEditor/build/win32/includePaths_r.rsp b/src/engine/client/application/TemplateEditor/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..50bb1ddd1
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\TemplateEditor\Release
diff --git a/src/engine/client/application/TemplateEditor/build/win32/libraries.rsp b/src/engine/client/application/TemplateEditor/build/win32/libraries.rsp
new file mode 100644
index 000000000..4ba9ae3a9
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/libraries.rsp
@@ -0,0 +1,7 @@
+ws2_32.lib
+libclient.lib
+librpc.lib
+libsupp.lib
+qt-mt334.lib
+qtmain.lib
+zlib.lib
diff --git a/src/engine/client/application/TemplateEditor/build/win32/libraryPaths.rsp b/src/engine/client/application/TemplateEditor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..9f79905a5
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/libraryPaths.rsp
@@ -0,0 +1,6 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc6-stlport
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
+..\..\..\..\..\..\external\3rd\library\perforce\lib\win32
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/client/application/TemplateEditor/build/win32/mocHeaders.rsp b/src/engine/client/application/TemplateEditor/build/win32/mocHeaders.rsp
new file mode 100644
index 000000000..81ec619a4
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/mocHeaders.rsp
@@ -0,0 +1,12 @@
+..\..\src\shared\BaseDialogEdit.h
+..\..\src\shared\DynamicListDialog.h
+..\..\src\shared\FilenameDialogEdit.h
+..\..\src\shared\FloatEdit.h
+..\..\src\shared\FloatRangeDialog.h
+..\..\src\shared\IntegerRangeDialog.h
+..\..\src\shared\TemplateEditor.h
+..\..\src\shared\TemplateEditorManager.h
+..\..\src\shared\TemplateTable.h
+..\..\src\shared\TemplateTableRow.h
+..\..\src\shared\TemplateVerificationDialog.h
+..\..\src\shared\WeightedListDialog.h
diff --git a/src/engine/client/application/TemplateEditor/build/win32/settings.rsp b/src/engine/client/application/TemplateEditor/build/win32/settings.rsp
new file mode 100644
index 000000000..d6fd67da2
--- /dev/null
+++ b/src/engine/client/application/TemplateEditor/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+qt334 p4 noPchDirectory
+debugInline
diff --git a/src/engine/client/application/TerrainEditor/build/win32/TerrainEditor.vcproj b/src/engine/client/application/TerrainEditor/build/win32/TerrainEditor.vcproj
new file mode 100644
index 000000000..fe8e8c4f5
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/TerrainEditor.vcproj
@@ -0,0 +1,4545 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/TerrainEditor/build/win32/TerrainEditor.vcxproj b/src/engine/client/application/TerrainEditor/build/win32/TerrainEditor.vcxproj
new file mode 100644
index 000000000..d89219225
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/TerrainEditor.vcxproj
@@ -0,0 +1,697 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {513A5071-8AAE-45CD-B58F-FA81F48137A0}
+ MFCProj
+
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+ Application
+ v120
+ Static
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientBugReporting\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientParticle\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstTerrainEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ VideoCapture_debug.lib;ImageCapture_debug.lib;Smart_debug.lib;SoeUtil_debug.lib;ZlibUtil_debug.lib;picn20md.lib;dxguid.lib;dsound.lib;dpvs.lib;libxml2-win32-release.lib;mss32.lib;ws2_32.lib;winmm.lib;dinput8.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientBugReporting\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientParticle\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstTerrainEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;dxguid.lib;dsound.lib;dpvs.lib;libxml2-win32-release.lib;mss32.lib;ws2_32.lib;winmm.lib;dinput8.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientBugReporting\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientParticle\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ true
+ FirstTerrainEditor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;dxguid.lib;dsound.lib;dpvs.lib;libxml2-win32-release.lib;mss32.lib;ws2_32.lib;winmm.lib;dinput8.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/TerrainEditor/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/TerrainEditor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..1135df202
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1,2 @@
+libcmt
+libc
diff --git a/src/engine/client/application/TerrainEditor/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/TerrainEditor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..1135df202
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1,2 @@
+libcmt
+libc
diff --git a/src/engine/client/application/TerrainEditor/build/win32/ignoreLibraries_r.rsp b/src/engine/client/application/TerrainEditor/build/win32/ignoreLibraries_r.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/ignoreLibraries_r.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/client/application/TerrainEditor/build/win32/includePaths.rsp b/src/engine/client/application/TerrainEditor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..4c98bdbe5
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/includePaths.rsp
@@ -0,0 +1,29 @@
+../../../../../../external/3rd/library/atlmfc/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../client/library/clientAnimation/include/public
+../../../../../client/library/clientAudio/include/public
+../../../../../client/library/clientBugReporting/include/public
+../../../../../client/library/clientGraphics/include/public
+../../../../../client/library/clientObject/include/public
+../../../../../client/library/clientParticle/include/public
+../../../../../client/library/clientSkeletalAnimation/include/public
+../../../../../client/library/clientTextureRenderer/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedFractal/include/public
+../../../../../shared/library/sharedImage/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../src/win32
+../../src/win32/external
diff --git a/src/engine/client/application/TerrainEditor/build/win32/libraries.rsp b/src/engine/client/application/TerrainEditor/build/win32/libraries.rsp
new file mode 100644
index 000000000..e1832c471
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/libraries.rsp
@@ -0,0 +1,8 @@
+dxguid.lib
+dsound.lib
+dpvs.lib
+libxml2-win32-release.lib
+mss32.lib
+ws2_32.lib
+winmm.lib
+dinput8.lib
diff --git a/src/engine/client/application/TerrainEditor/build/win32/libraries_d.rsp b/src/engine/client/application/TerrainEditor/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..b06f09281
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/libraries_d.rsp
@@ -0,0 +1,6 @@
+VideoCapture_debug.lib
+ImageCapture_debug.lib
+Smart_debug.lib
+SoeUtil_debug.lib
+ZlibUtil_debug.lib
+picn20md.lib
diff --git a/src/engine/client/application/TerrainEditor/build/win32/libraries_o.rsp b/src/engine/client/application/TerrainEditor/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/libraries_o.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/TerrainEditor/build/win32/libraries_r.rsp b/src/engine/client/application/TerrainEditor/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/libraries_r.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/TerrainEditor/build/win32/libraryPaths.rsp b/src/engine/client/application/TerrainEditor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..7bac14202
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/libraryPaths.rsp
@@ -0,0 +1,12 @@
+..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
+..\..\..\..\..\..\external\3rd\library\miles\lib\win
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+../../../../../../external/3rd/library/videocapture/VideoCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/ImageCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/Smart/lib/win32
+../../../../../../external/3rd/library/videocapture/ZlibUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/SoeUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/PICTools/Lib/win32
diff --git a/src/engine/client/application/TerrainEditor/build/win32/settings.rsp b/src/engine/client/application/TerrainEditor/build/win32/settings.rsp
new file mode 100644
index 000000000..207fd6f02
--- /dev/null
+++ b/src/engine/client/application/TerrainEditor/build/win32/settings.rsp
@@ -0,0 +1,4 @@
+mfc
+noPchDirectory
+
+debugInline
diff --git a/src/engine/client/application/TextureBuilder/build/win32/TextureBuilder.reg b/src/engine/client/application/TextureBuilder/build/win32/TextureBuilder.reg
new file mode 100644
index 000000000..6411df380
--- /dev/null
+++ b/src/engine/client/application/TextureBuilder/build/win32/TextureBuilder.reg
@@ -0,0 +1,14 @@
+REGEDIT
+; This .REG file may be used by your SETUP program.
+; If a SETUP program is not available, the entries below will be
+; registered in your InitInstance automatically with a call to
+; CWinApp::RegisterShellFileTypes and COleObjectFactory::UpdateRegistryAll.
+
+HKEY_CLASSES_ROOT\.tbw = TextureBuilder.Document
+HKEY_CLASSES_ROOT\TextureBuilder.Document\shell\open\command = TEXTUREBUILDER.EXE %1
+HKEY_CLASSES_ROOT\TextureBuilder.Document\shell\open\ddeexec = [open("%1")]
+HKEY_CLASSES_ROOT\TextureBuilder.Document\shell\open\ddeexec\application = TEXTUREBUILDER
+ ; note: the application is optional
+ ; (it defaults to the app name in "command")
+
+HKEY_CLASSES_ROOT\TextureBuilder.Document = Textur Document
diff --git a/src/engine/client/application/TextureBuilder/build/win32/TextureBuilder.vcproj b/src/engine/client/application/TextureBuilder/build/win32/TextureBuilder.vcproj
new file mode 100644
index 000000000..f840216dd
--- /dev/null
+++ b/src/engine/client/application/TextureBuilder/build/win32/TextureBuilder.vcproj
@@ -0,0 +1,1697 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/TextureBuilder/build/win32/TextureBuilder.vcxproj b/src/engine/client/application/TextureBuilder/build/win32/TextureBuilder.vcxproj
new file mode 100644
index 000000000..53be2e573
--- /dev/null
+++ b/src/engine/client/application/TextureBuilder/build/win32/TextureBuilder.vcxproj
@@ -0,0 +1,370 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {AEAEB11D-D4E6-444A-AD71-F78DA7F9BD95}
+ MFCProj
+
+
+
+ Application
+ v120
+ Static
+ Unicode
+
+
+ Application
+ v120
+ Static
+ Unicode
+
+
+ Application
+ v120
+ Static
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstTextureBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ VideoCapture_debug.lib;ImageCapture_debug.lib;Smart_debug.lib;SoeUtil_debug.lib;ZlibUtil_debug.lib;picn20md.lib;dxguid.lib;dsound.lib;dpvs.lib;ws2_32.lib;winmm.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstTextureBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;dxguid.lib;dsound.lib;dpvs.lib;ws2_32.lib;winmm.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ true
+ FirstTextureBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;dxguid.lib;dsound.lib;dpvs.lib;ws2_32.lib;winmm.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/TextureBuilder/build/win32/ignoreLibraries.rsp b/src/engine/client/application/TextureBuilder/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/client/application/TextureBuilder/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/client/application/TextureBuilder/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/TextureBuilder/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/TextureBuilder/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/TextureBuilder/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/TextureBuilder/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/TextureBuilder/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/TextureBuilder/build/win32/includePaths.rsp b/src/engine/client/application/TextureBuilder/build/win32/includePaths.rsp
new file mode 100644
index 000000000..326ac4f94
--- /dev/null
+++ b/src/engine/client/application/TextureBuilder/build/win32/includePaths.rsp
@@ -0,0 +1,27 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/atlmfc/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../client/library/clientAnimation/include/public
+../../../../../client/library/clientAudio/include/public
+../../../../../client/library/clientGame/include/public
+../../../../../client/library/clientGraphics/include/public
+../../../../../client/library/clientObject/include/public
+../../../../../client/library/clientSkeletalAnimation/include/public
+../../../../../client/library/clientTerrain/include/public
+../../../../../client/library/clientTextureRenderer/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedImage/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../src/win32
diff --git a/src/engine/client/application/TextureBuilder/build/win32/libraries.rsp b/src/engine/client/application/TextureBuilder/build/win32/libraries.rsp
new file mode 100644
index 000000000..eb3ebef47
--- /dev/null
+++ b/src/engine/client/application/TextureBuilder/build/win32/libraries.rsp
@@ -0,0 +1,5 @@
+dxguid.lib
+dsound.lib
+dpvs.lib
+ws2_32.lib
+winmm.lib
diff --git a/src/engine/client/application/TextureBuilder/build/win32/libraries_r.rsp b/src/engine/client/application/TextureBuilder/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/TextureBuilder/build/win32/libraries_r.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/TextureBuilder/build/win32/libraryPaths.rsp b/src/engine/client/application/TextureBuilder/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..7665a618d
--- /dev/null
+++ b/src/engine/client/application/TextureBuilder/build/win32/libraryPaths.rsp
@@ -0,0 +1,10 @@
+..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+../../../../../../external/3rd/library/videocapture/VideoCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/ImageCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/Smart/lib/win32
+../../../../../../external/3rd/library/videocapture/ZlibUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/SoeUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/PICTools/Lib/win32
diff --git a/src/engine/client/application/TextureBuilder/build/win32/settings.rsp b/src/engine/client/application/TextureBuilder/build/win32/settings.rsp
new file mode 100644
index 000000000..1fb60a649
--- /dev/null
+++ b/src/engine/client/application/TextureBuilder/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+mfc
+noPchDirectory
+debugInline
diff --git a/src/engine/client/application/ViewIff/build/win32/ViewIff.vcproj b/src/engine/client/application/ViewIff/build/win32/ViewIff.vcproj
new file mode 100644
index 000000000..9dc5b9032
--- /dev/null
+++ b/src/engine/client/application/ViewIff/build/win32/ViewIff.vcproj
@@ -0,0 +1,561 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/ViewIff/build/win32/ViewIff.vcxproj b/src/engine/client/application/ViewIff/build/win32/ViewIff.vcxproj
new file mode 100644
index 000000000..0c8daec1b
--- /dev/null
+++ b/src/engine/client/application/ViewIff/build/win32/ViewIff.vcxproj
@@ -0,0 +1,239 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {E1D87320-A777-4672-81BB-CE14321097B0}
+ MFCProj
+
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+ Application
+ v120
+ Static
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstViewIff.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ dxguid.lib;dpvs.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstViewIff.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ dxguid.lib;dpvs.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ true
+ FirstViewIff.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ dxguid.lib;dpvs.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/ViewIff/build/win32/ignoreLibraries.rsp b/src/engine/client/application/ViewIff/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/client/application/ViewIff/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/client/application/ViewIff/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/ViewIff/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/ViewIff/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/ViewIff/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/ViewIff/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/ViewIff/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/ViewIff/build/win32/includePaths.rsp b/src/engine/client/application/ViewIff/build/win32/includePaths.rsp
new file mode 100644
index 000000000..69a961c2d
--- /dev/null
+++ b/src/engine/client/application/ViewIff/build/win32/includePaths.rsp
@@ -0,0 +1,13 @@
+../../../../../../external/3rd/library/atlmfc/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../src/win32
diff --git a/src/engine/client/application/ViewIff/build/win32/libraries.rsp b/src/engine/client/application/ViewIff/build/win32/libraries.rsp
new file mode 100644
index 000000000..e12bb90b6
--- /dev/null
+++ b/src/engine/client/application/ViewIff/build/win32/libraries.rsp
@@ -0,0 +1,4 @@
+dxguid.lib
+dpvs.lib
+ws2_32.lib
+zlib.lib
diff --git a/src/engine/client/application/ViewIff/build/win32/libraryPaths.rsp b/src/engine/client/application/ViewIff/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..1378d4976
--- /dev/null
+++ b/src/engine/client/application/ViewIff/build/win32/libraryPaths.rsp
@@ -0,0 +1,5 @@
+..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/client/application/ViewIff/build/win32/settings.rsp b/src/engine/client/application/ViewIff/build/win32/settings.rsp
new file mode 100644
index 000000000..0ff9cdf6c
--- /dev/null
+++ b/src/engine/client/application/ViewIff/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+mfc
+noPchDirectory
+debugInline
diff --git a/src/engine/client/application/Viewer/build/win32/Viewer.vcproj b/src/engine/client/application/Viewer/build/win32/Viewer.vcproj
new file mode 100644
index 000000000..d52b62828
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/Viewer.vcproj
@@ -0,0 +1,1178 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/Viewer/build/win32/Viewer.vcxproj b/src/engine/client/application/Viewer/build/win32/Viewer.vcxproj
new file mode 100644
index 000000000..687f71f36
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/Viewer.vcxproj
@@ -0,0 +1,314 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {5FBD3891-61E3-4A49-92FE-CD8225577628}
+ MFCProj
+
+
+
+ Application
+ v120
+ Static
+ Unicode
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientBugReporting\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientParticle\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\include\private;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstViewer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ VideoCapture_debug.lib;ImageCapture_debug.lib;Smart_debug.lib;SoeUtil_debug.lib;ZlibUtil_debug.lib;picn20md.lib;dxguid.lib;dsound.lib;dpvs.lib;dinput8.lib;libxml2-win32-release.lib;mss32.lib;ws2_32.lib;winmm.lib;mswsock.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;MSVCRTD;libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientBugReporting\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientParticle\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\include\private;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstViewer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;dxguid.lib;dsound.lib;dpvs.lib;dinput8.lib;libxml2-win32-release.lib;mss32.lib;ws2_32.lib;winmm.lib;mswsock.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;MSVCRTD;libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\client\library\clientAnimation\include\public;..\..\..\..\..\client\library\clientAudio\include\public;..\..\..\..\..\client\library\clientBugReporting\include\public;..\..\..\..\..\client\library\clientGame\include\public;..\..\..\..\..\client\library\clientGraphics\include\public;..\..\..\..\..\client\library\clientObject\include\public;..\..\..\..\..\client\library\clientParticle\include\public;..\..\..\..\..\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\client\library\clientTerrain\include\public;..\..\..\..\..\client\library\clientTextureRenderer\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\include\private;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ true
+ FirstViewer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ VideoCapture_release.lib;ImageCapture_release.lib;Smart_release.lib;SoeUtil_release.lib;ZlibUtil_release.lib;picn20m.lib;dxguid.lib;dsound.lib;dpvs.lib;dinput8.lib;libxml2-win32-release.lib;mss32.lib;ws2_32.lib;winmm.lib;mswsock.lib;nspr4.lib;plc4.lib;profdirserviceprovider_s.lib;xpcom.lib;xul.lib;vivoxSharedWrapper_release.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\libMozilla\include\private\lib\release;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\lib;..\..\..\..\..\..\external\3rd\library\videocapture\VideoCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ImageCapture\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\Smart\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\ZlibUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\SoeUtil\lib\win32;..\..\..\..\..\..\external\3rd\library\videocapture\PICTools\Lib\win32;%(AdditionalLibraryDirectories)
+ libc;MSVCRT;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+ false
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/Viewer/build/win32/ignoreLibraries.rsp b/src/engine/client/application/Viewer/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..67a40c6b6
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,2 @@
+libc
+MSVCRT
\ No newline at end of file
diff --git a/src/engine/client/application/Viewer/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/Viewer/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..bd4ee297c
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1,2 @@
+libcmt
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/Viewer/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/Viewer/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..bd4ee297c
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1,2 @@
+libcmt
+MSVCRTD
\ No newline at end of file
diff --git a/src/engine/client/application/Viewer/build/win32/includePaths.rsp b/src/engine/client/application/Viewer/build/win32/includePaths.rsp
new file mode 100644
index 000000000..87be54356
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/includePaths.rsp
@@ -0,0 +1,43 @@
+../../../../../../external/3rd/library/atlmfc/include
+../../../../../../external/3rd/library/libEverQuestTCG/include/public
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/libMozilla/include/public
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../client/library/clientAnimation/include/public
+../../../../../client/library/clientAudio/include/public
+../../../../../client/library/clientBugReporting/include/public
+../../../../../client/library/clientGame/include/public
+../../../../../client/library/clientGraphics/include/public
+../../../../../client/library/clientObject/include/public
+../../../../../client/library/clientParticle/include/public
+../../../../../client/library/clientSkeletalAnimation/include/public
+../../../../../client/library/clientTerrain/include/public
+../../../../../client/library/clientTextureRenderer/include/public
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedImage/include/public
+../../../../../shared/library/sharedLog/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedPathfinding/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../../../shared/library/sharedXml/include/public
+../../include/private
diff --git a/src/engine/client/application/Viewer/build/win32/libraries.rsp b/src/engine/client/application/Viewer/build/win32/libraries.rsp
new file mode 100644
index 000000000..30add6198
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/libraries.rsp
@@ -0,0 +1,15 @@
+dxguid.lib
+dsound.lib
+dpvs.lib
+dinput8.lib
+libxml2-win32-release.lib
+mss32.lib
+ws2_32.lib
+winmm.lib
+mswsock.lib
+nspr4.lib
+plc4.lib
+profdirserviceprovider_s.lib
+xpcom.lib
+xul.lib
+vivoxSharedWrapper_release.lib
diff --git a/src/engine/client/application/Viewer/build/win32/libraries_d.rsp b/src/engine/client/application/Viewer/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..b06f09281
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/libraries_d.rsp
@@ -0,0 +1,6 @@
+VideoCapture_debug.lib
+ImageCapture_debug.lib
+Smart_debug.lib
+SoeUtil_debug.lib
+ZlibUtil_debug.lib
+picn20md.lib
diff --git a/src/engine/client/application/Viewer/build/win32/libraries_o.rsp b/src/engine/client/application/Viewer/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/libraries_o.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/Viewer/build/win32/libraries_r.rsp b/src/engine/client/application/Viewer/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..827bb7130
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/libraries_r.rsp
@@ -0,0 +1,6 @@
+VideoCapture_release.lib
+ImageCapture_release.lib
+Smart_release.lib
+SoeUtil_release.lib
+ZlibUtil_release.lib
+picn20m.lib
diff --git a/src/engine/client/application/Viewer/build/win32/libraryPaths.rsp b/src/engine/client/application/Viewer/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..dc1884568
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/libraryPaths.rsp
@@ -0,0 +1,14 @@
+../../../../../../external/3rd/library/directx9/lib
+../../../../../../external/3rd/library/dpvs/lib/win32-x86
+../../../../../../external/3rd/library/libxml2-2.6.7.win32/lib
+../../../../../../external/3rd/library/atlmfc/lib/INTEL
+../../../../../../external/3rd/library/miles/lib/win
+../../../../../../external/3rd/library/stlport453/lib/win32
+../../../../../../external/3rd/library/libMozilla/include/private/lib/release
+../../../../../../external/3rd/library/vivoxSharedWrapper/lib
+../../../../../../external/3rd/library/videocapture/VideoCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/ImageCapture/lib/win32
+../../../../../../external/3rd/library/videocapture/Smart/lib/win32
+../../../../../../external/3rd/library/videocapture/ZlibUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/SoeUtil/lib/win32
+../../../../../../external/3rd/library/videocapture/PICTools/Lib/win32
diff --git a/src/engine/client/application/Viewer/build/win32/settings.rsp b/src/engine/client/application/Viewer/build/win32/settings.rsp
new file mode 100644
index 000000000..207fd6f02
--- /dev/null
+++ b/src/engine/client/application/Viewer/build/win32/settings.rsp
@@ -0,0 +1,4 @@
+mfc
+noPchDirectory
+
+debugInline
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/WorldSnapshotViewer.vcproj b/src/engine/client/application/WorldSnapshotViewer/build/win32/WorldSnapshotViewer.vcproj
new file mode 100644
index 000000000..05a9599de
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/WorldSnapshotViewer.vcproj
@@ -0,0 +1,637 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/WorldSnapshotViewer.vcxproj b/src/engine/client/application/WorldSnapshotViewer/build/win32/WorldSnapshotViewer.vcxproj
new file mode 100644
index 000000000..a32f3d939
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/WorldSnapshotViewer.vcxproj
@@ -0,0 +1,248 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {EC34F97C-F421-4C75-8C8C-91D00E699D33}
+ MFCProj
+
+
+
+ Application
+ v120
+ Static
+ Unicode
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+ Application
+ v120
+ Static
+ Unicode
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstWorldSnapshotViewer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ libxml2-win32-debug.lib;dxguid.lib;dpvs.lib;ws2_32.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstWorldSnapshotViewer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ libxml2-win32-release.lib;dxguid.lib;dpvs.lib;ws2_32.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ true
+ FirstWorldSnapshotViewer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ libxml2-win32-release.lib;dxguid.lib;dpvs.lib;ws2_32.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/ignoreLibraries.rsp b/src/engine/client/application/WorldSnapshotViewer/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/ignoreLibraries_d.rsp b/src/engine/client/application/WorldSnapshotViewer/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/ignoreLibraries_o.rsp b/src/engine/client/application/WorldSnapshotViewer/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/includePaths.rsp b/src/engine/client/application/WorldSnapshotViewer/build/win32/includePaths.rsp
new file mode 100644
index 000000000..06c009af3
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/includePaths.rsp
@@ -0,0 +1,15 @@
+../../../../../../external/3rd/library/atlmfc/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../src/win32
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries.rsp b/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries.rsp
new file mode 100644
index 000000000..9e4811ac3
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries.rsp
@@ -0,0 +1,3 @@
+dxguid.lib
+dpvs.lib
+ws2_32.lib
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries_d.rsp b/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..22514643a
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries_d.rsp
@@ -0,0 +1,2 @@
+libxml2-win32-debug.lib
+
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries_o.rsp b/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..969d25e20
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries_o.rsp
@@ -0,0 +1,2 @@
+libxml2-win32-release.lib
+
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries_r.rsp b/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..969d25e20
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/libraries_r.rsp
@@ -0,0 +1,2 @@
+libxml2-win32-release.lib
+
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/libraryPaths.rsp b/src/engine/client/application/WorldSnapshotViewer/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..edb838f9d
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/libraryPaths.rsp
@@ -0,0 +1,5 @@
+..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
diff --git a/src/engine/client/application/WorldSnapshotViewer/build/win32/settings.rsp b/src/engine/client/application/WorldSnapshotViewer/build/win32/settings.rsp
new file mode 100644
index 000000000..1fb60a649
--- /dev/null
+++ b/src/engine/client/application/WorldSnapshotViewer/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+mfc
+noPchDirectory
+debugInline
diff --git a/src/engine/client/library/clientAnimation/build/win32/clientAnimation.vcproj b/src/engine/client/library/clientAnimation/build/win32/clientAnimation.vcproj
new file mode 100644
index 000000000..c4a6c9916
--- /dev/null
+++ b/src/engine/client/library/clientAnimation/build/win32/clientAnimation.vcproj
@@ -0,0 +1,838 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientAnimation/build/win32/clientAnimation.vcxproj b/src/engine/client/library/clientAnimation/build/win32/clientAnimation.vcxproj
new file mode 100644
index 000000000..e8a9949f9
--- /dev/null
+++ b/src/engine/client/library/clientAnimation/build/win32/clientAnimation.vcxproj
@@ -0,0 +1,247 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {4AF54AEE-35F9-473C-8C2E-C24D2EEDB17B}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientAnimation\FirstClientAnimation.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientAnimation\FirstClientAnimation.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientAnimation\FirstClientAnimation.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientAnimation/build/win32/includePaths.rsp b/src/engine/client/library/clientAnimation/build/win32/includePaths.rsp
new file mode 100644
index 000000000..e32f8ffd2
--- /dev/null
+++ b/src/engine/client/library/clientAnimation/build/win32/includePaths.rsp
@@ -0,0 +1,16 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/library/clientAnimation/build/win32/settings.rsp b/src/engine/client/library/clientAnimation/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/client/library/clientAnimation/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/client/library/clientAudio/build/win32/clientAudio.vcproj b/src/engine/client/library/clientAudio/build/win32/clientAudio.vcproj
new file mode 100644
index 000000000..b775b213e
--- /dev/null
+++ b/src/engine/client/library/clientAudio/build/win32/clientAudio.vcproj
@@ -0,0 +1,954 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientAudio/build/win32/clientAudio.vcxproj b/src/engine/client/library/clientAudio/build/win32/clientAudio.vcxproj
new file mode 100644
index 000000000..1f81f25cb
--- /dev/null
+++ b/src/engine/client/library/clientAudio/build/win32/clientAudio.vcxproj
@@ -0,0 +1,261 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {250A5957-7BB9-4F50-B0E9-19C87136977E}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\videocapture;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientAudio\FirstClientAudio.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ true
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\videocapture;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientAudio\FirstClientAudio.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\videocapture;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientAudio\FirstClientAudio.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientAudio/build/win32/includePaths.rsp b/src/engine/client/library/clientAudio/build/win32/includePaths.rsp
new file mode 100644
index 000000000..6236f6a85
--- /dev/null
+++ b/src/engine/client/library/clientAudio/build/win32/includePaths.rsp
@@ -0,0 +1,22 @@
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/videocapture
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/library/clientAudio/build/win32/settings.rsp b/src/engine/client/library/clientAudio/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/client/library/clientAudio/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/client/library/clientBugReporting/build/win32/clientBugReporting.vcproj b/src/engine/client/library/clientBugReporting/build/win32/clientBugReporting.vcproj
new file mode 100644
index 000000000..c37f8a32e
--- /dev/null
+++ b/src/engine/client/library/clientBugReporting/build/win32/clientBugReporting.vcproj
@@ -0,0 +1,442 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientBugReporting/build/win32/clientBugReporting.vcxproj b/src/engine/client/library/clientBugReporting/build/win32/clientBugReporting.vcxproj
new file mode 100644
index 000000000..9f5119398
--- /dev/null
+++ b/src/engine/client/library/clientBugReporting/build/win32/clientBugReporting.vcxproj
@@ -0,0 +1,203 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {147D02D6-C76C-4058-863A-A9B3364C2047}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\blat194\src\win32;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientBugReporting\FirstClientBugReporting.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\blat194\src\win32;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientBugReporting\FirstClientBugReporting.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\blat194\src\win32;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientBugReporting\FirstClientBugReporting.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientBugReporting/build/win32/includePaths.rsp b/src/engine/client/library/clientBugReporting/build/win32/includePaths.rsp
new file mode 100644
index 000000000..8410d8d38
--- /dev/null
+++ b/src/engine/client/library/clientBugReporting/build/win32/includePaths.rsp
@@ -0,0 +1,9 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/blat194/src/win32
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/library/clientBugReporting/build/win32/settings.rsp b/src/engine/client/library/clientBugReporting/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/client/library/clientBugReporting/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/client/library/clientDirectInput/build/win32/clientDirectInput.vcproj b/src/engine/client/library/clientDirectInput/build/win32/clientDirectInput.vcproj
new file mode 100644
index 000000000..274f2c5e9
--- /dev/null
+++ b/src/engine/client/library/clientDirectInput/build/win32/clientDirectInput.vcproj
@@ -0,0 +1,478 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientDirectInput/build/win32/clientDirectInput.vcxproj b/src/engine/client/library/clientDirectInput/build/win32/clientDirectInput.vcxproj
new file mode 100644
index 000000000..294f8c064
--- /dev/null
+++ b/src/engine/client/library/clientDirectInput/build/win32/clientDirectInput.vcxproj
@@ -0,0 +1,207 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {F1B57BF8-072E-4E69-940A-C254A98DA10D}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientDirectInput\FirstClientDirectInput.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ true
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientDirectInput\FirstClientDirectInput.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientDirectInput\FirstClientDirectInput.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientDirectInput/build/win32/includePaths.rsp b/src/engine/client/library/clientDirectInput/build/win32/includePaths.rsp
new file mode 100644
index 000000000..d89a69292
--- /dev/null
+++ b/src/engine/client/library/clientDirectInput/build/win32/includePaths.rsp
@@ -0,0 +1,12 @@
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/library/clientDirectInput/build/win32/settings.rsp b/src/engine/client/library/clientDirectInput/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/client/library/clientDirectInput/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/client/library/clientGame/build/win32/clientGame.vcproj b/src/engine/client/library/clientGame/build/win32/clientGame.vcproj
new file mode 100644
index 000000000..bda72e9df
--- /dev/null
+++ b/src/engine/client/library/clientGame/build/win32/clientGame.vcproj
@@ -0,0 +1,12182 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientGame/build/win32/clientGame.vcxproj b/src/engine/client/library/clientGame/build/win32/clientGame.vcxproj
new file mode 100644
index 000000000..87b7329ba
--- /dev/null
+++ b/src/engine/client/library/clientGame/build/win32/clientGame.vcxproj
@@ -0,0 +1,1523 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {D10D1A1A-6129-4EF1-B3D7-5C12EE53DFCA}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\3rd\library\trackIr\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\videocapture;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\client\library\clientUserInterface\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRemoteDebugServer\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientAnimation\include\public;..\..\..\clientAudio\include\public;..\..\..\clientBugReporting\include\public;..\..\..\clientDirectInput\include\public;..\..\..\clientGraphics\include\public;..\..\..\clientObject\include\public;..\..\..\clientParticle\include\public;..\..\..\clientSkeletalAnimation\include\public;..\..\..\clientTerrain\include\public;..\..\..\clientTextureRenderer\include\public;..\..\include\private;..\..\include\public;..\..\..\..\..\..\external\3rd\library\vivox\include;..\..\..\..\..\..\game\client\library\swgClientVivox\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientGame\FirstClientGame.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\3rd\library\trackIr\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\videocapture;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\client\library\clientUserInterface\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRemoteDebugServer\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientAnimation\include\public;..\..\..\clientAudio\include\public;..\..\..\clientBugReporting\include\public;..\..\..\clientDirectInput\include\public;..\..\..\clientGraphics\include\public;..\..\..\clientObject\include\public;..\..\..\clientParticle\include\public;..\..\..\clientSkeletalAnimation\include\public;..\..\..\clientTerrain\include\public;..\..\..\clientTextureRenderer\include\public;..\..\include\private;..\..\include\public;..\..\..\..\..\..\external\3rd\library\vivox\include;..\..\..\..\..\..\game\client\library\swgClientVivox\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientGame\FirstClientGame.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\libMozilla\include\public;..\..\..\..\..\..\external\3rd\library\trackIr\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\videocapture;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\client\library\clientUserInterface\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedInputMap\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRemoteDebugServer\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientAnimation\include\public;..\..\..\clientAudio\include\public;..\..\..\clientBugReporting\include\public;..\..\..\clientDirectInput\include\public;..\..\..\clientGraphics\include\public;..\..\..\clientObject\include\public;..\..\..\clientParticle\include\public;..\..\..\clientSkeletalAnimation\include\public;..\..\..\clientTerrain\include\public;..\..\..\clientTextureRenderer\include\public;..\..\include\private;..\..\include\public;..\..\..\..\..\..\external\3rd\library\vivox\include;..\..\..\..\..\..\game\client\library\swgClientVivox\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientGame\FirstClientGame.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientGame/build/win32/includePaths.rsp b/src/engine/client/library/clientGame/build/win32/includePaths.rsp
new file mode 100644
index 000000000..8f283a3f8
--- /dev/null
+++ b/src/engine/client/library/clientGame/build/win32/includePaths.rsp
@@ -0,0 +1,58 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/dpvs/interface
+../../../../../../external/3rd/library/libMozilla/include/public
+../../../../../../external/3rd/library/trackIr/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/ui/include
+../../../../../../external/3rd/library/videocapture
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/shared/library/swgSharedNetworkMessages/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
+../../../../../client/library/clientUserInterface/include/public
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedFractal/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedInputMap/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedLog/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedNetwork/include/public
+../../../../../shared/library/sharedNetworkMessages/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedRemoteDebugServer/include/public
+../../../../../shared/library/sharedSkillSystem/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../clientAnimation/include/public
+../../../clientAudio/include/public
+../../../clientBugReporting/include/public
+../../../clientDirectInput/include/public
+../../../clientGraphics/include/public
+../../../clientObject/include/public
+../../../clientParticle/include/public
+../../../clientSkeletalAnimation/include/public
+../../../clientTerrain/include/public
+../../../clientTextureRenderer/include/public
+../../include/private
+../../include/public
+../../../../../../external/3rd/library/vivox/include
+../../../../../../game/client/library/swgClientVivox/include/public
+
diff --git a/src/engine/client/library/clientGame/build/win32/settings.rsp b/src/engine/client/library/clientGame/build/win32/settings.rsp
new file mode 100644
index 000000000..6887fd351
--- /dev/null
+++ b/src/engine/client/library/clientGame/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+library
+Zm200
+debugInline
diff --git a/src/engine/client/library/clientGraphics/build/win32/clientGraphics.vcproj b/src/engine/client/library/clientGraphics/build/win32/clientGraphics.vcproj
new file mode 100644
index 000000000..e4b68cbc6
--- /dev/null
+++ b/src/engine/client/library/clientGraphics/build/win32/clientGraphics.vcproj
@@ -0,0 +1,2814 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientGraphics/build/win32/clientGraphics.vcxproj b/src/engine/client/library/clientGraphics/build/win32/clientGraphics.vcxproj
new file mode 100644
index 000000000..797cbc556
--- /dev/null
+++ b/src/engine/client/library/clientGraphics/build/win32/clientGraphics.vcxproj
@@ -0,0 +1,479 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {7C4B8A91-BE83-4BFE-AF94-F75CE39FE67D}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\meshifier;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\bink\include;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\videocapture;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientGraphics\FirstClientGraphics.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\meshifier;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\bink\include;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\videocapture;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientGraphics\FirstClientGraphics.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\meshifier;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\bink\include;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\videocapture;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientGraphics\FirstClientGraphics.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ true
+
+
+ true
+ true
+ true
+
+
+ true
+ true
+ true
+
+
+ true
+ true
+ true
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientGraphics/build/win32/includePaths.rsp b/src/engine/client/library/clientGraphics/build/win32/includePaths.rsp
new file mode 100644
index 000000000..e5899e828
--- /dev/null
+++ b/src/engine/client/library/clientGraphics/build/win32/includePaths.rsp
@@ -0,0 +1,26 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/dpvs/interface
+../../../../../../external/3rd/library/meshifier
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/bink/include
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/videocapture
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedImage/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedSwitcher/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/library/clientGraphics/build/win32/settings.rsp b/src/engine/client/library/clientGraphics/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/client/library/clientGraphics/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/client/library/clientObject/build/win32/clientObject.vcproj b/src/engine/client/library/clientObject/build/win32/clientObject.vcproj
new file mode 100644
index 000000000..a61c96abf
--- /dev/null
+++ b/src/engine/client/library/clientObject/build/win32/clientObject.vcproj
@@ -0,0 +1,1787 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientObject/build/win32/clientObject.vcxproj b/src/engine/client/library/clientObject/build/win32/clientObject.vcxproj
new file mode 100644
index 000000000..c0f15ae03
--- /dev/null
+++ b/src/engine/client/library/clientObject/build/win32/clientObject.vcxproj
@@ -0,0 +1,359 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {82393D39-3807-4C87-932F-E3571616A7DD}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientGraphics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientObject\FirstClientObject.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientGraphics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientObject\FirstClientObject.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientGraphics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientObject\FirstClientObject.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ true
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientObject/build/win32/includePaths.rsp b/src/engine/client/library/clientObject/build/win32/includePaths.rsp
new file mode 100644
index 000000000..005667716
--- /dev/null
+++ b/src/engine/client/library/clientObject/build/win32/includePaths.rsp
@@ -0,0 +1,28 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/dpvs/interface
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedFractal/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSwitcher/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../clientGraphics/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/library/clientObject/build/win32/settings.rsp b/src/engine/client/library/clientObject/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/client/library/clientObject/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/client/library/clientParticle/build/win32/clientParticle.vcproj b/src/engine/client/library/clientParticle/build/win32/clientParticle.vcproj
new file mode 100644
index 000000000..f6acb4653
--- /dev/null
+++ b/src/engine/client/library/clientParticle/build/win32/clientParticle.vcproj
@@ -0,0 +1,1342 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientParticle/build/win32/clientParticle.vcxproj b/src/engine/client/library/clientParticle/build/win32/clientParticle.vcxproj
new file mode 100644
index 000000000..bb6b15336
--- /dev/null
+++ b/src/engine/client/library/clientParticle/build/win32/clientParticle.vcxproj
@@ -0,0 +1,303 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {97A83CDE-723F-47DE-A5C6-B779CF50AE9C}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientAudio\include\public;..\..\..\clientGraphics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientParticle\FirstClientParticle.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientAudio\include\public;..\..\..\clientGraphics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientParticle\FirstClientParticle.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientAudio\include\public;..\..\..\clientGraphics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientParticle\FirstClientParticle.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientParticle/build/win32/includePaths.rsp b/src/engine/client/library/clientParticle/build/win32/includePaths.rsp
new file mode 100644
index 000000000..f236c8437
--- /dev/null
+++ b/src/engine/client/library/clientParticle/build/win32/includePaths.rsp
@@ -0,0 +1,29 @@
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/3rd/library/dpvs/interface
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedFractal/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSwitcher/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../clientAudio/include/public
+../../../clientGraphics/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/library/clientParticle/build/win32/settings.rsp b/src/engine/client/library/clientParticle/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/client/library/clientParticle/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/client/library/clientRemoteDebug/build/linux/Makefile b/src/engine/client/library/clientRemoteDebug/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/client/library/clientRemoteDebug/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/client/library/clientSkeletalAnimation/build/win32/clientSkeletalAnimation.vcproj b/src/engine/client/library/clientSkeletalAnimation/build/win32/clientSkeletalAnimation.vcproj
new file mode 100644
index 000000000..f77907140
--- /dev/null
+++ b/src/engine/client/library/clientSkeletalAnimation/build/win32/clientSkeletalAnimation.vcproj
@@ -0,0 +1,3966 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientSkeletalAnimation/build/win32/clientSkeletalAnimation.vcxproj b/src/engine/client/library/clientSkeletalAnimation/build/win32/clientSkeletalAnimation.vcxproj
new file mode 100644
index 000000000..14f484e1a
--- /dev/null
+++ b/src/engine/client/library/clientSkeletalAnimation/build/win32/clientSkeletalAnimation.vcxproj
@@ -0,0 +1,599 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {66BCFD48-0307-41FD-B4D9-9991BF572A27}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\clientAnimation\include\public;..\..\..\clientAudio\include\public;..\..\..\clientGraphics\include\public;..\..\..\clientObject\include\public;..\..\..\clientTextureRenderer\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientSkeletalAnimation\FirstClientSkeletalAnimation.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\clientAnimation\include\public;..\..\..\clientAudio\include\public;..\..\..\clientGraphics\include\public;..\..\..\clientObject\include\public;..\..\..\clientTextureRenderer\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientSkeletalAnimation\FirstClientSkeletalAnimation.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\include;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\..\clientAnimation\include\public;..\..\..\clientAudio\include\public;..\..\..\clientGraphics\include\public;..\..\..\clientObject\include\public;..\..\..\clientTextureRenderer\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientSkeletalAnimation\FirstClientSkeletalAnimation.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientSkeletalAnimation/build/win32/includePaths.rsp b/src/engine/client/library/clientSkeletalAnimation/build/win32/includePaths.rsp
new file mode 100644
index 000000000..2e8a2c05a
--- /dev/null
+++ b/src/engine/client/library/clientSkeletalAnimation/build/win32/includePaths.rsp
@@ -0,0 +1,32 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/dpvs/interface
+../../../../../../external/3rd/library/libxml2-2.6.7.win32/include
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSwitcher/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../../../shared/library/sharedXml/include/public
+../../../clientAnimation/include/public
+../../../clientAudio/include/public
+../../../clientGraphics/include/public
+../../../clientObject/include/public
+../../../clientTextureRenderer/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/library/clientSkeletalAnimation/build/win32/settings.rsp b/src/engine/client/library/clientSkeletalAnimation/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/client/library/clientSkeletalAnimation/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/client/library/clientTerrain/build/win32/clientTerrain.vcproj b/src/engine/client/library/clientTerrain/build/win32/clientTerrain.vcproj
new file mode 100644
index 000000000..c9c9408e9
--- /dev/null
+++ b/src/engine/client/library/clientTerrain/build/win32/clientTerrain.vcproj
@@ -0,0 +1,1598 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientTerrain/build/win32/clientTerrain.vcxproj b/src/engine/client/library/clientTerrain/build/win32/clientTerrain.vcxproj
new file mode 100644
index 000000000..0e6895100
--- /dev/null
+++ b/src/engine/client/library/clientTerrain/build/win32/clientTerrain.vcxproj
@@ -0,0 +1,332 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {2024A6B1-5E9A-4CC9-8243-7232F9B62264}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientAudio\include\public;..\..\..\clientGame\include\public;..\..\..\clientGraphics\include\public;..\..\..\clientObject\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientTerrain\FirstClientTerrain.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientAudio\include\public;..\..\..\clientGame\include\public;..\..\..\clientGraphics\include\public;..\..\..\clientObject\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientTerrain\FirstClientTerrain.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dpvs\interface;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientAudio\include\public;..\..\..\clientGame\include\public;..\..\..\clientGraphics\include\public;..\..\..\clientObject\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientTerrain\FirstClientTerrain.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientTerrain/build/win32/includePaths.rsp b/src/engine/client/library/clientTerrain/build/win32/includePaths.rsp
new file mode 100644
index 000000000..ef3a45a6e
--- /dev/null
+++ b/src/engine/client/library/clientTerrain/build/win32/includePaths.rsp
@@ -0,0 +1,33 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/dpvs/interface
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedFractal/include/public
+../../../../../shared/library/sharedImage/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../clientAudio/include/public
+../../../clientGame/include/public
+../../../clientGraphics/include/public
+../../../clientObject/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/library/clientTerrain/build/win32/settings.rsp b/src/engine/client/library/clientTerrain/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/client/library/clientTerrain/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/client/library/clientTextureRenderer/build/win32/clientTextureRenderer.vcproj b/src/engine/client/library/clientTextureRenderer/build/win32/clientTextureRenderer.vcproj
new file mode 100644
index 000000000..d236b1afd
--- /dev/null
+++ b/src/engine/client/library/clientTextureRenderer/build/win32/clientTextureRenderer.vcproj
@@ -0,0 +1,694 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientTextureRenderer/build/win32/clientTextureRenderer.vcxproj b/src/engine/client/library/clientTextureRenderer/build/win32/clientTextureRenderer.vcxproj
new file mode 100644
index 000000000..631205565
--- /dev/null
+++ b/src/engine/client/library/clientTextureRenderer/build/win32/clientTextureRenderer.vcxproj
@@ -0,0 +1,231 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {F1FDC6AF-AF8C-42A5-826E-C66AE9CC6CA6}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientGraphics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientTextureRenderer\FirstClientTextureRenderer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientGraphics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientTextureRenderer\FirstClientTextureRenderer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSwitcher\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\clientGraphics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientTextureRenderer\FirstClientTextureRenderer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientTextureRenderer/build/win32/includePaths.rsp b/src/engine/client/library/clientTextureRenderer/build/win32/includePaths.rsp
new file mode 100644
index 000000000..8790a4917
--- /dev/null
+++ b/src/engine/client/library/clientTextureRenderer/build/win32/includePaths.rsp
@@ -0,0 +1,24 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedFractal/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSwitcher/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../clientGraphics/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/library/clientTextureRenderer/build/win32/settings.rsp b/src/engine/client/library/clientTextureRenderer/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/client/library/clientTextureRenderer/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/client/library/clientUserInterface/build/win32/clientUserInterface.vcproj b/src/engine/client/library/clientUserInterface/build/win32/clientUserInterface.vcproj
new file mode 100644
index 000000000..a3b9315ce
--- /dev/null
+++ b/src/engine/client/library/clientUserInterface/build/win32/clientUserInterface.vcproj
@@ -0,0 +1,5646 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/client/library/clientUserInterface/build/win32/clientUserInterface.vcxproj b/src/engine/client/library/clientUserInterface/build/win32/clientUserInterface.vcxproj
new file mode 100644
index 000000000..6dbf60b97
--- /dev/null
+++ b/src/engine/client/library/clientUserInterface/build/win32/clientUserInterface.vcxproj
@@ -0,0 +1,536 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {92605A4D-BAA0-46E6-9733-6464F6578B6A}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\3rd\library\soePlatform;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dimm;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\vivox\include;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\include;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientVivox\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientUserInterface\FirstClientUserInterface.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\3rd\library\soePlatform;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dimm;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\vivox\include;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\include;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientVivox\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ clientUserInterface\FirstClientUserInterface.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\engine\client\library\clientAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientAudio\include\public;..\..\..\..\..\..\engine\client\library\clientBugReporting\include\public;..\..\..\..\..\..\engine\client\library\clientDirectInput\include\public;..\..\..\..\..\..\engine\client\library\clientGame\include\public;..\..\..\..\..\..\engine\client\library\clientGraphics\include\public;..\..\..\..\..\..\engine\client\library\clientObject\include\public;..\..\..\..\..\..\engine\client\library\clientSkeletalAnimation\include\public;..\..\..\..\..\..\engine\client\library\clientTerrain\include\public;..\..\..\..\..\..\engine\client\library\clientParticle\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedInputMap\include\public;..\..\..\..\..\..\engine\shared\library\sharedIoWin\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\directx9\include;..\..\..\..\..\..\external\3rd\library\libEverQuestTCG\include\public;..\..\..\..\..\..\external\3rd\library\miles\include;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\3rd\library\soePlatform;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\dimm;..\..\..\..\..\..\external\3rd\library\ui\include;..\..\..\..\..\..\external\3rd\library\vivox\include;..\..\..\..\..\..\external\3rd\library\vivoxSharedWrapper\include;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\client\library\swgClientVivox\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ clientUserInterface\FirstClientUserInterface.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ true
+
+
+ true
+ true
+ true
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/client/library/clientUserInterface/build/win32/includePaths.rsp b/src/engine/client/library/clientUserInterface/build/win32/includePaths.rsp
new file mode 100644
index 000000000..b375d5a99
--- /dev/null
+++ b/src/engine/client/library/clientUserInterface/build/win32/includePaths.rsp
@@ -0,0 +1,55 @@
+../../../../../../engine/client/library/clientAnimation/include/public
+../../../../../../engine/client/library/clientAudio/include/public
+../../../../../../engine/client/library/clientBugReporting/include/public
+../../../../../../engine/client/library/clientDirectInput/include/public
+../../../../../../engine/client/library/clientGame/include/public
+../../../../../../engine/client/library/clientGraphics/include/public
+../../../../../../engine/client/library/clientObject/include/public
+../../../../../../engine/client/library/clientSkeletalAnimation/include/public
+../../../../../../engine/client/library/clientTerrain/include/public
+../../../../../../engine/client/library/clientParticle/include/public
+../../../../../../engine/shared/library/sharedCollision/include/public
+../../../../../../engine/shared/library/sharedCommandParser/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedGame/include/public
+../../../../../../engine/shared/library/sharedInputMap/include/public
+../../../../../../engine/shared/library/sharedIoWin/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryBlockManager/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedObject/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedSkillSystem/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedTerrain/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../external/3rd/library/directx9/include
+../../../../../../external/3rd/library/libEverQuestTCG/include/public
+../../../../../../external/3rd/library/miles/include
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/3rd/library/soePlatform
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/dimm
+../../../../../../external/3rd/library/ui/include
+../../../../../../external/3rd/library/vivox/include
+../../../../../../external/3rd/library/vivoxSharedWrapper/include
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/client/library/swgClientVivox/include/public
+../../../../../../game/shared/library/swgSharedNetworkMessages/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/client/library/clientUserInterface/build/win32/settings.rsp b/src/engine/client/library/clientUserInterface/build/win32/settings.rsp
new file mode 100644
index 000000000..fdd7841ee
--- /dev/null
+++ b/src/engine/client/library/clientUserInterface/build/win32/settings.rsp
@@ -0,0 +1,6 @@
+library
+debugInline
+Zm200
+disableOptimizationsInOpt
+dbgInfo_o_line_numbers_only
+dbgInfo_r_line_numbers_only
diff --git a/src/engine/server/application/CentralServer/build/linux/Makefile b/src/engine/server/application/CentralServer/build/linux/Makefile
new file mode 100644
index 000000000..0d4ef2271
--- /dev/null
+++ b/src/engine/server/application/CentralServer/build/linux/Makefile
@@ -0,0 +1,86 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = CentralServer
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl
+RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ ../../../../../../engine/shared/library/sharedCommandParser/include/public \
+ $(COMMON_ENGINE_INCLUDES)
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(STL_LIB) \
+ $(ZLIB_LIB)
+
+# TODO: This build system has to pull in all of shared game, which in turn means all of
+# skill system and swg shared utility. The autoconf system is able to make a lib out of any directories
+# source files, and it appears that Justin narrowed down the dependencies to that level. It is leaner than
+# what is here.
+# The real solution would be to layer the libs correctly.
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMAND_PARSER_DEBUG_LIB) \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(SHARED_GAME_DEBUG_LIB) \
+ $(SKILL_SYSTEM_DEBUG_LIB) \
+ $(SWG_SHARED_UTILITY_DEBUG_LIB) \
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMAND_PARSER_RELEASE_LIB) \
+ $(COMMON_ENGINE_RELEASE_LIBS)
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS)
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/CentralServer/build/win32/CentralServer.vcproj b/src/engine/server/application/CentralServer/build/win32/CentralServer.vcproj
new file mode 100644
index 000000000..8f3345eb5
--- /dev/null
+++ b/src/engine/server/application/CentralServer/build/win32/CentralServer.vcproj
@@ -0,0 +1,1272 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/application/CentralServer/build/win32/CentralServer.vcxproj b/src/engine/server/application/CentralServer/build/win32/CentralServer.vcxproj
new file mode 100644
index 000000000..5639a0371
--- /dev/null
+++ b/src/engine/server/application/CentralServer/build/win32/CentralServer.vcxproj
@@ -0,0 +1,466 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {D5CA7486-D01E-4DCB-883B-8E60F7F64D26}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstCentralServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+ false
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstCentralServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstCentralServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {861a873c-d6ad-4b8a-9bed-0314a8b74b54}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {d409a18e-f788-4f1b-bad1-ed58ee4d458f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {20d4d8eb-87ca-4c5f-8ba3-ffc898563c40}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {4f237764-394d-40cb-9314-daeded42e2cd}
+ false
+
+
+ {4eff0958-fbc8-4053-971a-7022eb0035e4}
+ false
+
+
+ {38df394c-0909-4507-8029-53d960fea464}
+ false
+
+
+ {67bfda04-f26e-497f-a6fe-ee52550c15fe}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/application/CentralServer/build/win32/ignoreLibraries.rsp b/src/engine/server/application/CentralServer/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/server/application/CentralServer/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/server/application/CentralServer/build/win32/ignoreLibraries_d.rsp b/src/engine/server/application/CentralServer/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/CentralServer/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/CentralServer/build/win32/ignoreLibraries_o.rsp b/src/engine/server/application/CentralServer/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/CentralServer/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/CentralServer/build/win32/includePaths.rsp b/src/engine/server/application/CentralServer/build/win32/includePaths.rsp
new file mode 100644
index 000000000..9044aeaec
--- /dev/null
+++ b/src/engine/server/application/CentralServer/build/win32/includePaths.rsp
@@ -0,0 +1,31 @@
+../../../../../../engine/server/library/serverKeyShare/include/public
+../../../../../../engine/server/library/serverMetrics/include/public
+../../../../../../engine/server/library/serverNetworkMessages/include/public
+../../../../../../engine/server/library/serverUtility/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedCommandParser/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedLog/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../src/shared
+../../src/win32
diff --git a/src/engine/server/application/CentralServer/build/win32/libraries.rsp b/src/engine/server/application/CentralServer/build/win32/libraries.rsp
new file mode 100644
index 000000000..2e557bbc5
--- /dev/null
+++ b/src/engine/server/application/CentralServer/build/win32/libraries.rsp
@@ -0,0 +1,5 @@
+winmm.lib
+ws2_32.lib
+zlib.lib
+mswsock.lib
+
diff --git a/src/engine/server/application/CentralServer/build/win32/libraryPaths.rsp b/src/engine/server/application/CentralServer/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..154117d6a
--- /dev/null
+++ b/src/engine/server/application/CentralServer/build/win32/libraryPaths.rsp
@@ -0,0 +1,2 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/server/application/CentralServer/build/win32/settings.rsp b/src/engine/server/application/CentralServer/build/win32/settings.rsp
new file mode 100644
index 000000000..3a1fad272
--- /dev/null
+++ b/src/engine/server/application/CentralServer/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+console noPchDirectory copyDev
+debugInline
diff --git a/src/engine/server/application/ChatServer/build/linux/Makefile b/src/engine/server/application/ChatServer/build/linux/Makefile
new file mode 100644
index 000000000..768e38e98
--- /dev/null
+++ b/src/engine/server/application/ChatServer/build/linux/Makefile
@@ -0,0 +1,89 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE -DEXTERNAL_DISTRO -DNAMESPACE="ChatSystem" $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE -DEXTERNAL_DISTRO -DNAMESPACE="ChatSystem" $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = ChatServer
+
+#######################################################
+# standard defines
+#######################################################
+
+#DEBUG_LINK_FLAGS +=-lpthread -ldl -L../../../../../../external/3rd/library/soePlatform/libs/Linux-Debug
+#RELEASE_LINK_FLAGS +=-lpthread -ldl -L../../../../../../external/3rd/library/soePlatform/libs/Linux-Release
+DEBUG_LINK_FLAGS +=-lpthread -ldl -L../../../../../../external/3rd/library/soePlatform/ChatAPI2/ChatAPI/lib/debug
+RELEASE_LINK_FLAGS +=-lpthread -ldl -L../../../../../../external/3rd/library/soePlatform/ChatAPI2/ChatAPI/lib/release
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+ $(SHARED_NETWORK_MESSAGES) \
+ ../../../../../../external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/ \
+ ../../../../../../external/3rd/library/soePlatform/ChatAPI2/ChatAPI/projects/Chat
+
+DEBUG_LINK_LIBRARIES = \
+ $(CHATAPI_DEBUG_LIB) \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(STL_LIB) \
+ $(ZLIB_LIB)
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(SHARED_GAME_DEBUG_LIB) \
+ $(SKILL_SYSTEM_DEBUG_LIB) \
+ $(SWG_SHARED_UTILITY_DEBUG_LIB) \
+
+RELEASE_LINK_LIBRARIES = \
+ ../../../../../../external/3rd/library/soePlatform/ChatAPI2/ChatAPI/lib/release/libChatAPI.a \
+ $(COMMON_ENGINE_RELEASE_LIBS)
+
+../../../../../../external/3rd/library/soePlatform/ChatAPI2/ChatAPI/lib/release/libChatAPI.a:
+ make -C ../../../../../../external/3rd/library/soePlatform/ChatAPI2/ChatAPI/projects/Chat/ChatMono release
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS)
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+# debug_custom_step:
+# cp -f -u ../../../../../../external/3rd/library/soePlatform/libs/Linux-Debug/*.so ../../../../../../../dev/linux
+
+# release_custom_step:
+# cp -f -u ../../../../../../external/3rd/library/soePlatform/libs/Linux-Release/*.so ../../../../../../../dev/linux
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/ChatServer/build/win32/ChatServer.vcproj b/src/engine/server/application/ChatServer/build/win32/ChatServer.vcproj
new file mode 100644
index 000000000..b6feedd50
--- /dev/null
+++ b/src/engine/server/application/ChatServer/build/win32/ChatServer.vcproj
@@ -0,0 +1,752 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/application/ChatServer/build/win32/ChatServer.vcxproj b/src/engine/server/application/ChatServer/build/win32/ChatServer.vcxproj
new file mode 100644
index 000000000..005b2ecf2
--- /dev/null
+++ b/src/engine/server/application/ChatServer/build/win32/ChatServer.vcxproj
@@ -0,0 +1,369 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {30115B9B-5669-4AA0-80BE-1DF73F5F2450}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\soePlatform\ChatAPI2\ChatAPI\projects\Chat;..\..\..\..\..\..\external\3rd\library\soePlatform\ChatAPI2\ChatAPI\utils\;..\..\..\..\..\..\external\3rd\library\soePlatform\VChatAPI\utils2.0\utils;..\..\..\..\..\..\external\3rd\library\soePlatform\VChatAPI\projects\VChat;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\3rd\library\soePlatform;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstChatServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;ChatMono.lib;zlib.lib;mswsock.lib;VChatAPI.lib;Base_vchat.lib;TcpLibrary.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\soePlatform\libs\Win32-Debug;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libcd;libc;libcpd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+ false
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\soePlatform\ChatAPI2\ChatAPI\projects\Chat;..\..\..\..\..\..\external\3rd\library\soePlatform\ChatAPI2\ChatAPI\utils\;..\..\..\..\..\..\external\3rd\library\soePlatform\VChatAPI\utils2.0\utils;..\..\..\..\..\..\external\3rd\library\soePlatform\VChatAPI\projects\VChat;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\3rd\library\soePlatform;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstChatServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;ChatMono.lib;zlib.lib;mswsock.lib;VChatAPI.lib;Base_vchat.lib;TcpLibrary.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\soePlatform\libs\Win32-Debug;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libcd;libc;libcpd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\soePlatform\ChatAPI2\ChatAPI\projects\Chat;..\..\..\..\..\..\external\3rd\library\soePlatform\ChatAPI2\ChatAPI\utils\;..\..\..\..\..\..\external\3rd\library\soePlatform\VChatAPI\utils2.0\utils;..\..\..\..\..\..\external\3rd\library\soePlatform\VChatAPI\projects\VChat;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\3rd\library\soePlatform;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstChatServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;ChatMono.lib;zlib.lib;mswsock.lib;VChatAPI.lib;Base_vchat.lib;TcpLibrary.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\soePlatform\libs\Win32-Debug;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmtd;libc;libcpd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {101cf34f-b5fd-4a14-a3e9-fd28078760be}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {4eff0958-fbc8-4053-971a-7022eb0035e4}
+ false
+
+
+ {38df394c-0909-4507-8029-53d960fea464}
+ false
+
+
+ {67bfda04-f26e-497f-a6fe-ee52550c15fe}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/application/ChatServer/build/win32/ignoreLibraries.rsp b/src/engine/server/application/ChatServer/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..fbd18259b
--- /dev/null
+++ b/src/engine/server/application/ChatServer/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,2 @@
+libc
+libcpd
\ No newline at end of file
diff --git a/src/engine/server/application/ChatServer/build/win32/ignoreLibraries_d.rsp b/src/engine/server/application/ChatServer/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..6e0411a2b
--- /dev/null
+++ b/src/engine/server/application/ChatServer/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1,2 @@
+libcmt
+libcd
diff --git a/src/engine/server/application/ChatServer/build/win32/ignoreLibraries_o.rsp b/src/engine/server/application/ChatServer/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..6e0411a2b
--- /dev/null
+++ b/src/engine/server/application/ChatServer/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1,2 @@
+libcmt
+libcd
diff --git a/src/engine/server/application/ChatServer/build/win32/ignoreLibraries_r.rsp b/src/engine/server/application/ChatServer/build/win32/ignoreLibraries_r.rsp
new file mode 100644
index 000000000..5d8ca2c23
--- /dev/null
+++ b/src/engine/server/application/ChatServer/build/win32/ignoreLibraries_r.rsp
@@ -0,0 +1 @@
+libcmtd
diff --git a/src/engine/server/application/ChatServer/build/win32/includePaths.rsp b/src/engine/server/application/ChatServer/build/win32/includePaths.rsp
new file mode 100644
index 000000000..dfa9eee2d
--- /dev/null
+++ b/src/engine/server/application/ChatServer/build/win32/includePaths.rsp
@@ -0,0 +1,33 @@
+../../../../../../engine/server/library/serverMetrics/include/public
+../../../../../../engine/server/library/serverNetworkMessages/include/public
+../../../../../../engine/server/library/serverUtility/include/public
+../../../../../../engine/shared/library/sharedCommandParser/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedLog/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../external/3rd/library/soePlatform/ChatAPI2/ChatAPI/projects/Chat
+../../../../../../external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/
+../../../../../../external/3rd/library/soePlatform/VChatAPI/utils2.0/utils
+../../../../../../external/3rd/library/soePlatform/VChatAPI/projects/VChat
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/3rd/library/soePlatform
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../src/shared
+../../src/win32
diff --git a/src/engine/server/application/ChatServer/build/win32/libraries.rsp b/src/engine/server/application/ChatServer/build/win32/libraries.rsp
new file mode 100644
index 000000000..6dba2b85b
--- /dev/null
+++ b/src/engine/server/application/ChatServer/build/win32/libraries.rsp
@@ -0,0 +1,9 @@
+winmm.lib
+ws2_32.lib
+ChatMono.lib
+zlib.lib
+mswsock.lib
+VChatAPI.lib
+Base_vchat.lib
+TcpLibrary.lib
+
diff --git a/src/engine/server/application/ChatServer/build/win32/libraryPaths.rsp b/src/engine/server/application/ChatServer/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..96e440e03
--- /dev/null
+++ b/src/engine/server/application/ChatServer/build/win32/libraryPaths.rsp
@@ -0,0 +1,3 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\soePlatform\libs\Win32-Debug
+../../../../../../external/3rd/library/zlib/lib/win32
\ No newline at end of file
diff --git a/src/engine/server/application/ChatServer/build/win32/settings.rsp b/src/engine/server/application/ChatServer/build/win32/settings.rsp
new file mode 100644
index 000000000..10210962e
--- /dev/null
+++ b/src/engine/server/application/ChatServer/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console noPchDirectory
+
+debugInline
diff --git a/src/engine/server/application/CommoditiesServer/build/linux/Makefile b/src/engine/server/application/CommoditiesServer/build/linux/Makefile
new file mode 100644
index 000000000..f0aa8e1fe
--- /dev/null
+++ b/src/engine/server/application/CommoditiesServer/build/linux/Makefile
@@ -0,0 +1,77 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = CommoditiesServer
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl
+RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+ $(SHARED_DATABASE_INTERFACE_PATH)/include/public \
+ $(SESSIONAPI_INCLUDE_PATH)
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(SHARED_DATABASE_INTERFACE_DEBUG_LIB)
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_RELEASE_LIBS) \
+ $(SHARED_DATABASE_INTERFACE_RELEASE_LIB)
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(ORACLE_HOME)/lib/libclntsh.so
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS) \
+ $(ORACLE_HOME)/lib/libclntsh.so
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/ConnectionServer/build/linux/Makefile b/src/engine/server/application/ConnectionServer/build/linux/Makefile
new file mode 100644
index 000000000..4a943f5f5
--- /dev/null
+++ b/src/engine/server/application/ConnectionServer/build/linux/Makefile
@@ -0,0 +1,61 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+OUTPUT = ConnectionServer
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl
+RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+ $(SHARED_GAME_INCLUDE_PATH) \
+ $(SWG_SHARED_UTILITY_INCLUDE_PATH) \
+ $(SERVER_GAME_INCLUDE_PATH) \
+ $(SESSIONAPI_INCLUDE_PATH) \
+ $(UDPLIBRARY_INCLUDE_PATH)
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(STL_LIB) \
+ $(ZLIB_LIB) \
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(SHARED_GAME_DEBUG_LIB) \
+ $(SKILL_SYSTEM_DEBUG_LIB) \
+ $(SWG_SHARED_UTILITY_DEBUG_LIB) \
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/ConnectionServer/build/win32/ConnectionServer.vcproj b/src/engine/server/application/ConnectionServer/build/win32/ConnectionServer.vcproj
new file mode 100644
index 000000000..6b78a5723
--- /dev/null
+++ b/src/engine/server/application/ConnectionServer/build/win32/ConnectionServer.vcproj
@@ -0,0 +1,744 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/application/ConnectionServer/build/win32/ConnectionServer.vcxproj b/src/engine/server/application/ConnectionServer/build/win32/ConnectionServer.vcxproj
new file mode 100644
index 000000000..74f185cf5
--- /dev/null
+++ b/src/engine/server/application/ConnectionServer/build/win32/ConnectionServer.vcxproj
@@ -0,0 +1,386 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {2F380D05-A841-4A06-A4F8-11049F0061CD}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+ $(ProjectName)
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\3rd\library\platform\projects;..\..\..\..\..\..\external\3rd\library\udplibrary;..\..\..\..\..\..\external\3rd\library\platform\projects\Session;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstConnectionServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\platform\projects\Session\CommonAPI\debug;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+ false
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\3rd\library\platform\projects;..\..\..\..\..\..\external\3rd\library\udplibrary;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstConnectionServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\3rd\library\platform\projects;..\..\..\..\..\..\external\3rd\library\udplibrary;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstConnectionServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {5b7d9a11-141e-475b-a9e5-a5dcd4913274}
+
+
+ {f2c6b544-baf0-4534-9479-c79bc09bf2f0}
+
+
+ {3d6683d1-eaae-4448-be3a-8ee545e9592b}
+ false
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {861a873c-d6ad-4b8a-9bed-0314a8b74b54}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {d409a18e-f788-4f1b-bad1-ed58ee4d458f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {4f237764-394d-40cb-9314-daeded42e2cd}
+ false
+
+
+ {4eff0958-fbc8-4053-971a-7022eb0035e4}
+ false
+
+
+ {38df394c-0909-4507-8029-53d960fea464}
+ false
+
+
+ {67bfda04-f26e-497f-a6fe-ee52550c15fe}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/application/ConnectionServer/build/win32/ignoreLibraries.rsp b/src/engine/server/application/ConnectionServer/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/server/application/ConnectionServer/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/server/application/ConnectionServer/build/win32/ignoreLibraries_d.rsp b/src/engine/server/application/ConnectionServer/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/ConnectionServer/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/ConnectionServer/build/win32/ignoreLibraries_o.rsp b/src/engine/server/application/ConnectionServer/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/ConnectionServer/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/ConnectionServer/build/win32/includePaths.rsp b/src/engine/server/application/ConnectionServer/build/win32/includePaths.rsp
new file mode 100644
index 000000000..fa6afc692
--- /dev/null
+++ b/src/engine/server/application/ConnectionServer/build/win32/includePaths.rsp
@@ -0,0 +1,34 @@
+../../../../../../engine/server/library/serverKeyShare/include/public
+../../../../../../engine/server/library/serverMetrics/include/public
+../../../../../../engine/server/library/serverNetworkMessages/include/public
+../../../../../../engine/server/library/serverUtility/include/public
+../../../../../../engine/shared/library/sharedCommandParser/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedGame/include/public
+../../../../../../engine/shared/library/sharedLog/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../external/3rd/library/platform/projects
+../../../../../../external/3rd/library/udplibrary
+../../src/shared
+../../src/win32
diff --git a/src/engine/server/application/ConnectionServer/build/win32/libraries.rsp b/src/engine/server/application/ConnectionServer/build/win32/libraries.rsp
new file mode 100644
index 000000000..f76160ad9
--- /dev/null
+++ b/src/engine/server/application/ConnectionServer/build/win32/libraries.rsp
@@ -0,0 +1,4 @@
+winmm.lib
+ws2_32.lib
+zlib.lib
+mswsock.lib
diff --git a/src/engine/server/application/ConnectionServer/build/win32/libraryPaths.rsp b/src/engine/server/application/ConnectionServer/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..154117d6a
--- /dev/null
+++ b/src/engine/server/application/ConnectionServer/build/win32/libraryPaths.rsp
@@ -0,0 +1,2 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/server/application/ConnectionServer/build/win32/settings.rsp b/src/engine/server/application/ConnectionServer/build/win32/settings.rsp
new file mode 100644
index 000000000..78efdddb2
--- /dev/null
+++ b/src/engine/server/application/ConnectionServer/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+console noPchDirectory
+debugInline
diff --git a/src/engine/server/application/CustomerServiceServer/build/linux/Makefile b/src/engine/server/application/CustomerServiceServer/build/linux/Makefile
new file mode 100644
index 000000000..1b10c5f43
--- /dev/null
+++ b/src/engine/server/application/CustomerServiceServer/build/linux/Makefile
@@ -0,0 +1,102 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = CustomerServiceServer
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl -lxml2
+RELEASE_LINK_FLAGS +=-lpthread -ldl -lxml2
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+ $(SHARED_NETWORK_MESSAGES) \
+ ../../../../../../external/3rd/library/libxml/include \
+ ../../../../../../external/3rd/library/soePlatform \
+ ../../../../../../external/3rd/library/soePlatform/CSAssist/utils \
+ ../../../../../../external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi \
+ /usr/include/libxml2
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ ../../../../../../external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/debug/libCSAssistgameapi.a \
+ $(STL_LIB) \
+ $(ZLIB_LIB) \
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(SHARED_GAME_DEBUG_LIB) \
+ $(SKILL_SYSTEM_DEBUG_LIB) \
+ $(SWG_SHARED_UTILITY_DEBUG_LIB) \
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_RELEASE_LIBS) \
+ ../../../../../../external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/release/libCSAssistgameapi.a \
+ ../../../../../../external/3rd/library/soePlatform/CSAssist/lib/release/libBase_MT.a
+
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS) \
+ xml2
+
+../../../../../../external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/debug/libCSAssistgameapi.a:
+ make -C ../../../../../../external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi debug
+
+../../../../../../external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/release/libCSAssistgameapi.a:
+ make -C ../../../../../../external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi release
+
+../../../../../../external/3rd/library/soePlatform/CSAssist/lib/release/libUnicode.a:
+ make -C ../../../../../../external/3rd/library/soePlatform/CSAssist/utils/Unicode
+
+../../../../../../external/3rd/library/soePlatform/CSAssist/lib/release/libBase_MT.a:
+ make -C ../../../../../../external/3rd/library/soePlatform/CSAssist/utils/Base/linux release_mt
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+#debug_custom_step:
+# cp -f -u ../../../../../../external/3rd/library/soePlatform/libs/Linux-Debug/*.so ../../../../../../../dev/linux
+
+#release_custom_step:
+# cp -f -u ../../../../../../external/3rd/library/soePlatform/libs/Linux-Release/*.so ../../../../../../../dev/linux
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/LogServer/build/linux/Makefile b/src/engine/server/application/LogServer/build/linux/Makefile
new file mode 100644
index 000000000..629678ef8
--- /dev/null
+++ b/src/engine/server/application/LogServer/build/linux/Makefile
@@ -0,0 +1,79 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = LogServer
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl
+RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+ ../../../../../../external/3rd/library/udplibrary
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(STL_LIB) \
+ $(ZLIB_LIB) \
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(SHARED_GAME_DEBUG_LIB) \
+ $(SKILL_SYSTEM_DEBUG_LIB) \
+ $(SWG_SHARED_UTILITY_DEBUG_LIB) \
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_RELEASE_LIBS)
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS)
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/LogServer/build/win32/LogServer.vcproj b/src/engine/server/application/LogServer/build/win32/LogServer.vcproj
new file mode 100644
index 000000000..db16173ae
--- /dev/null
+++ b/src/engine/server/application/LogServer/build/win32/LogServer.vcproj
@@ -0,0 +1,596 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/application/LogServer/build/win32/LogServer.vcxproj b/src/engine/server/application/LogServer/build/win32/LogServer.vcxproj
new file mode 100644
index 000000000..e71c6bf20
--- /dev/null
+++ b/src/engine/server/application/LogServer/build/win32/LogServer.vcxproj
@@ -0,0 +1,354 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {B678A8AD-B63E-462F-8839-1D11284D08B1}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\udplibrary;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstLogServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+ false
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\udplibrary;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstLogServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\udplibrary;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstLogServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {861a873c-d6ad-4b8a-9bed-0314a8b74b54}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {d409a18e-f788-4f1b-bad1-ed58ee4d458f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {4f237764-394d-40cb-9314-daeded42e2cd}
+ false
+
+
+ {38df394c-0909-4507-8029-53d960fea464}
+ false
+
+
+ {67bfda04-f26e-497f-a6fe-ee52550c15fe}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/application/LogServer/build/win32/ignoreLibraries.rsp b/src/engine/server/application/LogServer/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/server/application/LogServer/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/server/application/LogServer/build/win32/ignoreLibraries_d.rsp b/src/engine/server/application/LogServer/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/LogServer/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/LogServer/build/win32/ignoreLibraries_o.rsp b/src/engine/server/application/LogServer/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/LogServer/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/LogServer/build/win32/includePaths.rsp b/src/engine/server/application/LogServer/build/win32/includePaths.rsp
new file mode 100644
index 000000000..0406d0ab8
--- /dev/null
+++ b/src/engine/server/application/LogServer/build/win32/includePaths.rsp
@@ -0,0 +1,28 @@
+../../../../../../engine/server/library/serverKeyShare/include/public
+../../../../../../engine/server/library/serverNetworkMessages/include/public
+../../../../../../engine/server/library/serverUtility/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedLog/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/udplibrary
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../src/shared
+../../src/win32
diff --git a/src/engine/server/application/LogServer/build/win32/libraries.rsp b/src/engine/server/application/LogServer/build/win32/libraries.rsp
new file mode 100644
index 000000000..f76160ad9
--- /dev/null
+++ b/src/engine/server/application/LogServer/build/win32/libraries.rsp
@@ -0,0 +1,4 @@
+winmm.lib
+ws2_32.lib
+zlib.lib
+mswsock.lib
diff --git a/src/engine/server/application/LogServer/build/win32/libraryPaths.rsp b/src/engine/server/application/LogServer/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..154117d6a
--- /dev/null
+++ b/src/engine/server/application/LogServer/build/win32/libraryPaths.rsp
@@ -0,0 +1,2 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/server/application/LogServer/build/win32/settings.rsp b/src/engine/server/application/LogServer/build/win32/settings.rsp
new file mode 100644
index 000000000..78efdddb2
--- /dev/null
+++ b/src/engine/server/application/LogServer/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+console noPchDirectory
+debugInline
diff --git a/src/engine/server/application/LoginPing/build/linux/Makefile b/src/engine/server/application/LoginPing/build/linux/Makefile
new file mode 100644
index 000000000..bbb7ad654
--- /dev/null
+++ b/src/engine/server/application/LoginPing/build/linux/Makefile
@@ -0,0 +1,78 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = LoginPing
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl
+RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+ $(SHARED_NETWORK_INCLUDE_PATH)
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(STL_LIB) \
+ $(ZLIB_LIB) \
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(SHARED_GAME_DEBUG_LIB) \
+ $(SKILL_SYSTEM_DEBUG_LIB) \
+ $(SWG_SHARED_UTILITY_DEBUG_LIB) \
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_RELEASE_LIBS)
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS)
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/LoginServer/build/linux/Makefile b/src/engine/server/application/LoginServer/build/linux/Makefile
new file mode 100644
index 000000000..c5c77d1e0
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/linux/Makefile
@@ -0,0 +1,90 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = LoginServer
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread
+RELEASE_LINK_FLAGS +=-lpthread
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+ $(SHARED_DATABASE_INTERFACE_INCLUDE_PATH) \
+ $(SESSIONAPI_INCLUDE_PATH) \
+ ../../../../../../external/3rd/library/platform \
+ ../../../../../../external/3rd/library/udplibrary
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(MONAPI_DEBUG_LIB) \
+ $(STL_LIB) \
+ $(ZLIB_LIB) \
+
+DEBUG_SHARED_LIBRARIES= \
+ $(SHARED_DATABASE_INTERFACE_DEBUG_LIB) \
+ $(ORACLE_CLIENT_LIB) \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(SHARED_GAME_DEBUG_LIB) \
+ $(SKILL_SYSTEM_DEBUG_LIB) \
+ $(SWG_SHARED_UTILITY_DEBUG_LIB) \
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_RELEASE_LIBS) \
+ $(SHARED_DATABASE_INTERFACE_RELEASE_LIB) \
+ $(SESSIONAPI_PATH)/lib/release/libLoginAPI.a \
+ $(SESSIONAPI_PATH)/lib/release/libCommonAPI.a \
+ $(SESSIONAPI_PATH)/lib/release/libBase.a \
+ ../../../../../../external/3rd/library/platform/MonAPI2/lib/libmonapi.a
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS) \
+ $(ORACLE_HOME)/lib/libclntsh.so
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/LoginServer/build/win32/LoginServer.vcproj b/src/engine/server/application/LoginServer/build/win32/LoginServer.vcproj
new file mode 100644
index 000000000..96d90b705
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/win32/LoginServer.vcproj
@@ -0,0 +1,626 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/application/LoginServer/build/win32/ignoreLibraries.rsp b/src/engine/server/application/LoginServer/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/server/application/LoginServer/build/win32/ignoreLibraries_d.rsp b/src/engine/server/application/LoginServer/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/LoginServer/build/win32/ignoreLibraries_o.rsp b/src/engine/server/application/LoginServer/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/LoginServer/build/win32/includePaths.rsp b/src/engine/server/application/LoginServer/build/win32/includePaths.rsp
new file mode 100644
index 000000000..5e74d2465
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/win32/includePaths.rsp
@@ -0,0 +1,35 @@
+../../../../../../engine/server/library/serverKeyShare/include/public
+../../../../../../engine/server/library/serverNetworkMessages/include/public
+../../../../../../engine/server/library/serverUtility/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedCommandParser/include/public
+../../../../../../engine/shared/library/sharedDatabaseInterface/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedGame/include/public
+../../../../../../engine/shared/library/sharedLog/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../external/3rd/library/platform
+../../../../../../external/3rd/library/platform/projects
+../../../../../../external/3rd/library/sessionApi
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/udplibrary
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../src/shared
+../../src/win32
diff --git a/src/engine/server/application/LoginServer/build/win32/libraries.rsp b/src/engine/server/application/LoginServer/build/win32/libraries.rsp
new file mode 100644
index 000000000..a53e3681e
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/win32/libraries.rsp
@@ -0,0 +1,6 @@
+mswsock.lib
+oci.lib
+ociw32.lib
+winmm.lib
+ws2_32.lib
+zlib.lib
diff --git a/src/engine/server/application/LoginServer/build/win32/libraryPaths.rsp b/src/engine/server/application/LoginServer/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..62adb5c8c
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/win32/libraryPaths.rsp
@@ -0,0 +1,3 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\oracle_win32\ora80\oci\lib\msvc
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/server/application/LoginServer/build/win32/libraryPaths_d.rsp b/src/engine/server/application/LoginServer/build/win32/libraryPaths_d.rsp
new file mode 100644
index 000000000..87f5117ba
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/win32/libraryPaths_d.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\external\3rd\library\sessionApi\lib\debug
diff --git a/src/engine/server/application/LoginServer/build/win32/libraryPaths_o.rsp b/src/engine/server/application/LoginServer/build/win32/libraryPaths_o.rsp
new file mode 100644
index 000000000..87f5117ba
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/win32/libraryPaths_o.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\external\3rd\library\sessionApi\lib\debug
diff --git a/src/engine/server/application/LoginServer/build/win32/libraryPaths_r.rsp b/src/engine/server/application/LoginServer/build/win32/libraryPaths_r.rsp
new file mode 100644
index 000000000..cf55d87cc
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/win32/libraryPaths_r.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\external\3rd\library\sessionApi\lib\release
diff --git a/src/engine/server/application/LoginServer/build/win32/settings.rsp b/src/engine/server/application/LoginServer/build/win32/settings.rsp
new file mode 100644
index 000000000..78efdddb2
--- /dev/null
+++ b/src/engine/server/application/LoginServer/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+console noPchDirectory
+debugInline
diff --git a/src/engine/server/application/MetricsServer/build/linux/Makefile b/src/engine/server/application/MetricsServer/build/linux/Makefile
new file mode 100644
index 000000000..b07d9bc74
--- /dev/null
+++ b/src/engine/server/application/MetricsServer/build/linux/Makefile
@@ -0,0 +1,92 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = MetricsServer
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl -L../../../../../../external/3rd/library/platform/libs/linux-debug
+RELEASE_LINK_FLAGS +=-lpthread -ldl -L../../../../../../external/3rd/library/platform/libs/linux-release
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+ $(SHARED_NETWORK_MESSAGES) \
+ ../../../../../../external/3rd/library/platform \
+ ../../../../../../external/3rd/library/udplibrary
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(MONAPI_DEBUG_LIB) \
+ $(STL_LIB) \
+ $(ZLIB_LIB) \
+
+
+
+# ../../../../../../external/3rd/library/platform/MonAPI2/lib/libmonapi.a
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(SHARED_GAME_DEBUG_LIB) \
+ $(SKILL_SYSTEM_DEBUG_LIB) \
+ $(SWG_SHARED_UTILITY_DEBUG_LIB) \
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_RELEASE_LIBS) \
+ ../../../../../../external/3rd/library/platform/MonAPI2/lib/libmonapi.a
+
+../../../../../../external/3rd/library/platform/MonAPI2/lib/libmonapi.a:
+ make -C ../../../../../../external/3rd/library/platform/MonAPI2 -f Makefile.oldBuildSystem
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS)
+
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+# debug_custom_step:
+# cp -f -u ../../../../../../external/3rd/library/soePlatform/libs/Linux-Debug/*.so ../../../../../../../dev/linux
+
+# release_custom_step:
+# cp -f -u ../../../../../../external/3rd/library/soePlatform/libs/Linux-Release/*.so ../../../../../../../dev/linux
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/PhonyApp/build/linux/Makefile b/src/engine/server/application/PhonyApp/build/linux/Makefile
new file mode 100644
index 000000000..59b7d542c
--- /dev/null
+++ b/src/engine/server/application/PhonyApp/build/linux/Makefile
@@ -0,0 +1,52 @@
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+OUTPUT = Phony
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl
+RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(STL_LIB) \
+ $(ZLIB_LIB)
+
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+
+#######################################################
+# Source file list
+#######################################################
+
+#SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/PlanetServer/build/linux/Makefile b/src/engine/server/application/PlanetServer/build/linux/Makefile
new file mode 100644
index 000000000..902adc30e
--- /dev/null
+++ b/src/engine/server/application/PlanetServer/build/linux/Makefile
@@ -0,0 +1,77 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = PlanetServer
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl
+RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES)
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(STL_LIB) \
+ $(ZLIB_LIB)
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(SHARED_GAME_DEBUG_LIB) \
+ $(SKILL_SYSTEM_DEBUG_LIB) \
+ $(SWG_SHARED_UTILITY_DEBUG_LIB) \
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_RELEASE_LIBS)
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS)
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/PlanetServer/build/win32/PlanetServer.vcproj b/src/engine/server/application/PlanetServer/build/win32/PlanetServer.vcproj
new file mode 100644
index 000000000..db5e93e6c
--- /dev/null
+++ b/src/engine/server/application/PlanetServer/build/win32/PlanetServer.vcproj
@@ -0,0 +1,852 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/application/PlanetServer/build/win32/PlanetServer.vcxproj b/src/engine/server/application/PlanetServer/build/win32/PlanetServer.vcxproj
new file mode 100644
index 000000000..17973b7b6
--- /dev/null
+++ b/src/engine/server/application/PlanetServer/build/win32/PlanetServer.vcxproj
@@ -0,0 +1,390 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {4D369B2A-B4D6-4337-9AF7-E8F697F7994D}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstPlanetServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+ false
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstPlanetServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstPlanetServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {861a873c-d6ad-4b8a-9bed-0314a8b74b54}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {d409a18e-f788-4f1b-bad1-ed58ee4d458f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {20d4d8eb-87ca-4c5f-8ba3-ffc898563c40}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {4f237764-394d-40cb-9314-daeded42e2cd}
+ false
+
+
+ {4eff0958-fbc8-4053-971a-7022eb0035e4}
+ false
+
+
+ {38df394c-0909-4507-8029-53d960fea464}
+ false
+
+
+ {67bfda04-f26e-497f-a6fe-ee52550c15fe}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/application/PlanetServer/build/win32/ignoreLibraries_d.rsp b/src/engine/server/application/PlanetServer/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/PlanetServer/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/PlanetServer/build/win32/ignoreLibraries_o.rsp b/src/engine/server/application/PlanetServer/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/PlanetServer/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/PlanetServer/build/win32/includePaths.rsp b/src/engine/server/application/PlanetServer/build/win32/includePaths.rsp
new file mode 100644
index 000000000..053471cae
--- /dev/null
+++ b/src/engine/server/application/PlanetServer/build/win32/includePaths.rsp
@@ -0,0 +1,30 @@
+../../../../../../engine/server/library/serverKeyShare/include/public
+../../../../../../engine/server/library/serverMetrics/include/public
+../../../../../../engine/server/library/serverNetworkMessages/include/public
+../../../../../../engine/server/library/serverUtility/include/public
+../../../../../../engine/shared/library/sharedCommandParser/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedLog/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryBlockManager/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../src/shared
+../../src/win32
diff --git a/src/engine/server/application/PlanetServer/build/win32/libraries.rsp b/src/engine/server/application/PlanetServer/build/win32/libraries.rsp
new file mode 100644
index 000000000..f76160ad9
--- /dev/null
+++ b/src/engine/server/application/PlanetServer/build/win32/libraries.rsp
@@ -0,0 +1,4 @@
+winmm.lib
+ws2_32.lib
+zlib.lib
+mswsock.lib
diff --git a/src/engine/server/application/PlanetServer/build/win32/libraryPaths.rsp b/src/engine/server/application/PlanetServer/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..cec4d791c
--- /dev/null
+++ b/src/engine/server/application/PlanetServer/build/win32/libraryPaths.rsp
@@ -0,0 +1,3 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+../../../../../../external/3rd/library/zlib/lib/win32
+
diff --git a/src/engine/server/application/PlanetServer/build/win32/settings.rsp b/src/engine/server/application/PlanetServer/build/win32/settings.rsp
new file mode 100644
index 000000000..78efdddb2
--- /dev/null
+++ b/src/engine/server/application/PlanetServer/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+console noPchDirectory
+debugInline
diff --git a/src/engine/server/application/ServerConsole/build/linux/Makefile b/src/engine/server/application/ServerConsole/build/linux/Makefile
new file mode 100644
index 000000000..54f0926e0
--- /dev/null
+++ b/src/engine/server/application/ServerConsole/build/linux/Makefile
@@ -0,0 +1,82 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = ServerConsole
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl
+RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+ $(SHARED_DATABASE_INTERFACE_PATH)/include/public \
+ $(SESSIONAPI_INCLUDE_PATH)
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(STL_LIB) \
+ $(ZLIB_LIB)
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_RELEASE_LIBS)
+
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(SHARED_GAME_DEBUG_LIB) \
+ $(SKILL_SYSTEM_DEBUG_LIB) \
+ $(SWG_SHARED_UTILITY_DEBUG_LIB) \
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_RELEASE_LIBS)
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS)
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/ServerConsole/build/win32/ServerConsole.vcproj b/src/engine/server/application/ServerConsole/build/win32/ServerConsole.vcproj
new file mode 100644
index 000000000..667a22257
--- /dev/null
+++ b/src/engine/server/application/ServerConsole/build/win32/ServerConsole.vcproj
@@ -0,0 +1,456 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/application/ServerConsole/build/win32/ServerConsole.vcxproj b/src/engine/server/application/ServerConsole/build/win32/ServerConsole.vcxproj
new file mode 100644
index 000000000..fd0e89928
--- /dev/null
+++ b/src/engine/server/application/ServerConsole/build/win32/ServerConsole.vcxproj
@@ -0,0 +1,318 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {FA266E3D-BC73-4DC1-B666-B5F34C71085F}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstServerConsole.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstServerConsole.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\engine\server\library\serverKeyShare\include\public;..\..\..\..\..\..\engine\server\library\serverMetrics\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedCommandParser\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\src\shared;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstServerConsole.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;%(AdditionalLibraryDirectories)
+ libcmtd;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {9496a020-65ad-45a6-9acf-ae4f3358b027}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries.rsp b/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries_d.rsp b/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries_o.rsp b/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries_r.rsp b/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries_r.rsp
new file mode 100644
index 000000000..c0d84d50c
--- /dev/null
+++ b/src/engine/server/application/ServerConsole/build/win32/ignoreLibraries_r.rsp
@@ -0,0 +1,2 @@
+libcmtd
+
diff --git a/src/engine/server/application/ServerConsole/build/win32/includePaths.rsp b/src/engine/server/application/ServerConsole/build/win32/includePaths.rsp
new file mode 100644
index 000000000..9044aeaec
--- /dev/null
+++ b/src/engine/server/application/ServerConsole/build/win32/includePaths.rsp
@@ -0,0 +1,31 @@
+../../../../../../engine/server/library/serverKeyShare/include/public
+../../../../../../engine/server/library/serverMetrics/include/public
+../../../../../../engine/server/library/serverNetworkMessages/include/public
+../../../../../../engine/server/library/serverUtility/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedCommandParser/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedLog/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../src/shared
+../../src/win32
diff --git a/src/engine/server/application/ServerConsole/build/win32/libraries.rsp b/src/engine/server/application/ServerConsole/build/win32/libraries.rsp
new file mode 100644
index 000000000..5fb12f7cf
--- /dev/null
+++ b/src/engine/server/application/ServerConsole/build/win32/libraries.rsp
@@ -0,0 +1,3 @@
+winmm.lib
+ws2_32.lib
+mswsock.lib
diff --git a/src/engine/server/application/ServerConsole/build/win32/libraryPaths.rsp b/src/engine/server/application/ServerConsole/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..c5557c8a5
--- /dev/null
+++ b/src/engine/server/application/ServerConsole/build/win32/libraryPaths.rsp
@@ -0,0 +1,3 @@
+../../../../../../external/3rd/library/stlport453/lib/win32
+../../../../../../external/3rd/library/pcre/4.1/win32/lib
+../../../../../../external/3rd/library/libxml2-2.6.7.win32/lib
diff --git a/src/engine/server/application/ServerConsole/build/win32/settings.rsp b/src/engine/server/application/ServerConsole/build/win32/settings.rsp
new file mode 100644
index 000000000..3a1fad272
--- /dev/null
+++ b/src/engine/server/application/ServerConsole/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+console noPchDirectory copyDev
+debugInline
diff --git a/src/engine/server/application/TaskManager/build/linux/Makefile b/src/engine/server/application/TaskManager/build/linux/Makefile
new file mode 100644
index 000000000..c52604838
--- /dev/null
+++ b/src/engine/server/application/TaskManager/build/linux/Makefile
@@ -0,0 +1,78 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = TaskManager
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl
+RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+ $(SHARED_NETWORK_INCLUDE_PATH)
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ $(STL_LIB) \
+ $(ZLIB_LIB) \
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS) \
+ $(SHARED_GAME_DEBUG_LIB) \
+ $(SKILL_SYSTEM_DEBUG_LIB) \
+ $(SWG_SHARED_UTILITY_DEBUG_LIB) \
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_RELEASE_LIBS)
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS)
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/application/TaskManager/build/win32/TaskManager.vcproj b/src/engine/server/application/TaskManager/build/win32/TaskManager.vcproj
new file mode 100644
index 000000000..072c93eb9
--- /dev/null
+++ b/src/engine/server/application/TaskManager/build/win32/TaskManager.vcproj
@@ -0,0 +1,992 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/application/TaskManager/build/win32/TaskManager.vcxproj b/src/engine/server/application/TaskManager/build/win32/TaskManager.vcxproj
new file mode 100644
index 000000000..f5598bb32
--- /dev/null
+++ b/src/engine/server/application/TaskManager/build/win32/TaskManager.vcxproj
@@ -0,0 +1,390 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {ACAB6CEA-5A4A-4CE4-97D6-333FBA3D8DC0}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\Archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreaded
+ true
+ true
+ true
+ FirstTaskManager.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+ false
+ false
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\Archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTaskManager.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedLog\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\Archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstTaskManager.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ winmm.lib;ws2_32.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {d409a18e-f788-4f1b-bad1-ed58ee4d458f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {38df394c-0909-4507-8029-53d960fea464}
+ false
+
+
+ {67bfda04-f26e-497f-a6fe-ee52550c15fe}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/application/TaskManager/build/win32/ignoreLibraries_d.rsp b/src/engine/server/application/TaskManager/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/TaskManager/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/TaskManager/build/win32/ignoreLibraries_o.rsp b/src/engine/server/application/TaskManager/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/server/application/TaskManager/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/server/application/TaskManager/build/win32/includePaths.rsp b/src/engine/server/application/TaskManager/build/win32/includePaths.rsp
new file mode 100644
index 000000000..7a4f8d3d8
--- /dev/null
+++ b/src/engine/server/application/TaskManager/build/win32/includePaths.rsp
@@ -0,0 +1,19 @@
+../../../../../../engine/server/library/serverNetworkMessages/include/public
+../../../../../../engine/server/library/serverUtility/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedLog/include/public
+../../../../../../engine/shared/library/sharedMemoryBlockManager/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/Archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/singleton/include
+../../src/shared
diff --git a/src/engine/server/application/TaskManager/build/win32/libraries.rsp b/src/engine/server/application/TaskManager/build/win32/libraries.rsp
new file mode 100644
index 000000000..2e557bbc5
--- /dev/null
+++ b/src/engine/server/application/TaskManager/build/win32/libraries.rsp
@@ -0,0 +1,5 @@
+winmm.lib
+ws2_32.lib
+zlib.lib
+mswsock.lib
+
diff --git a/src/engine/server/application/TaskManager/build/win32/libraryPaths.rsp b/src/engine/server/application/TaskManager/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..2c5551c44
--- /dev/null
+++ b/src/engine/server/application/TaskManager/build/win32/libraryPaths.rsp
@@ -0,0 +1,2 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+../../../../../../external/3rd/library/zlib/lib/win32
diff --git a/src/engine/server/application/TaskManager/build/win32/settings.rsp b/src/engine/server/application/TaskManager/build/win32/settings.rsp
new file mode 100644
index 000000000..78efdddb2
--- /dev/null
+++ b/src/engine/server/application/TaskManager/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+console noPchDirectory
+debugInline
diff --git a/src/engine/server/application/TransferServer/build/linux/Makefile b/src/engine/server/application/TransferServer/build/linux/Makefile
new file mode 100644
index 000000000..49e212afc
--- /dev/null
+++ b/src/engine/server/application/TransferServer/build/linux/Makefile
@@ -0,0 +1,81 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = TransferServer
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -ldl
+RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ $(COMMON_ENGINE_INCLUDES) \
+ $(SHARED_DATABASE_INTERFACE_PATH)/include/public \
+ $(SESSIONAPI_INCLUDE_PATH) \
+ ../../../../../../external/3rd/library/soePlatform \
+ ../../../../../../external/3rd/library/soePlatform/CTServiceGameAPI
+
+DEBUG_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_DEBUG_LIBS) \
+ ../../../../../../external/3rd/library/soePlatform/CTServiceGameAPI/libCTServiceGameAPI.a
+
+RELEASE_LINK_LIBRARIES = \
+ $(COMMON_ENGINE_RELEASE_LIBS) \
+ ../../../../../../external/3rd/library/soePlatform/CTServiceGameAPI/libCTServiceGameAPI.a
+
+
+../../../../../../external/3rd/library/soePlatform/CTServiceGameAPI/libCTServiceGameAPI.a:
+ make -C ../../../../../../external/3rd/library/soePlatform/CTServiceGameAPI
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS)
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS)
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_DEBUG_DEPENDS)
+
+RELEASE_PROJECT_DEPENDS = \
+ $(COMMON_ENGINE_RELEASE_DEPENDS)
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =$(shell find $$PWD/../../src/linux -name "*.cpp")
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/server/library/serverCommodityAPI/build/win32/serverCommodityAPI.vcproj b/src/engine/server/library/serverCommodityAPI/build/win32/serverCommodityAPI.vcproj
new file mode 100644
index 000000000..94cf422b7
--- /dev/null
+++ b/src/engine/server/library/serverCommodityAPI/build/win32/serverCommodityAPI.vcproj
@@ -0,0 +1,1403 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/library/serverDatabase/build/linux/Makefile b/src/engine/server/library/serverDatabase/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/server/library/serverDatabase/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/server/library/serverDatabase/build/shared_unix/shared_unix.mak b/src/engine/server/library/serverDatabase/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..5eff2581e
--- /dev/null
+++ b/src/engine/server/library/serverDatabase/build/shared_unix/shared_unix.mak
@@ -0,0 +1,64 @@
+LIBRARY = serverDatabase
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+SHARED_SRC_DIR = ../../../../../shared/library
+SERVER_SRC_DIR = ../../..
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(SERVER_SRC_DIR)/serverGame/include/public \
+ $(SERVER_SRC_DIR)/serverKeyShare/include/public \
+ $(SERVER_SRC_DIR)/serverNetworkMessages/include/public \
+ $(SERVER_SRC_DIR)/serverUtility/include/public \
+ $(SHARED_SRC_DIR)/sharedDatabaseInterface/include/public \
+ $(SHARED_SRC_DIR)/sharedDebug/include/public \
+ $(SHARED_SRC_DIR)/sharedFile/include/public \
+ $(SHARED_SRC_DIR)/sharedFoundation/include/public \
+ $(SHARED_SRC_DIR)/sharedFoundationTypes/include/public \
+ $(SHARED_SRC_DIR)/sharedLog/include/public \
+ $(SHARED_SRC_DIR)/sharedMemoryManager/include/public \
+ $(SHARED_SRC_DIR)/sharedMemoryBlockManager/include/public \
+ $(SHARED_SRC_DIR)/sharedMath/include/public \
+ $(SHARED_SRC_DIR)/sharedMathArchive/include/public \
+ $(SHARED_SRC_DIR)/sharedMessageDispatch/include/public \
+ $(SHARED_SRC_DIR)/sharedNetworkMessages/include/public \
+ $(SHARED_SRC_DIR)/sharedRandom/include/public \
+ $(SHARED_SRC_DIR)/sharedObject/include/public \
+ $(SHARED_SRC_DIR)/sharedSynchronization/include/public \
+ $(SHARED_SRC_DIR)/sharedThread/include/public \
+ $(SHARED_SRC_DIR)/sharedUtility/include/public \
+ $(SHARED_NETWORK_INCLUDE_PATH) \
+ $(COMMON_ENGINE_INCLUDES) \
+ ../../../../../../external/ours/library/archive/include \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/ours/library/vnlv3 \
+ ../../../../../../external/ours/library/vnlv3/$(PLATFORM) \
+ ../../../../../../game/shared/library/swgSharedUtility/include/public
+
+include ../../../../../build/shared_unix/library.mak
+
+
+
+#####################
+# Special targets #
+#####################
+# This isn't ideal, but it will do until we've properly sorted what's in engine and what's in game.
+
+encoder: ../../../../../../game/server/application/SwgDatabaseServer/src/shared/core/Encoder.cpp ../../../../../../game/server/application/SwgDatabaseServer/src/shared/core/Decoder.cpp
+
+clean_encoder:
+ rm ../../../../../../game/server/application/SwgDatabaseServer/src/shared/core/Encoder.cpp
+ rm ../../../../../../game/server/application/SwgDatabaseServer/src/shared/core/Decoder.cpp
+
+../../../../../../game/server/application/SwgDatabaseServer/src/shared/core/Encoder.cpp: ../../codegen/makeencoder.pl ../../../serverGame/src/shared/object/*.h ../../../serverGame/src/shared/object/*.cpp
+ @echo Generating Encoder.cpp. If you see a \"permission denied\" error, be sure you have the file checked out. \(Add one more "../" to the path it reports.\)
+ @cd ../../codegen ; perl makeencoder.pl ../../serverGame/src/shared/object/*.h ../../serverGame/src/shared/object/*.cpp > ../../../../../game/server/application/SwgDatabaseServer/src/shared/core/Encoder.cpp
+
+../../../../../../game/server/application/SwgDatabaseServer/src/shared/core/Decoder.cpp: ../../codegen/makedecoder.pl ../../../serverGame/src/shared/object/*.h ../../../serverGame/src/shared/object/*.cpp
+ @echo Generating Decoder.cpp. If you see a \"permission denied\" error, be sure you have the file checked out. \(Add one more "../" to the path it reports.\)
+ @cd ../../codegen ; perl makedecoder.pl ../../serverGame/src/shared/object/*.h ../../serverGame/src/shared/object/*.cpp > ../../../../../game/server/application/SwgDatabaseServer/src/shared/core/Decoder.cpp
diff --git a/src/engine/server/library/serverDatabase/build/win32/includePaths.rsp b/src/engine/server/library/serverDatabase/build/win32/includePaths.rsp
new file mode 100644
index 000000000..f319ab168
--- /dev/null
+++ b/src/engine/server/library/serverDatabase/build/win32/includePaths.rsp
@@ -0,0 +1,36 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
+../../../../../server/library/serverGame/include/public
+../../../../../server/library/serverKeyShare/include/public
+../../../../../server/library/serverNetworkMessages/include/public
+../../../../../server/library/serverUtility/include/public
+../../../../../shared/library/sharedCommandParser/include/public
+../../../../../shared/library/sharedDatabaseInterface/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedLog/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedNetwork/include/public
+../../../../../shared/library/sharedNetworkMessages/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../../../server/library/serverMetrics/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/server/library/serverDatabase/build/win32/serverDatabase.vcproj b/src/engine/server/library/serverDatabase/build/win32/serverDatabase.vcproj
new file mode 100644
index 000000000..13967a406
--- /dev/null
+++ b/src/engine/server/library/serverDatabase/build/win32/serverDatabase.vcproj
@@ -0,0 +1,2538 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/library/serverDatabase/build/win32/serverDatabase.vcxproj b/src/engine/server/library/serverDatabase/build/win32/serverDatabase.vcxproj
new file mode 100644
index 000000000..d93afe955
--- /dev/null
+++ b/src/engine/server/library/serverDatabase/build/win32/serverDatabase.vcxproj
@@ -0,0 +1,442 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {9C682884-289D-4E31-B5A8-5B4FE6B10452}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\server\library\serverKeyShare\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\server\library\serverUtility\include\public;..\..\..\..\..\shared\library\sharedCommandParser\include\public;..\..\..\..\..\shared\library\sharedDatabaseInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\server\library\serverMetrics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverDatabase\FirstServerDatabase.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\server\library\serverKeyShare\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\server\library\serverUtility\include\public;..\..\..\..\..\shared\library\sharedCommandParser\include\public;..\..\..\..\..\shared\library\sharedDatabaseInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\server\library\serverMetrics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverDatabase\FirstServerDatabase.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\server\library\serverKeyShare\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\server\library\serverUtility\include\public;..\..\..\..\..\shared\library\sharedCommandParser\include\public;..\..\..\..\..\shared\library\sharedDatabaseInterface\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\server\library\serverMetrics\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ serverDatabase\FirstServerDatabase.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/library/serverDatabase/build/win32/settings.rsp b/src/engine/server/library/serverDatabase/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/server/library/serverDatabase/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/server/library/serverGame/build/linux/Makefile b/src/engine/server/library/serverGame/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/server/library/serverGame/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/server/library/serverGame/build/shared_unix/shared_unix.mak b/src/engine/server/library/serverGame/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..02d104182
--- /dev/null
+++ b/src/engine/server/library/serverGame/build/shared_unix/shared_unix.mak
@@ -0,0 +1,81 @@
+LIBRARY = serverGame
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+SHARED_SRC_DIR = ../../../../../shared/library
+SERVER_SRC_DIR = ../../..
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared/behavior \
+ ../../src/shared/core \
+ ../../src/shared/controller \
+ ../../src/shared/object \
+ ../../src/shared/console \
+ ../../src/shared/network \
+ ../../src/shared/objectTemplate \
+ ../../src/$(PLATFORM) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ $(ARCHIVE_PATH)/include \
+ $(COLLISION_INCLUDE_PATH) \
+ $(COMMAND_PARSER_INCLUDE_PATH) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FILE_INTERFACE_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(FRACTAL_INCLUDE_PATH) \
+ $(GAME_INCLUDE_PATH) \
+ $(LOCALIZATION_INCLUDE_PATH) \
+ $(LOG_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(MEMORY_MANAGER_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(PATHFINDING_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(SERVER_METRICS_INCLUDE_PATH) \
+ $(SERVER_NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(SERVER_PATHFINDING_INCLUDE_PATH) \
+ $(SERVER_SCRIPT_INCLUDE_PATH) \
+ $(SERVER_UTILITY_INCLUDE_PATH) \
+ $(SKILL_SYSTEM_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(SWG_SERVER_NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(SWG_SHARED_NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(TERRAIN_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(SHARED_NETWORK_INCLUDE_PATH) \
+ $(PCRE_INCLUDE_PATH) \
+ $(BOOST_INCLUDE_PATH) \
+ $(SHARED_REGEX_INCLUDE_PATH) \
+ ../../../../../../external/3rd/library/regex \
+ ../../../../../../external/3rd/library/soePlatform/ \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/ours/library/unicode/include \
+ ../../../../../../external/ours/library/unicodeArchive/include \
+ ../../../../../../game/server/application/SwgGameServer/include/public \
+ ../../../../../../game/shared/library/swgSharedNetworkMessages/include/public \
+ ../../../../../../game/shared/library/swgSharedUtility/include/public
+
+debug_custom_step: ../../src/shared/generated/Packager.cpp
+
+release_custom_step: ../../src/shared/generated/Packager.cpp
+
+depend_custom_step: ../../src/shared/generated/Packager.cpp
+
+custom_clean_step:
+ rm ../../src/shared/generated/Packager.cpp
+
+../../src/shared/generated/Packager.cpp: ../../src/shared/generated/Packager_cpp.template ../../../codegen/package_data.txt ../../../codegen/make_packages.pl
+ cp ../../src/shared/generated/Packager_cpp.template ../../src/shared/generated/Packager.cpp
+ chmod +w ../../src/shared/generated/Packager.cpp
+ perl ../../../codegen/make_packages.pl --datafile ../../../codegen/package_data.txt --source ../../src/shared/generated/Packager.cpp
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/server/library/serverGame/build/win32/additionalFiles.rsp b/src/engine/server/library/serverGame/build/win32/additionalFiles.rsp
new file mode 100644
index 000000000..7b808a065
--- /dev/null
+++ b/src/engine/server/library/serverGame/build/win32/additionalFiles.rsp
@@ -0,0 +1 @@
+..\..\src\shared\generated\Packager.cpp
diff --git a/src/engine/server/library/serverGame/build/win32/defines.rsp b/src/engine/server/library/serverGame/build/win32/defines.rsp
new file mode 100644
index 000000000..f256df873
--- /dev/null
+++ b/src/engine/server/library/serverGame/build/win32/defines.rsp
@@ -0,0 +1 @@
+PCRE_STATIC
diff --git a/src/engine/server/library/serverGame/build/win32/includePaths.rsp b/src/engine/server/library/serverGame/build/win32/includePaths.rsp
new file mode 100644
index 000000000..d0c857e1c
--- /dev/null
+++ b/src/engine/server/library/serverGame/build/win32/includePaths.rsp
@@ -0,0 +1,56 @@
+../../../../../../external/3rd/library/java/include
+../../../../../../external/3rd/library/java/include/win32
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/pcre/4.1/win32/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/3rd/library/soePlatform
+../../../../../../external/3rd/library/platform/projects
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/server/application/SwgGameServer/include/public
+../../../../../../game/server/library/swgServerNetworkMessages/include/public
+../../../../../../game/shared/library/swgSharedNetworkMessages/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
+../../../../../server/library/serverCommodityAPI/src/shared
+../../../../../server/library/serverCommodityAPI/src/shared/NetworkMessages
+../../../../../server/library/serverMetrics/include/public
+../../../../../server/library/serverNetworkMessages/include/public
+../../../../../server/library/serverPathfinding/include/public
+../../../../../server/library/serverScript/include/public
+../../../../../server/library/serverUtility/include/public
+../../../../../server/library/serverCommodityAPI/include/public
+../../../../../server/library/serverCommodityAPI/src/shared
+../../../../../server/library/serverCommodityAPI/src/shared/NetworkMessages
+../../../../../server/library/serverCommodityAPI/src/win32
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedCommandParser/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedFractal/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedLog/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedNetwork/include/public
+../../../../../shared/library/sharedNetworkMessages/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedPathfinding/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedRegex/include/public
+../../../../../shared/library/sharedSkillSystem/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/server/library/serverGame/build/win32/serverGame.vcproj b/src/engine/server/library/serverGame/build/win32/serverGame.vcproj
new file mode 100644
index 000000000..c03cf4dac
--- /dev/null
+++ b/src/engine/server/library/serverGame/build/win32/serverGame.vcproj
@@ -0,0 +1,12528 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/library/serverGame/build/win32/serverGame.vcxproj b/src/engine/server/library/serverGame/build/win32/serverGame.vcxproj
new file mode 100644
index 000000000..cef8fb66a
--- /dev/null
+++ b/src/engine/server/library/serverGame/build/win32/serverGame.vcxproj
@@ -0,0 +1,1565 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {F8271BF7-CFBF-4DE3-84BB-428058E0B069}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\java\include;..\..\..\..\..\..\external\3rd\library\java\include\win32;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\3rd\library\soePlatform;..\..\..\..\..\..\external\3rd\library\platform\projects;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\application\SwgGameServer\include\public;..\..\..\..\..\..\game\server\library\swgServerNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\server\library\serverCommodityAPI\src\shared;..\..\..\..\..\server\library\serverCommodityAPI\src\shared\NetworkMessages;..\..\..\..\..\server\library\serverMetrics\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\server\library\serverPathfinding\include\public;..\..\..\..\..\server\library\serverScript\include\public;..\..\..\..\..\server\library\serverUtility\include\public;..\..\..\..\..\server\library\serverCommodityAPI\include\public;..\..\..\..\..\server\library\serverCommodityAPI\src\shared;..\..\..\..\..\server\library\serverCommodityAPI\src\shared\NetworkMessages;..\..\..\..\..\server\library\serverCommodityAPI\src\win32;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCommandParser\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverGame\FirstServerGame.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\java\include;..\..\..\..\..\..\external\3rd\library\java\include\win32;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\3rd\library\soePlatform;..\..\..\..\..\..\external\3rd\library\platform\projects;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\application\SwgGameServer\include\public;..\..\..\..\..\..\game\server\library\swgServerNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\server\library\serverCommodityAPI\src\shared;..\..\..\..\..\server\library\serverCommodityAPI\src\shared\NetworkMessages;..\..\..\..\..\server\library\serverMetrics\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\server\library\serverPathfinding\include\public;..\..\..\..\..\server\library\serverScript\include\public;..\..\..\..\..\server\library\serverUtility\include\public;..\..\..\..\..\server\library\serverCommodityAPI\include\public;..\..\..\..\..\server\library\serverCommodityAPI\src\shared;..\..\..\..\..\server\library\serverCommodityAPI\src\shared\NetworkMessages;..\..\..\..\..\server\library\serverCommodityAPI\src\win32;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCommandParser\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverGame\FirstServerGame.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\java\include;..\..\..\..\..\..\external\3rd\library\java\include\win32;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\3rd\library\soePlatform;..\..\..\..\..\..\external\3rd\library\platform\projects;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\application\SwgGameServer\include\public;..\..\..\..\..\..\game\server\library\swgServerNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\server\library\serverCommodityAPI\src\shared;..\..\..\..\..\server\library\serverCommodityAPI\src\shared\NetworkMessages;..\..\..\..\..\server\library\serverMetrics\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\server\library\serverPathfinding\include\public;..\..\..\..\..\server\library\serverScript\include\public;..\..\..\..\..\server\library\serverUtility\include\public;..\..\..\..\..\server\library\serverCommodityAPI\include\public;..\..\..\..\..\server\library\serverCommodityAPI\src\shared;..\..\..\..\..\server\library\serverCommodityAPI\src\shared\NetworkMessages;..\..\..\..\..\server\library\serverCommodityAPI\src\win32;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCommandParser\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ serverGame\FirstServerGame.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ copy ..\..\src\shared\generated\Packager_cpp.template ..\..\src\shared\generated\Packager.cpp
+perl ..\..\..\codegen\make_packages.pl --windows --datafile ..\..\..\codegen\package_data.txt --source ..\..\src\shared\generated\Packager.cpp
+
+ ../../src/shared/generated/Packager_cpp.template;../../../codegen/package_data.txt;../../../codegen/make_packages.pl;%(AdditionalInputs)
+ ../../src/shared/generated/Packager.cpp;%(Outputs)
+ copy ..\..\src\shared\generated\Packager_cpp.template ..\..\src\shared\generated\Packager.cpp
+perl ..\..\..\codegen\make_packages.pl --windows --datafile ..\..\..\codegen\package_data.txt --source ..\..\src\shared\generated\Packager.cpp
+
+ ../../src/shared/generated/Packager_cpp.template;../../../codegen/package_data.txt;../../../codegen/make_packages.pl;%(AdditionalInputs)
+ ../../src/shared/generated/Packager.cpp;%(Outputs)
+ copy ..\..\src\shared\generated\Packager_cpp.template ..\..\src\shared\generated\Packager.cpp
+perl ..\..\..\codegen\make_packages.pl --windows --datafile ..\..\..\codegen\package_data.txt --source ..\..\src\shared\generated\Packager.cpp
+
+ ../../src/shared/generated/Packager_cpp.template;../../../codegen/package_data.txt;../../../codegen/make_packages.pl;%(AdditionalInputs)
+ ../../src/shared/generated/Packager.cpp;%(Outputs)
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/library/serverGame/build/win32/settings.rsp b/src/engine/server/library/serverGame/build/win32/settings.rsp
new file mode 100644
index 000000000..c623cec3d
--- /dev/null
+++ b/src/engine/server/library/serverGame/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+library
+Zm256
+debugInline
diff --git a/src/engine/server/library/serverGame/src/shared/generated/Packager.cpp b/src/engine/server/library/serverGame/src/shared/generated/Packager.cpp
new file mode 100644
index 000000000..6e04cb02f
--- /dev/null
+++ b/src/engine/server/library/serverGame/src/shared/generated/Packager.cpp
@@ -0,0 +1,762 @@
+// ======================================================================
+//
+// Packager.cpp
+// copyright (c) 2002 Sony Online Entertainment
+//
+// Edit Packager_cpp.template. Do not edit Packager.cpp
+//
+// To change the contents of the addMemebersToPackage functions,
+// edit package_data.txt.
+//
+// ======================================================================
+
+#include "serverGame/FirstServerGame.h"
+#include "serverGame/TangibleObject.h"
+
+#include "serverGame/BattlefieldMarkerObject.h"
+#include "serverGame/BuildingObject.h"
+#include "serverGame/CellObject.h"
+#include "serverGame/CityObject.h"
+#include "serverGame/CommandQueue.h"
+#include "serverGame/CreatureObject.h"
+#include "serverGame/DraftSchematicObject.h"
+#include "serverGame/FactoryObject.h"
+#include "serverGame/GroupObject.h"
+#include "serverGame/GuildObject.h"
+#include "serverGame/HarvesterInstallationObject.h"
+#include "serverGame/InstallationObject.h"
+#include "serverGame/IntangibleObject.h"
+#include "serverGame/ManufactureSchematicObject.h"
+#include "serverGame/ManufactureInstallationObject.h"
+#include "serverGame/MissionObject.h"
+#include "serverGame/PlanetObject.h"
+#include "serverGame/PlayerQuestObject.h"
+#include "serverGame/PlayerObject.h"
+#include "serverGame/ResourceContainerObject.h"
+#include "serverGame/ResourcePoolObject.h"
+#include "serverGame/ResourceTypeObject.h"
+#include "serverGame/ServerObject.h"
+#include "serverGame/ShipObject.h"
+#include "serverGame/StaticObject.h"
+#include "serverGame/TangibleObject.h"
+#include "serverGame/UniverseObject.h"
+#include "serverGame/VehicleObject.h"
+#include "serverGame/WeaponObject.h"
+#include "serverScript/GameScriptObject.h"
+#include "sharedFoundation/DynamicVariableList.h"
+#include "sharedObject/ContainedByProperty.h"
+#include "sharedObject/SlottedContainmentProperty.h"
+
+
+//!!!BEGIN GENERATED PACKAGEADD
+/*
+ * Generated function. Do not edit.
+ */
+void BattlefieldMarkerObject::addMembersToPackages()
+{
+ addServerVariable (m_regionName);
+ addServerVariable (m_battlefieldParticipants);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void BuildingObject::addMembersToPackages()
+{
+ addServerVariable (m_allowed);
+ addServerVariable (m_banned);
+ addServerVariable (m_isPublic);
+ addServerVariable (m_maintenanceCost);
+ addServerVariable (m_timeLastChecked);
+ addServerVariable (m_cityId);
+ addServerVariable_np (m_contentsLoaded);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void CellObject::addMembersToPackages()
+{
+ addServerVariable (m_allowed);
+ addServerVariable (m_banned);
+ addSharedVariable (m_isPublic);
+ addSharedVariable (m_cellNumber);
+ addSharedVariable_np (m_cellLabel);
+ addSharedVariable_np (m_labelLocationOffset);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void CityObject::addMembersToPackages()
+{
+ addServerVariable (m_cities);
+ addServerVariable (m_citizens);
+ addServerVariable (m_structures);
+ addServerVariable_np (m_citiesInfo);
+ addServerVariable_np (m_citizensInfo);
+ addServerVariable_np (m_structuresInfo);
+ addServerVariable_np (m_citizenToCityId);
+ addServerVariable_np (m_pgcRatingInfo);
+ addServerVariable_np (m_pgcRatingChroniclerId);
+ addServerVariable_np (m_gcwRegionDefenderCities);
+ addServerVariable_np (m_gcwRegionDefenderCitiesCount);
+ addServerVariable_np (m_gcwRegionDefenderCitiesVersion);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void CreatureObject::addMembersToPackages()
+{
+ addServerVariable (m_attributes);
+ addServerVariable (m_baseRunSpeed);
+ addServerVariable (m_baseWalkSpeed);
+ addServerVariable (m_persistedBuffs);
+ addServerVariable (m_wsX);
+ addServerVariable (m_wsY);
+ addServerVariable (m_wsZ);
+ addSharedVariable (m_posture);
+ addSharedVariable (m_rank);
+ addSharedVariable (m_masterId);
+ addSharedVariable (m_scaleFactor);
+ addSharedVariable (m_shockWounds);
+ addSharedVariable (m_states);
+ addAuthClientServerVariable (m_maxAttributes);
+ addAuthClientServerVariable (m_skills);
+ addServerVariable_np (m_notifyRegions);
+ addServerVariable_np (m_missionCriticalObjectSet);
+ addServerVariable_np (m_attributeModList);
+ addServerVariable_np (m_baseSlopeModPercent);
+ addServerVariable_np (m_cachedCurrentAttributeModValues);
+ addServerVariable_np (m_cachedMaxAttributeModValues);
+ getCommandQueue()->addToPackage(m_serverPackage_np);
+ addServerVariable_np (m_cover);
+ addServerVariable_np (m_currentAttitude);
+ addServerVariable_np (m_isStatic);
+ addServerVariable_np (m_lastBehavior);
+ addServerVariable_np (m_lastMonitorReportPosition);
+ addServerVariable_np (m_locomotion);
+ addServerVariable_np (m_maxMentalStates);
+ addServerVariable_np (m_mentalStateDecays);
+ addServerVariable_np (m_mentalStatesToward);
+ addServerVariable_np (m_monitoredCreatureMovements);
+ addServerVariable_np (m_performanceWatchTarget);
+ addServerVariable_np (m_stopWalkRun);
+ addServerVariable_np (m_timeToUpdateGuildWarPvpStatus);
+ addServerVariable_np (m_guildWarEnabled);
+ addServerVariable_np (m_militiaOfCityId);
+ addServerVariable_np (m_locatedInCityId);
+ addServerVariable_np (m_invulnerabilityTimer);
+ addServerVariable_np (m_allowSARegen);
+ addServerVariable_np (m_inviterForPendingGroup);
+ addServerVariable_np (m_timedMod);
+ addServerVariable_np (m_timedModDuration);
+ addServerVariable_np (m_timedModUpdateTime);
+ addSharedVariable_np (m_level);
+ addSharedVariable_np (m_levelHealthGranted);
+ addSharedVariable_np (m_animatingSkillData);
+ addSharedVariable_np (m_animationMood);
+ addSharedVariable_np (m_currentWeapon);
+ addSharedVariable_np (m_group);
+ addSharedVariable_np (m_groupInviter);
+ addSharedVariable_np (m_guildId);
+ addSharedVariable_np (m_lookAtTarget);
+ addSharedVariable_np (m_intendedTarget);
+ addSharedVariable_np (m_mood);
+ addSharedVariable_np (m_performanceStartTime);
+ addSharedVariable_np (m_performanceType);
+ addSharedVariable_np (m_totalAttributes);
+ addSharedVariable_np (m_totalMaxAttributes);
+ addSharedVariable_np (m_wearableData);
+ addSharedVariable_np (m_alternateAppearanceSharedObjectTemplateName);
+ addSharedVariable_np (m_coverVisibility);
+ addSharedVariable_np (m_buffs);
+ addSharedVariable_np (m_clientUsesAnimationLocomotion);
+ addSharedVariable_np (m_difficulty);
+ addSharedVariable_np (m_hologramType);
+ addSharedVariable_np (m_visibleOnMapAndRadar);
+ addSharedVariable_np (m_isBeast);
+ addSharedVariable_np (m_forceShowHam);
+ addSharedVariable_np (m_wearableAppearanceData);
+ addSharedVariable_np (m_decoyOrigin);
+ addAuthClientServerVariable_np (m_accelPercent);
+ addAuthClientServerVariable_np (m_accelScale);
+ addAuthClientServerVariable_np (m_attribBonus);
+ addAuthClientServerVariable_np (m_modMap);
+ addAuthClientServerVariable_np (m_movementPercent);
+ addAuthClientServerVariable_np (m_movementScale);
+ addAuthClientServerVariable_np (m_performanceListenTarget);
+ addAuthClientServerVariable_np (m_runSpeed);
+ addAuthClientServerVariable_np (m_slopeModAngle);
+ addAuthClientServerVariable_np (m_slopeModPercent);
+ addAuthClientServerVariable_np (m_turnScale);
+ addAuthClientServerVariable_np (m_walkSpeed);
+ addAuthClientServerVariable_np (m_waterModPercent);
+ addAuthClientServerVariable_np (m_groupMissionCriticalObjectSet);
+ addAuthClientServerVariable_np (m_commands);
+ addAuthClientServerVariable_np (m_totalLevelXp);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void FactoryObject::addMembersToPackages()
+{
+ addServerVariable_np (m_craftingCount);
+ addServerVariable_np (m_craftingSchematic);
+ addServerVariable_np (m_attributes);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void GroupObject::addMembersToPackages()
+{
+ addServerVariable_np (m_groupPOBShipAndOwners);
+ addServerVariable_np (m_groupMemberLevels);
+ addServerVariable_np (m_groupMemberProfessions);
+ addServerVariable_np (m_allMembers);
+ addServerVariable_np (m_nonPCMembers);
+ addSharedVariable_np (m_groupMembers);
+ addSharedVariable_np (m_groupShipFormationMembers);
+ addSharedVariable_np (m_groupName);
+ addSharedVariable_np (m_groupLevel);
+ addSharedVariable_np (m_formationNameCrc);
+ addSharedVariable_np (m_lootMaster);
+ addSharedVariable_np (m_lootRule);
+ addSharedVariable_np (m_groupPickupTimer);
+ addSharedVariable_np (m_groupPickupLocation);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void GuildObject::addMembersToPackages()
+{
+ addServerVariable (m_names);
+ addServerVariable (m_leaders);
+ addServerVariable (m_members);
+ addServerVariable (m_enemies);
+ addSharedVariable (m_abbrevs);
+ addServerVariable_np (m_guildsInfo);
+ addServerVariable_np (m_membersInfo);
+ addServerVariable_np (m_fullMembers);
+ addServerVariable_np (m_sponsoredMembers);
+ addServerVariable_np (m_guildLeaders);
+ addServerVariable_np (m_gcwRegionDefenderBonus);
+ addServerVariable_np (m_gcwImperialScorePercentileHistoryCountThisGalaxy);
+ addServerVariable_np (m_gcwGroupImperialScorePercentileHistoryCountThisGalaxy);
+ addServerVariable_np (m_gcwGroupCategoryImperialScoreRawThisGalaxy);
+ addServerVariable_np (m_gcwGroupImperialScoreRawThisGalaxy);
+ addServerVariable_np (m_gcwImperialScoreOtherGalaxies);
+ addServerVariable_np (m_gcwRebelScoreOtherGalaxies);
+ addServerVariable_np (m_gcwRegionDefenderGuilds);
+ addServerVariable_np (m_gcwRegionDefenderGuildsCount);
+ addServerVariable_np (m_gcwRegionDefenderGuildsVersion);
+ addSharedVariable_np (m_gcwImperialScorePercentileThisGalaxy);
+ addSharedVariable_np (m_gcwGroupImperialScorePercentileThisGalaxy);
+ addSharedVariable_np (m_gcwImperialScorePercentileHistoryThisGalaxy);
+ addSharedVariable_np (m_gcwGroupImperialScorePercentileHistoryThisGalaxy);
+ addSharedVariable_np (m_gcwImperialScorePercentileOtherGalaxies);
+ addSharedVariable_np (m_gcwGroupImperialScorePercentileOtherGalaxies);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void HarvesterInstallationObject::addMembersToPackages()
+{
+ addServerVariable (m_installedEfficiency);
+ addServerVariable (m_resourceType);
+ addServerVariable (m_maxExtractionRate);
+ addServerVariable (m_currentExtractionRate);
+ addServerVariable (m_maxHopperAmount);
+ addServerVariable (m_hopperResource);
+ addServerVariable (m_hopperAmount);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void InstallationObject::addMembersToPackages()
+{
+ addServerVariable (m_installationType);
+ addServerVariable (m_tickCount);
+ addServerVariable (m_activateStartTime);
+ addSharedVariable (m_activated);
+ addSharedVariable (m_power);
+ addSharedVariable (m_powerRate);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void IntangibleObject::addMembersToPackages()
+{
+ addSharedVariable (m_count);
+ addServerVariable_np (m_crcs);
+ addServerVariable_np (m_positions);
+ addServerVariable_np (m_headings);
+ addServerVariable_np (m_scripts);
+ addServerVariable_np (m_player);
+ addServerVariable_np (m_objects);
+ addServerVariable_np (m_center);
+ addServerVariable_np (m_radius);
+ addServerVariable_np (m_creator);
+ addServerVariable_np (m_theaterName);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void ManufactureInstallationObject::addMembersToPackages()
+{
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void ManufactureSchematicObject::addMembersToPackages()
+{
+ addServerVariable (m_draftSchematic);
+ addServerVariable (m_creatorId);
+ addServerVariable (m_creatorName);
+ addSharedVariable (m_attributes);
+ addSharedVariable (m_itemsPerContainer);
+ addSharedVariable (m_manufactureTime);
+ addServerVariable_np (m_factories);
+ addServerVariable_np (m_resourceMaxAttributes);
+ addSharedVariable_np (m_appearanceData);
+ addSharedVariable_np (m_customAppearance);
+ addSharedVariable_np (m_draftSchematicSharedTemplate);
+ addSharedVariable_np (m_isCrafting);
+ addSharedVariable_np (m_schematicChangedSignal);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void MissionObject::addMembersToPackages()
+{
+ addServerVariable (m_rootScriptName);
+ addServerVariable (m_missionHolderId);
+ addSharedVariable (m_difficulty);
+ addSharedVariable (m_endLocation);
+ addSharedVariable (m_missionCreator);
+ addSharedVariable (m_reward);
+ addSharedVariable (m_startLocation);
+ addSharedVariable (m_targetAppearance);
+ addSharedVariable (m_description);
+ addSharedVariable (m_title);
+ addSharedVariable (m_status);
+ addSharedVariable (m_missionType);
+ addSharedVariable (m_targetName);
+ addSharedVariable (m_waypoint);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void PlanetObject::addMembersToPackages()
+{
+ addServerVariable (m_planetName);
+ addServerVariable_np (m_travelPointList);
+ addServerVariable_np (m_weatherIndex);
+ addServerVariable_np (m_windVelocityX);
+ addServerVariable_np (m_windVelocityY);
+ addServerVariable_np (m_windVelocityZ);
+ addServerVariable_np (m_mapLocationMapStatic);
+ addServerVariable_np (m_mapLocationMapDynamic);
+ addServerVariable_np (m_mapLocationMapPersist);
+ addServerVariable_np (m_mapLocationVersionStatic);
+ addServerVariable_np (m_mapLocationVersionDynamic);
+ addServerVariable_np (m_mapLocationVersionPersist);
+ addServerVariable_np (m_collectionServerFirst);
+ addServerVariable_np (m_collectionServerFirstUpdateNumber);
+ addServerVariable_np (m_connectedCharacterLfgData);
+ addServerVariable_np (m_connectedCharacterLfgDataFactionalPresence);
+ addServerVariable_np (m_connectedCharacterLfgDataFactionalPresenceGrid);
+ addServerVariable_np (m_connectedCharacterBiographyData);
+ addServerVariable_np (m_currentEvents);
+ addServerVariable_np (m_gcwImperialScore);
+ addServerVariable_np (m_gcwRebelScore);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void PlayerObject::addMembersToPackages()
+{
+ addServerVariable (m_stationId);
+ addServerVariable (m_houseId);
+ addServerVariable (m_accountNumLots);
+ addServerVariable (m_accountMaxLotsAdjustment);
+ addServerVariable (m_accountIsOutcast);
+ addServerVariable (m_accountCheaterLevel);
+ addServerVariable (m_forceRegenRate);
+ addServerVariable (m_currentGcwRating);
+ addServerVariable (m_maxGcwImperialRating);
+ addServerVariable (m_maxGcwRebelRating);
+ addServerVariable (m_nextGcwRatingCalcTime);
+ addSharedVariable (m_matchMakingCharacterProfileId);
+ addSharedVariable (m_matchMakingPersonalProfileId);
+ addSharedVariable (m_skillTitle);
+ addSharedVariable (m_bornDate);
+ addSharedVariable (m_playedTime);
+ addSharedVariable (m_roleIconChoice);
+ addSharedVariable (m_skillTemplate);
+ addSharedVariable (m_currentGcwPoints);
+ addSharedVariable (m_currentPvpKills);
+ addSharedVariable (m_lifetimeGcwPoints);
+ addSharedVariable (m_lifetimePvpKills);
+ addSharedVariable (m_collections);
+ addSharedVariable (m_collections2);
+ addSharedVariable (m_showBackpack);
+ addSharedVariable (m_showHelmet);
+ addServerVariable_np (m_craftingTool);
+ addServerVariable_np (m_forceRegenValue);
+ addServerVariable_np (m_theaterDatatable);
+ addServerVariable_np (m_theaterPosition);
+ addServerVariable_np (m_theaterScene);
+ addServerVariable_np (m_theaterScript);
+ addServerVariable_np (m_theaterNumObjects);
+ addServerVariable_np (m_theaterRadius);
+ addServerVariable_np (m_theaterCreator);
+ addServerVariable_np (m_theaterName);
+ addServerVariable_np (m_theaterId);
+ addServerVariable_np (m_theaterLocationType);
+ addServerVariable_np (m_sessionStartPlayTime);
+ addServerVariable_np (m_sessionLastActiveTime);
+ addServerVariable_np (m_sessionActivePlayTimeDuration);
+ addServerVariable_np (m_aggroImmuneStartTime);
+ addServerVariable_np (m_aggroImmuneDuration);
+ addServerVariable_np (m_isFromLogin);
+ addServerVariable_np (m_sessionActivity);
+ addServerVariable_np (m_chatSpamSpatialNumCharacters);
+ addServerVariable_np (m_chatSpamNonSpatialNumCharacters);
+ addServerVariable_np (m_chatSpamTimeEndInterval);
+ addServerVariable_np (m_chatSpamNextTimeToSyncWithChatServer);
+ addServerVariable_np (m_currentGcwRegion);
+ addSharedVariable_np (m_privledgedTitle);
+ addSharedVariable_np (m_currentGcwRank);
+ addSharedVariable_np (m_currentGcwRankProgress);
+ addSharedVariable_np (m_maxGcwImperialRank);
+ addSharedVariable_np (m_maxGcwRebelRank);
+ addSharedVariable_np (m_gcwRatingActualCalcTime);
+ addSharedVariable_np (m_citizenshipCity);
+ addSharedVariable_np (m_citizenshipType);
+ addSharedVariable_np (m_cityGcwDefenderRegion);
+ addSharedVariable_np (m_guildGcwDefenderRegion);
+ addSharedVariable_np (m_squelchedById);
+ addSharedVariable_np (m_squelchedByName);
+ addSharedVariable_np (m_squelchExpireTime);
+ addSharedVariable_np (m_environmentFlags);
+ addSharedVariable_np (m_defaultAttackOverride);
+ addFirstParentAuthClientServerVariable (m_experiencePoints);
+ addFirstParentAuthClientServerVariable (m_waypoints);
+ addFirstParentAuthClientServerVariable (m_forcePower);
+ addFirstParentAuthClientServerVariable (m_maxForcePower);
+ addFirstParentAuthClientServerVariable (m_completedQuests);
+ addFirstParentAuthClientServerVariable (m_activeQuests);
+ addFirstParentAuthClientServerVariable (m_currentQuest);
+ addFirstParentAuthClientServerVariable (m_quests);
+ addFirstParentAuthClientServerVariable (m_workingSkill);
+ addFirstParentAuthClientServerVariable_np (m_craftingLevel);
+ addFirstParentAuthClientServerVariable_np (m_craftingStage);
+ addFirstParentAuthClientServerVariable_np (m_craftingStation);
+ addFirstParentAuthClientServerVariable_np (m_draftSchematics);
+ addFirstParentAuthClientServerVariable_np (m_craftingComponentBioLink);
+ addFirstParentAuthClientServerVariable_np (m_experimentPoints);
+ addFirstParentAuthClientServerVariable_np (m_expModified);
+ addFirstParentAuthClientServerVariable_np (m_friendList);
+ addFirstParentAuthClientServerVariable_np (m_ignoreList);
+ addFirstParentAuthClientServerVariable_np (m_spokenLanguage);
+ addFirstParentAuthClientServerVariable_np (m_food);
+ addFirstParentAuthClientServerVariable_np (m_maxFood);
+ addFirstParentAuthClientServerVariable_np (m_drink);
+ addFirstParentAuthClientServerVariable_np (m_maxDrink);
+ addFirstParentAuthClientServerVariable_np (m_meds);
+ addFirstParentAuthClientServerVariable_np (m_maxMeds);
+ addFirstParentAuthClientServerVariable_np (m_groupWaypoints);
+ addFirstParentAuthClientServerVariable_np (m_playerHateList);
+ addFirstParentAuthClientServerVariable_np (m_killMeter);
+ addFirstParentAuthClientServerVariable_np (m_accountNumLotsOverLimitSpam);
+ addFirstParentAuthClientServerVariable_np (m_petId);
+ addFirstParentAuthClientServerVariable_np (m_petCommandList);
+ addFirstParentAuthClientServerVariable_np (m_petToggledCommands);
+ addFirstParentAuthClientServerVariable_np (m_guildRank);
+ addFirstParentAuthClientServerVariable_np (m_citizenRank);
+ addFirstParentAuthClientServerVariable_np (m_galacticReserveDeposit);
+ addFirstParentAuthClientServerVariable_np (m_pgcRatingCount);
+ addFirstParentAuthClientServerVariable_np (m_pgcRatingTotal);
+ addFirstParentAuthClientServerVariable_np (m_pgcLastRatingTime);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void PlayerQuestObject::addMembersToPackages()
+{
+ addSharedVariable (m_title);
+ addSharedVariable (m_description);
+ addSharedVariable (m_creator);
+ addSharedVariable (m_totalTasks);
+ addSharedVariable (m_difficulty);
+ addSharedVariable (m_taskTitle1);
+ addSharedVariable (m_taskDescription1);
+ addSharedVariable (m_taskTitle2);
+ addSharedVariable (m_taskDescription2);
+ addSharedVariable (m_taskTitle3);
+ addSharedVariable (m_taskDescription3);
+ addSharedVariable (m_taskTitle4);
+ addSharedVariable (m_taskDescription4);
+ addSharedVariable (m_taskTitle5);
+ addSharedVariable (m_taskDescription5);
+ addSharedVariable (m_taskTitle6);
+ addSharedVariable (m_taskDescription6);
+ addSharedVariable (m_taskTitle7);
+ addSharedVariable (m_taskDescription7);
+ addSharedVariable (m_taskTitle8);
+ addSharedVariable (m_taskDescription8);
+ addSharedVariable (m_taskTitle9);
+ addSharedVariable (m_taskDescription9);
+ addSharedVariable (m_taskTitle10);
+ addSharedVariable (m_taskDescription10);
+ addSharedVariable (m_taskTitle11);
+ addSharedVariable (m_taskDescription11);
+ addSharedVariable (m_taskTitle12);
+ addSharedVariable (m_taskDescription12);
+ addSharedVariable_np (m_tasks);
+ addSharedVariable_np (m_taskCounters);
+ addSharedVariable_np (m_taskStatus);
+ addSharedVariable_np (m_waypoints);
+ addSharedVariable_np (m_rewards);
+ addSharedVariable_np (m_creatorName);
+ addSharedVariable_np (m_completed);
+ addSharedVariable_np (m_recipe);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void ResourceContainerObject::addMembersToPackages()
+{
+ addServerVariable (m_source);
+ addSharedVariable (m_quantity);
+ addSharedVariable (m_resourceType);
+ addSharedVariable_np (m_maxQuantity);
+ addSharedVariable_np (m_parentName);
+ addSharedVariable_np (m_resourceName);
+ addSharedVariable_np (m_resourceNameId);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void ServerObject::addMembersToPackages()
+{
+ addServerVariable (m_cacheVersion);
+ addServerVariable (m_loadContents);
+ ;
+ m_objVars.addToPackage(m_serverPackage,m_serverPackage_np);
+ addServerVariable (m_persisted);
+ addServerVariable (m_playerControlled);
+ addServerVariable (m_sceneId);
+ m_scriptObject->addToPackage(m_serverPackage);
+ addServerVariable (m_conversionId);
+ addServerVariable (m_staticItemName);
+ addServerVariable (m_staticItemVersion);
+ addSharedVariable (m_complexity);
+ addSharedVariable (m_nameStringId);
+ addSharedVariable (m_objectName);
+ addSharedVariable (m_volume);
+ addAuthClientServerVariable (m_bankBalance);
+ addAuthClientServerVariable (m_cashBalance);
+ addServerVariable_np (m_attributesAttained);
+ addServerVariable_np (m_attributesInterested);
+ addServerVariable_np (m_proxyServerProcessIds);
+ addServerVariable_np (m_transformSequence);
+ addServerVariable_np (m_triggerVolumeInfo);
+ addServerVariable_np (m_contentsLoaded);
+ addServerVariable_np (m_contentsRequested);
+ addServerVariable_np (m_messageTos);
+ addServerVariable_np (m_defaultAlterTime);
+ addServerVariable_np (m_observersCount);
+ addServerVariable_np (m_includeInBuildout);
+ addServerVariable_np (m_broadcastListeners);
+ addServerVariable_np (m_broadcastBroadcasters);
+ addSharedVariable_np (m_authServerProcessId);
+ addSharedVariable_np (m_descriptionStringId);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void ShipObject::addMembersToPackages()
+{
+ addServerVariable (m_componentCrc);
+ addSharedVariable (m_slideDampener);
+ addSharedVariable (m_currentChassisHitPoints);
+ addSharedVariable (m_maximumChassisHitPoints);
+ addSharedVariable (m_chassisType);
+ addSharedVariable (m_componentArmorHitpointsMaximum);
+ addSharedVariable (m_componentArmorHitpointsCurrent);
+ addSharedVariable (m_componentHitpointsCurrent);
+ addSharedVariable (m_componentHitpointsMaximum);
+ addSharedVariable (m_componentFlags);
+ addSharedVariable (m_shieldHitpointsFrontMaximum);
+ addSharedVariable (m_shieldHitpointsBackMaximum);
+ addAuthClientServerVariable (m_componentEfficiencyGeneral);
+ addAuthClientServerVariable (m_componentEfficiencyEnergy);
+ addAuthClientServerVariable (m_componentEnergyMaintenanceRequirement);
+ addAuthClientServerVariable (m_componentMass);
+ addAuthClientServerVariable (m_componentNames);
+ addAuthClientServerVariable (m_componentCreators);
+ addAuthClientServerVariable (m_weaponDamageMaximum);
+ addAuthClientServerVariable (m_weaponDamageMinimum);
+ addAuthClientServerVariable (m_weaponEffectivenessShields);
+ addAuthClientServerVariable (m_weaponEffectivenessArmor);
+ addAuthClientServerVariable (m_weaponEnergyPerShot);
+ addAuthClientServerVariable (m_weaponRefireRate);
+ addAuthClientServerVariable (m_weaponAmmoCurrent);
+ addAuthClientServerVariable (m_weaponAmmoMaximum);
+ addAuthClientServerVariable (m_weaponAmmoType);
+ addAuthClientServerVariable (m_chassisComponentMassMaximum);
+ addAuthClientServerVariable (m_shieldRechargeRate);
+ addAuthClientServerVariable (m_capacitorEnergyMaximum);
+ addAuthClientServerVariable (m_capacitorEnergyRechargeRate);
+ addAuthClientServerVariable (m_engineAccelerationRate);
+ addAuthClientServerVariable (m_engineDecelerationRate);
+ addAuthClientServerVariable (m_enginePitchAccelerationRate);
+ addAuthClientServerVariable (m_engineYawAccelerationRate);
+ addAuthClientServerVariable (m_engineRollAccelerationRate);
+ addAuthClientServerVariable (m_enginePitchRateMaximum);
+ addAuthClientServerVariable (m_engineYawRateMaximum);
+ addAuthClientServerVariable (m_engineRollRateMaximum);
+ addAuthClientServerVariable (m_engineSpeedMaximum);
+ addAuthClientServerVariable (m_reactorEnergyGenerationRate);
+ addAuthClientServerVariable (m_boosterEnergyMaximum);
+ addAuthClientServerVariable (m_boosterEnergyRechargeRate);
+ addAuthClientServerVariable (m_boosterEnergyConsumptionRate);
+ addAuthClientServerVariable (m_boosterAcceleration);
+ addAuthClientServerVariable (m_boosterSpeedMaximum);
+ addAuthClientServerVariable (m_droidInterfaceCommandSpeed);
+ addAuthClientServerVariable (m_installedDroidControlDevice);
+ addAuthClientServerVariable (m_cargoHoldContentsMaximum);
+ addAuthClientServerVariable (m_cargoHoldContentsCurrent);
+ addAuthClientServerVariable (m_cargoHoldContents);
+ addServerVariable_np (m_engineSpeedRotationFactorMaximum);
+ addServerVariable_np (m_engineSpeedRotationFactorMinimum);
+ addServerVariable_np (m_engineSpeedRotationFactorOptimal);
+ addSharedVariable_np (m_shipId);
+ addSharedVariable_np (m_shipActualAccelerationRate);
+ addSharedVariable_np (m_shipActualDecelerationRate);
+ addSharedVariable_np (m_shipActualPitchAccelerationRate);
+ addSharedVariable_np (m_shipActualYawAccelerationRate);
+ addSharedVariable_np (m_shipActualRollAccelerationRate);
+ addSharedVariable_np (m_shipActualPitchRateMaximum);
+ addSharedVariable_np (m_shipActualYawRateMaximum);
+ addSharedVariable_np (m_shipActualRollRateMaximum);
+ addSharedVariable_np (m_shipActualSpeedMaximum);
+ addSharedVariable_np (m_pilotLookAtTarget);
+ addSharedVariable_np (m_pilotLookAtTargetSlot);
+ addSharedVariable_np (m_targetableSlotBitfield);
+ addSharedVariable_np (m_componentCrcForClient);
+ addSharedVariable_np (m_wingName);
+ addSharedVariable_np (m_typeName);
+ addSharedVariable_np (m_difficulty);
+ addSharedVariable_np (m_faction);
+ addSharedVariable_np (m_shieldHitpointsFrontCurrent);
+ addSharedVariable_np (m_shieldHitpointsBackCurrent);
+ addSharedVariable_np (m_guildId);
+ addAuthClientServerVariable_np (m_chassisComponentMassCurrent);
+ addAuthClientServerVariable_np (m_chassisSpeedMaximumModifier);
+ addAuthClientServerVariable_np (m_capacitorEnergyCurrent);
+ addAuthClientServerVariable_np (m_boosterEnergyCurrent);
+ addAuthClientServerVariable_np (m_weaponEfficiencyRefireRate);
+ addAuthClientServerVariable_np (m_cargoHoldContentsResourceTypeInfo);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void StaticObject::addMembersToPackages()
+{
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void TangibleObject::addMembersToPackages()
+{
+ addServerVariable (m_customAppearance);
+ addServerVariable (m_locationTargets);
+ addServerVariable (m_ownerId);
+ addServerVariable (m_creatorId);
+ addServerVariable (m_sourceDraftSchematic);
+ addSharedVariable (m_pvpFaction);
+ addSharedVariable (m_pvpType);
+ addSharedVariable (m_appearanceData);
+ addSharedVariable (m_components);
+ addSharedVariable (m_condition);
+ addSharedVariable (m_count);
+ addSharedVariable (m_damageTaken);
+ addSharedVariable (m_maxHitPoints);
+ addSharedVariable (m_visible);
+ addServerVariable_np (m_pvpEnemies);
+ addServerVariable_np (m_pvpMercenaryFaction);
+ addServerVariable_np (m_pvpMercenaryType);
+ addServerVariable_np (m_pvpFutureType);
+ addServerVariable_np (m_hateOverTime);
+ addServerVariable_np (m_pvpRegionCrc);
+ addServerVariable_np (m_conversations);
+ addServerVariable_np (m_hideFromClient);
+ addServerVariable_np (m_combatStartTime);
+ addServerVariable_np (m_attackableOverride);
+ addServerVariable_np (m_passiveReveal);
+ addSharedVariable_np (m_inCombat);
+ addSharedVariable_np (m_passiveRevealPlayerCharacter);
+ addSharedVariable_np (m_mapColorOverride);
+ addSharedVariable_np (m_accessList);
+ addSharedVariable_np (m_guildAccessList);
+ addSharedVariable_np (m_effectsMap);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void UniverseObject::addMembersToPackages()
+{
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void VehicleObject::addMembersToPackages()
+{
+ addServerVariable (m_bogus);
+}
+
+/*
+ * Generated function. Do not edit.
+ */
+void WeaponObject::addMembersToPackages()
+{
+ addServerVariable (m_minDamage);
+ addServerVariable (m_maxDamage);
+ addServerVariable (m_woundChance);
+ addServerVariable (m_attackCost);
+ addServerVariable (m_damageRadius);
+ addSharedVariable (m_attackSpeed);
+ addSharedVariable (m_accuracy);
+ addSharedVariable (m_minRange);
+ addSharedVariable (m_maxRange);
+ addSharedVariable (m_damageType);
+ addSharedVariable (m_elementalType);
+ addSharedVariable (m_elementalValue);
+ addServerVariable_np (m_isDefaultWeapon);
+ addSharedVariable_np (m_weaponType);
+}
+
+//!!!END GENERATED PACKAGEADD
diff --git a/src/engine/server/library/serverKeyShare/build/linux/Makefile b/src/engine/server/library/serverKeyShare/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/server/library/serverKeyShare/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/server/library/serverKeyShare/build/shared_unix/shared_unix.mak b/src/engine/server/library/serverKeyShare/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..1c760e253
--- /dev/null
+++ b/src/engine/server/library/serverKeyShare/build/shared_unix/shared_unix.mak
@@ -0,0 +1,23 @@
+LIBRARY = serverKeyShare
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+SHARED_SRC_DIR = ../../../../../shared/library
+SERVER_SRC_DIR = ../../..
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared/ \
+ ../../src/$(PLATFORM) \
+ $(SHARED_SRC_DIR)/sharedDebug/include/public \
+ $(SHARED_SRC_DIR)/sharedFoundation/include/public \
+ $(SHARED_SRC_DIR)/sharedFoundationTypes/include/public \
+ $(SHARED_SRC_DIR)/sharedMemoryManager/include/public \
+ $(SHARED_SRC_DIR)/sharedRandom/include/public \
+ ../../../../../../external/3rd/library/stl/stlport \
+ ../../../../../../external/ours/library/archive/include \
+ ../../../../../../external/ours/library/crypto/include \
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/server/library/serverKeyShare/build/win32/includePaths.rsp b/src/engine/server/library/serverKeyShare/build/win32/includePaths.rsp
new file mode 100644
index 000000000..1c72bd12c
--- /dev/null
+++ b/src/engine/server/library/serverKeyShare/build/win32/includePaths.rsp
@@ -0,0 +1,10 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/crypto/include
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/server/library/serverKeyShare/build/win32/serverKeyShare.vcproj b/src/engine/server/library/serverKeyShare/build/win32/serverKeyShare.vcproj
new file mode 100644
index 000000000..ef8eea443
--- /dev/null
+++ b/src/engine/server/library/serverKeyShare/build/win32/serverKeyShare.vcproj
@@ -0,0 +1,370 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/library/serverKeyShare/build/win32/serverKeyShare.vcxproj b/src/engine/server/library/serverKeyShare/build/win32/serverKeyShare.vcxproj
new file mode 100644
index 000000000..45ae0ab3f
--- /dev/null
+++ b/src/engine/server/library/serverKeyShare/build/win32/serverKeyShare.vcxproj
@@ -0,0 +1,195 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {4F237764-394D-40CB-9314-DAEDED42E2CD}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\crypto\include;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverKeyShare\FirstServerKeyShare.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\crypto\include;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverKeyShare\FirstServerKeyShare.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\crypto\include;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ serverKeyShare\FirstServerKeyShare.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/library/serverKeyShare/build/win32/settings.rsp b/src/engine/server/library/serverKeyShare/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/server/library/serverKeyShare/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/server/library/serverMetrics/build/linux/Makefile b/src/engine/server/library/serverMetrics/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/server/library/serverMetrics/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/server/library/serverMetrics/build/shared_unix/shared_unix.mak b/src/engine/server/library/serverMetrics/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..99d235f44
--- /dev/null
+++ b/src/engine/server/library/serverMetrics/build/shared_unix/shared_unix.mak
@@ -0,0 +1,35 @@
+LIBRARY = serverMetrics
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+SHARED_SRC_DIR = ../../../../../shared/library
+SERVER_SRC_DIR = ../../..
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(MEMORY_MANAGER_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(SERVER_KEYSHARE_INCLUDE_PATH) \
+ $(SERVER_NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(SERVER_UTILITY_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(ARCHIVE_PATH)/include \
+ $(UNICODE_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ ../../../../../../external/ours/library/unicodeArchive/include \
+ ../../../../../shared/library/sharedNetwork/include/public \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/ours/library/localization/include
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/server/library/serverMetrics/build/win32/includePaths.rsp b/src/engine/server/library/serverMetrics/build/win32/includePaths.rsp
new file mode 100644
index 000000000..efb939445
--- /dev/null
+++ b/src/engine/server/library/serverMetrics/build/win32/includePaths.rsp
@@ -0,0 +1,22 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedNetwork/include/public
+../../../../../shared/library/sharedNetworkMessages/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../serverKeyShare/include/public
+../../../serverNetworkMessages/include/public
+../../../serverUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/server/library/serverMetrics/build/win32/serverMetrics.vcproj b/src/engine/server/library/serverMetrics/build/win32/serverMetrics.vcproj
new file mode 100644
index 000000000..d22893331
--- /dev/null
+++ b/src/engine/server/library/serverMetrics/build/win32/serverMetrics.vcproj
@@ -0,0 +1,442 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/library/serverMetrics/build/win32/serverMetrics.vcxproj b/src/engine/server/library/serverMetrics/build/win32/serverMetrics.vcxproj
new file mode 100644
index 000000000..872f38adc
--- /dev/null
+++ b/src/engine/server/library/serverMetrics/build/win32/serverMetrics.vcxproj
@@ -0,0 +1,203 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {4EFF0958-FBC8-4053-971A-7022EB0035E4}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\serverKeyShare\include\public;..\..\..\serverNetworkMessages\include\public;..\..\..\serverUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverMetrics\FirstServerMetrics.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\serverKeyShare\include\public;..\..\..\serverNetworkMessages\include\public;..\..\..\serverUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverMetrics\FirstServerMetrics.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\serverKeyShare\include\public;..\..\..\serverNetworkMessages\include\public;..\..\..\serverUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ serverMetrics\FirstServerMetrics.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/library/serverMetrics/build/win32/settings.rsp b/src/engine/server/library/serverMetrics/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/server/library/serverMetrics/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/server/library/serverNetworkMessages/build/linux/Makefile b/src/engine/server/library/serverNetworkMessages/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/server/library/serverNetworkMessages/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/server/library/serverNetworkMessages/build/shared_unix/shared_unix.mak b/src/engine/server/library/serverNetworkMessages/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..dd67b0628
--- /dev/null
+++ b/src/engine/server/library/serverNetworkMessages/build/shared_unix/shared_unix.mak
@@ -0,0 +1,19 @@
+LIBRARY = serverNetworkMessages
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+SHARED_SRC_DIR = ../../../../../shared/library
+SERVER_SRC_DIR = ../../..
+
+INCLUDE_DIRS = \
+ $(COMMON_ENGINE_INCLUDES) \
+ ../../include/public \
+ ../../include/private \
+ $(GAME_INCLUDE_PATH) \
+ $(SERVER_GAME_INCLUDE_PATH) \
+ $(SHARED_GAME_INCLUDE_PATH) \
+ $(SWG_SHARED_UTILITY_INCLUDE_PATH) \
+ $(BOOST_INCLUDE_PATH)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/server/library/serverNetworkMessages/build/win32/includePaths.rsp b/src/engine/server/library/serverNetworkMessages/build/win32/includePaths.rsp
new file mode 100644
index 000000000..91ce4fb3a
--- /dev/null
+++ b/src/engine/server/library/serverNetworkMessages/build/win32/includePaths.rsp
@@ -0,0 +1,32 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/server/library/swgServerNetworkMessages/include/public
+../../../../../../game/shared/library/swgSharedNetworkMessages/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedNetwork/include/public
+../../../../../shared/library/sharedNetworkMessages/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../serverGame/include/public
+../../../serverUtility/include/public
+../../../serverKeyShare/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/server/library/serverNetworkMessages/build/win32/serverNetworkMessages.vcproj b/src/engine/server/library/serverNetworkMessages/build/win32/serverNetworkMessages.vcproj
new file mode 100644
index 000000000..ae10e745f
--- /dev/null
+++ b/src/engine/server/library/serverNetworkMessages/build/win32/serverNetworkMessages.vcproj
@@ -0,0 +1,8302 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/library/serverNetworkMessages/build/win32/serverNetworkMessages.vcxproj b/src/engine/server/library/serverNetworkMessages/build/win32/serverNetworkMessages.vcxproj
new file mode 100644
index 000000000..04137b1d0
--- /dev/null
+++ b/src/engine/server/library/serverNetworkMessages/build/win32/serverNetworkMessages.vcxproj
@@ -0,0 +1,1088 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {38DF394C-0909-4507-8029-53D960FEA464}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\library\swgServerNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\serverGame\include\public;..\..\..\serverUtility\include\public;..\..\..\serverKeyShare\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverNetworkMessages\FirstServerNetworkMessages.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\library\swgServerNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\serverGame\include\public;..\..\..\serverUtility\include\public;..\..\..\serverKeyShare\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverNetworkMessages\FirstServerNetworkMessages.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\library\swgServerNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\serverGame\include\public;..\..\..\serverUtility\include\public;..\..\..\serverKeyShare\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ serverNetworkMessages\FirstServerNetworkMessages.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/library/serverNetworkMessages/build/win32/settings.rsp b/src/engine/server/library/serverNetworkMessages/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/server/library/serverNetworkMessages/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/server/library/serverPathfinding/build/linux/Makefile b/src/engine/server/library/serverPathfinding/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/server/library/serverPathfinding/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/server/library/serverPathfinding/build/shared_unix/shared_unix.mak b/src/engine/server/library/serverPathfinding/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..6fdd79c88
--- /dev/null
+++ b/src/engine/server/library/serverPathfinding/build/shared_unix/shared_unix.mak
@@ -0,0 +1,35 @@
+LIBRARY = serverPathfinding
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(ARCHIVE_INCLUDE_PATH) \
+ $(COLLISION_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(GAME_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(TERRAIN_INCLUDE_PATH) \
+ $(LOCALIZATION_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(PATHFINDING_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(SERVER_GAME_INCLUDE_PATH) \
+ $(SERVER_SCRIPT_INCLUDE_PATH) \
+ $(SERVER_UTILITY_INCLUDE_PATH) \
+ $(SKILL_SYSTEM_INCLUDE_PATH) \
+ $(SWG_SHARED_UTILITY_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(VNL_INCLUDE_PATH) \
+ ../../../../../../external/ours/library/singleton/include \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ ../../../../../../external/3rd/library/boost
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/server/library/serverPathfinding/build/win32/includePaths.rsp b/src/engine/server/library/serverPathfinding/build/win32/includePaths.rsp
new file mode 100644
index 000000000..5cf7af3eb
--- /dev/null
+++ b/src/engine/server/library/serverPathfinding/build/win32/includePaths.rsp
@@ -0,0 +1,34 @@
+../../../../../../engine/server/library/serverGame/include/public
+../../../../../../engine/server/library/serverNetworkMessages/include/public
+../../../../../../engine/server/library/serverScript/include/public
+../../../../../../engine/server/library/serverUtility/include/public
+../../../../../../engine/shared/library/sharedCollision/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedGame/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMathArchive/include/public
+../../../../../../engine/shared/library/sharedMemoryBlockManager/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedObject/include/public
+../../../../../../engine/shared/library/sharedPathfinding/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedSkillSystem/include/public
+../../../../../../engine/shared/library/sharedTerrain/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/server/library/serverPathfinding/build/win32/serverPathfinding.vcproj b/src/engine/server/library/serverPathfinding/build/win32/serverPathfinding.vcproj
new file mode 100644
index 000000000..49a092d08
--- /dev/null
+++ b/src/engine/server/library/serverPathfinding/build/win32/serverPathfinding.vcproj
@@ -0,0 +1,694 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/library/serverPathfinding/build/win32/serverPathfinding.vcxproj b/src/engine/server/library/serverPathfinding/build/win32/serverPathfinding.vcxproj
new file mode 100644
index 000000000..d60c00206
--- /dev/null
+++ b/src/engine/server/library/serverPathfinding/build/win32/serverPathfinding.vcxproj
@@ -0,0 +1,237 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {7FBBF6D9-7090-4D1A-8926-7FCDE802BFDB}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverScript\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedPathfinding\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverPathfinding\FirstServerPathfinding.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverScript\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedPathfinding\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverPathfinding\FirstServerPathfinding.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\server\library\serverNetworkMessages\include\public;..\..\..\..\..\..\engine\server\library\serverScript\include\public;..\..\..\..\..\..\engine\server\library\serverUtility\include\public;..\..\..\..\..\..\engine\shared\library\sharedCollision\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMathArchive\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedPathfinding\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\..\engine\shared\library\sharedTerrain\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ serverPathfinding\FirstServerPathfinding.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {7d707a5a-cb70-4fd9-83d3-e1e921ae3381}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/library/serverPathfinding/build/win32/settings.rsp b/src/engine/server/library/serverPathfinding/build/win32/settings.rsp
new file mode 100644
index 000000000..6887fd351
--- /dev/null
+++ b/src/engine/server/library/serverPathfinding/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+library
+Zm200
+debugInline
diff --git a/src/engine/server/library/serverScript/build/linux/Makefile b/src/engine/server/library/serverScript/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/server/library/serverScript/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/server/library/serverScript/build/shared_unix/shared_unix.mak b/src/engine/server/library/serverScript/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..f0a41b56c
--- /dev/null
+++ b/src/engine/server/library/serverScript/build/shared_unix/shared_unix.mak
@@ -0,0 +1,61 @@
+LIBRARY = serverScript
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+SHARED_SRC_DIR = ../../../../../shared/library
+SERVER_SRC_DIR = ../../..
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ $(SERVER_GAME_INCLUDE_PATH) \
+ $(COLLISION_INCLUDE_PATH) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(GAME_INCLUDE_PATH) \
+ $(LOG_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(MEMORY_MANAGER_INCLUDE_PATH) \
+ $(SHARED_NETWORK_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(COMMAND_PARSER_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(PATHFINDING_INCLUDE_PATH) \
+ $(SERVER_PATHFINDING_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(LOCALIZATION_INCLUDE_PATH) \
+ $(TERRAIN_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(BOOST_INCLUDE_PATH) \
+ /usr/java/include \
+ /usr/java/include/linux \
+ ../../../../../../external/ours/library/fileInterface/include/public \
+ ../../../../../../external/ours/library/unicode/include \
+ ../../../../../../external/ours/library/archive/include \
+ ../../../../../../external/ours/library/unicodeArchive/include \
+ ../../../../../../game/shared/library/swgSharedUtility/include/public \
+ ../../../../../../game/shared/library/swgSharedNetworkMessages/include/public \
+ ../../../../../../game/server/application/SwgGameServer/include/public \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../shared/library/sharedSkillSystem/include/public \
+ ../../../../../server/library/serverUtility/include/public \
+ ../../../../../server/library/serverNetworkMessages/include/public \
+ ../../../../../../external/ours/library/vnlv3 \
+ ../../../../../../external/ours/library/vnlv3/$(PLATFORM)
+
+#@todo codereorg remove dependancy on serverGame
+#also added random and utility, commandparser, messagedispatch, matharchive, unicodearchive, archive because of this
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/server/library/serverScript/build/win32/includePaths.rsp b/src/engine/server/library/serverScript/build/win32/includePaths.rsp
new file mode 100644
index 000000000..08c3eb03e
--- /dev/null
+++ b/src/engine/server/library/serverScript/build/win32/includePaths.rsp
@@ -0,0 +1,43 @@
+../../../../../../external/3rd/library/java/include
+../../../../../../external/3rd/library/java/include/win32
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/boost
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/server/application/SwgGameServer/include/public
+../../../../../../game/shared/library/swgSharedNetworkMessages/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
+../../../../../server/library/serverGame/include/public
+../../../../../server/library/serverNetworkMessages/include/public
+../../../../../server/library/serverPathfinding/include/public
+../../../../../server/library/serverUtility/include/public
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedCommandParser/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedLog/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedNetwork/include/public
+../../../../../shared/library/sharedNetworkMessages/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedPathfinding/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSkillSystem/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/server/library/serverScript/build/win32/serverScript.vcproj b/src/engine/server/library/serverScript/build/win32/serverScript.vcproj
new file mode 100644
index 000000000..4a1d32598
--- /dev/null
+++ b/src/engine/server/library/serverScript/build/win32/serverScript.vcproj
@@ -0,0 +1,2814 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/library/serverScript/build/win32/serverScript.vcxproj b/src/engine/server/library/serverScript/build/win32/serverScript.vcxproj
new file mode 100644
index 000000000..b484bfba4
--- /dev/null
+++ b/src/engine/server/library/serverScript/build/win32/serverScript.vcxproj
@@ -0,0 +1,432 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {D65732C0-2D5C-44A7-96F0-16BEF9E1AF3A}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\java\include;..\..\..\..\..\..\external\3rd\library\java\include\win32;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\application\SwgGameServer\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\server\library\serverPathfinding\include\public;..\..\..\..\..\server\library\serverUtility\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCommandParser\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverScript\FirstServerScript.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\java\include;..\..\..\..\..\..\external\3rd\library\java\include\win32;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\application\SwgGameServer\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\server\library\serverPathfinding\include\public;..\..\..\..\..\server\library\serverUtility\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCommandParser\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverScript\FirstServerScript.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\java\include;..\..\..\..\..\..\external\3rd\library\java\include\win32;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\application\SwgGameServer\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\server\library\serverPathfinding\include\public;..\..\..\..\..\server\library\serverUtility\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCommandParser\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ serverScript\FirstServerScript.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ Disabled
+ EnableFastChecks
+ Full
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/library/serverScript/build/win32/settings.rsp b/src/engine/server/library/serverScript/build/win32/settings.rsp
new file mode 100644
index 000000000..c623cec3d
--- /dev/null
+++ b/src/engine/server/library/serverScript/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+library
+Zm256
+debugInline
diff --git a/src/engine/server/library/serverUtility/build/linux/Makefile b/src/engine/server/library/serverUtility/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/server/library/serverUtility/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/server/library/serverUtility/build/shared_unix/shared_unix.mak b/src/engine/server/library/serverUtility/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..dc37c1d5a
--- /dev/null
+++ b/src/engine/server/library/serverUtility/build/shared_unix/shared_unix.mak
@@ -0,0 +1,37 @@
+LIBRARY = serverUtility
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+SHARED_SRC_DIR = ../../../../../shared/library
+SERVER_SRC_DIR = ../../..
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(MEMORY_MANAGER_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(SHARED_NETWORK_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(SERVER_KEYSHARE_INCLUDE_PATH) \
+ $(SERVER_NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(ARCHIVE_PATH)/include \
+ $(UNICODE_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ $(LOG_INCLUDE_PATH) \
+ $(SHARED_SRC_DIR)/sharedUtility/include/public \
+ ../../../../../../external/ours/library/unicodeArchive/include \
+ ../../../../../shared/library/sharedNetwork/include/public \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/ours/library/localization/include
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/server/library/serverUtility/build/win32/includePaths.rsp b/src/engine/server/library/serverUtility/build/win32/includePaths.rsp
new file mode 100644
index 000000000..3089d4552
--- /dev/null
+++ b/src/engine/server/library/serverUtility/build/win32/includePaths.rsp
@@ -0,0 +1,23 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../server/library/serverKeyShare/include/public
+../../../../../server/library/serverNetworkMessages/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedLog/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedNetwork/include/public
+../../../../../shared/library/sharedNetworkMessages/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/server/library/serverUtility/build/win32/serverUtility.vcproj b/src/engine/server/library/serverUtility/build/win32/serverUtility.vcproj
new file mode 100644
index 000000000..bf37cd3d2
--- /dev/null
+++ b/src/engine/server/library/serverUtility/build/win32/serverUtility.vcproj
@@ -0,0 +1,878 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/server/library/serverUtility/build/win32/serverUtility.vcxproj b/src/engine/server/library/serverUtility/build/win32/serverUtility.vcxproj
new file mode 100644
index 000000000..6bf17cec8
--- /dev/null
+++ b/src/engine/server/library/serverUtility/build/win32/serverUtility.vcxproj
@@ -0,0 +1,252 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {67BFDA04-F26E-497F-A6FE-EE52550C15FE}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\server\library\serverKeyShare\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverUtility\FirstServerUtility.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\server\library\serverKeyShare\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ serverUtility\FirstServerUtility.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\server\library\serverKeyShare\include\public;..\..\..\..\..\server\library\serverNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ serverUtility\FirstServerUtility.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/server/library/serverUtility/build/win32/settings.rsp b/src/engine/server/library/serverUtility/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/server/library/serverUtility/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/application/ArmorExporterTool/build/linux/Makefile b/src/engine/shared/application/ArmorExporterTool/build/linux/Makefile
new file mode 100644
index 000000000..ecef5c9d9
--- /dev/null
+++ b/src/engine/shared/application/ArmorExporterTool/build/linux/Makefile
@@ -0,0 +1,121 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = ArmorExporterTool
+
+#######################################################
+# overrides of standard defines
+#######################################################
+ DEBUG_LINK_FLAGS +=-lpthread -lc -ldl -lz
+ RELEASE_LINK_FLAGS +=-lpthread -ldl -lz
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ ../../include/private \
+ ../../include/public \
+ $(COMPRESSION_INCLUDE_PATH) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(IOWIN_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(XML_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/ours/library/fileInterface/include/public \
+
+DEBUG_LINK_LIBRARIES = \
+ $(ARCHIVE_DEBUG_LIB) \
+ $(UNICODE_DEBUG_LIB) \
+ $(UNICODE_ARCHIVE_DEBUG_LIB) \
+ $(LOCALIZATION_DEBUG_LIB) \
+ $(LOCALIZATION_ARCHIVE_DEBUG_LIB) \
+ $(COMPRESSION_DEBUG_LIB) \
+ $(DEBUG_DEBUG_LIB) \
+ $(FILE_DEBUG_LIB) \
+ $(FOUNDATION_DEBUG_LIB) \
+ $(MATH_DEBUG_LIB) \
+ $(MEMORY_BLOCK_MANAGER_DEBUG_LIB) \
+ $(MEMORY_MANAGER_DEBUG_LIB) \
+ $(RANDOM_DEBUG_LIB) \
+ $(SYNCHRONIZATION_DEBUG_LIB) \
+ $(THREAD_DEBUG_LIB) \
+ $(IOWIN_DEBUG_LIB) \
+ $(UTILITY_DEBUG_LIB) \
+ $(XML_DEBUG_LIB) \
+ $(FILE_INTERFACE_DEBUG_LIB) \
+ $(STL_LIB) \
+ $(LIBXML_LIB) \
+ $(ZLIB_LIB)
+
+DEBUG_SHARED_LIBRARIES= \
+
+RELEASE_LINK_LIBRARIES = \
+ $(ARCHIVE_RELEASE_LIB) \
+ $(UNICODE_RELEASE_LIB) \
+ $(UNICODE_ARCHIVE_RELEASE_LIB) \
+ $(LOCALIZATION_RELEASE_LIB) \
+ $(LOCALIZATION_ARCHIVE_RELEASE_LIB) \
+ $(COMPRESSION_RELEASE_LIB) \
+ $(DEBUG_RELEASE_LIB) \
+ $(FILE_RELEASE_LIB) \
+ $(FOUNDATION_RELEASE_LIB) \
+ $(MATH_RELEASE_LIB) \
+ $(MEMORY_BLOCK_MANAGER_RELEASE_LIB) \
+ $(MEMORY_MANAGER_RELEASE_LIB) \
+ $(RANDOM_RELEASE_LIB) \
+ $(SYNCHRONIZATION_RELEASE_LIB) \
+ $(THREAD_RELEASE_LIB) \
+ $(IOWIN_RELEASE_LIB) \
+ $(UTILITY_RELEASE_LIB) \
+ $(XML_RELEASE_LIB) \
+ $(FILE_INTERFACE_RELEASE_LIB) \
+ $(STL_LIB) \
+ $(LIBXML_LIB) \
+ $(ZLIB_LIB)
+
+RELEASE_SHARED_LIBRARIES= \
+
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/shared/application/ArmorExporterTool/build/win32/ArmorExporterTool.vcproj b/src/engine/shared/application/ArmorExporterTool/build/win32/ArmorExporterTool.vcproj
new file mode 100644
index 000000000..b11bc859d
--- /dev/null
+++ b/src/engine/shared/application/ArmorExporterTool/build/win32/ArmorExporterTool.vcproj
@@ -0,0 +1,388 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/ArmorExporterTool/build/win32/ArmorExporterTool.vcxproj b/src/engine/shared/application/ArmorExporterTool/build/win32/ArmorExporterTool.vcxproj
new file mode 100644
index 000000000..d9bf0707f
--- /dev/null
+++ b/src/engine/shared/application/ArmorExporterTool/build/win32/ArmorExporterTool.vcxproj
@@ -0,0 +1,271 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {86D00284-6EAE-4D6C-989F-585AB5B44A14}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstArmorExporterTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstArmorExporterTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstArmorExporterTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {f8271bf7-cfbf-4de3-84bb-428058e0b069}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/ArmorExporterTool/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/ArmorExporterTool/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/ArmorExporterTool/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/ArmorExporterTool/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/ArmorExporterTool/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/ArmorExporterTool/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/ArmorExporterTool/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/ArmorExporterTool/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/ArmorExporterTool/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/ArmorExporterTool/build/win32/includePaths.rsp b/src/engine/shared/application/ArmorExporterTool/build/win32/includePaths.rsp
new file mode 100644
index 000000000..7012deb12
--- /dev/null
+++ b/src/engine/shared/application/ArmorExporterTool/build/win32/includePaths.rsp
@@ -0,0 +1,21 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/boost
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../../../server/library/serverGame/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
diff --git a/src/engine/shared/application/ArmorExporterTool/build/win32/libraries.rsp b/src/engine/shared/application/ArmorExporterTool/build/win32/libraries.rsp
new file mode 100644
index 000000000..ca63bd4d5
--- /dev/null
+++ b/src/engine/shared/application/ArmorExporterTool/build/win32/libraries.rsp
@@ -0,0 +1 @@
+zlib.lib
diff --git a/src/engine/shared/application/ArmorExporterTool/build/win32/libraryPaths.rsp b/src/engine/shared/application/ArmorExporterTool/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..154117d6a
--- /dev/null
+++ b/src/engine/shared/application/ArmorExporterTool/build/win32/libraryPaths.rsp
@@ -0,0 +1,2 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/shared/application/ArmorExporterTool/build/win32/settings.rsp b/src/engine/shared/application/ArmorExporterTool/build/win32/settings.rsp
new file mode 100644
index 000000000..10210962e
--- /dev/null
+++ b/src/engine/shared/application/ArmorExporterTool/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/CoreWeaponExporterTool/build/linux/Makefile b/src/engine/shared/application/CoreWeaponExporterTool/build/linux/Makefile
new file mode 100644
index 000000000..eb5d96358
--- /dev/null
+++ b/src/engine/shared/application/CoreWeaponExporterTool/build/linux/Makefile
@@ -0,0 +1,121 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = CoreWeaponExporterTool
+
+#######################################################
+# overrides of standard defines
+#######################################################
+ DEBUG_LINK_FLAGS +=-lpthread -lc -ldl -lz
+ RELEASE_LINK_FLAGS +=-lpthread -ldl -lz
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ ../../include/private \
+ ../../include/public \
+ $(COMPRESSION_INCLUDE_PATH) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(IOWIN_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(XML_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/ours/library/fileInterface/include/public \
+
+DEBUG_LINK_LIBRARIES = \
+ $(ARCHIVE_DEBUG_LIB) \
+ $(UNICODE_DEBUG_LIB) \
+ $(UNICODE_ARCHIVE_DEBUG_LIB) \
+ $(LOCALIZATION_DEBUG_LIB) \
+ $(LOCALIZATION_ARCHIVE_DEBUG_LIB) \
+ $(COMPRESSION_DEBUG_LIB) \
+ $(DEBUG_DEBUG_LIB) \
+ $(FILE_DEBUG_LIB) \
+ $(FOUNDATION_DEBUG_LIB) \
+ $(MATH_DEBUG_LIB) \
+ $(MEMORY_BLOCK_MANAGER_DEBUG_LIB) \
+ $(MEMORY_MANAGER_DEBUG_LIB) \
+ $(RANDOM_DEBUG_LIB) \
+ $(SYNCHRONIZATION_DEBUG_LIB) \
+ $(THREAD_DEBUG_LIB) \
+ $(IOWIN_DEBUG_LIB) \
+ $(UTILITY_DEBUG_LIB) \
+ $(XML_DEBUG_LIB) \
+ $(FILE_INTERFACE_DEBUG_LIB) \
+ $(STL_LIB) \
+ $(LIBXML_LIB) \
+ $(ZLIB_LIB)
+
+DEBUG_SHARED_LIBRARIES= \
+
+RELEASE_LINK_LIBRARIES = \
+ $(ARCHIVE_RELEASE_LIB) \
+ $(UNICODE_RELEASE_LIB) \
+ $(UNICODE_ARCHIVE_RELEASE_LIB) \
+ $(LOCALIZATION_RELEASE_LIB) \
+ $(LOCALIZATION_ARCHIVE_RELEASE_LIB) \
+ $(COMPRESSION_RELEASE_LIB) \
+ $(DEBUG_RELEASE_LIB) \
+ $(FILE_RELEASE_LIB) \
+ $(FOUNDATION_RELEASE_LIB) \
+ $(MATH_RELEASE_LIB) \
+ $(MEMORY_BLOCK_MANAGER_RELEASE_LIB) \
+ $(MEMORY_MANAGER_RELEASE_LIB) \
+ $(RANDOM_RELEASE_LIB) \
+ $(SYNCHRONIZATION_RELEASE_LIB) \
+ $(THREAD_RELEASE_LIB) \
+ $(IOWIN_RELEASE_LIB) \
+ $(UTILITY_RELEASE_LIB) \
+ $(XML_RELEASE_LIB) \
+ $(FILE_INTERFACE_RELEASE_LIB) \
+ $(STL_LIB) \
+ $(LIBXML_LIB) \
+ $(ZLIB_LIB)
+
+RELEASE_SHARED_LIBRARIES= \
+
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/shared/application/CoreWeaponExporterTool/build/win32/CoreWeaponExporterTool.vcproj b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/CoreWeaponExporterTool.vcproj
new file mode 100644
index 000000000..31078da41
--- /dev/null
+++ b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/CoreWeaponExporterTool.vcproj
@@ -0,0 +1,438 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/CoreWeaponExporterTool/build/win32/CoreWeaponExporterTool.vcxproj b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/CoreWeaponExporterTool.vcxproj
new file mode 100644
index 000000000..8d00ef72e
--- /dev/null
+++ b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/CoreWeaponExporterTool.vcxproj
@@ -0,0 +1,291 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {5322A6D8-E2FE-420C-B719-3D061EAB4593}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ false
+ true
+ true
+ FirstCoreWeaponExporterTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ false
+ true
+ true
+ FirstCoreWeaponExporterTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ true
+ FirstCoreWeaponExporterTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {f8271bf7-cfbf-4de3-84bb-428058e0b069}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/CoreWeaponExporterTool/build/win32/VTune/WeaponExporterTool.vpj b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/VTune/WeaponExporterTool.vpj
new file mode 100644
index 000000000..a4083116e
Binary files /dev/null and b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/VTune/WeaponExporterTool.vpj differ
diff --git a/src/engine/shared/application/CoreWeaponExporterTool/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/CoreWeaponExporterTool/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/CoreWeaponExporterTool/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/CoreWeaponExporterTool/build/win32/includePaths.rsp b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/includePaths.rsp
new file mode 100644
index 000000000..7012deb12
--- /dev/null
+++ b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/includePaths.rsp
@@ -0,0 +1,21 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/boost
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../../../server/library/serverGame/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
diff --git a/src/engine/shared/application/CoreWeaponExporterTool/build/win32/libraries.rsp b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/libraries.rsp
new file mode 100644
index 000000000..ca63bd4d5
--- /dev/null
+++ b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/libraries.rsp
@@ -0,0 +1 @@
+zlib.lib
diff --git a/src/engine/shared/application/CoreWeaponExporterTool/build/win32/libraryPaths.rsp b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..154117d6a
--- /dev/null
+++ b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/libraryPaths.rsp
@@ -0,0 +1,2 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/shared/application/CoreWeaponExporterTool/build/win32/settings.rsp b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/settings.rsp
new file mode 100644
index 000000000..10210962e
--- /dev/null
+++ b/src/engine/shared/application/CoreWeaponExporterTool/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/DataLintRspBuilder/build/win32/DataLintRspBuilder.vcproj b/src/engine/shared/application/DataLintRspBuilder/build/win32/DataLintRspBuilder.vcproj
new file mode 100644
index 000000000..b0921b266
--- /dev/null
+++ b/src/engine/shared/application/DataLintRspBuilder/build/win32/DataLintRspBuilder.vcproj
@@ -0,0 +1,354 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/DataLintRspBuilder/build/win32/DataLintRspBuilder.vcxproj b/src/engine/shared/application/DataLintRspBuilder/build/win32/DataLintRspBuilder.vcxproj
new file mode 100644
index 000000000..926ecda07
--- /dev/null
+++ b/src/engine/shared/application/DataLintRspBuilder/build/win32/DataLintRspBuilder.vcxproj
@@ -0,0 +1,205 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {5B97B272-B221-439C-8FE8-39A5761BAC25}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ StdAfx.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ StdAfx.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ StdAfx.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ Create
+ MaxSpeed
+ Create
+ Create
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/DataLintRspBuilder/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/DataLintRspBuilder/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/DataLintRspBuilder/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/DataLintRspBuilder/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/DataLintRspBuilder/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/DataLintRspBuilder/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/DataLintRspBuilder/build/win32/includePaths.rsp b/src/engine/shared/application/DataLintRspBuilder/build/win32/includePaths.rsp
new file mode 100644
index 000000000..e09f1ac0a
--- /dev/null
+++ b/src/engine/shared/application/DataLintRspBuilder/build/win32/includePaths.rsp
@@ -0,0 +1 @@
+../../../../../../external/3rd/library/stlport453/stlport
diff --git a/src/engine/shared/application/DataLintRspBuilder/build/win32/libraryPaths.rsp b/src/engine/shared/application/DataLintRspBuilder/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..9ebe2fcb7
--- /dev/null
+++ b/src/engine/shared/application/DataLintRspBuilder/build/win32/libraryPaths.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
\ No newline at end of file
diff --git a/src/engine/shared/application/DataLintRspBuilder/build/win32/settings.rsp b/src/engine/shared/application/DataLintRspBuilder/build/win32/settings.rsp
new file mode 100644
index 000000000..9a62da6be
--- /dev/null
+++ b/src/engine/shared/application/DataLintRspBuilder/build/win32/settings.rsp
@@ -0,0 +1,4 @@
+console stdafx
+
+
+debugInline
diff --git a/src/engine/shared/application/DataTableTool/build/linux/Makefile b/src/engine/shared/application/DataTableTool/build/linux/Makefile
new file mode 100644
index 000000000..f3d584ef5
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/linux/Makefile
@@ -0,0 +1,122 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = DataTableTool
+
+#######################################################
+# overrides of standard defines
+#######################################################
+ DEBUG_LINK_FLAGS +=-lpthread -lc -ldl -lz -lxml
+ RELEASE_LINK_FLAGS +=-lpthread -ldl -lz
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ ../../include/private \
+ ../../include/public \
+ $(COMPRESSION_INCLUDE_PATH) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(IOWIN_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(XML_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/ours/library/fileInterface/include/public \
+
+DEBUG_LINK_LIBRARIES = \
+ $(STL_LIB) \
+ $(ZLIB_LIB)
+
+DEBUG_SHARED_LIBRARIES= \
+ $(ARCHIVE_DEBUG_LIB) \
+ $(UNICODE_DEBUG_LIB) \
+ $(UNICODE_ARCHIVE_DEBUG_LIB) \
+ $(LOCALIZATION_DEBUG_LIB) \
+ $(LOCALIZATION_ARCHIVE_DEBUG_LIB) \
+ $(COMPRESSION_DEBUG_LIB) \
+ $(DEBUG_DEBUG_LIB) \
+ $(FILE_DEBUG_LIB) \
+ $(FOUNDATION_DEBUG_LIB) \
+ $(MATH_DEBUG_LIB) \
+ $(SHARED_XML_DEBUG_LIB) \
+ $(LIBXML_LIB) \
+ $(MEMORY_BLOCK_MANAGER_DEBUG_LIB) \
+ $(RANDOM_DEBUG_LIB) \
+ $(SYNCHRONIZATION_DEBUG_LIB) \
+ $(THREAD_DEBUG_LIB) \
+ $(IOWIN_DEBUG_LIB) \
+ $(UTILITY_DEBUG_LIB) \
+ $(XML_DEBUG_LIB) \
+ $(FILE_INTERFACE_DEBUG_LIB) \
+ $(MEMORY_MANAGER_DEBUG_LIB) \
+
+RELEASE_LINK_LIBRARIES = \
+ $(ARCHIVE_RELEASE_LIB) \
+ $(UNICODE_RELEASE_LIB) \
+ $(UNICODE_ARCHIVE_RELEASE_LIB) \
+ $(LOCALIZATION_RELEASE_LIB) \
+ $(LOCALIZATION_ARCHIVE_RELEASE_LIB) \
+ $(COMPRESSION_RELEASE_LIB) \
+ $(DEBUG_RELEASE_LIB) \
+ $(FILE_RELEASE_LIB) \
+ $(FOUNDATION_RELEASE_LIB) \
+ $(MATH_RELEASE_LIB) \
+ $(MEMORY_BLOCK_MANAGER_RELEASE_LIB) \
+ $(MEMORY_MANAGER_RELEASE_LIB) \
+ $(RANDOM_RELEASE_LIB) \
+ $(SYNCHRONIZATION_RELEASE_LIB) \
+ $(THREAD_RELEASE_LIB) \
+ $(IOWIN_RELEASE_LIB) \
+ $(UTILITY_RELEASE_LIB) \
+ $(XML_RELEASE_LIB) \
+ $(FILE_INTERFACE_RELEASE_LIB) \
+ $(STL_LIB) \
+ $(LIBXML_LIB) \
+ $(ZLIB_LIB)
+
+RELEASE_SHARED_LIBRARIES= \
+
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/shared/application/DataTableTool/build/win32/DataTableTool.vcproj b/src/engine/shared/application/DataTableTool/build/win32/DataTableTool.vcproj
new file mode 100644
index 000000000..9fed45b77
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/DataTableTool.vcproj
@@ -0,0 +1,352 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/DataTableTool/build/win32/DataTableTool.vcxproj b/src/engine/shared/application/DataTableTool/build/win32/DataTableTool.vcxproj
new file mode 100644
index 000000000..c21be2880
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/DataTableTool.vcxproj
@@ -0,0 +1,288 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {9262C7EE-E593-46B1-AC7E-F12E5055EB57}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstDataTableTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-debug.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+ /SAFESEH:NO %(AdditionalOptions)
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstDataTableTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-debug.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstDataTableTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-release.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+ {51e2988c-ce2d-42d7-a27c-06a322b4aac2}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/DataTableTool/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/DataTableTool/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/DataTableTool/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/DataTableTool/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/DataTableTool/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/DataTableTool/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/DataTableTool/build/win32/includePaths.rsp b/src/engine/shared/application/DataTableTool/build/win32/includePaths.rsp
new file mode 100644
index 000000000..e1a360e9f
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/includePaths.rsp
@@ -0,0 +1,14 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../../../shared/library/sharedXml/include/public
diff --git a/src/engine/shared/application/DataTableTool/build/win32/libraries.rsp b/src/engine/shared/application/DataTableTool/build/win32/libraries.rsp
new file mode 100644
index 000000000..ce2973141
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/libraries.rsp
@@ -0,0 +1,2 @@
+zlib.lib
+
diff --git a/src/engine/shared/application/DataTableTool/build/win32/libraries_d.rsp b/src/engine/shared/application/DataTableTool/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..4abf81b75
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/libraries_d.rsp
@@ -0,0 +1 @@
+libxml2-win32-debug.lib
diff --git a/src/engine/shared/application/DataTableTool/build/win32/libraries_o.rsp b/src/engine/shared/application/DataTableTool/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..4abf81b75
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/libraries_o.rsp
@@ -0,0 +1 @@
+libxml2-win32-debug.lib
diff --git a/src/engine/shared/application/DataTableTool/build/win32/libraries_r.rsp b/src/engine/shared/application/DataTableTool/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..5c14a60e6
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/libraries_r.rsp
@@ -0,0 +1 @@
+libxml2-win32-release.lib
diff --git a/src/engine/shared/application/DataTableTool/build/win32/libraryPaths.rsp b/src/engine/shared/application/DataTableTool/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..900288ff1
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/libraryPaths.rsp
@@ -0,0 +1,3 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
diff --git a/src/engine/shared/application/DataTableTool/build/win32/settings.rsp b/src/engine/shared/application/DataTableTool/build/win32/settings.rsp
new file mode 100644
index 000000000..10210962e
--- /dev/null
+++ b/src/engine/shared/application/DataTableTool/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/LabelHashTool/build/linux/Makefile b/src/engine/shared/application/LabelHashTool/build/linux/Makefile
new file mode 100644
index 000000000..01343651f
--- /dev/null
+++ b/src/engine/shared/application/LabelHashTool/build/linux/Makefile
@@ -0,0 +1,93 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = LabelHashTool
+
+#######################################################
+# overrides of standard defines
+#######################################################
+ DEBUG_LINK_FLAGS +=-lpthread -lc -ldl
+ RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ ../../include/private \
+ ../../include/public \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ ../../../../../../external/ours/library/singleton/include
+
+DEBUG_LINK_LIBRARIES = \
+ $(ARCHIVE_DEBUG_LIB) \
+ $(DEBUG_DEBUG_LIB) \
+ $(FOUNDATION_DEBUG_LIB) \
+ $(LOCALIZATION_DEBUG_LIB) \
+ $(LOCALIZATION_ARCHIVE_DEBUG_LIB) \
+ $(MEMORY_MANAGER_DEBUG_LIB) \
+ $(SYNCHRONIZATION_DEBUG_LIB) \
+ $(THREAD_DEBUG_LIB) \
+ $(UNICODE_DEBUG_LIB) \
+ $(UNICODE_ARCHIVE_DEBUG_LIB) \
+ $(STL_LIB)
+
+DEBUG_SHARED_LIBRARIES= \
+
+RELEASE_LINK_LIBRARIES = \
+ $(ARCHIVE_RELEASE_LIB) \
+ $(DEBUG_RELEASE_LIB) \
+ $(FOUNDATION_RELEASE_LIB) \
+ $(LOCALIZATION_RELEASE_LIB) \
+ $(LOCALIZATION_ARCHIVE_RELEASE_LIB) \
+ $(MEMORY_MANAGER_RELEASE_LIB) \
+ $(SYNCHRONIZATION_RELEASE_LIB) \
+ $(THREAD_RELEASE_LIB) \
+ $(UNICODE_RELEASE_LIB) \
+ $(UNICODE_ARCHIVE_RELEASE_LIB) \
+ $(STL_LIB)
+
+RELEASE_SHARED_LIBRARIES= \
+
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/shared/application/LabelHashTool/build/win32/LabelHashTool.vcproj b/src/engine/shared/application/LabelHashTool/build/win32/LabelHashTool.vcproj
new file mode 100644
index 000000000..0d5e71e77
--- /dev/null
+++ b/src/engine/shared/application/LabelHashTool/build/win32/LabelHashTool.vcproj
@@ -0,0 +1,352 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/LabelHashTool/build/win32/LabelHashTool.vcxproj b/src/engine/shared/application/LabelHashTool/build/win32/LabelHashTool.vcxproj
new file mode 100644
index 000000000..0d5e24fdf
--- /dev/null
+++ b/src/engine/shared/application/LabelHashTool/build/win32/LabelHashTool.vcxproj
@@ -0,0 +1,263 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {C234B51D-AAB9-4605-98DF-DC381854FE8C}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstLabelHashTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstLabelHashTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstLabelHashTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/LabelHashTool/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/LabelHashTool/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/LabelHashTool/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/LabelHashTool/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/LabelHashTool/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/LabelHashTool/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/LabelHashTool/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/LabelHashTool/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/LabelHashTool/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/LabelHashTool/build/win32/includePaths.rsp b/src/engine/shared/application/LabelHashTool/build/win32/includePaths.rsp
new file mode 100644
index 000000000..25bfad1cb
--- /dev/null
+++ b/src/engine/shared/application/LabelHashTool/build/win32/includePaths.rsp
@@ -0,0 +1,14 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../src/shared
diff --git a/src/engine/shared/application/LabelHashTool/build/win32/libraries.rsp b/src/engine/shared/application/LabelHashTool/build/win32/libraries.rsp
new file mode 100644
index 000000000..ca63bd4d5
--- /dev/null
+++ b/src/engine/shared/application/LabelHashTool/build/win32/libraries.rsp
@@ -0,0 +1 @@
+zlib.lib
diff --git a/src/engine/shared/application/LabelHashTool/build/win32/libraryPaths.rsp b/src/engine/shared/application/LabelHashTool/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..154117d6a
--- /dev/null
+++ b/src/engine/shared/application/LabelHashTool/build/win32/libraryPaths.rsp
@@ -0,0 +1,2 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/shared/application/LabelHashTool/build/win32/settings.rsp b/src/engine/shared/application/LabelHashTool/build/win32/settings.rsp
new file mode 100644
index 000000000..10210962e
--- /dev/null
+++ b/src/engine/shared/application/LabelHashTool/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/Md5sum/build/linux/Makefile b/src/engine/shared/application/Md5sum/build/linux/Makefile
new file mode 100644
index 000000000..8e0384328
--- /dev/null
+++ b/src/engine/shared/application/Md5sum/build/linux/Makefile
@@ -0,0 +1,93 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = Md5sum
+
+#######################################################
+# overrides of standard defines
+#######################################################
+ DEBUG_LINK_FLAGS +=-lpthread -lc -ldl
+ RELEASE_LINK_FLAGS +=-lpthread -ldl
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ ../../include/private \
+ ../../include/public \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ ../../../../../../external/ours/library/singleton/include
+
+DEBUG_LINK_LIBRARIES = \
+ $(ARCHIVE_DEBUG_LIB) \
+ $(DEBUG_DEBUG_LIB) \
+ $(FOUNDATION_DEBUG_LIB) \
+ $(LOCALIZATION_DEBUG_LIB) \
+ $(LOCALIZATION_ARCHIVE_DEBUG_LIB) \
+ $(MEMORY_MANAGER_DEBUG_LIB) \
+ $(SYNCHRONIZATION_DEBUG_LIB) \
+ $(THREAD_DEBUG_LIB) \
+ $(UNICODE_DEBUG_LIB) \
+ $(UNICODE_ARCHIVE_DEBUG_LIB) \
+ $(STL_LIB)
+
+DEBUG_SHARED_LIBRARIES= \
+
+RELEASE_LINK_LIBRARIES = \
+ $(ARCHIVE_RELEASE_LIB) \
+ $(DEBUG_RELEASE_LIB) \
+ $(FOUNDATION_RELEASE_LIB) \
+ $(LOCALIZATION_RELEASE_LIB) \
+ $(LOCALIZATION_ARCHIVE_RELEASE_LIB) \
+ $(MEMORY_MANAGER_RELEASE_LIB) \
+ $(SYNCHRONIZATION_RELEASE_LIB) \
+ $(THREAD_RELEASE_LIB) \
+ $(UNICODE_RELEASE_LIB) \
+ $(UNICODE_ARCHIVE_RELEASE_LIB) \
+ $(STL_LIB)
+
+RELEASE_SHARED_LIBRARIES= \
+
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/shared/application/Md5sum/build/win32/Md5sum.vcproj b/src/engine/shared/application/Md5sum/build/win32/Md5sum.vcproj
new file mode 100644
index 000000000..7b6777646
--- /dev/null
+++ b/src/engine/shared/application/Md5sum/build/win32/Md5sum.vcproj
@@ -0,0 +1,352 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/Md5sum/build/win32/Md5sum.vcxproj b/src/engine/shared/application/Md5sum/build/win32/Md5sum.vcxproj
new file mode 100644
index 000000000..6adb46e03
--- /dev/null
+++ b/src/engine/shared/application/Md5sum/build/win32/Md5sum.vcxproj
@@ -0,0 +1,209 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {6420DB1B-3981-492B-B450-3D7062A1B1FD}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstMd5sum.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstMd5sum.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\shared;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstMd5sum.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/Md5sum/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/Md5sum/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/Md5sum/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/Md5sum/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/Md5sum/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/Md5sum/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/Md5sum/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/Md5sum/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/Md5sum/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/Md5sum/build/win32/includePaths.rsp b/src/engine/shared/application/Md5sum/build/win32/includePaths.rsp
new file mode 100644
index 000000000..25bfad1cb
--- /dev/null
+++ b/src/engine/shared/application/Md5sum/build/win32/includePaths.rsp
@@ -0,0 +1,14 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../src/shared
diff --git a/src/engine/shared/application/Md5sum/build/win32/libraries.rsp b/src/engine/shared/application/Md5sum/build/win32/libraries.rsp
new file mode 100644
index 000000000..ca63bd4d5
--- /dev/null
+++ b/src/engine/shared/application/Md5sum/build/win32/libraries.rsp
@@ -0,0 +1 @@
+zlib.lib
diff --git a/src/engine/shared/application/Md5sum/build/win32/libraryPaths.rsp b/src/engine/shared/application/Md5sum/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..154117d6a
--- /dev/null
+++ b/src/engine/shared/application/Md5sum/build/win32/libraryPaths.rsp
@@ -0,0 +1,2 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/shared/application/Md5sum/build/win32/settings.rsp b/src/engine/shared/application/Md5sum/build/win32/settings.rsp
new file mode 100644
index 000000000..10210962e
--- /dev/null
+++ b/src/engine/shared/application/Md5sum/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/P4Qt/build/win32/settings.rsp b/src/engine/shared/application/P4Qt/build/win32/settings.rsp
new file mode 100644
index 000000000..f561650fc
--- /dev/null
+++ b/src/engine/shared/application/P4Qt/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+qt334
+debugInline
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/PlanetWatcher.pro b/src/engine/shared/application/PlanetWatcher/build/win32/PlanetWatcher.pro
new file mode 100644
index 000000000..3b417f50c
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/PlanetWatcher.pro
@@ -0,0 +1,14 @@
+TEMPLATE = app
+LANGUAGE = C++
+
+CONFIG += qt warn_on release
+
+FORMS = ../../src/win32/ui/BasePlanetWatcher.ui \
+ ../../src/win32/ui/BaseServerConnectionDialog.ui \
+ ../../src/win32/ui/BaseFilterDialog.ui
+
+unix {
+ UI_DIR = .ui
+ MOC_DIR = .moc
+ OBJECTS_DIR = .obj
+}
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/PlanetWatcher.vcproj b/src/engine/shared/application/PlanetWatcher/build/win32/PlanetWatcher.vcproj
new file mode 100644
index 000000000..c8772f76c
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/PlanetWatcher.vcproj
@@ -0,0 +1,1649 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/PlanetWatcher.vcxproj b/src/engine/shared/application/PlanetWatcher/build/win32/PlanetWatcher.vcxproj
new file mode 100644
index 000000000..5f5431948
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/PlanetWatcher.vcxproj
@@ -0,0 +1,617 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {5EFB446B-1E95-487F-B1BB-B9767FA86DE3}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\compile\win32\PlanetWatcher\Debug;..\..\..\..\..\..\compile\win32\PlanetWatcher;..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstPlanetWatcher.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-debug.lib;ws2_32.lib;qt-mt334.lib;qtmain.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc7-stlport;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;libcd;msvcrt;msvcrtd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\compile\win32\PlanetWatcher\Optimized;..\..\..\..\..\..\compile\win32\PlanetWatcher;..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstPlanetWatcher.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-release.lib;ws2_32.lib;qt-mt334.lib;qtmain.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc7-stlport;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;libcd;msvcrt;msvcrtd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\compile\win32\PlanetWatcher\Release;..\..\..\..\..\..\compile\win32\PlanetWatcher;..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\..\engine\shared\library\sharedObject\include\public;..\..\..\..\..\..\engine\shared\library\sharedRandom\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;QT_DLL;QT_NO_STL;QT_ACCESSIBILITY_SUPPORT;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstPlanetWatcher.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ libxml2-win32-release.lib;ws2_32.lib;qt-mt334.lib;qtmain.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib;..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc7-stlport;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmtd;libc;libcd;msvcrt;msvcrtd;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+
+
+ Level3
+ true
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+
+
+ Level3
+ true
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ true
+ true
+
+
+ Level3
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+ moc %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc -i %(FullPath) -o $(TargetDir)%(Filename).moc
+ $(TargetDir)%(Filename).moc;%(Outputs)
+
+
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_d.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_d.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_d.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_o.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_o.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_o.cpp;%(Outputs)
+ ui %(Filename)
+ ..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\uic -o $(TargetDir)%(Filename)_r.cpp -impl $(TargetDir)%(Filename).h %(FullPath)
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\bin\moc $(TargetDir)%(Filename).h >> $(TargetDir)%(Filename)_r.cpp
+ $(TargetDir)%(Filename).h;$(TargetDir)%(Filename)_r.cpp;%(Outputs)
+
+
+
+
+ {1a7d1159-3474-4520-882f-f1842f0aafae}
+ false
+
+
+ {9496a020-65ad-45a6-9acf-ae4f3358b027}
+ false
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {df4d72ef-2341-4462-ab78-b130450511da}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..d37d498b3
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries.rsp
@@ -0,0 +1,4 @@
+libc
+libcd
+msvcrt
+msvcrtd
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries_r.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries_r.rsp
new file mode 100644
index 000000000..6ea17ceb5
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/ignoreLibraries_r.rsp
@@ -0,0 +1 @@
+libcmtd
\ No newline at end of file
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/includePaths.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/includePaths.rsp
new file mode 100644
index 000000000..5b7edcab0
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/includePaths.rsp
@@ -0,0 +1,24 @@
+../../../../../../compile/win32/PlanetWatcher
+../../../../../../engine/server/library/serverGame/include/public
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedGame/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMessageDispatch/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../engine/shared/library/sharedNetworkMessages/include/public
+../../../../../../engine/shared/library/sharedObject/include/public
+../../../../../../engine/shared/library/sharedRandom/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/qt/3.3.4/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/includePaths_d.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/includePaths_d.rsp
new file mode 100644
index 000000000..10a05df44
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/includePaths_d.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\PlanetWatcher\Debug
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/includePaths_o.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/includePaths_o.rsp
new file mode 100644
index 000000000..4f186d132
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/includePaths_o.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\PlanetWatcher\Optimized
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/includePaths_r.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/includePaths_r.rsp
new file mode 100644
index 000000000..ea3cad25b
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/includePaths_r.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\compile\win32\PlanetWatcher\Release
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/libraries.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/libraries.rsp
new file mode 100644
index 000000000..e3933d60b
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/libraries.rsp
@@ -0,0 +1,4 @@
+ws2_32.lib
+qt-mt334.lib
+qtmain.lib
+mswsock.lib
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/libraries_d.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/libraries_d.rsp
new file mode 100644
index 000000000..22514643a
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/libraries_d.rsp
@@ -0,0 +1,2 @@
+libxml2-win32-debug.lib
+
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/libraries_o.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/libraries_o.rsp
new file mode 100644
index 000000000..969d25e20
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/libraries_o.rsp
@@ -0,0 +1,2 @@
+libxml2-win32-release.lib
+
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/libraries_r.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/libraries_r.rsp
new file mode 100644
index 000000000..969d25e20
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/libraries_r.rsp
@@ -0,0 +1,2 @@
+libxml2-win32-release.lib
+
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/libraryPaths.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..a5374cabc
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/libraryPaths.rsp
@@ -0,0 +1,4 @@
+..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib
+..\..\..\..\..\..\external\3rd\library\qt\3.3.4\lib
+..\..\..\..\..\..\external\3rd\library\regex\libs\regex\build\vc7-stlport
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/mocHeaders.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/mocHeaders.rsp
new file mode 100644
index 000000000..c97effc77
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/mocHeaders.rsp
@@ -0,0 +1,6 @@
+..\..\src\win32\AddFilterDialog.h
+..\..\src\win32\PlanetWatcher.h
+..\..\src\win32\PlanetWatcherRenderer.h
+..\..\src\win32\ServerConnectionDialog.h
+..\..\src\win32\ObjectLocatorDialog.h
+..\..\src\win32\ClusterSelectionDialog.h
diff --git a/src/engine/shared/application/PlanetWatcher/build/win32/settings.rsp b/src/engine/shared/application/PlanetWatcher/build/win32/settings.rsp
new file mode 100644
index 000000000..3392ca85f
--- /dev/null
+++ b/src/engine/shared/application/PlanetWatcher/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+qt334
+noPchDirectory
+debugInline
diff --git a/src/engine/shared/application/StringFileTool/build/win32/StringFileTool.vcproj b/src/engine/shared/application/StringFileTool/build/win32/StringFileTool.vcproj
new file mode 100644
index 000000000..56fc3ed97
--- /dev/null
+++ b/src/engine/shared/application/StringFileTool/build/win32/StringFileTool.vcproj
@@ -0,0 +1,589 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/StringFileTool/build/win32/StringFileTool.vcxproj b/src/engine/shared/application/StringFileTool/build/win32/StringFileTool.vcxproj
new file mode 100644
index 000000000..40149222c
--- /dev/null
+++ b/src/engine/shared/application/StringFileTool/build/win32/StringFileTool.vcxproj
@@ -0,0 +1,295 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {35DB55F5-5CA4-43B8-AE55-0437603714A3}
+ MFCProj
+
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+ Application
+ v120
+ Static
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstStringFileTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ dxguid.lib;dpvs.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ true
+ FirstStringFileTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ dxguid.lib;dpvs.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Windows
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_WINDOWS;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ true
+ FirstStringFileTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ dxguid.lib;dpvs.lib;ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Windows
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/StringFileTool/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/StringFileTool/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/StringFileTool/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/StringFileTool/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/StringFileTool/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/StringFileTool/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/StringFileTool/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/StringFileTool/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/StringFileTool/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/StringFileTool/build/win32/includePaths.rsp b/src/engine/shared/application/StringFileTool/build/win32/includePaths.rsp
new file mode 100644
index 000000000..b86fc4a4c
--- /dev/null
+++ b/src/engine/shared/application/StringFileTool/build/win32/includePaths.rsp
@@ -0,0 +1,18 @@
+../../../../../../external/3rd/library/atlmfc/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMemoryBlockManager/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../src/win32
+../../src/win32/external
diff --git a/src/engine/shared/application/StringFileTool/build/win32/libraries.rsp b/src/engine/shared/application/StringFileTool/build/win32/libraries.rsp
new file mode 100644
index 000000000..e12bb90b6
--- /dev/null
+++ b/src/engine/shared/application/StringFileTool/build/win32/libraries.rsp
@@ -0,0 +1,4 @@
+dxguid.lib
+dpvs.lib
+ws2_32.lib
+zlib.lib
diff --git a/src/engine/shared/application/StringFileTool/build/win32/libraryPaths.rsp b/src/engine/shared/application/StringFileTool/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..1378d4976
--- /dev/null
+++ b/src/engine/shared/application/StringFileTool/build/win32/libraryPaths.rsp
@@ -0,0 +1,5 @@
+..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL
+..\..\..\..\..\..\external\3rd\library\directx9\lib
+..\..\..\..\..\..\external\3rd\library\dpvs\lib\win32-x86
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/shared/application/StringFileTool/build/win32/settings.rsp b/src/engine/shared/application/StringFileTool/build/win32/settings.rsp
new file mode 100644
index 000000000..1fb60a649
--- /dev/null
+++ b/src/engine/shared/application/StringFileTool/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+mfc
+noPchDirectory
+debugInline
diff --git a/src/engine/shared/application/TemplateCompiler/build/linux/Makefile b/src/engine/shared/application/TemplateCompiler/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/application/TemplateCompiler/build/shared_unix/shared_unix.mak b/src/engine/shared/application/TemplateCompiler/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..c367cc7ca
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/shared_unix/shared_unix.mak
@@ -0,0 +1,118 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+OUTPUT = TemplateCompiler
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -lz -lodbc
+RELEASE_LINK_FLAGS +=-lpthread -lz -lodbc
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared \
+ ../../../../../../external/ours/library/localization/include \
+ ../../../../../shared/library/sharedTemplateDefinition/include/public \
+ ../../../../../shared/library/sharedTemplate/include/public \
+ $(SHARED_REGEX_INCLUDE_PATH) \
+ $(PCRE_INCLUDE_PATH) \
+ $(COMMON_ENGINE_INCLUDES)
+
+DEBUG_LINK_LIBRARIES = \
+ $(ARCHIVE_DEBUG_LIB) \
+ $(UNICODE_DEBUG_LIB) \
+ $(UNICODE_ARCHIVE_DEBUG_LIB) \
+ $(LOCALIZATION_DEBUG_LIB) \
+ $(LOCALIZATION_ARCHIVE_DEBUG_LIB) \
+ $(COMPRESSION_DEBUG_LIB) \
+ $(DEBUG_DEBUG_LIB) \
+ $(FILE_DEBUG_LIB) \
+ $(FILE_INTERFACE_DEBUG_LIB) \
+ $(FOUNDATION_DEBUG_LIB) \
+ $(MATH_DEBUG_LIB) \
+ $(MEMORY_MANAGER_DEBUG_LIB) \
+ $(RANDOM_DEBUG_LIB) \
+ $(SYNCHRONIZATION_DEBUG_LIB) \
+ $(THREAD_DEBUG_LIB) \
+ $(IOWIN_DEBUG_LIB) \
+ $(UTILITY_DEBUG_LIB) \
+ $(TEMPLATE_DEFINITION_DEBUG_LIB) \
+ $(TEMPLATE_DEBUG_LIB) \
+ $(SHARED_REGEX_DEBUG_LIB) \
+ $(PCRE_DEBUG_LIB) \
+ $(STL_LIB) \
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS)
+
+RELEASE_LINK_LIBRARIES = \
+ $(ARCHIVE_RELEASE_LIB) \
+ $(UNICODE_RELEASE_LIB) \
+ $(UNICODE_ARCHIVE_RELEASE_LIB) \
+ $(LOCALIZATION_RELEASE_LIB) \
+ $(LOCALIZATION_ARCHIVE_RELEASE_LIB) \
+ $(COMPRESSION_RELEASE_LIB) \
+ $(DEBUG_RELEASE_LIB) \
+ $(FILE_RELEASE_LIB) \
+ $(FILE_INTERFACE_RELEASE_LIB) \
+ $(FOUNDATION_RELEASE_LIB) \
+ $(MATH_RELEASE_LIB) \
+ $(MEMORY_MANAGER_RELEASE_LIB) \
+ $(RANDOM_RELEASE_LIB) \
+ $(SYNCHRONIZATION_RELEASE_LIB) \
+ $(THREAD_RELEASE_LIB) \
+ $(IOWIN_RELEASE_LIB) \
+ $(UTILITY_RELEASE_LIB) \
+ $(TEMPLATE_DEFINITION_RELEASE_LIB) \
+ $(TEMPLATE_RELEASE_LIB) \
+ $(SHARED_REGEX_RELEASE_LIB) \
+ $(PCRE_RELEASE_LIB) \
+ $(STL_LIB) \
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS)
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+
+RELEASE_PROJECT_DEPENDS = \
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST = \
+ ../../src/shared/TemplateCompiler.cpp
+PLATFORM_SRC_LIST = \
+ ../../src/linux/FirstTemplateCompiler.cpp
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/shared/application/TemplateCompiler/build/win32/TemplateCompiler.vcproj b/src/engine/shared/application/TemplateCompiler/build/win32/TemplateCompiler.vcproj
new file mode 100644
index 000000000..776ac6133
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/win32/TemplateCompiler.vcproj
@@ -0,0 +1,348 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/TemplateCompiler/build/win32/TemplateCompiler.vcxproj b/src/engine/shared/application/TemplateCompiler/build/win32/TemplateCompiler.vcxproj
new file mode 100644
index 000000000..575d7bddd
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/win32/TemplateCompiler.vcxproj
@@ -0,0 +1,310 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {355DDF1F-1DCA-4667-A1F6-11B66FBC4228}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTemplate\include\public;..\..\..\..\..\shared\library\sharedTemplateDefinition\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;CASE_INSENSITIVE;OS_NT;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTemplateCompiler.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;libclient.lib;libpcre.a;librpc.lib;libsupp.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTemplate\include\public;..\..\..\..\..\shared\library\sharedTemplateDefinition\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;CASE_INSENSITIVE;OS_NT;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTemplateCompiler.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;libclient.lib;libpcre.a;librpc.lib;libsupp.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTemplate\include\public;..\..\..\..\..\shared\library\sharedTemplateDefinition\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;CASE_INSENSITIVE;OS_NT;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstTemplateCompiler.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;libclient.lib;libpcre.a;librpc.lib;libsupp.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {1d87a2e7-f0cf-42e9-bc38-846c53622c40}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {8e0fcf44-63b5-4137-9baa-a740eb10ed94}
+ false
+
+
+ {f547b62a-8f5c-48fc-9b3a-103736a41d03}
+ false
+
+
+ {6612cc35-6931-4ac6-a315-e955ca60b643}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/TemplateCompiler/build/win32/defines.rsp b/src/engine/shared/application/TemplateCompiler/build/win32/defines.rsp
new file mode 100644
index 000000000..f256df873
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/win32/defines.rsp
@@ -0,0 +1 @@
+PCRE_STATIC
diff --git a/src/engine/shared/application/TemplateCompiler/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/TemplateCompiler/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/TemplateCompiler/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/TemplateCompiler/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/TemplateCompiler/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/TemplateCompiler/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/TemplateCompiler/build/win32/includePaths.rsp b/src/engine/shared/application/TemplateCompiler/build/win32/includePaths.rsp
new file mode 100644
index 000000000..fb736f81d
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/win32/includePaths.rsp
@@ -0,0 +1,23 @@
+../../../../../../external/3rd/library/perforce/include
+../../../../../../external/3rd/library/pcre/4.1/win32/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedRegex/include/public
+../../../../../shared/library/sharedTemplate/include/public
+../../../../../shared/library/sharedTemplateDefinition/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../src/win32
diff --git a/src/engine/shared/application/TemplateCompiler/build/win32/libraries.rsp b/src/engine/shared/application/TemplateCompiler/build/win32/libraries.rsp
new file mode 100644
index 000000000..2506a6a08
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/win32/libraries.rsp
@@ -0,0 +1,6 @@
+ws2_32.lib
+libclient.lib
+libpcre.a
+librpc.lib
+libsupp.lib
+zlib.lib
diff --git a/src/engine/shared/application/TemplateCompiler/build/win32/libraryPaths.rsp b/src/engine/shared/application/TemplateCompiler/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..7b32575f2
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/win32/libraryPaths.rsp
@@ -0,0 +1,4 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib
+..\..\..\..\..\..\external\3rd\library\perforce\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/shared/application/TemplateCompiler/build/win32/settings.rsp b/src/engine/shared/application/TemplateCompiler/build/win32/settings.rsp
new file mode 100644
index 000000000..31c21e0c2
--- /dev/null
+++ b/src/engine/shared/application/TemplateCompiler/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console p4 noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/linux/Makefile b/src/engine/shared/application/TemplateDefinitionCompiler/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/shared_unix/shared_unix.mak b/src/engine/shared/application/TemplateDefinitionCompiler/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..d2de43860
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/shared_unix/shared_unix.mak
@@ -0,0 +1,115 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE -DPCRE_STATIC $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE -DPCRE_STATIC $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+OUTPUT = TemplateDefinitionCompiler
+
+#######################################################
+# standard defines
+#######################################################
+
+DEBUG_LINK_FLAGS +=-lpthread -lz -lodbc
+RELEASE_LINK_FLAGS +=-lpthread -lz -lodbc
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/linux \
+ ../../src/shared/core \
+ ../../../../../shared/library/sharedTemplateDefinition/include/public \
+ ../../../../../../external/ours/library/localization/include \
+ $(SHARED_REGEX_INCLUDE_PATH) \
+ $(PCRE_INCLUDE_PATH) \
+ $(COMMON_ENGINE_INCLUDES)
+
+DEBUG_LINK_LIBRARIES = \
+ $(ARCHIVE_DEBUG_LIB) \
+ $(UNICODE_DEBUG_LIB) \
+ $(UNICODE_ARCHIVE_DEBUG_LIB) \
+ $(LOCALIZATION_DEBUG_LIB) \
+ $(LOCALIZATION_ARCHIVE_DEBUG_LIB) \
+ $(COMPRESSION_DEBUG_LIB) \
+ $(DEBUG_DEBUG_LIB) \
+ $(FILE_DEBUG_LIB) \
+ $(FILE_INTERFACE_DEBUG_LIB) \
+ $(FOUNDATION_DEBUG_LIB) \
+ $(MATH_DEBUG_LIB) \
+ $(MEMORY_MANAGER_DEBUG_LIB) \
+ $(RANDOM_DEBUG_LIB) \
+ $(SYNCHRONIZATION_DEBUG_LIB) \
+ $(THREAD_DEBUG_LIB) \
+ $(IOWIN_DEBUG_LIB) \
+ $(UTILITY_DEBUG_LIB) \
+ ../../../../../../compile/linux/sharedTemplateDefinition/debug/libsharedTemplateDefinition_d.a \
+ $(SHARED_REGEX_DEBUG_LIB) \
+ $(PCRE_DEBUG_LIB) \
+ $(STL_LIB) \
+
+DEBUG_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_DEBUG_LIBS)
+
+RELEASE_LINK_LIBRARIES = \
+ $(ARCHIVE_RELEASE_LIB) \
+ $(UNICODE_RELEASE_LIB) \
+ $(UNICODE_ARCHIVE_RELEASE_LIB) \
+ $(LOCALIZATION_RELEASE_LIB) \
+ $(LOCALIZATION_ARCHIVE_RELEASE_LIB) \
+ $(COMPRESSION_RELEASE_LIB) \
+ $(DEBUG_RELEASE_LIB) \
+ $(FILE_RELEASE_LIB) \
+ $(FILE_INTERFACE_RELEASE_LIB) \
+ $(FOUNDATION_RELEASE_LIB) \
+ $(MATH_RELEASE_LIB) \
+ $(MEMORY_MANAGER_RELEASE_LIB) \
+ $(RANDOM_RELEASE_LIB) \
+ $(SYNCHRONIZATION_RELEASE_LIB) \
+ $(THREAD_RELEASE_LIB) \
+ $(IOWIN_RELEASE_LIB) \
+ $(UTILITY_RELEASE_LIB) \
+ ../../../../../../compile/linux/sharedTemplateDefinition/debug/libsharedTemplateDefinition_r.a \
+ $(SHARED_REGEX_RELEASE_LIB) \
+ $(PCRE_RELEASE_LIB) \
+ $(STL_LIB) \
+
+RELEASE_SHARED_LIBRARIES= \
+ $(COMMON_ENGINE_SHARED_RELEASE_LIBS)
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+DEBUG_PROJECT_DEPENDS = \
+
+RELEASE_PROJECT_DEPENDS = \
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST = \
+ ../../src/shared/core/TemplateDefinitionCompiler.cpp
+PLATFORM_SRC_LIST = \
+ ../../src/linux/FirstTemplateDefinitionCompiler.cpp
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/TemplateDefinitionCompiler.vcproj b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/TemplateDefinitionCompiler.vcproj
new file mode 100644
index 000000000..b99ec8707
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/TemplateDefinitionCompiler.vcproj
@@ -0,0 +1,348 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/TemplateDefinitionCompiler.vcxproj b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/TemplateDefinitionCompiler.vcxproj
new file mode 100644
index 000000000..ba973fefa
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/TemplateDefinitionCompiler.vcxproj
@@ -0,0 +1,314 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {D21EE827-D349-4EFB-B93B-4B5668AAE8B3}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTemplate\include\public;..\..\..\..\..\shared\library\sharedTemplateDefinition\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\shared\core;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;CASE_INSENSITIVE;OS_NT;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTemplateDefinitionCompiler.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;libclient.lib;librpc.lib;libsupp.lib;libpcre.a;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTemplate\include\public;..\..\..\..\..\shared\library\sharedTemplateDefinition\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\shared\core;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;CASE_INSENSITIVE;OS_NT;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTemplateDefinitionCompiler.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;libclient.lib;librpc.lib;libsupp.lib;libpcre.a;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedRegex\include\public;..\..\..\..\..\shared\library\sharedTemplate\include\public;..\..\..\..\..\shared\library\sharedTemplateDefinition\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\src\shared\core;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;CASE_INSENSITIVE;OS_NT;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstTemplateDefinitionCompiler.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;libclient.lib;librpc.lib;libsupp.lib;libpcre.a;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib;..\..\..\..\..\..\external\3rd\library\perforce\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {a8036ec1-9682-4315-a3d2-6b26c3245d50}
+ false
+
+
+ {0fb11bc8-3bd1-4471-8dda-da3bc05937b2}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {b97963ef-49e4-477e-85ff-e7fee7c626d7}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {0202adb3-5587-4138-a626-52b7db52fbba}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {ac1277c1-ce5a-4ece-9be3-6b4647b657a5}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {1d87a2e7-f0cf-42e9-bc38-846c53622c40}
+ false
+
+
+ {070babeb-131a-4dc7-8621-69407c531f8e}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {8e0fcf44-63b5-4137-9baa-a740eb10ed94}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/defines.rsp b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/defines.rsp
new file mode 100644
index 000000000..f256df873
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/defines.rsp
@@ -0,0 +1 @@
+PCRE_STATIC
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/includePaths.rsp b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/includePaths.rsp
new file mode 100644
index 000000000..01d1c7c6e
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/includePaths.rsp
@@ -0,0 +1,24 @@
+../../../../../../external/3rd/library/perforce/include
+../../../../../../external/3rd/library/pcre/4.1/win32/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedRegex/include/public
+../../../../../shared/library/sharedTemplate/include/public
+../../../../../shared/library/sharedTemplateDefinition/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../src/shared/core
+../../src/win32
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/libraries.rsp b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/libraries.rsp
new file mode 100644
index 000000000..5272c1573
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/libraries.rsp
@@ -0,0 +1,6 @@
+ws2_32.lib
+libclient.lib
+librpc.lib
+libsupp.lib
+libpcre.a
+zlib.lib
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/libraryPaths.rsp b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..7b32575f2
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/libraryPaths.rsp
@@ -0,0 +1,4 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\lib
+..\..\..\..\..\..\external\3rd\library\perforce\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/settings.rsp b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/settings.rsp
new file mode 100644
index 000000000..31c21e0c2
--- /dev/null
+++ b/src/engine/shared/application/TemplateDefinitionCompiler/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console p4 noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/TreeFileBuilder/build/linux/Makefile b/src/engine/shared/application/TreeFileBuilder/build/linux/Makefile
new file mode 100644
index 000000000..dc593b3c6
--- /dev/null
+++ b/src/engine/shared/application/TreeFileBuilder/build/linux/Makefile
@@ -0,0 +1,121 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = TreeFileBuilder
+
+#######################################################
+# overrides of standard defines
+#######################################################
+ DEBUG_LINK_FLAGS +=-lpthread -lc -ldl -lz
+ RELEASE_LINK_FLAGS +=-lpthread -ldl -lz
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ ../../include/private \
+ ../../include/public \
+ $(COMPRESSION_INCLUDE_PATH) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(IOWIN_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(XML_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/ours/library/fileInterface/include/public \
+
+DEBUG_LINK_LIBRARIES = \
+ $(ARCHIVE_DEBUG_LIB) \
+ $(UNICODE_DEBUG_LIB) \
+ $(UNICODE_ARCHIVE_DEBUG_LIB) \
+ $(LOCALIZATION_DEBUG_LIB) \
+ $(LOCALIZATION_ARCHIVE_DEBUG_LIB) \
+ $(COMPRESSION_DEBUG_LIB) \
+ $(DEBUG_DEBUG_LIB) \
+ $(FILE_DEBUG_LIB) \
+ $(FOUNDATION_DEBUG_LIB) \
+ $(MATH_DEBUG_LIB) \
+ $(MEMORY_BLOCK_MANAGER_DEBUG_LIB) \
+ $(MEMORY_MANAGER_DEBUG_LIB) \
+ $(RANDOM_DEBUG_LIB) \
+ $(SYNCHRONIZATION_DEBUG_LIB) \
+ $(THREAD_DEBUG_LIB) \
+ $(IOWIN_DEBUG_LIB) \
+ $(UTILITY_DEBUG_LIB) \
+ $(XML_DEBUG_LIB) \
+ $(FILE_INTERFACE_DEBUG_LIB) \
+ $(STL_LIB) \
+ $(LIBXML_LIB) \
+ $(ZLIB_LIB)
+
+DEBUG_SHARED_LIBRARIES= \
+
+RELEASE_LINK_LIBRARIES = \
+ $(ARCHIVE_RELEASE_LIB) \
+ $(UNICODE_RELEASE_LIB) \
+ $(UNICODE_ARCHIVE_RELEASE_LIB) \
+ $(LOCALIZATION_RELEASE_LIB) \
+ $(LOCALIZATION_ARCHIVE_RELEASE_LIB) \
+ $(COMPRESSION_RELEASE_LIB) \
+ $(DEBUG_RELEASE_LIB) \
+ $(FILE_RELEASE_LIB) \
+ $(FOUNDATION_RELEASE_LIB) \
+ $(MATH_RELEASE_LIB) \
+ $(MEMORY_BLOCK_MANAGER_RELEASE_LIB) \
+ $(MEMORY_MANAGER_RELEASE_LIB) \
+ $(RANDOM_RELEASE_LIB) \
+ $(SYNCHRONIZATION_RELEASE_LIB) \
+ $(THREAD_RELEASE_LIB) \
+ $(IOWIN_RELEASE_LIB) \
+ $(UTILITY_RELEASE_LIB) \
+ $(XML_RELEASE_LIB) \
+ $(FILE_INTERFACE_RELEASE_LIB) \
+ $(STL_LIB) \
+ $(LIBXML_LIB) \
+ $(ZLIB_LIB)
+
+RELEASE_SHARED_LIBRARIES= \
+
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/shared/application/TreeFileBuilder/build/win32/TreeFileBuilder.vcproj b/src/engine/shared/application/TreeFileBuilder/build/win32/TreeFileBuilder.vcproj
new file mode 100644
index 000000000..503fb511f
--- /dev/null
+++ b/src/engine/shared/application/TreeFileBuilder/build/win32/TreeFileBuilder.vcproj
@@ -0,0 +1,352 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/TreeFileBuilder/build/win32/TreeFileBuilder.vcxproj b/src/engine/shared/application/TreeFileBuilder/build/win32/TreeFileBuilder.vcxproj
new file mode 100644
index 000000000..8ff38062e
--- /dev/null
+++ b/src/engine/shared/application/TreeFileBuilder/build/win32/TreeFileBuilder.vcxproj
@@ -0,0 +1,259 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {63F95846-C17B-4977-BEDD-D49852137A3D}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTreeFileBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTreeFileBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstTreeFileBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/TreeFileBuilder/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/TreeFileBuilder/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/TreeFileBuilder/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/TreeFileBuilder/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/TreeFileBuilder/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/TreeFileBuilder/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/TreeFileBuilder/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/TreeFileBuilder/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/TreeFileBuilder/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/TreeFileBuilder/build/win32/includePaths.rsp b/src/engine/shared/application/TreeFileBuilder/build/win32/includePaths.rsp
new file mode 100644
index 000000000..0eb684203
--- /dev/null
+++ b/src/engine/shared/application/TreeFileBuilder/build/win32/includePaths.rsp
@@ -0,0 +1,11 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
diff --git a/src/engine/shared/application/TreeFileBuilder/build/win32/libraries.rsp b/src/engine/shared/application/TreeFileBuilder/build/win32/libraries.rsp
new file mode 100644
index 000000000..ca63bd4d5
--- /dev/null
+++ b/src/engine/shared/application/TreeFileBuilder/build/win32/libraries.rsp
@@ -0,0 +1 @@
+zlib.lib
diff --git a/src/engine/shared/application/TreeFileBuilder/build/win32/libraryPaths.rsp b/src/engine/shared/application/TreeFileBuilder/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..689efacba
--- /dev/null
+++ b/src/engine/shared/application/TreeFileBuilder/build/win32/libraryPaths.rsp
@@ -0,0 +1,2 @@
+../../../../../../external/3rd/library/stlport453/lib/win32
+../../../../../../external/3rd/library/zlib/lib/win32
diff --git a/src/engine/shared/application/TreeFileBuilder/build/win32/settings.rsp b/src/engine/shared/application/TreeFileBuilder/build/win32/settings.rsp
new file mode 100644
index 000000000..10210962e
--- /dev/null
+++ b/src/engine/shared/application/TreeFileBuilder/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/TreeFileExtractor/build/win32/TreeFileExtractor.vcproj b/src/engine/shared/application/TreeFileExtractor/build/win32/TreeFileExtractor.vcproj
new file mode 100644
index 000000000..16c94022a
--- /dev/null
+++ b/src/engine/shared/application/TreeFileExtractor/build/win32/TreeFileExtractor.vcproj
@@ -0,0 +1,352 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/TreeFileExtractor/build/win32/TreeFileExtractor.vcxproj b/src/engine/shared/application/TreeFileExtractor/build/win32/TreeFileExtractor.vcxproj
new file mode 100644
index 000000000..c8eed247d
--- /dev/null
+++ b/src/engine/shared/application/TreeFileExtractor/build/win32/TreeFileExtractor.vcxproj
@@ -0,0 +1,255 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {DDA6E9E4-501E-4336-84F1-8995098B8656}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTreeFileExtractor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTreeFileExtractor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstTreeFileExtractor.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/TreeFileExtractor/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/TreeFileExtractor/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/TreeFileExtractor/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/TreeFileExtractor/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/TreeFileExtractor/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/TreeFileExtractor/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/TreeFileExtractor/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/TreeFileExtractor/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/TreeFileExtractor/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/TreeFileExtractor/build/win32/includePaths.rsp b/src/engine/shared/application/TreeFileExtractor/build/win32/includePaths.rsp
new file mode 100644
index 000000000..0eb684203
--- /dev/null
+++ b/src/engine/shared/application/TreeFileExtractor/build/win32/includePaths.rsp
@@ -0,0 +1,11 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
diff --git a/src/engine/shared/application/TreeFileExtractor/build/win32/libraries.rsp b/src/engine/shared/application/TreeFileExtractor/build/win32/libraries.rsp
new file mode 100644
index 000000000..ca63bd4d5
--- /dev/null
+++ b/src/engine/shared/application/TreeFileExtractor/build/win32/libraries.rsp
@@ -0,0 +1 @@
+zlib.lib
diff --git a/src/engine/shared/application/TreeFileExtractor/build/win32/libraryPaths.rsp b/src/engine/shared/application/TreeFileExtractor/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..154117d6a
--- /dev/null
+++ b/src/engine/shared/application/TreeFileExtractor/build/win32/libraryPaths.rsp
@@ -0,0 +1,2 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/shared/application/TreeFileExtractor/build/win32/settings.rsp b/src/engine/shared/application/TreeFileExtractor/build/win32/settings.rsp
new file mode 100644
index 000000000..10210962e
--- /dev/null
+++ b/src/engine/shared/application/TreeFileExtractor/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/TreeFileRspBuilder/build/win32/TreeFileRspBuilder.vcproj b/src/engine/shared/application/TreeFileRspBuilder/build/win32/TreeFileRspBuilder.vcproj
new file mode 100644
index 000000000..ba54d1f88
--- /dev/null
+++ b/src/engine/shared/application/TreeFileRspBuilder/build/win32/TreeFileRspBuilder.vcproj
@@ -0,0 +1,348 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/TreeFileRspBuilder/build/win32/TreeFileRspBuilder.vcxproj b/src/engine/shared/application/TreeFileRspBuilder/build/win32/TreeFileRspBuilder.vcxproj
new file mode 100644
index 000000000..078044192
--- /dev/null
+++ b/src/engine/shared/application/TreeFileRspBuilder/build/win32/TreeFileRspBuilder.vcxproj
@@ -0,0 +1,204 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {6235E2B4-A893-4776-BE5A-C77120DD8548}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTreeFileRspBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTreeFileRspBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstTreeFileRspBuilder.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;%(AdditionalLibraryDirectories)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/TreeFileRspBuilder/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/TreeFileRspBuilder/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/TreeFileRspBuilder/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/TreeFileRspBuilder/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/TreeFileRspBuilder/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/TreeFileRspBuilder/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/TreeFileRspBuilder/build/win32/includePaths.rsp b/src/engine/shared/application/TreeFileRspBuilder/build/win32/includePaths.rsp
new file mode 100644
index 000000000..e09f1ac0a
--- /dev/null
+++ b/src/engine/shared/application/TreeFileRspBuilder/build/win32/includePaths.rsp
@@ -0,0 +1 @@
+../../../../../../external/3rd/library/stlport453/stlport
diff --git a/src/engine/shared/application/TreeFileRspBuilder/build/win32/libraryPaths.rsp b/src/engine/shared/application/TreeFileRspBuilder/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..9ebe2fcb7
--- /dev/null
+++ b/src/engine/shared/application/TreeFileRspBuilder/build/win32/libraryPaths.rsp
@@ -0,0 +1 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
\ No newline at end of file
diff --git a/src/engine/shared/application/TreeFileRspBuilder/build/win32/settings.rsp b/src/engine/shared/application/TreeFileRspBuilder/build/win32/settings.rsp
new file mode 100644
index 000000000..10210962e
--- /dev/null
+++ b/src/engine/shared/application/TreeFileRspBuilder/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/Turf/build/win32/Turf.vcproj b/src/engine/shared/application/Turf/build/win32/Turf.vcproj
new file mode 100644
index 000000000..1f943b5a1
--- /dev/null
+++ b/src/engine/shared/application/Turf/build/win32/Turf.vcproj
@@ -0,0 +1,388 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/Turf/build/win32/Turf.vcxproj b/src/engine/shared/application/Turf/build/win32/Turf.vcxproj
new file mode 100644
index 000000000..2f040a4ad
--- /dev/null
+++ b/src/engine/shared/application/Turf/build/win32/Turf.vcxproj
@@ -0,0 +1,213 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {C12FC03D-4C12-4957-A282-E7360833F065}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\meshifier;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\src\shared;..\..\src\win32;.\;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTurf.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ dsound.lib;dinput8.lib;libxml2-win32-release.lib;mss32.lib;ws2_32.lib;winmm.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\meshifier;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\src\shared;..\..\src\win32;.\;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstTurf.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ dsound.lib;dinput8.lib;libxml2-win32-release.lib;mss32.lib;ws2_32.lib;winmm.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\meshifier;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedImage\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedPathfinding\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\..\..\..\shared\library\sharedXml\include\public;..\..\src\shared;..\..\src\win32;.\;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstTurf.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ dsound.lib;dinput8.lib;libxml2-win32-release.lib;mss32.lib;ws2_32.lib;winmm.lib;zlib.lib;mswsock.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\directx9\lib;..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\lib;..\..\..\..\..\..\external\3rd\library\miles\lib\win;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/Turf/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/Turf/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/Turf/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/Turf/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/Turf/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/Turf/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/Turf/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/Turf/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/Turf/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/Turf/build/win32/includePaths.rsp b/src/engine/shared/application/Turf/build/win32/includePaths.rsp
new file mode 100644
index 000000000..b06c174d3
--- /dev/null
+++ b/src/engine/shared/application/Turf/build/win32/includePaths.rsp
@@ -0,0 +1,31 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/meshifier
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedFractal/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedImage/include/public
+../../../../../shared/library/sharedLog/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedPathfinding/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../../../../shared/library/sharedXml/include/public
+../../src/shared
+../../src/win32
+./
diff --git a/src/engine/shared/application/Turf/build/win32/libraries.rsp b/src/engine/shared/application/Turf/build/win32/libraries.rsp
new file mode 100644
index 000000000..dcfb3bbd9
--- /dev/null
+++ b/src/engine/shared/application/Turf/build/win32/libraries.rsp
@@ -0,0 +1,8 @@
+dsound.lib
+dinput8.lib
+libxml2-win32-release.lib
+mss32.lib
+ws2_32.lib
+winmm.lib
+zlib.lib
+mswsock.lib
diff --git a/src/engine/shared/application/Turf/build/win32/libraryPaths.rsp b/src/engine/shared/application/Turf/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..6daf36b74
--- /dev/null
+++ b/src/engine/shared/application/Turf/build/win32/libraryPaths.rsp
@@ -0,0 +1,5 @@
+../../../../../../external/3rd/library/directx9/lib
+../../../../../../external/3rd/library/libxml2-2.6.7.win32/lib
+../../../../../../external/3rd/library/miles/lib/win
+../../../../../../external/3rd/library/stlport453/lib/win32
+../../../../../../external/3rd/library/zlib/lib/win32
diff --git a/src/engine/shared/application/Turf/build/win32/settings.rsp b/src/engine/shared/application/Turf/build/win32/settings.rsp
new file mode 100644
index 000000000..754f09750
--- /dev/null
+++ b/src/engine/shared/application/Turf/build/win32/settings.rsp
@@ -0,0 +1,4 @@
+console
+noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/UpdateLocalizedStrings/build/win32/UpdateLocalizedStrings.vcproj b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/UpdateLocalizedStrings.vcproj
new file mode 100644
index 000000000..8efa29299
--- /dev/null
+++ b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/UpdateLocalizedStrings.vcproj
@@ -0,0 +1,348 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/UpdateLocalizedStrings/build/win32/UpdateLocalizedStrings.vcxproj b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/UpdateLocalizedStrings.vcxproj
new file mode 100644
index 000000000..021865dcb
--- /dev/null
+++ b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/UpdateLocalizedStrings.vcxproj
@@ -0,0 +1,208 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {4511DE35-D4E8-41B5-A0DD-F9374AE747C2}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstUpdateLocalizedStrings.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstUpdateLocalizedStrings.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstUpdateLocalizedStrings.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/UpdateLocalizedStrings/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/UpdateLocalizedStrings/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/UpdateLocalizedStrings/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/UpdateLocalizedStrings/build/win32/includePaths.rsp b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/includePaths.rsp
new file mode 100644
index 000000000..112e12428
--- /dev/null
+++ b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/includePaths.rsp
@@ -0,0 +1,17 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMemoryBlockManager/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../src/win32
+../../src/win32/external
diff --git a/src/engine/shared/application/UpdateLocalizedStrings/build/win32/libraries.rsp b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/libraries.rsp
new file mode 100644
index 000000000..7f26fe7e3
--- /dev/null
+++ b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/libraries.rsp
@@ -0,0 +1,2 @@
+ws2_32.lib
+zlib.lib
diff --git a/src/engine/shared/application/UpdateLocalizedStrings/build/win32/libraryPaths.rsp b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..511b3d442
--- /dev/null
+++ b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/libraryPaths.rsp
@@ -0,0 +1,3 @@
+..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/shared/application/UpdateLocalizedStrings/build/win32/settings.rsp b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/settings.rsp
new file mode 100644
index 000000000..3b04c2c5a
--- /dev/null
+++ b/src/engine/shared/application/UpdateLocalizedStrings/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console
+noPchDirectory
+debugInline
diff --git a/src/engine/shared/application/VersionNumber/Makefile b/src/engine/shared/application/VersionNumber/Makefile
new file mode 100644
index 000000000..ffe8f1f73
--- /dev/null
+++ b/src/engine/shared/application/VersionNumber/Makefile
@@ -0,0 +1,3 @@
+VersionNumber: VersionNumber.cpp
+ g++ -o VersionNumber -O2 VersionNumber.cpp
+ strip VersionNumber
diff --git a/src/engine/shared/application/WeaponExporterTool/build/linux/Makefile b/src/engine/shared/application/WeaponExporterTool/build/linux/Makefile
new file mode 100644
index 000000000..d8b2bf611
--- /dev/null
+++ b/src/engine/shared/application/WeaponExporterTool/build/linux/Makefile
@@ -0,0 +1,121 @@
+DEBUG_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+RELEASE_PLATFORM_CPP_FLAGS =-DLINUX -D_REENTRANT -D_XOPEN_SOUCE=500 -D_GNU_SOURCE $(PERSONAL_FLAGS)
+
+include ../../../../../build/linux/platformDefs.mak
+include ../../../../../build/shared_unix/defs.mak
+
+
+OUTPUT = WeaponExporterTool
+
+#######################################################
+# overrides of standard defines
+#######################################################
+ DEBUG_LINK_FLAGS +=-lpthread -lc -ldl -lz
+ RELEASE_LINK_FLAGS +=-lpthread -ldl -lz
+
+#######################################################
+# includes & linked libraries
+#######################################################
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ ../../include/private \
+ ../../include/public \
+ $(COMPRESSION_INCLUDE_PATH) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(IOWIN_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(XML_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/ours/library/fileInterface/include/public \
+
+DEBUG_LINK_LIBRARIES = \
+ $(ARCHIVE_DEBUG_LIB) \
+ $(UNICODE_DEBUG_LIB) \
+ $(UNICODE_ARCHIVE_DEBUG_LIB) \
+ $(LOCALIZATION_DEBUG_LIB) \
+ $(LOCALIZATION_ARCHIVE_DEBUG_LIB) \
+ $(COMPRESSION_DEBUG_LIB) \
+ $(DEBUG_DEBUG_LIB) \
+ $(FILE_DEBUG_LIB) \
+ $(FOUNDATION_DEBUG_LIB) \
+ $(MATH_DEBUG_LIB) \
+ $(MEMORY_BLOCK_MANAGER_DEBUG_LIB) \
+ $(MEMORY_MANAGER_DEBUG_LIB) \
+ $(RANDOM_DEBUG_LIB) \
+ $(SYNCHRONIZATION_DEBUG_LIB) \
+ $(THREAD_DEBUG_LIB) \
+ $(IOWIN_DEBUG_LIB) \
+ $(UTILITY_DEBUG_LIB) \
+ $(XML_DEBUG_LIB) \
+ $(FILE_INTERFACE_DEBUG_LIB) \
+ $(STL_LIB) \
+ $(LIBXML_LIB) \
+ $(ZLIB_LIB)
+
+DEBUG_SHARED_LIBRARIES= \
+
+RELEASE_LINK_LIBRARIES = \
+ $(ARCHIVE_RELEASE_LIB) \
+ $(UNICODE_RELEASE_LIB) \
+ $(UNICODE_ARCHIVE_RELEASE_LIB) \
+ $(LOCALIZATION_RELEASE_LIB) \
+ $(LOCALIZATION_ARCHIVE_RELEASE_LIB) \
+ $(COMPRESSION_RELEASE_LIB) \
+ $(DEBUG_RELEASE_LIB) \
+ $(FILE_RELEASE_LIB) \
+ $(FOUNDATION_RELEASE_LIB) \
+ $(MATH_RELEASE_LIB) \
+ $(MEMORY_BLOCK_MANAGER_RELEASE_LIB) \
+ $(MEMORY_MANAGER_RELEASE_LIB) \
+ $(RANDOM_RELEASE_LIB) \
+ $(SYNCHRONIZATION_RELEASE_LIB) \
+ $(THREAD_RELEASE_LIB) \
+ $(IOWIN_RELEASE_LIB) \
+ $(UTILITY_RELEASE_LIB) \
+ $(XML_RELEASE_LIB) \
+ $(FILE_INTERFACE_RELEASE_LIB) \
+ $(STL_LIB) \
+ $(LIBXML_LIB) \
+ $(ZLIB_LIB)
+
+RELEASE_SHARED_LIBRARIES= \
+
+
+#######################################################
+# Project depends
+# (The makefile for these projects will be
+# automatically invoked.)
+#######################################################
+
+
+#######################################################
+# Source file list
+#######################################################
+
+SHARED_SRC_LIST =$(shell find $$PWD/../../src/shared -name "*.cpp")
+PLATFORM_SRC_LIST =
+SRC_LIST =$(SHARED_SRC_LIST) $(PLATFORM_SRC_LIST)
+
+#######################################################
+# Custom build steps
+#######################################################
+
+debug_custom_step:
+
+release_custom_step:
+
+depend_custom_step:
+
+#######################################################
+# include the common makefile
+#######################################################
+
+include ../../../../../build/shared_unix/application.mak
diff --git a/src/engine/shared/application/WeaponExporterTool/build/win32/WeaponExporterTool.vcproj b/src/engine/shared/application/WeaponExporterTool/build/win32/WeaponExporterTool.vcproj
new file mode 100644
index 000000000..a6126b83b
--- /dev/null
+++ b/src/engine/shared/application/WeaponExporterTool/build/win32/WeaponExporterTool.vcproj
@@ -0,0 +1,388 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/WeaponExporterTool/build/win32/WeaponExporterTool.vcxproj b/src/engine/shared/application/WeaponExporterTool/build/win32/WeaponExporterTool.vcxproj
new file mode 100644
index 000000000..bc560afde
--- /dev/null
+++ b/src/engine/shared/application/WeaponExporterTool/build/win32/WeaponExporterTool.vcxproj
@@ -0,0 +1,291 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {1DA25C31-189F-4661-9B65-927B8D05C63B}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstWeaponExporterTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstWeaponExporterTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\server\library\serverGame\include\public;..\..\..\..\..\shared\library\sharedCompression\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedGame\include\public;..\..\..\..\..\shared\library\sharedIoWin\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstWeaponExporterTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+ {52153865-1abf-4fbb-84c4-0fc439716f1e}
+ false
+
+
+ {de93996c-cb51-4d61-85a0-a9dfc677445f}
+ false
+
+
+ {41269a52-38b8-4f9a-ae38-1103bb03a10b}
+ false
+
+
+ {f8271bf7-cfbf-4de3-84bb-428058e0b069}
+ false
+
+
+ {6bd52b35-92ca-44e4-995e-2b79c7398183}
+ false
+
+
+ {f3245c29-7760-4956-b1b7-fc483be417cd}
+ false
+
+
+ {e0f9d922-daa7-475e-a95a-7bc540ed58fe}
+ false
+
+
+ {d6cc353f-4fd1-4aeb-a984-e7b2e9ce4e69}
+ false
+
+
+ {c595c10e-ada8-429a-896a-8904a46737d3}
+ false
+
+
+ {03819289-4e8b-44e9-9f3b-a3243c9797c9}
+ false
+
+
+ {2ae0cef0-c4f2-4786-a026-8338fb09d61b}
+ false
+
+
+ {5789ea7c-6596-4dcc-a9fb-dd7582888f90}
+ false
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+ {c87164f5-14a9-403c-8bc4-217fd40731ea}
+ false
+
+
+ {decf2964-3a66-4fa6-ab27-d4507c5480ea}
+ false
+
+
+ {2e6982e0-dcb6-4ed9-bfad-d29daeea6ad2}
+ false
+
+
+ {2fe4e38d-be7d-4e3b-9613-63e9f01855f4}
+ false
+
+
+ {858f7dce-325a-467c-9dda-2fe40217286f}
+ false
+
+
+ {52df0d16-d070-47fc-b987-8d80b027d114}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/WeaponExporterTool/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/WeaponExporterTool/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/WeaponExporterTool/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/WeaponExporterTool/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/WeaponExporterTool/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/WeaponExporterTool/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/WeaponExporterTool/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/WeaponExporterTool/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/WeaponExporterTool/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/WeaponExporterTool/build/win32/includePaths.rsp b/src/engine/shared/application/WeaponExporterTool/build/win32/includePaths.rsp
new file mode 100644
index 000000000..7012deb12
--- /dev/null
+++ b/src/engine/shared/application/WeaponExporterTool/build/win32/includePaths.rsp
@@ -0,0 +1,21 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/boost
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../../../server/library/serverGame/include/public
+../../../../../shared/library/sharedCompression/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedGame/include/public
+../../../../../shared/library/sharedIoWin/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
diff --git a/src/engine/shared/application/WeaponExporterTool/build/win32/libraries.rsp b/src/engine/shared/application/WeaponExporterTool/build/win32/libraries.rsp
new file mode 100644
index 000000000..ca63bd4d5
--- /dev/null
+++ b/src/engine/shared/application/WeaponExporterTool/build/win32/libraries.rsp
@@ -0,0 +1 @@
+zlib.lib
diff --git a/src/engine/shared/application/WeaponExporterTool/build/win32/libraryPaths.rsp b/src/engine/shared/application/WeaponExporterTool/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..154117d6a
--- /dev/null
+++ b/src/engine/shared/application/WeaponExporterTool/build/win32/libraryPaths.rsp
@@ -0,0 +1,2 @@
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/shared/application/WeaponExporterTool/build/win32/settings.rsp b/src/engine/shared/application/WeaponExporterTool/build/win32/settings.rsp
new file mode 100644
index 000000000..10210962e
--- /dev/null
+++ b/src/engine/shared/application/WeaponExporterTool/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console noPchDirectory
+
+debugInline
diff --git a/src/engine/shared/application/WordCountTool/build/win32/WordCountTool.vcproj b/src/engine/shared/application/WordCountTool/build/win32/WordCountTool.vcproj
new file mode 100644
index 000000000..2eb17b7eb
--- /dev/null
+++ b/src/engine/shared/application/WordCountTool/build/win32/WordCountTool.vcproj
@@ -0,0 +1,388 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/application/WordCountTool/build/win32/WordCountTool.vcxproj b/src/engine/shared/application/WordCountTool/build/win32/WordCountTool.vcxproj
new file mode 100644
index 000000000..4ba90ad39
--- /dev/null
+++ b/src/engine/shared/application/WordCountTool/build/win32/WordCountTool.vcxproj
@@ -0,0 +1,213 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {0BEACA0C-6862-461F-BCD8-997D2F35B2C7}
+ Win32Proj
+
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+ Application
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ true
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ false
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstWordCountTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_d.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_d.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ FirstWordCountTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_o.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libcmt;libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_o.pdb
+ Console
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\engine\shared\library\sharedCompression\include\public;..\..\..\..\..\..\engine\shared\library\sharedDebug\include\public;..\..\..\..\..\..\engine\shared\library\sharedFile\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundation\include\public;..\..\..\..\..\..\engine\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\..\engine\shared\library\sharedMath\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\..\engine\shared\library\sharedSynchronization\include\public;..\..\..\..\..\..\engine\shared\library\sharedThread\include\public;..\..\..\..\..\..\engine\shared\library\sharedUtility\include\public;..\..\src\win32;..\..\src\win32\external;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_CONSOLE;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ FirstWordCountTool.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ ws2_32.lib;zlib.lib;%(AdditionalDependencies)
+ $(OutDir)$(ProjectName)_r.exe
+ ..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL;..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32;..\..\..\..\..\..\external\3rd\library\zlib\lib\win32;%(AdditionalLibraryDirectories)
+ libc;%(IgnoreSpecificDefaultLibraries)
+ true
+ $(OutDir)$(ProjectName)_r.pdb
+ Console
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/application/WordCountTool/build/win32/ignoreLibraries.rsp b/src/engine/shared/application/WordCountTool/build/win32/ignoreLibraries.rsp
new file mode 100644
index 000000000..0a9ce4f3e
--- /dev/null
+++ b/src/engine/shared/application/WordCountTool/build/win32/ignoreLibraries.rsp
@@ -0,0 +1 @@
+libc
diff --git a/src/engine/shared/application/WordCountTool/build/win32/ignoreLibraries_d.rsp b/src/engine/shared/application/WordCountTool/build/win32/ignoreLibraries_d.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/WordCountTool/build/win32/ignoreLibraries_d.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/WordCountTool/build/win32/ignoreLibraries_o.rsp b/src/engine/shared/application/WordCountTool/build/win32/ignoreLibraries_o.rsp
new file mode 100644
index 000000000..5bae4d44f
--- /dev/null
+++ b/src/engine/shared/application/WordCountTool/build/win32/ignoreLibraries_o.rsp
@@ -0,0 +1 @@
+libcmt
diff --git a/src/engine/shared/application/WordCountTool/build/win32/includePaths.rsp b/src/engine/shared/application/WordCountTool/build/win32/includePaths.rsp
new file mode 100644
index 000000000..112e12428
--- /dev/null
+++ b/src/engine/shared/application/WordCountTool/build/win32/includePaths.rsp
@@ -0,0 +1,17 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../engine/shared/library/sharedCompression/include/public
+../../../../../../engine/shared/library/sharedDebug/include/public
+../../../../../../engine/shared/library/sharedFile/include/public
+../../../../../../engine/shared/library/sharedFoundation/include/public
+../../../../../../engine/shared/library/sharedFoundationTypes/include/public
+../../../../../../engine/shared/library/sharedMath/include/public
+../../../../../../engine/shared/library/sharedMemoryManager/include/public
+../../../../../../engine/shared/library/sharedMemoryBlockManager/include/public
+../../../../../../engine/shared/library/sharedSynchronization/include/public
+../../../../../../engine/shared/library/sharedThread/include/public
+../../../../../../engine/shared/library/sharedUtility/include/public
+../../src/win32
+../../src/win32/external
diff --git a/src/engine/shared/application/WordCountTool/build/win32/libraries.rsp b/src/engine/shared/application/WordCountTool/build/win32/libraries.rsp
new file mode 100644
index 000000000..7f26fe7e3
--- /dev/null
+++ b/src/engine/shared/application/WordCountTool/build/win32/libraries.rsp
@@ -0,0 +1,2 @@
+ws2_32.lib
+zlib.lib
diff --git a/src/engine/shared/application/WordCountTool/build/win32/libraryPaths.rsp b/src/engine/shared/application/WordCountTool/build/win32/libraryPaths.rsp
new file mode 100644
index 000000000..511b3d442
--- /dev/null
+++ b/src/engine/shared/application/WordCountTool/build/win32/libraryPaths.rsp
@@ -0,0 +1,3 @@
+..\..\..\..\..\..\external\3rd\library\atlmfc\lib\INTEL
+..\..\..\..\..\..\external\3rd\library\stlport453\lib\win32
+..\..\..\..\..\..\external\3rd\library\zlib\lib\win32
diff --git a/src/engine/shared/application/WordCountTool/build/win32/settings.rsp b/src/engine/shared/application/WordCountTool/build/win32/settings.rsp
new file mode 100644
index 000000000..3b04c2c5a
--- /dev/null
+++ b/src/engine/shared/application/WordCountTool/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+console
+noPchDirectory
+debugInline
diff --git a/src/engine/shared/library/sharedCollision/build/linux/Makefile b/src/engine/shared/library/sharedCollision/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedCollision/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedCollision/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedCollision/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..f24563b46
--- /dev/null
+++ b/src/engine/shared/library/sharedCollision/build/shared_unix/shared_unix.mak
@@ -0,0 +1,30 @@
+LIBRARY = sharedCollision
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ ../../include/public \
+ ../../include/private \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ $(FILE_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ ../../../../../../external/ours/library/archive/include \
+ ../../../../../../external/ours/library/unicode/include \
+ ../../../../../../external/ours/library/localization/include \
+ ../../../../../../external/ours/library/fileInterface/include/public \
+ ../../../sharedGame/include/public \
+ ../../../sharedLog/include/public \
+ ../../../sharedMathArchive/include/public \
+ ../../../sharedMessageDispatch/include/public \
+ ../../../sharedTemplate/include/public \
+ ../../../sharedTemplateDefinition/include/public \
+ ../../../sharedTerrain/include/public \
+ ../../../sharedUtility/include/public \
+ ../../../../../../external/3rd/library/boost
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedCollision/build/win32/includePaths.rsp b/src/engine/shared/library/sharedCollision/build/win32/includePaths.rsp
new file mode 100644
index 000000000..b30a265c2
--- /dev/null
+++ b/src/engine/shared/library/sharedCollision/build/win32/includePaths.rsp
@@ -0,0 +1,24 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedGame/include/public
+../../../sharedLog/include/public
+../../../sharedMath/include/public
+../../../sharedMathArchive/include/public
+../../../sharedMemoryBlockManager/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedMessageDispatch/include/public
+../../../sharedObject/include/public
+../../../sharedRandom/include/public
+../../../sharedSynchronization/include/public
+../../../sharedTerrain/include/public
+../../../sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedCollision/build/win32/settings.rsp b/src/engine/shared/library/sharedCollision/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedCollision/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedCollision/build/win32/sharedCollision.vcproj b/src/engine/shared/library/sharedCollision/build/win32/sharedCollision.vcproj
new file mode 100644
index 000000000..4af6d87b5
--- /dev/null
+++ b/src/engine/shared/library/sharedCollision/build/win32/sharedCollision.vcproj
@@ -0,0 +1,2362 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedCollision/build/win32/sharedCollision.vcxproj b/src/engine/shared/library/sharedCollision/build/win32/sharedCollision.vcxproj
new file mode 100644
index 000000000..a44ee2932
--- /dev/null
+++ b/src/engine/shared/library/sharedCollision/build/win32/sharedCollision.vcxproj
@@ -0,0 +1,418 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {03A9A516-227E-49BB-A1C5-64B34CBDDC66}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedGame\include\public;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedCollision\FirstSharedCollision.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedGame\include\public;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedCollision\FirstSharedCollision.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedGame\include\public;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedCollision\FirstSharedCollision.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedCommandParser/build/linux/Makefile b/src/engine/shared/library/sharedCommandParser/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedCommandParser/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedCommandParser/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedCommandParser/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..6d763badd
--- /dev/null
+++ b/src/engine/shared/library/sharedCommandParser/build/shared_unix/shared_unix.mak
@@ -0,0 +1,16 @@
+LIBRARY = sharedCommandParser
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ $(OBJECT_PATH)/include/public \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ $(STL_INCLUDE_PATH) \
+ $(UNICODE_INCLUDE_PATH)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedCommandParser/build/win32/includePaths.rsp b/src/engine/shared/library/sharedCommandParser/build/win32/includePaths.rsp
new file mode 100644
index 000000000..3e291120c
--- /dev/null
+++ b/src/engine/shared/library/sharedCommandParser/build/win32/includePaths.rsp
@@ -0,0 +1,9 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/unicode/include
+../../../sharedDebug/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedObject/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedCommandParser/build/win32/settings.rsp b/src/engine/shared/library/sharedCommandParser/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedCommandParser/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedCommandParser/build/win32/sharedCommandParser.vcproj b/src/engine/shared/library/sharedCommandParser/build/win32/sharedCommandParser.vcproj
new file mode 100644
index 000000000..f44f0a049
--- /dev/null
+++ b/src/engine/shared/library/sharedCommandParser/build/win32/sharedCommandParser.vcproj
@@ -0,0 +1,406 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedCommandParser/build/win32/sharedCommandParser.vcxproj b/src/engine/shared/library/sharedCommandParser/build/win32/sharedCommandParser.vcxproj
new file mode 100644
index 000000000..908c65d89
--- /dev/null
+++ b/src/engine/shared/library/sharedCommandParser/build/win32/sharedCommandParser.vcxproj
@@ -0,0 +1,199 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {20D4D8EB-87CA-4C5F-8BA3-FFC898563C40}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedCommandParser\FirstSharedCommandParser.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedCommandParser\FirstSharedCommandParser.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedCommandParser\FirstSharedCommandParser.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedCompression/build/linux/Makefile b/src/engine/shared/library/sharedCompression/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedCompression/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedCompression/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedCompression/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..3bcf22b72
--- /dev/null
+++ b/src/engine/shared/library/sharedCompression/build/shared_unix/shared_unix.mak
@@ -0,0 +1,14 @@
+LIBRARY = sharedCompression
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ ../../include/public \
+ ../../include/private \
+ $(OBJECT_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedCompression/build/win32/includePaths.rsp b/src/engine/shared/library/sharedCompression/build/win32/includePaths.rsp
new file mode 100644
index 000000000..c626b0808
--- /dev/null
+++ b/src/engine/shared/library/sharedCompression/build/win32/includePaths.rsp
@@ -0,0 +1,9 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/zlib-1.2.3
+../../../sharedDebug/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedCompression/build/win32/settings.rsp b/src/engine/shared/library/sharedCompression/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedCompression/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedCompression/build/win32/sharedCompression.vcproj b/src/engine/shared/library/sharedCompression/build/win32/sharedCompression.vcproj
new file mode 100644
index 000000000..3d25a94d7
--- /dev/null
+++ b/src/engine/shared/library/sharedCompression/build/win32/sharedCompression.vcproj
@@ -0,0 +1,478 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedCompression/build/win32/sharedCompression.vcxproj b/src/engine/shared/library/sharedCompression/build/win32/sharedCompression.vcxproj
new file mode 100644
index 000000000..8da73c5c1
--- /dev/null
+++ b/src/engine/shared/library/sharedCompression/build/win32/sharedCompression.vcxproj
@@ -0,0 +1,207 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {6BD52B35-92CA-44E4-995E-2B79C7398183}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\zlib-1.2.3;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedCompression\FirstSharedCompression.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\zlib-1.2.3;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedCompression\FirstSharedCompression.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\zlib-1.2.3;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedCompression\FirstSharedCompression.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedDatabaseInterface/build/linux/Makefile b/src/engine/shared/library/sharedDatabaseInterface/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedDatabaseInterface/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedDatabaseInterface/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedDatabaseInterface/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..7af9f35fd
--- /dev/null
+++ b/src/engine/shared/library/sharedDatabaseInterface/build/shared_unix/shared_unix.mak
@@ -0,0 +1,41 @@
+LIBRARY = sharedDatabaseInterface
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+SHARED_SRC_DIR = ../../../../../shared/library
+SERVER_SRC_DIR = ../../..
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared/core \
+ ../../src/shared/queue \
+ ../../src/$(PLATFORM) \
+ $(SHARED_SRC_DIR)/sharedDebug/include/public \
+ $(SHARED_SRC_DIR)/sharedFoundation/include/public \
+ $(SHARED_SRC_DIR)/sharedFoundationTypes/include/public \
+ $(SHARED_SRC_DIR)/sharedMemoryManager/include/public \
+ $(SHARED_SRC_DIR)/sharedSynchronization/include/public \
+ $(SHARED_SRC_DIR)/sharedThread/include/public \
+ $(SHARED_SRC_DIR)/sharedLog/include/public \
+ ../../../../../../external/3rd/library/stl/stlport \
+ ../../../../../../external/ours/library/archive/include \
+ ../../../../../../external/ours/library/unicode/include \
+ ../../../../../../external/ours/library/unicodeArchive/include/public \
+ ../../../../../../external/3rd/library/oracle/include
+
+
+ifdef ORACLE_HOME
+ INCLUDE_DIRS += ../../src_oci
+ CUSTOM_SRC_LIST =$(shell find $$PWD/../../src_oci -name "*.cpp")
+ CUSTOM_CPP_FLAGS = -DDBLIBRARY_OCI
+# CUSTOM_LINK_FLAGS = $(ORACLE_HOME)/lib/libclntsh.so
+else
+#error ORACLE_HOME not defined
+ INCLUDE_DIRS += ../../src_odbc
+ CUSTOM_SRC_LIST =$(shell find $$PWD/../../src_odbc -name "*.cpp")
+ CUSTOM_CPP_FLAGS = -DDBLIBRARY_ODBC
+endif
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedDatabaseInterface/build/win32/defines.rsp b/src/engine/shared/library/sharedDatabaseInterface/build/win32/defines.rsp
new file mode 100644
index 000000000..473ec9815
--- /dev/null
+++ b/src/engine/shared/library/sharedDatabaseInterface/build/win32/defines.rsp
@@ -0,0 +1,2 @@
+DBLIBRARY_OCI
+
diff --git a/src/engine/shared/library/sharedDatabaseInterface/build/win32/includePaths.rsp b/src/engine/shared/library/sharedDatabaseInterface/build/win32/includePaths.rsp
new file mode 100644
index 000000000..5ddb9e899
--- /dev/null
+++ b/src/engine/shared/library/sharedDatabaseInterface/build/win32/includePaths.rsp
@@ -0,0 +1,16 @@
+../../../../../../external/3rd/library/oracle_win32/ora90/oci/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedLog/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../include/private
+../../include/public
+../../src_oci
+../../src_odbc
diff --git a/src/engine/shared/library/sharedDatabaseInterface/build/win32/settings.rsp b/src/engine/shared/library/sharedDatabaseInterface/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedDatabaseInterface/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedDatabaseInterface/build/win32/sharedDatabaseInterface.vcproj b/src/engine/shared/library/sharedDatabaseInterface/build/win32/sharedDatabaseInterface.vcproj
new file mode 100644
index 000000000..eb0b29c79
--- /dev/null
+++ b/src/engine/shared/library/sharedDatabaseInterface/build/win32/sharedDatabaseInterface.vcproj
@@ -0,0 +1,1459 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedDatabaseInterface/build/win32/sharedDatabaseInterface.vcxproj b/src/engine/shared/library/sharedDatabaseInterface/build/win32/sharedDatabaseInterface.vcxproj
new file mode 100644
index 000000000..ee3927872
--- /dev/null
+++ b/src/engine/shared/library/sharedDatabaseInterface/build/win32/sharedDatabaseInterface.vcxproj
@@ -0,0 +1,322 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {B105EB3E-6860-4077-9833-C6EE5CFEAFBF}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\oracle_win32\ora90\oci\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\include\private;..\..\include\public;..\..\src_oci;..\..\src_odbc;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;DBLIBRARY_OCI;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedDatabaseInterface\FirstSharedDatabaseInterface.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\oracle_win32\ora90\oci\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\include\private;..\..\include\public;..\..\src_oci;..\..\src_odbc;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;DBLIBRARY_OCI;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedDatabaseInterface\FirstSharedDatabaseInterface.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\oracle_win32\ora90\oci\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\include\private;..\..\include\public;..\..\src_oci;..\..\src_odbc;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;DBLIBRARY_OCI;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedDatabaseInterface\FirstSharedDatabaseInterface.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ true
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedDebug/build/linux/Makefile b/src/engine/shared/library/sharedDebug/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedDebug/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedDebug/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedDebug/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..b9d4f3f9a
--- /dev/null
+++ b/src/engine/shared/library/sharedDebug/build/shared_unix/shared_unix.mak
@@ -0,0 +1,16 @@
+
+LIBRARY = sharedDebug
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/$(PLATFORM) \
+ ../../src/shared \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedDebug/build/win32/includePaths.rsp b/src/engine/shared/library/sharedDebug/build/win32/includePaths.rsp
new file mode 100644
index 000000000..12d204c82
--- /dev/null
+++ b/src/engine/shared/library/sharedDebug/build/win32/includePaths.rsp
@@ -0,0 +1,8 @@
+../../../../../../external/3rd/library/debugHelp
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/vtune
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedDebug/build/win32/settings.rsp b/src/engine/shared/library/sharedDebug/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedDebug/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedDebug/build/win32/sharedDebug.vcproj b/src/engine/shared/library/sharedDebug/build/win32/sharedDebug.vcproj
new file mode 100644
index 000000000..24f73dd50
--- /dev/null
+++ b/src/engine/shared/library/sharedDebug/build/win32/sharedDebug.vcproj
@@ -0,0 +1,946 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedDebug/build/win32/sharedDebug.vcxproj b/src/engine/shared/library/sharedDebug/build/win32/sharedDebug.vcxproj
new file mode 100644
index 000000000..817ead390
--- /dev/null
+++ b/src/engine/shared/library/sharedDebug/build/win32/sharedDebug.vcxproj
@@ -0,0 +1,259 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {F3245C29-7760-4956-B1B7-FC483BE417CD}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\debugHelp;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\vtune;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedDebug\FirstSharedDebug.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\debugHelp;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\vtune;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedDebug\FirstSharedDebug.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\debugHelp;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\vtune;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedDebug\FirstSharedDebug.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedFile/build/linux/Makefile b/src/engine/shared/library/sharedFile/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedFile/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedFile/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedFile/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..9798c835f
--- /dev/null
+++ b/src/engine/shared/library/sharedFile/build/shared_unix/shared_unix.mak
@@ -0,0 +1,21 @@
+LIBRARY = sharedFile
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(COMPRESSION_PATH)/include/public \
+ $(FILE_INTERFACE_INCLUDE_PATH) \
+ $(MATH_PATH)/include/public \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(RANDOM_PATH)/include/public \
+ $(SYNCHRONIZATION_PATH)/include/public \
+ $(THREAD_PATH)/include/public \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedFile/build/win32/includePaths.rsp b/src/engine/shared/library/sharedFile/build/win32/includePaths.rsp
new file mode 100644
index 000000000..8fdf91b55
--- /dev/null
+++ b/src/engine/shared/library/sharedFile/build/win32/includePaths.rsp
@@ -0,0 +1,14 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../sharedCompression/include/public
+../../../sharedDebug/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMath/include/public
+../../../sharedMemoryBlockManager/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedRandom/include/public
+../../../sharedSynchronization/include/public
+../../../sharedThread/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedFile/build/win32/settings.rsp b/src/engine/shared/library/sharedFile/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedFile/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedFile/build/win32/sharedFile.vcproj b/src/engine/shared/library/sharedFile/build/win32/sharedFile.vcproj
new file mode 100644
index 000000000..ee0d61a63
--- /dev/null
+++ b/src/engine/shared/library/sharedFile/build/win32/sharedFile.vcproj
@@ -0,0 +1,838 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedFile/build/win32/sharedFile.vcxproj b/src/engine/shared/library/sharedFile/build/win32/sharedFile.vcxproj
new file mode 100644
index 000000000..e85037f47
--- /dev/null
+++ b/src/engine/shared/library/sharedFile/build/win32/sharedFile.vcxproj
@@ -0,0 +1,247 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {E0F9D922-DAA7-475E-A95A-7BC540ED58FE}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedCompression\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedFile\FirstSharedFile.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedCompression\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedFile\FirstSharedFile.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedCompression\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedFile\FirstSharedFile.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedFoundation/build/linux/Makefile b/src/engine/shared/library/sharedFoundation/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedFoundation/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedFoundation/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedFoundation/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..02ab70277
--- /dev/null
+++ b/src/engine/shared/library/sharedFoundation/build/shared_unix/shared_unix.mak
@@ -0,0 +1,28 @@
+LIBRARY = sharedFoundation
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(COMPRESSION_PATH)/include/public \
+ $(FILE_PATH)/include/public \
+ $(FILE_INTERFACE_INCLUDE_PATH) \
+ $(IOWIN_PATH)/include/public \
+ $(MATH_PATH)/include/public \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(RANDOM_PATH)/include/public \
+ $(THREAD_PATH)/include/public \
+ ../../../../../../external/ours/library/localization/include \
+ ../../../../../../external/ours/library/localizationArchive/include/public \
+ ../../../../../../external/ours/library/unicode/include \
+ ../../../../../../external/ours/library/unicodeArchive/include \
+ ../../../sharedMathArchive/include/public \
+ ../../../../../../external/ours/library/archive/include \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedFoundation/build/win32/includePaths.rsp b/src/engine/shared/library/sharedFoundation/build/win32/includePaths.rsp
new file mode 100644
index 000000000..681d9f486
--- /dev/null
+++ b/src/engine/shared/library/sharedFoundation/build/win32/includePaths.rsp
@@ -0,0 +1,21 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodearchive/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedLog/include/public
+../../../sharedMath/include/public
+../../../sharedMathArchive/include/public
+../../../sharedMemoryBlockManager/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedRandom/include/public
+../../../sharedStatusWindow/include/public
+../../../sharedSynchronization/include/public
+../../../sharedThread/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedFoundation/build/win32/settings.rsp b/src/engine/shared/library/sharedFoundation/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedFoundation/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedFoundation/build/win32/sharedFoundation.vcproj b/src/engine/shared/library/sharedFoundation/build/win32/sharedFoundation.vcproj
new file mode 100644
index 000000000..65b7e94b4
--- /dev/null
+++ b/src/engine/shared/library/sharedFoundation/build/win32/sharedFoundation.vcproj
@@ -0,0 +1,2003 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedFoundation/build/win32/sharedFoundation.vcxproj b/src/engine/shared/library/sharedFoundation/build/win32/sharedFoundation.vcxproj
new file mode 100644
index 000000000..e97ebb96e
--- /dev/null
+++ b/src/engine/shared/library/sharedFoundation/build/win32/sharedFoundation.vcxproj
@@ -0,0 +1,393 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {C595C10E-ADA8-429A-896A-8904A46737D3}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodearchive\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;C:\swg-src\src\engine\shared\library\sharedFoundationTypes\include\public\sharedFoundationTypes;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedStatusWindow\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedFoundation\FirstSharedFoundation.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodearchive\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedStatusWindow\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedFoundation\FirstSharedFoundation.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodearchive\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedStatusWindow\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedFoundation\FirstSharedFoundation.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ true
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedFoundationTypes/build/win32/settings.rsp b/src/engine/shared/library/sharedFoundationTypes/build/win32/settings.rsp
new file mode 100644
index 000000000..32275d0a4
--- /dev/null
+++ b/src/engine/shared/library/sharedFoundationTypes/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+utility
+debugInline
diff --git a/src/engine/shared/library/sharedFoundationTypes/build/win32/sharedFoundationTypes.vcproj b/src/engine/shared/library/sharedFoundationTypes/build/win32/sharedFoundationTypes.vcproj
new file mode 100644
index 000000000..be6949589
--- /dev/null
+++ b/src/engine/shared/library/sharedFoundationTypes/build/win32/sharedFoundationTypes.vcproj
@@ -0,0 +1,118 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedFoundationTypes/build/win32/sharedFoundationTypes.vcxproj b/src/engine/shared/library/sharedFoundationTypes/build/win32/sharedFoundationTypes.vcxproj
new file mode 100644
index 000000000..8b1514641
--- /dev/null
+++ b/src/engine/shared/library/sharedFoundationTypes/build/win32/sharedFoundationTypes.vcxproj
@@ -0,0 +1,77 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {D6CC353F-4FD1-4AEB-A984-E7B2E9CE4E69}
+ Win32Proj
+
+
+
+ Utility
+ v120
+ false
+ MultiByte
+
+
+ Utility
+ v120
+ false
+ MultiByte
+
+
+ Utility
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedFractal/build/linux/Makefile b/src/engine/shared/library/sharedFractal/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedFractal/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedFractal/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedFractal/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..4b12f2457
--- /dev/null
+++ b/src/engine/shared/library/sharedFractal/build/shared_unix/shared_unix.mak
@@ -0,0 +1,17 @@
+LIBRARY = sharedFractal
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(FILE_PATH)/include/public \
+ $(MATH_PATH)/include/public \
+ $(RANDOM_PATH)/include/public \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedFractal/build/win32/includePaths.rsp b/src/engine/shared/library/sharedFractal/build/win32/includePaths.rsp
new file mode 100644
index 000000000..d02f24f20
--- /dev/null
+++ b/src/engine/shared/library/sharedFractal/build/win32/includePaths.rsp
@@ -0,0 +1,11 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMath/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedRandom/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedFractal/build/win32/settings.rsp b/src/engine/shared/library/sharedFractal/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedFractal/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedFractal/build/win32/sharedFractal.vcproj b/src/engine/shared/library/sharedFractal/build/win32/sharedFractal.vcproj
new file mode 100644
index 000000000..5f014779b
--- /dev/null
+++ b/src/engine/shared/library/sharedFractal/build/win32/sharedFractal.vcproj
@@ -0,0 +1,370 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedFractal/build/win32/sharedFractal.vcxproj b/src/engine/shared/library/sharedFractal/build/win32/sharedFractal.vcxproj
new file mode 100644
index 000000000..2c8c2e805
--- /dev/null
+++ b/src/engine/shared/library/sharedFractal/build/win32/sharedFractal.vcxproj
@@ -0,0 +1,195 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {882D8E54-0077-440B-94AC-762BDE522E3B}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedFractal\FirstSharedFractal.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedFractal\FirstSharedFractal.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedFractal\FirstSharedFractal.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedGame/build/linux/Makefile b/src/engine/shared/library/sharedGame/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedGame/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedGame/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedGame/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..98dbca0c6
--- /dev/null
+++ b/src/engine/shared/library/sharedGame/build/shared_unix/shared_unix.mak
@@ -0,0 +1,35 @@
+LIBRARY = sharedGame
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared/core \
+ ../../src/shared/objectTemplate \
+ ../../src/$(PLATFORM) \
+ $(TERRAIN_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FILE_INTERFACE_INCLUDE_PATH) \
+ $(LOCALIZATION_INCLUDE_PATH) \
+ $(LOG_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(SKILL_SYSTEM_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(UNICODE_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(COLLISION_INCLUDE_PATH) \
+ ../../../../../../external/3rd/library/boost \
+ ../../../../../../external/3rd/library/regex \
+ ../../../../../../external/ours/library/archive/include \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../game/shared/library/swgSharedUtility/include/public \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedGame/build/win32/includePaths.rsp b/src/engine/shared/library/sharedGame/build/win32/includePaths.rsp
new file mode 100644
index 000000000..9548fd28e
--- /dev/null
+++ b/src/engine/shared/library/sharedGame/build/win32/includePaths.rsp
@@ -0,0 +1,33 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/regex
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedFractal/include/public
+../../../../../shared/library/sharedLog/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMathArchive/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedNetworkMessages/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedRandom/include/public
+../../../../../shared/library/sharedSkillSystem/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedTerrain/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedGame/build/win32/settings.rsp b/src/engine/shared/library/sharedGame/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedGame/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedGame/build/win32/sharedGame.vcproj b/src/engine/shared/library/sharedGame/build/win32/sharedGame.vcproj
new file mode 100644
index 000000000..9b24f9cd6
--- /dev/null
+++ b/src/engine/shared/library/sharedGame/build/win32/sharedGame.vcproj
@@ -0,0 +1,5267 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedGame/build/win32/sharedGame.vcxproj b/src/engine/shared/library/sharedGame/build/win32/sharedGame.vcxproj
new file mode 100644
index 000000000..abac06c01
--- /dev/null
+++ b/src/engine/shared/library/sharedGame/build/win32/sharedGame.vcxproj
@@ -0,0 +1,749 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {2338795C-CE02-4902-BEF4-53645A0C3267}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\regex;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedGame\FirstSharedGame.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\regex;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedGame\FirstSharedGame.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\regex;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedFractal\include\public;..\..\..\..\..\shared\library\sharedLog\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMathArchive\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetworkMessages\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedRandom\include\public;..\..\..\..\..\shared\library\sharedSkillSystem\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedTerrain\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedGame\FirstSharedGame.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ true
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedImage/build/linux/Makefile b/src/engine/shared/library/sharedImage/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedImage/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedImage/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedImage/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..6e74534a9
--- /dev/null
+++ b/src/engine/shared/library/sharedImage/build/shared_unix/shared_unix.mak
@@ -0,0 +1,17 @@
+LIBRARY = sharedImage
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(FILE_PATH)/include/public \
+ $(FILE_INTERFACE_PATH)/include/public \
+ $(RANDOM_PATH)/include/public \
+ $(SYNCHRONIZATION_PATH)/include/public \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedImage/build/win32/includePaths.rsp b/src/engine/shared/library/sharedImage/build/win32/includePaths.rsp
new file mode 100644
index 000000000..2354f5382
--- /dev/null
+++ b/src/engine/shared/library/sharedImage/build/win32/includePaths.rsp
@@ -0,0 +1,10 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedImage/build/win32/settings.rsp b/src/engine/shared/library/sharedImage/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedImage/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedImage/build/win32/sharedImage.vcproj b/src/engine/shared/library/sharedImage/build/win32/sharedImage.vcproj
new file mode 100644
index 000000000..9f628385a
--- /dev/null
+++ b/src/engine/shared/library/sharedImage/build/win32/sharedImage.vcproj
@@ -0,0 +1,550 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedImage/build/win32/sharedImage.vcxproj b/src/engine/shared/library/sharedImage/build/win32/sharedImage.vcxproj
new file mode 100644
index 000000000..1cdf957e9
--- /dev/null
+++ b/src/engine/shared/library/sharedImage/build/win32/sharedImage.vcxproj
@@ -0,0 +1,215 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {AACBD5D6-D7DD-4FF9-8523-316CCF20115A}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedImage\FirstSharedImage.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedImage\FirstSharedImage.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedImage\FirstSharedImage.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedInputMap/build/linux/Makefile b/src/engine/shared/library/sharedInputMap/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedInputMap/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedInputMap/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedInputMap/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..481844ef3
--- /dev/null
+++ b/src/engine/shared/library/sharedInputMap/build/shared_unix/shared_unix.mak
@@ -0,0 +1,17 @@
+LIBRARY = sharedInputMap
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(FILE_PATH)/include/public \
+ $(IOWIN_PATH)/include/public \
+ $(MATH_PATH)/include/public \
+ $(SYNCHRONIZATION_PATH)/include/public \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedInputMap/build/win32/includePaths.rsp b/src/engine/shared/library/sharedInputMap/build/win32/includePaths.rsp
new file mode 100644
index 000000000..afd77fd03
--- /dev/null
+++ b/src/engine/shared/library/sharedInputMap/build/win32/includePaths.rsp
@@ -0,0 +1,12 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedIoWin/include/public
+../../../sharedMath/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedInputMap/build/win32/settings.rsp b/src/engine/shared/library/sharedInputMap/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedInputMap/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedInputMap/build/win32/sharedInputMap.vcproj b/src/engine/shared/library/sharedInputMap/build/win32/sharedInputMap.vcproj
new file mode 100644
index 000000000..17c36c52d
--- /dev/null
+++ b/src/engine/shared/library/sharedInputMap/build/win32/sharedInputMap.vcproj
@@ -0,0 +1,442 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedInputMap/build/win32/sharedInputMap.vcxproj b/src/engine/shared/library/sharedInputMap/build/win32/sharedInputMap.vcxproj
new file mode 100644
index 000000000..672f554d4
--- /dev/null
+++ b/src/engine/shared/library/sharedInputMap/build/win32/sharedInputMap.vcxproj
@@ -0,0 +1,203 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {101CF34F-B5FD-4A14-A3E9-FD28078760BE}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedIoWin\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedInputMap\FirstSharedInputMap.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedIoWin\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedInputMap\FirstSharedInputMap.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedIoWin\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedInputMap\FirstSharedInputMap.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedIoWin/build/linux/Makefile b/src/engine/shared/library/sharedIoWin/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedIoWin/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedIoWin/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedIoWin/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..939cf3348
--- /dev/null
+++ b/src/engine/shared/library/sharedIoWin/build/shared_unix/shared_unix.mak
@@ -0,0 +1,14 @@
+LIBRARY = sharedIoWin
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedIoWin/build/win32/includePaths.rsp b/src/engine/shared/library/sharedIoWin/build/win32/includePaths.rsp
new file mode 100644
index 000000000..7cb2e0259
--- /dev/null
+++ b/src/engine/shared/library/sharedIoWin/build/win32/includePaths.rsp
@@ -0,0 +1,9 @@
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../sharedDebug/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedIoWin/build/win32/settings.rsp b/src/engine/shared/library/sharedIoWin/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedIoWin/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedIoWin/build/win32/sharedIoWin.vcproj b/src/engine/shared/library/sharedIoWin/build/win32/sharedIoWin.vcproj
new file mode 100644
index 000000000..6453d5b13
--- /dev/null
+++ b/src/engine/shared/library/sharedIoWin/build/win32/sharedIoWin.vcproj
@@ -0,0 +1,471 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedIoWin/build/win32/sharedIoWin.vcxproj b/src/engine/shared/library/sharedIoWin/build/win32/sharedIoWin.vcxproj
new file mode 100644
index 000000000..4df261d68
--- /dev/null
+++ b/src/engine/shared/library/sharedIoWin/build/win32/sharedIoWin.vcxproj
@@ -0,0 +1,210 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {03819289-4E8B-44E9-9F3B-A3243C9797C9}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedIoWin\FirstSharedIoWin.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedIoWin\FirstSharedIoWin.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedIoWin\FirstSharedIoWin.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ true
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedLog/build/linux/Makefile b/src/engine/shared/library/sharedLog/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedLog/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedLog/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedLog/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..7b677e722
--- /dev/null
+++ b/src/engine/shared/library/sharedLog/build/shared_unix/shared_unix.mak
@@ -0,0 +1,23 @@
+
+LIBRARY = sharedLog
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/$(PLATFORM) \
+ ../../src/shared \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FILE_INTERFACE_INCLUDE_PATH) \
+ $(SHARED_NETWORK_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(ARCHIVE_INCLUDE_PATH) \
+ $(UNICODE_ARCHIVE_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedLog/build/win32/includePaths.rsp b/src/engine/shared/library/sharedLog/build/win32/includePaths.rsp
new file mode 100644
index 000000000..b1884742a
--- /dev/null
+++ b/src/engine/shared/library/sharedLog/build/win32/includePaths.rsp
@@ -0,0 +1,23 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMath/include/public
+../../../sharedMathArchive/include/public
+../../../sharedMemoryBlockManager/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedMessageDispatch/include/public
+../../../sharedNetwork/include/public
+../../../sharedNetworkMessages/include/public
+../../../sharedObject/include/public
+../../../sharedRandom/include/public
+../../../sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedLog/build/win32/settings.rsp b/src/engine/shared/library/sharedLog/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedLog/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedLog/build/win32/sharedLog.vcproj b/src/engine/shared/library/sharedLog/build/win32/sharedLog.vcproj
new file mode 100644
index 000000000..4848a2ea6
--- /dev/null
+++ b/src/engine/shared/library/sharedLog/build/win32/sharedLog.vcproj
@@ -0,0 +1,626 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedLog/build/win32/sharedLog.vcxproj b/src/engine/shared/library/sharedLog/build/win32/sharedLog.vcxproj
new file mode 100644
index 000000000..e54b2f21a
--- /dev/null
+++ b/src/engine/shared/library/sharedLog/build/win32/sharedLog.vcxproj
@@ -0,0 +1,224 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {2AE0CEF0-C4F2-4786-A026-8338FB09D61B}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedNetwork\include\public;..\..\..\sharedNetworkMessages\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedLog\FirstSharedLog.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedNetwork\include\public;..\..\..\sharedNetworkMessages\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedLog\FirstSharedLog.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedNetwork\include\public;..\..\..\sharedNetworkMessages\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedLog\FirstSharedLog.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedMath/build/linux/Makefile b/src/engine/shared/library/sharedMath/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedMath/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedMath/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedMath/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..d27d3309a
--- /dev/null
+++ b/src/engine/shared/library/sharedMath/build/shared_unix/shared_unix.mak
@@ -0,0 +1,17 @@
+LIBRARY = sharedMath
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FILE_INTERFACE_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedMath/build/win32/includePaths.rsp b/src/engine/shared/library/sharedMath/build/win32/includePaths.rsp
new file mode 100644
index 000000000..881e1acd6
--- /dev/null
+++ b/src/engine/shared/library/sharedMath/build/win32/includePaths.rsp
@@ -0,0 +1,11 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedRandom/include/public
+../../../sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedMath/build/win32/settings.rsp b/src/engine/shared/library/sharedMath/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedMath/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedMath/build/win32/sharedMath.vcproj b/src/engine/shared/library/sharedMath/build/win32/sharedMath.vcproj
new file mode 100644
index 000000000..0fa91524c
--- /dev/null
+++ b/src/engine/shared/library/sharedMath/build/win32/sharedMath.vcproj
@@ -0,0 +1,2150 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedMath/build/win32/sharedMath.vcxproj b/src/engine/shared/library/sharedMath/build/win32/sharedMath.vcxproj
new file mode 100644
index 000000000..e5f34646b
--- /dev/null
+++ b/src/engine/shared/library/sharedMath/build/win32/sharedMath.vcxproj
@@ -0,0 +1,395 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {5789EA7C-6596-4DCC-A9FB-DD7582888F90}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedMath\FirstSharedMath.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedMath\FirstSharedMath.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedMath\FirstSharedMath.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedMathArchive/build/linux/Makefile b/src/engine/shared/library/sharedMathArchive/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedMathArchive/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedMathArchive/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedMathArchive/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..3dced77b4
--- /dev/null
+++ b/src/engine/shared/library/sharedMathArchive/build/shared_unix/shared_unix.mak
@@ -0,0 +1,14 @@
+LIBRARY = mathArchive
+
+include ../../../build/shared_unix/defs.mak
+include ../../../build/$(PLATFORM)/platformDefs.mak
+
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ ../../../../../../external/3rd/library/stl/stlport
+
+include ../../../build/shared_unix/common.mak
diff --git a/src/engine/shared/library/sharedMathArchive/build/win32/settings.rsp b/src/engine/shared/library/sharedMathArchive/build/win32/settings.rsp
new file mode 100644
index 000000000..32275d0a4
--- /dev/null
+++ b/src/engine/shared/library/sharedMathArchive/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+utility
+debugInline
diff --git a/src/engine/shared/library/sharedMathArchive/build/win32/sharedMathArchive.vcproj b/src/engine/shared/library/sharedMathArchive/build/win32/sharedMathArchive.vcproj
new file mode 100644
index 000000000..8401ee5a6
--- /dev/null
+++ b/src/engine/shared/library/sharedMathArchive/build/win32/sharedMathArchive.vcproj
@@ -0,0 +1,130 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedMathArchive/build/win32/sharedMathArchive.vcxproj b/src/engine/shared/library/sharedMathArchive/build/win32/sharedMathArchive.vcxproj
new file mode 100644
index 000000000..e0d376cc8
--- /dev/null
+++ b/src/engine/shared/library/sharedMathArchive/build/win32/sharedMathArchive.vcxproj
@@ -0,0 +1,80 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {0202ADB3-5587-4138-A626-52B7DB52FBBA}
+ Win32Proj
+
+
+
+ Utility
+ v120
+ false
+ MultiByte
+
+
+ Utility
+ v120
+ false
+ MultiByte
+
+
+ Utility
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedMemoryManager/build/linux/Makefile b/src/engine/shared/library/sharedMemoryManager/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedMemoryManager/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedMemoryManager/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedMemoryManager/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..5f533423b
--- /dev/null
+++ b/src/engine/shared/library/sharedMemoryManager/build/shared_unix/shared_unix.mak
@@ -0,0 +1,14 @@
+LIBRARY = sharedMemoryManager
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/$(PLATFORM) \
+ ../../src/shared \
+ $(SYNCHRONIZATION_PATH)/include/public \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedMemoryManager/build/win32/includePaths.rsp b/src/engine/shared/library/sharedMemoryManager/build/win32/includePaths.rsp
new file mode 100644
index 000000000..83c902a02
--- /dev/null
+++ b/src/engine/shared/library/sharedMemoryManager/build/win32/includePaths.rsp
@@ -0,0 +1,7 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../sharedDebug/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedMemoryManager/build/win32/settings.rsp b/src/engine/shared/library/sharedMemoryManager/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedMemoryManager/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedMemoryManager/build/win32/sharedMemoryManager.vcproj b/src/engine/shared/library/sharedMemoryManager/build/win32/sharedMemoryManager.vcproj
new file mode 100644
index 000000000..6bb7605a2
--- /dev/null
+++ b/src/engine/shared/library/sharedMemoryManager/build/win32/sharedMemoryManager.vcproj
@@ -0,0 +1,406 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedMemoryManager/build/win32/sharedMemoryManager.vcxproj b/src/engine/shared/library/sharedMemoryManager/build/win32/sharedMemoryManager.vcxproj
new file mode 100644
index 000000000..252788579
--- /dev/null
+++ b/src/engine/shared/library/sharedMemoryManager/build/win32/sharedMemoryManager.vcxproj
@@ -0,0 +1,199 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {DC2CD926-8EA3-4ADD-AA62-A95CCA8AC7DD}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedMemoryManager\FirstSharedMemoryManager.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedMemoryManager\FirstSharedMemoryManager.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedMemoryManager\FirstSharedMemoryManager.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedMessageDispatch/build/linux/Makefile b/src/engine/shared/library/sharedMessageDispatch/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedMessageDispatch/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedMessageDispatch/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedMessageDispatch/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..86ae06c9b
--- /dev/null
+++ b/src/engine/shared/library/sharedMessageDispatch/build/shared_unix/shared_unix.mak
@@ -0,0 +1,14 @@
+LIBRARY = sharedMessageDispatch
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ ../../../../../../external/ours/library/singleton/include \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedMessageDispatch/build/win32/includePaths.rsp b/src/engine/shared/library/sharedMessageDispatch/build/win32/includePaths.rsp
new file mode 100644
index 000000000..c8a64d153
--- /dev/null
+++ b/src/engine/shared/library/sharedMessageDispatch/build/win32/includePaths.rsp
@@ -0,0 +1,8 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/singleton/include
+../../../sharedDebug/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedMessageDispatch/build/win32/settings.rsp b/src/engine/shared/library/sharedMessageDispatch/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedMessageDispatch/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedMessageDispatch/build/win32/sharedMessageDispatch.vcproj b/src/engine/shared/library/sharedMessageDispatch/build/win32/sharedMessageDispatch.vcproj
new file mode 100644
index 000000000..1020294d9
--- /dev/null
+++ b/src/engine/shared/library/sharedMessageDispatch/build/win32/sharedMessageDispatch.vcproj
@@ -0,0 +1,478 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedMessageDispatch/build/win32/sharedMessageDispatch.vcxproj b/src/engine/shared/library/sharedMessageDispatch/build/win32/sharedMessageDispatch.vcxproj
new file mode 100644
index 000000000..e7b068cd7
--- /dev/null
+++ b/src/engine/shared/library/sharedMessageDispatch/build/win32/sharedMessageDispatch.vcxproj
@@ -0,0 +1,207 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {C87164F5-14A9-403C-8BC4-217FD40731EA}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedMessageDispatch\FirstSharedMessageDispatch.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedMessageDispatch\FirstSharedMessageDispatch.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedMessageDispatch\FirstSharedMessageDispatch.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedNetwork/build/linux/Makefile b/src/engine/shared/library/sharedNetwork/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedNetwork/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedNetwork/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedNetwork/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..beeda7ce4
--- /dev/null
+++ b/src/engine/shared/library/sharedNetwork/build/shared_unix/shared_unix.mak
@@ -0,0 +1,43 @@
+LIBRARY = sharedNetwork
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../src/shared \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared/clientGameServer \
+ ../../src/shared/clientLoginServer \
+ ../../src/shared/common \
+ ../../src/shared/core \
+ ../../src/$(PLATFORM) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(MEMORY_MANAGER_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(COMPRESSION_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(SERVER_GAME_INCLUDE_PATH) \
+ $(SWG_SERVER_NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(SWG_SHARED_NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(THREAD_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(ARCHIVE_PATH)/include \
+ $(LOCALIZATION_INCLUDE_PATH) \
+ ../../../../../../external/ours/library/unicodeArchive/include \
+ ../../../../../../external/ours/library/unicode/include \
+ ../../../../../../game/shared/library/swgSharedUtility/include/public \
+ ../../../../../../game/server/application/SwgGameServer/include/public \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/3rd/library/udplibrary \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ $(LOG_INCLUDE_PATH)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedNetwork/build/win32/includePaths.rsp b/src/engine/shared/library/sharedNetwork/build/win32/includePaths.rsp
new file mode 100644
index 000000000..480ad8c5c
--- /dev/null
+++ b/src/engine/shared/library/sharedNetwork/build/win32/includePaths.rsp
@@ -0,0 +1,24 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/udplibrary
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/unicode/include
+../../../sharedCompression/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedLog/include/public
+../../../sharedMath/include/public
+../../../sharedMemoryBlockManager/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedMessageDispatch/include/public
+../../../sharedObject/include/public
+../../../sharedRandom/include/public
+../../../sharedSynchronization/include/public
+../../../sharedTerrain/include/public
+../../../sharedThread/include/public
+../../include/private
+../../include/public
+../../src/win32
+
diff --git a/src/engine/shared/library/sharedNetwork/build/win32/settings.rsp b/src/engine/shared/library/sharedNetwork/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedNetwork/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedNetwork/build/win32/sharedNetwork.vcproj b/src/engine/shared/library/sharedNetwork/build/win32/sharedNetwork.vcproj
new file mode 100644
index 000000000..25deabf5e
--- /dev/null
+++ b/src/engine/shared/library/sharedNetwork/build/win32/sharedNetwork.vcproj
@@ -0,0 +1,1126 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedNetwork/build/win32/sharedNetwork.vcxproj b/src/engine/shared/library/sharedNetwork/build/win32/sharedNetwork.vcxproj
new file mode 100644
index 000000000..e1b5dabcd
--- /dev/null
+++ b/src/engine/shared/library/sharedNetwork/build/win32/sharedNetwork.vcxproj
@@ -0,0 +1,279 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {DF4D72EF-2341-4462-AB78-B130450511DA}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\udplibrary;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedCompression\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedNetwork\FirstSharedNetwork.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\udplibrary;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedCompression\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedNetwork\FirstSharedNetwork.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\udplibrary;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedCompression\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedNetwork\FirstSharedNetwork.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedNetworkMessages/build/linux/Makefile b/src/engine/shared/library/sharedNetworkMessages/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedNetworkMessages/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedNetworkMessages/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedNetworkMessages/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..15163cdaa
--- /dev/null
+++ b/src/engine/shared/library/sharedNetworkMessages/build/shared_unix/shared_unix.mak
@@ -0,0 +1,38 @@
+LIBRARY = sharedNetworkMessages
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared/clientGameServer \
+ ../../src/shared/clientLoginServer \
+ ../../src/shared/common \
+ ../../src/shared/core \
+ ../../src/$(PLATFORM) \
+ $(DEBUG_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FOUNDATION_INCLUDE_PATH) \
+ $(FOUNDATION_TYPES_INCLUDE_PATH) \
+ $(GAME_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(MEMORY_MANAGER_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(SERVER_GAME_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(ARCHIVE_PATH)/include \
+ $(LOCALIZATION_INCLUDE_PATH) \
+ $(BOOST_INCLUDE_PATH) \
+ ../../../../../../external/ours/library/unicodeArchive/include \
+ ../../../../../../external/ours/library/unicode/include \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../engine/shared/library/sharedNetwork/include/public \
+ $(SWG_SHARED_UTILITY_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedNetworkMessages/build/win32/includePaths.rsp b/src/engine/shared/library/sharedNetworkMessages/build/win32/includePaths.rsp
new file mode 100644
index 000000000..1f8f2618c
--- /dev/null
+++ b/src/engine/shared/library/sharedNetworkMessages/build/win32/includePaths.rsp
@@ -0,0 +1,29 @@
+../../../../../../engine/server/library/serverGame/include/public
+../../../../../../engine/shared/library/sharedNetwork/include/public
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/3rd/library/boost
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/server/library/swgServerNetworkMessages/include/public
+../../../../../../game/shared/library/swgSharedNetworkMessages/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedGame/include/public
+../../../sharedMath/include/public
+../../../sharedMathArchive/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedMessageDispatch/include/public
+../../../sharedObject/include/public
+../../../sharedRandom/include/public
+../../../sharedSynchronization/include/public
+../../../sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedNetworkMessages/build/win32/settings.rsp b/src/engine/shared/library/sharedNetworkMessages/build/win32/settings.rsp
new file mode 100644
index 000000000..34da5e68c
--- /dev/null
+++ b/src/engine/shared/library/sharedNetworkMessages/build/win32/settings.rsp
@@ -0,0 +1,5 @@
+library
+dbgInfo_o_line_numbers_only
+dbgInfo_r_line_numbers_only
+
+debugInline
diff --git a/src/engine/shared/library/sharedNetworkMessages/build/win32/sharedNetworkMessages.vcproj b/src/engine/shared/library/sharedNetworkMessages/build/win32/sharedNetworkMessages.vcproj
new file mode 100644
index 000000000..e33b0674c
--- /dev/null
+++ b/src/engine/shared/library/sharedNetworkMessages/build/win32/sharedNetworkMessages.vcproj
@@ -0,0 +1,12246 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedNetworkMessages/build/win32/sharedNetworkMessages.vcxproj b/src/engine/shared/library/sharedNetworkMessages/build/win32/sharedNetworkMessages.vcxproj
new file mode 100644
index 000000000..629f2990d
--- /dev/null
+++ b/src/engine/shared/library/sharedNetworkMessages/build/win32/sharedNetworkMessages.vcxproj
@@ -0,0 +1,1529 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {DECF2964-3A66-4FA6-AB27-D4507C5480EA}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\library\swgServerNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedGame\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedNetworkMessages\FirstSharedNetworkMessages.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\library\swgServerNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedGame\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedNetworkMessages\FirstSharedNetworkMessages.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\engine\server\library\serverGame\include\public;..\..\..\..\..\..\engine\shared\library\sharedNetwork\include\public;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\server\library\swgServerNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedNetworkMessages\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedGame\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedNetworkMessages\FirstSharedNetworkMessages.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedObject/build/linux/Makefile b/src/engine/shared/library/sharedObject/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedObject/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedObject/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedObject/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..ac3c0b285
--- /dev/null
+++ b/src/engine/shared/library/sharedObject/build/shared_unix/shared_unix.mak
@@ -0,0 +1,39 @@
+LIBRARY = sharedObject
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared/appearance \
+ ../../src/shared/container \
+ ../../src/shared/controller \
+ ../../src/shared/core \
+ ../../src/shared/dynamics \
+ ../../src/shared/object \
+ ../../src/shared/world \
+ ../../src/$(PLATFORM) \
+ $(COLLISION_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FILE_INTERFACE_INCLUDE_PATH) \
+ $(GAME_INCLUDE_PATH) \
+ $(LOCALIZATION_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(PATHFINDING_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(TERRAIN_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(LOG_INCLUDE_PATH) \
+ ../../../../../../external/3rd/library/boost \
+ ../../../../../../external/ours/library/archive/include \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/ours/library/unicode/include \
+ ../../../../../../game/shared/library/swgSharedUtility/include/public \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedObject/build/win32/includePaths.rsp b/src/engine/shared/library/sharedObject/build/win32/includePaths.rsp
new file mode 100644
index 000000000..a154f76fc
--- /dev/null
+++ b/src/engine/shared/library/sharedObject/build/win32/includePaths.rsp
@@ -0,0 +1,30 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/localizationArchive/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../game/shared/library/swgSharedUtility/include/public
+../../../sharedCollision/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedGame/include/public
+../../../sharedLog/include/public
+../../../sharedMath/include/public
+../../../sharedMathArchive/include/public
+../../../sharedMemoryBlockManager/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedMessageDispatch/include/public
+../../../sharedNetworkMessages/include/public
+../../../sharedPathfinding/include/public
+../../../sharedRandom/include/public
+../../../sharedSynchronization/include/public
+../../../sharedTerrain/include/public
+../../../sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedObject/build/win32/settings.rsp b/src/engine/shared/library/sharedObject/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedObject/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedObject/build/win32/sharedObject.vcproj b/src/engine/shared/library/sharedObject/build/win32/sharedObject.vcproj
new file mode 100644
index 000000000..b7d950d4c
--- /dev/null
+++ b/src/engine/shared/library/sharedObject/build/win32/sharedObject.vcproj
@@ -0,0 +1,2800 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedObject/build/win32/sharedObject.vcxproj b/src/engine/shared/library/sharedObject/build/win32/sharedObject.vcxproj
new file mode 100644
index 000000000..c9b488599
--- /dev/null
+++ b/src/engine/shared/library/sharedObject/build/win32/sharedObject.vcxproj
@@ -0,0 +1,475 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {AC1277C1-CE5A-4ECE-9BE3-6B4647B657A5}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\sharedCollision\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedGame\include\public;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedNetworkMessages\include\public;..\..\..\sharedPathfinding\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedObject\FirstSharedObject.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\sharedCollision\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedGame\include\public;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedNetworkMessages\include\public;..\..\..\sharedPathfinding\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedObject\FirstSharedObject.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\localizationArchive\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\game\shared\library\swgSharedUtility\include\public;..\..\..\sharedCollision\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedGame\include\public;..\..\..\sharedLog\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedNetworkMessages\include\public;..\..\..\sharedPathfinding\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedObject\FirstSharedObject.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ true
+
+
+ true
+ true
+ true
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedPathfinding/build/linux/Makefile b/src/engine/shared/library/sharedPathfinding/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedPathfinding/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedPathfinding/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedPathfinding/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..bed0b683d
--- /dev/null
+++ b/src/engine/shared/library/sharedPathfinding/build/shared_unix/shared_unix.mak
@@ -0,0 +1,19 @@
+LIBRARY = sharedPathfinding
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(COLLISION_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(OBJECT_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(TERRAIN_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedPathfinding/build/win32/includePaths.rsp b/src/engine/shared/library/sharedPathfinding/build/win32/includePaths.rsp
new file mode 100644
index 000000000..ba8ab87c1
--- /dev/null
+++ b/src/engine/shared/library/sharedPathfinding/build/win32/includePaths.rsp
@@ -0,0 +1,14 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../sharedCollision/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMath/include/public
+../../../sharedMemoryBlockManager/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedObject/include/public
+../../../sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedPathfinding/build/win32/settings.rsp b/src/engine/shared/library/sharedPathfinding/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedPathfinding/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedPathfinding/build/win32/sharedPathfinding.vcproj b/src/engine/shared/library/sharedPathfinding/build/win32/sharedPathfinding.vcproj
new file mode 100644
index 000000000..20415b011
--- /dev/null
+++ b/src/engine/shared/library/sharedPathfinding/build/win32/sharedPathfinding.vcproj
@@ -0,0 +1,698 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedPathfinding/build/win32/sharedPathfinding.vcxproj b/src/engine/shared/library/sharedPathfinding/build/win32/sharedPathfinding.vcxproj
new file mode 100644
index 000000000..5b28890bf
--- /dev/null
+++ b/src/engine/shared/library/sharedPathfinding/build/win32/sharedPathfinding.vcxproj
@@ -0,0 +1,232 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {7D707A5A-CB70-4FD9-83D3-E1E921AE3381}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\sharedCollision\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedPathfinding\FirstSharedPathfinding.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\sharedCollision\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedPathfinding\FirstSharedPathfinding.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\sharedCollision\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedPathfinding\FirstSharedPathfinding.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedRandom/build/linux/Makefile b/src/engine/shared/library/sharedRandom/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedRandom/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedRandom/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedRandom/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..65997f915
--- /dev/null
+++ b/src/engine/shared/library/sharedRandom/build/shared_unix/shared_unix.mak
@@ -0,0 +1,13 @@
+LIBRARY = sharedRandom
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedRandom/build/win32/includePaths.rsp b/src/engine/shared/library/sharedRandom/build/win32/includePaths.rsp
new file mode 100644
index 000000000..bc503d981
--- /dev/null
+++ b/src/engine/shared/library/sharedRandom/build/win32/includePaths.rsp
@@ -0,0 +1,7 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../sharedDebug/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedRandom/build/win32/settings.rsp b/src/engine/shared/library/sharedRandom/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedRandom/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedRandom/build/win32/sharedRandom.vcproj b/src/engine/shared/library/sharedRandom/build/win32/sharedRandom.vcproj
new file mode 100644
index 000000000..68031c1fa
--- /dev/null
+++ b/src/engine/shared/library/sharedRandom/build/win32/sharedRandom.vcproj
@@ -0,0 +1,446 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedRandom/build/win32/sharedRandom.vcxproj b/src/engine/shared/library/sharedRandom/build/win32/sharedRandom.vcxproj
new file mode 100644
index 000000000..eeecd1fc8
--- /dev/null
+++ b/src/engine/shared/library/sharedRandom/build/win32/sharedRandom.vcxproj
@@ -0,0 +1,204 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {2E6982E0-DCB6-4ED9-BFAD-D29DAEEA6AD2}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedRandom\FirstSharedRandom.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedRandom\FirstSharedRandom.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedRandom\FirstSharedRandom.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedRegex/build/linux/Makefile b/src/engine/shared/library/sharedRegex/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedRegex/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedRegex/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedRegex/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..053699629
--- /dev/null
+++ b/src/engine/shared/library/sharedRegex/build/shared_unix/shared_unix.mak
@@ -0,0 +1,16 @@
+LIBRARY = sharedRegex
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(PCRE_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+CUSTOM_CPP_FLAGS = -DPCRE_STATIC
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedRegex/build/win32/defines.rsp b/src/engine/shared/library/sharedRegex/build/win32/defines.rsp
new file mode 100644
index 000000000..f256df873
--- /dev/null
+++ b/src/engine/shared/library/sharedRegex/build/win32/defines.rsp
@@ -0,0 +1 @@
+PCRE_STATIC
diff --git a/src/engine/shared/library/sharedRegex/build/win32/includePaths.rsp b/src/engine/shared/library/sharedRegex/build/win32/includePaths.rsp
new file mode 100644
index 000000000..c3cbabedf
--- /dev/null
+++ b/src/engine/shared/library/sharedRegex/build/win32/includePaths.rsp
@@ -0,0 +1,12 @@
+../../../../../../external/3rd/library/pcre/4.1/win32/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedRandom/include/public
+../../../sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedRegex/build/win32/settings.rsp b/src/engine/shared/library/sharedRegex/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedRegex/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedRegex/build/win32/sharedRegex.vcproj b/src/engine/shared/library/sharedRegex/build/win32/sharedRegex.vcproj
new file mode 100644
index 000000000..a73429c8f
--- /dev/null
+++ b/src/engine/shared/library/sharedRegex/build/win32/sharedRegex.vcproj
@@ -0,0 +1,406 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedRegex/build/win32/sharedRegex.vcxproj b/src/engine/shared/library/sharedRegex/build/win32/sharedRegex.vcxproj
new file mode 100644
index 000000000..4d86198ad
--- /dev/null
+++ b/src/engine/shared/library/sharedRegex/build/win32/sharedRegex.vcxproj
@@ -0,0 +1,199 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {1D87A2E7-F0CF-42E9-BC38-846C53622C40}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedRegex\FirstSharedRegex.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedRegex\FirstSharedRegex.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedRegex\FirstSharedRegex.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedRemoteDebugServer/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedRemoteDebugServer/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..f244014f5
--- /dev/null
+++ b/src/engine/shared/library/sharedRemoteDebugServer/build/shared_unix/shared_unix.mak
@@ -0,0 +1,17 @@
+
+LIBRARY = sharedRemoteDebugServer
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/$(PLATFORM) \
+ ../../src/shared \
+ $(ARCHIVE_INCLUDE_PATH) \
+ $(SHARED_NETWORK_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedRemoteDebugServer/build/win32/includePaths.rsp b/src/engine/shared/library/sharedRemoteDebugServer/build/win32/includePaths.rsp
new file mode 100644
index 000000000..874914fb4
--- /dev/null
+++ b/src/engine/shared/library/sharedRemoteDebugServer/build/win32/includePaths.rsp
@@ -0,0 +1,19 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/singleton/include
+../../../../../shared/library/sharedCollision/include/public
+../../../../../shared/library/sharedDebug/include/public
+../../../../../shared/library/sharedFile/include/public
+../../../../../shared/library/sharedFoundation/include/public
+../../../../../shared/library/sharedFoundationTypes/include/public
+../../../../../shared/library/sharedMath/include/public
+../../../../../shared/library/sharedMemoryBlockManager/include/public
+../../../../../shared/library/sharedMemoryManager/include/public
+../../../../../shared/library/sharedMessageDispatch/include/public
+../../../../../shared/library/sharedNetwork/include/public
+../../../../../shared/library/sharedObject/include/public
+../../../../../shared/library/sharedSynchronization/include/public
+../../../../../shared/library/sharedThread/include/public
+../../../../../shared/library/sharedUtility/include/public
+../../include/public
+../../include/private
diff --git a/src/engine/shared/library/sharedRemoteDebugServer/build/win32/settings.rsp b/src/engine/shared/library/sharedRemoteDebugServer/build/win32/settings.rsp
new file mode 100644
index 000000000..3b8d0be16
--- /dev/null
+++ b/src/engine/shared/library/sharedRemoteDebugServer/build/win32/settings.rsp
@@ -0,0 +1,4 @@
+library
+dbgInfo_r_pdb
+
+debugInline
diff --git a/src/engine/shared/library/sharedRemoteDebugServer/build/win32/sharedRemoteDebugServer.vcproj b/src/engine/shared/library/sharedRemoteDebugServer/build/win32/sharedRemoteDebugServer.vcproj
new file mode 100644
index 000000000..e3ea79d11
--- /dev/null
+++ b/src/engine/shared/library/sharedRemoteDebugServer/build/win32/sharedRemoteDebugServer.vcproj
@@ -0,0 +1,370 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedRemoteDebugServer/build/win32/sharedRemoteDebugServer.vcxproj b/src/engine/shared/library/sharedRemoteDebugServer/build/win32/sharedRemoteDebugServer.vcxproj
new file mode 100644
index 000000000..59d24b91d
--- /dev/null
+++ b/src/engine/shared/library/sharedRemoteDebugServer/build/win32/sharedRemoteDebugServer.vcxproj
@@ -0,0 +1,195 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {AFA9AD0A-6E1A-4004-A1FF-8293EB957EF1}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\public;..\..\include\private;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedRemoteDebugServer\FirstSharedRemoteDebugServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\public;..\..\include\private;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedRemoteDebugServer\FirstSharedRemoteDebugServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\shared\library\sharedCollision\include\public;..\..\..\..\..\shared\library\sharedDebug\include\public;..\..\..\..\..\shared\library\sharedFile\include\public;..\..\..\..\..\shared\library\sharedFoundation\include\public;..\..\..\..\..\shared\library\sharedFoundationTypes\include\public;..\..\..\..\..\shared\library\sharedMath\include\public;..\..\..\..\..\shared\library\sharedMemoryBlockManager\include\public;..\..\..\..\..\shared\library\sharedMemoryManager\include\public;..\..\..\..\..\shared\library\sharedMessageDispatch\include\public;..\..\..\..\..\shared\library\sharedNetwork\include\public;..\..\..\..\..\shared\library\sharedObject\include\public;..\..\..\..\..\shared\library\sharedSynchronization\include\public;..\..\..\..\..\shared\library\sharedThread\include\public;..\..\..\..\..\shared\library\sharedUtility\include\public;..\..\include\public;..\..\include\private;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedRemoteDebugServer\FirstSharedRemoteDebugServer.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedSkillSystem/build/linux/Makefile b/src/engine/shared/library/sharedSkillSystem/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedSkillSystem/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedSkillSystem/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedSkillSystem/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..66915f6e1
--- /dev/null
+++ b/src/engine/shared/library/sharedSkillSystem/build/shared_unix/shared_unix.mak
@@ -0,0 +1,26 @@
+LIBRARY = sharedSkillSystem
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ $(TERRAIN_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FILE_INTERFACE_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ ../../../../../../external/3rd/library/boost \
+ ../../../../../../external/ours/library/archive/include \
+ ../../../../../../external/ours/library/singleton/include \
+ ../../../../../../external/ours/library/unicode/include \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedSkillSystem/build/win32/includePaths.rsp b/src/engine/shared/library/sharedSkillSystem/build/win32/includePaths.rsp
new file mode 100644
index 000000000..7267666c9
--- /dev/null
+++ b/src/engine/shared/library/sharedSkillSystem/build/win32/includePaths.rsp
@@ -0,0 +1,21 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/singleton/include
+../../../../../../external/ours/library/unicode/include
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMath/include/public
+../../../sharedMathArchive/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedMessageDispatch/include/public
+../../../sharedNetworkMessages/include/public
+../../../sharedRandom/include/public
+../../../sharedSynchronization/include/public
+../../../sharedTerrain/include/public
+../../../sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedSkillSystem/build/win32/settings.rsp b/src/engine/shared/library/sharedSkillSystem/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedSkillSystem/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedSkillSystem/build/win32/sharedSkillSystem.vcproj b/src/engine/shared/library/sharedSkillSystem/build/win32/sharedSkillSystem.vcproj
new file mode 100644
index 000000000..8619d0685
--- /dev/null
+++ b/src/engine/shared/library/sharedSkillSystem/build/win32/sharedSkillSystem.vcproj
@@ -0,0 +1,450 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedSkillSystem/build/win32/sharedSkillSystem.vcxproj b/src/engine/shared/library/sharedSkillSystem/build/win32/sharedSkillSystem.vcxproj
new file mode 100644
index 000000000..d18d245e0
--- /dev/null
+++ b/src/engine/shared/library/sharedSkillSystem/build/win32/sharedSkillSystem.vcxproj
@@ -0,0 +1,205 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {83EA2B87-762E-4EC6-BB06-2DCBAE759D6E}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedNetworkMessages\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedSkillSystem\FirstSharedSkillSystem.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedNetworkMessages\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedSkillSystem\FirstSharedSkillSystem.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\singleton\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedMessageDispatch\include\public;..\..\..\sharedNetworkMessages\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedTerrain\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedSkillSystem\FirstSharedSkillSystem.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedStatusWindow/build/win32/includePaths.rsp b/src/engine/shared/library/sharedStatusWindow/build/win32/includePaths.rsp
new file mode 100644
index 000000000..e67d459a3
--- /dev/null
+++ b/src/engine/shared/library/sharedStatusWindow/build/win32/includePaths.rsp
@@ -0,0 +1,9 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../sharedDebug/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedSynchronization/include/public
+../../../sharedThread/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedStatusWindow/build/win32/settings.rsp b/src/engine/shared/library/sharedStatusWindow/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedStatusWindow/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedStatusWindow/build/win32/sharedStatusWindow.vcproj b/src/engine/shared/library/sharedStatusWindow/build/win32/sharedStatusWindow.vcproj
new file mode 100644
index 000000000..bb45e6193
--- /dev/null
+++ b/src/engine/shared/library/sharedStatusWindow/build/win32/sharedStatusWindow.vcproj
@@ -0,0 +1,442 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedStatusWindow/build/win32/sharedStatusWindow.vcxproj b/src/engine/shared/library/sharedStatusWindow/build/win32/sharedStatusWindow.vcxproj
new file mode 100644
index 000000000..935419c72
--- /dev/null
+++ b/src/engine/shared/library/sharedStatusWindow/build/win32/sharedStatusWindow.vcxproj
@@ -0,0 +1,203 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {AE9205DD-83FC-4F31-A5B3-70623B3107A1}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedStatusWindow\FirstSharedStatusWindow.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedStatusWindow\FirstSharedStatusWindow.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedThread\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedStatusWindow\FirstSharedStatusWindow.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedSwitcher/build/linux/Makefile b/src/engine/shared/library/sharedSwitcher/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedSwitcher/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedSwitcher/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedSwitcher/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..3c356b637
--- /dev/null
+++ b/src/engine/shared/library/sharedSwitcher/build/shared_unix/shared_unix.mak
@@ -0,0 +1,16 @@
+LIBRARY = sharedSwitcher
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(FILE_PATH)/include/public \
+ $(MATH_PATH)/include/public \
+ $(RANDOM_PATH)/include/public \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedSwitcher/build/win32/includePaths.rsp b/src/engine/shared/library/sharedSwitcher/build/win32/includePaths.rsp
new file mode 100644
index 000000000..d02f24f20
--- /dev/null
+++ b/src/engine/shared/library/sharedSwitcher/build/win32/includePaths.rsp
@@ -0,0 +1,11 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMath/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedRandom/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedSwitcher/build/win32/settings.rsp b/src/engine/shared/library/sharedSwitcher/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedSwitcher/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedSwitcher/build/win32/sharedSwitcher.vcproj b/src/engine/shared/library/sharedSwitcher/build/win32/sharedSwitcher.vcproj
new file mode 100644
index 000000000..b03be3154
--- /dev/null
+++ b/src/engine/shared/library/sharedSwitcher/build/win32/sharedSwitcher.vcproj
@@ -0,0 +1,802 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedSwitcher/build/win32/sharedSwitcher.vcxproj b/src/engine/shared/library/sharedSwitcher/build/win32/sharedSwitcher.vcxproj
new file mode 100644
index 000000000..9be2a16fc
--- /dev/null
+++ b/src/engine/shared/library/sharedSwitcher/build/win32/sharedSwitcher.vcxproj
@@ -0,0 +1,243 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {070BABEB-131A-4DC7-8621-69407C531F8E}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedSwitcher\FirstSharedSwitcher.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedSwitcher\FirstSharedSwitcher.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedRandom\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedSwitcher\FirstSharedSwitcher.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedSynchronization/build/linux/Makefile b/src/engine/shared/library/sharedSynchronization/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedSynchronization/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedSynchronization/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedSynchronization/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..81bdab433
--- /dev/null
+++ b/src/engine/shared/library/sharedSynchronization/build/shared_unix/shared_unix.mak
@@ -0,0 +1,13 @@
+LIBRARY = sharedSynchronization
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/$(PLATFORM) \
+ ../../src/shared \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedSynchronization/build/win32/includePaths.rsp b/src/engine/shared/library/sharedSynchronization/build/win32/includePaths.rsp
new file mode 100644
index 000000000..b2651a9eb
--- /dev/null
+++ b/src/engine/shared/library/sharedSynchronization/build/win32/includePaths.rsp
@@ -0,0 +1,9 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedSynchronization/build/win32/settings.rsp b/src/engine/shared/library/sharedSynchronization/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedSynchronization/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedSynchronization/build/win32/sharedSynchronization.vcproj b/src/engine/shared/library/sharedSynchronization/build/win32/sharedSynchronization.vcproj
new file mode 100644
index 000000000..3f824d233
--- /dev/null
+++ b/src/engine/shared/library/sharedSynchronization/build/win32/sharedSynchronization.vcproj
@@ -0,0 +1,506 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedSynchronization/build/win32/sharedSynchronization.vcxproj b/src/engine/shared/library/sharedSynchronization/build/win32/sharedSynchronization.vcxproj
new file mode 100644
index 000000000..563ea4e42
--- /dev/null
+++ b/src/engine/shared/library/sharedSynchronization/build/win32/sharedSynchronization.vcxproj
@@ -0,0 +1,214 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {2FE4E38D-BE7D-4E3B-9613-63E9F01855F4}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedSynchronization\FirstSharedSynchronization.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedSynchronization\FirstSharedSynchronization.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedSynchronization\FirstSharedSynchronization.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedTemplate/build/linux/Makefile b/src/engine/shared/library/sharedTemplate/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplate/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedTemplate/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedTemplate/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..b6a8581cc
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplate/build/shared_unix/shared_unix.mak
@@ -0,0 +1,31 @@
+LIBRARY = sharedTemplate
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/$(PLATFORM) \
+ ../../src/shared \
+ ../../../../../../external/3rd/library/perforce/include \
+ ../../../../library/sharedTemplateDefinition/include/public \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(REGEX_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FILE_INTERFACE_INCLUDE_PATH) \
+ $(SHARED_NETWORK_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(ARCHIVE_INCLUDE_PATH) \
+ $(MATH_INCLUDE_PATH) \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(UNICODE_ARCHIVE_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedTemplate/build/win32/includePaths.rsp b/src/engine/shared/library/sharedTemplate/build/win32/includePaths.rsp
new file mode 100644
index 000000000..6ddae1779
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplate/build/win32/includePaths.rsp
@@ -0,0 +1,23 @@
+../../../../../../external/3rd/library/perforce/include
+../../../../../../external/3rd/library/regex
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMath/include/public
+../../../sharedMathArchive/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedObject/include/public
+../../../sharedRandom/include/public
+../../../sharedTemplateDefinition/include/public
+../../../sharedThread/include/public
+../../../sharedUtility/include/public
+../../include/public
+../../src/shared/core
+../../src/shared/template
+../../src/win32
diff --git a/src/engine/shared/library/sharedTemplate/build/win32/settings.rsp b/src/engine/shared/library/sharedTemplate/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplate/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedTemplate/build/win32/sharedTemplate.vcproj b/src/engine/shared/library/sharedTemplate/build/win32/sharedTemplate.vcproj
new file mode 100644
index 000000000..c3232615a
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplate/build/win32/sharedTemplate.vcproj
@@ -0,0 +1,2546 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedTemplate/build/win32/sharedTemplate.vcxproj b/src/engine/shared/library/sharedTemplate/build/win32/sharedTemplate.vcxproj
new file mode 100644
index 000000000..041f09f31
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplate/build/win32/sharedTemplate.vcxproj
@@ -0,0 +1,439 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {F547B62A-8F5C-48FC-9B3A-103736A41D03}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\regex;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedTemplateDefinition\include\public;..\..\..\sharedThread\include\public;..\..\..\sharedUtility\include\public;..\..\include\public;..\..\src\shared\core;..\..\src\shared\template;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedTemplate\FirstSharedTemplate.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\regex;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedTemplateDefinition\include\public;..\..\..\sharedThread\include\public;..\..\..\sharedUtility\include\public;..\..\include\public;..\..\src\shared\core;..\..\src\shared\template;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedTemplate\FirstSharedTemplate.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\regex;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedTemplateDefinition\include\public;..\..\..\sharedThread\include\public;..\..\..\sharedUtility\include\public;..\..\include\public;..\..\src\shared\core;..\..\src\shared\template;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedTemplate\FirstSharedTemplate.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedTemplateDefinition/build/linux/Makefile b/src/engine/shared/library/sharedTemplateDefinition/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplateDefinition/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedTemplateDefinition/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedTemplateDefinition/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..6ed55ba6b
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplateDefinition/build/shared_unix/shared_unix.mak
@@ -0,0 +1,29 @@
+LIBRARY = sharedTemplateDefinition
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/$(PLATFORM) \
+ ../../src/shared \
+ ../../../../../../external/3rd/library/perforce/include \
+ $(SYNCHRONIZATION_INCLUDE_PATH) \
+ $(SHARED_REGEX_INCLUDE_PATH) \
+ $(PCRE_INCLUDE_PATH) \
+ $(STL_INCLUDE_PATH) \
+ $(FILE_INCLUDE_PATH) \
+ $(FILE_INTERFACE_INCLUDE_PATH) \
+ $(SHARED_NETWORK_INCLUDE_PATH) \
+ $(UTILITY_INCLUDE_PATH) \
+ $(RANDOM_INCLUDE_PATH) \
+ $(MESSAGE_DISPATCH_INCLUDE_PATH) \
+ $(NETWORK_MESSAGES_INCLUDE_PATH) \
+ $(ARCHIVE_INCLUDE_PATH) \
+ $(UNICODE_ARCHIVE_INCLUDE_PATH) \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedTemplateDefinition/build/win32/defines.rsp b/src/engine/shared/library/sharedTemplateDefinition/build/win32/defines.rsp
new file mode 100644
index 000000000..f256df873
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplateDefinition/build/win32/defines.rsp
@@ -0,0 +1 @@
+PCRE_STATIC
diff --git a/src/engine/shared/library/sharedTemplateDefinition/build/win32/includePaths.rsp b/src/engine/shared/library/sharedTemplateDefinition/build/win32/includePaths.rsp
new file mode 100644
index 000000000..81c4d2e1e
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplateDefinition/build/win32/includePaths.rsp
@@ -0,0 +1,22 @@
+../../../../../../external/3rd/library/perforce/include
+../../../../../../external/3rd/library/pcre/4.1/win32/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMath/include/public
+../../../sharedMathArchive/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedObject/include/public
+../../../sharedRandom/include/public
+../../../sharedRegex/include/public
+../../../sharedThread/include/public
+../../../sharedUtility/include/public
+../../include/public
+../../src/shared/core
+../../src/win32
diff --git a/src/engine/shared/library/sharedTemplateDefinition/build/win32/settings.rsp b/src/engine/shared/library/sharedTemplateDefinition/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplateDefinition/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedTemplateDefinition/build/win32/sharedTemplateDefinition.vcproj b/src/engine/shared/library/sharedTemplateDefinition/build/win32/sharedTemplateDefinition.vcproj
new file mode 100644
index 000000000..dc831cdbc
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplateDefinition/build/win32/sharedTemplateDefinition.vcproj
@@ -0,0 +1,694 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedTemplateDefinition/build/win32/sharedTemplateDefinition.vcxproj b/src/engine/shared/library/sharedTemplateDefinition/build/win32/sharedTemplateDefinition.vcxproj
new file mode 100644
index 000000000..93fd896f7
--- /dev/null
+++ b/src/engine/shared/library/sharedTemplateDefinition/build/win32/sharedTemplateDefinition.vcxproj
@@ -0,0 +1,231 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {8E0FCF44-63B5-4137-9BAA-A740EB10ED94}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedRegex\include\public;..\..\..\sharedThread\include\public;..\..\..\sharedUtility\include\public;..\..\include\public;..\..\src\shared\core;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedTemplateDefinition\FirstSharedTemplateDefinition.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedRegex\include\public;..\..\..\sharedThread\include\public;..\..\..\sharedUtility\include\public;..\..\include\public;..\..\src\shared\core;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedTemplateDefinition\FirstSharedTemplateDefinition.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\perforce\include;..\..\..\..\..\..\external\3rd\library\pcre\4.1\win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedRegex\include\public;..\..\..\sharedThread\include\public;..\..\..\sharedUtility\include\public;..\..\include\public;..\..\src\shared\core;..\..\src\win32;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;PCRE_STATIC;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedTemplateDefinition\FirstSharedTemplateDefinition.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedTerrain/build/linux/Makefile b/src/engine/shared/library/sharedTerrain/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedTerrain/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedTerrain/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedTerrain/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..ad3f3f3bf
--- /dev/null
+++ b/src/engine/shared/library/sharedTerrain/build/shared_unix/shared_unix.mak
@@ -0,0 +1,33 @@
+LIBRARY = sharedTerrain
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared/appearance \
+ ../../src/shared/core \
+ ../../src/shared/generator \
+ ../../src/shared/object \
+ ../../src/$(PLATFORM) \
+ $(COLLISION_INCLUDE_PATH) \
+ $(FILE_PATH)/include/public \
+ $(FILE_INTERFACE_PATH)/include/public \
+ $(FRACTAL_PATH)/include/public \
+ $(IMAGE_PATH)/include/public \
+ $(MATH_PATH)/include/public \
+ $(MESSAGE_DISPATCH_PATH)/include/public \
+ $(OBJECT_PATH)/include/public \
+ $(NETWORK_MESSAGES_PATH)/include/public \
+ $(RANDOM_PATH)/include/public \
+ $(SYNCHRONIZATION_PATH)/include/public \
+ $(UTILITY_INCLUDE_PATH) \
+ ../../../../../../external/3rd/library/boost \
+ ../../../../../../external/ours/library/archive/include \
+ ../../../../../../external/ours/library/unicode/include \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES) \
+ $(LOG_INCLUDE_PATH)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedTerrain/build/win32/includePaths.rsp b/src/engine/shared/library/sharedTerrain/build/win32/includePaths.rsp
new file mode 100644
index 000000000..362c29e4a
--- /dev/null
+++ b/src/engine/shared/library/sharedTerrain/build/win32/includePaths.rsp
@@ -0,0 +1,18 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../sharedCollision/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedFractal/include/public
+../../../sharedImage/include/public
+../../../sharedMath/include/public
+../../../sharedMemoryBlockManager/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedObject/include/public
+../../../sharedRandom/include/public
+../../../sharedSynchronization/include/public
+../../../sharedUtility/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedTerrain/build/win32/settings.rsp b/src/engine/shared/library/sharedTerrain/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedTerrain/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedTerrain/build/win32/sharedTerrain.vcproj b/src/engine/shared/library/sharedTerrain/build/win32/sharedTerrain.vcproj
new file mode 100644
index 000000000..5d7424869
--- /dev/null
+++ b/src/engine/shared/library/sharedTerrain/build/win32/sharedTerrain.vcproj
@@ -0,0 +1,2039 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedTerrain/build/win32/sharedTerrain.vcxproj b/src/engine/shared/library/sharedTerrain/build/win32/sharedTerrain.vcxproj
new file mode 100644
index 000000000..165e64201
--- /dev/null
+++ b/src/engine/shared/library/sharedTerrain/build/win32/sharedTerrain.vcxproj
@@ -0,0 +1,387 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {6612CC35-6931-4AC6-A315-E955CA60B643}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedCollision\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedFractal\include\public;..\..\..\sharedImage\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedTerrain\FirstSharedTerrain.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedCollision\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedFractal\include\public;..\..\..\sharedImage\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedTerrain\FirstSharedTerrain.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedCollision\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedFractal\include\public;..\..\..\sharedImage\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMemoryBlockManager\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedUtility\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedTerrain\FirstSharedTerrain.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ true
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedThread/build/linux/Makefile b/src/engine/shared/library/sharedThread/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedThread/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedThread/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedThread/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..94688126e
--- /dev/null
+++ b/src/engine/shared/library/sharedThread/build/shared_unix/shared_unix.mak
@@ -0,0 +1,14 @@
+LIBRARY = sharedThread
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(SYNCHRONIZATION_PATH)/include/public \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedThread/build/win32/includePaths.rsp b/src/engine/shared/library/sharedThread/build/win32/includePaths.rsp
new file mode 100644
index 000000000..4c7c2cb02
--- /dev/null
+++ b/src/engine/shared/library/sharedThread/build/win32/includePaths.rsp
@@ -0,0 +1,8 @@
+../../../../../../external/3rd/library/stlport453/stlport
+../../../sharedDebug/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedThread/build/win32/settings.rsp b/src/engine/shared/library/sharedThread/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedThread/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedThread/build/win32/sharedThread.vcproj b/src/engine/shared/library/sharedThread/build/win32/sharedThread.vcproj
new file mode 100644
index 000000000..a43cbc246
--- /dev/null
+++ b/src/engine/shared/library/sharedThread/build/win32/sharedThread.vcproj
@@ -0,0 +1,410 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedThread/build/win32/sharedThread.vcxproj b/src/engine/shared/library/sharedThread/build/win32/sharedThread.vcxproj
new file mode 100644
index 000000000..efa323985
--- /dev/null
+++ b/src/engine/shared/library/sharedThread/build/win32/sharedThread.vcxproj
@@ -0,0 +1,200 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {858F7DCE-325A-467C-9DDA-2FE40217286F}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedThread\FirstSharedThread.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedThread\FirstSharedThread.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\sharedDebug\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedThread\FirstSharedThread.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+ MaxSpeed
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedUtility/build/gnu/Makefile.am b/src/engine/shared/library/sharedUtility/build/gnu/Makefile.am
new file mode 100644
index 000000000..7473088c4
--- /dev/null
+++ b/src/engine/shared/library/sharedUtility/build/gnu/Makefile.am
@@ -0,0 +1,7 @@
+include engine/shared/library/sharedUtility/build/gnu/Makefile_SOURCES
+include engine/shared/library/sharedUtility/build/gnu/Makefile_CXXFLAGS
+
+libSharedUtility_la_LIBADD=libSharedMemoryManager.la
+libSharedUtility_la_LDFLAGS=-avoid-version
+
+include $(engine_dir)/../make_include/engine.include
diff --git a/src/engine/shared/library/sharedUtility/build/linux/Makefile b/src/engine/shared/library/sharedUtility/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedUtility/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedUtility/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedUtility/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..5b89f9dea
--- /dev/null
+++ b/src/engine/shared/library/sharedUtility/build/shared_unix/shared_unix.mak
@@ -0,0 +1,24 @@
+LIBRARY = sharedUtility
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(FILE_PATH)/include/public \
+ $(FILE_INTERFACE_PATH)/include/public \
+ $(MATH_PATH)/include/public \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(RANDOM_PATH)/include/public \
+ $(LOCALIZATION_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_PATH)/include/public \
+ $(XML_INCLUDE_PATH) \
+ ../../../../../../external/3rd/library/boost \
+ ../../../../../../external/ours/library/unicode/include \
+ ../../../../../../external/ours/library/archive/include \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedUtility/build/win32/includePaths.rsp b/src/engine/shared/library/sharedUtility/build/win32/includePaths.rsp
new file mode 100644
index 000000000..d2059a1b3
--- /dev/null
+++ b/src/engine/shared/library/sharedUtility/build/win32/includePaths.rsp
@@ -0,0 +1,20 @@
+../../../../../../external/3rd/library/boost
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/archive/include
+../../../../../../external/ours/library/unicodeArchive/include/public
+../../../../../../external/ours/library/fileInterface/include/public
+../../../../../../external/ours/library/localization/include
+../../../../../../external/ours/library/unicode/include
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMath/include/public
+../../../sharedMathArchive/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedObject/include/public
+../../../sharedRandom/include/public
+../../../sharedSynchronization/include/public
+../../../sharedXml/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedUtility/build/win32/settings.rsp b/src/engine/shared/library/sharedUtility/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedUtility/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedUtility/build/win32/sharedUtility.vcproj b/src/engine/shared/library/sharedUtility/build/win32/sharedUtility.vcproj
new file mode 100644
index 000000000..360aa1b79
--- /dev/null
+++ b/src/engine/shared/library/sharedUtility/build/win32/sharedUtility.vcproj
@@ -0,0 +1,1850 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedUtility/build/win32/sharedUtility.vcxproj b/src/engine/shared/library/sharedUtility/build/win32/sharedUtility.vcxproj
new file mode 100644
index 000000000..834a128b4
--- /dev/null
+++ b/src/engine/shared/library/sharedUtility/build/win32/sharedUtility.vcxproj
@@ -0,0 +1,365 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {52DF0D16-D070-47FC-B987-8D80B027D114}
+ sharedUtility
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedXml\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ false
+ true
+ true
+ sharedUtility\FirstSharedUtility.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedXml\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ false
+ true
+ true
+ sharedUtility\FirstSharedUtility.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\boost;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\archive\include;..\..\..\..\..\..\external\ours\library\unicodeArchive\include\public;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\..\..\..\external\ours\library\localization\include;..\..\..\..\..\..\external\ours\library\unicode\include;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMath\include\public;..\..\..\sharedMathArchive\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedObject\include\public;..\..\..\sharedRandom\include\public;..\..\..\sharedSynchronization\include\public;..\..\..\sharedXml\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ true
+ sharedUtility\FirstSharedUtility.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/engine/shared/library/sharedXml/build/linux/Makefile b/src/engine/shared/library/sharedXml/build/linux/Makefile
new file mode 100644
index 000000000..3bf9ec64d
--- /dev/null
+++ b/src/engine/shared/library/sharedXml/build/linux/Makefile
@@ -0,0 +1,3 @@
+PLATFORM =linux
+
+include ../shared_unix/shared_unix.mak
diff --git a/src/engine/shared/library/sharedXml/build/shared_unix/shared_unix.mak b/src/engine/shared/library/sharedXml/build/shared_unix/shared_unix.mak
new file mode 100644
index 000000000..926d66900
--- /dev/null
+++ b/src/engine/shared/library/sharedXml/build/shared_unix/shared_unix.mak
@@ -0,0 +1,23 @@
+LIBRARY = sharedXml
+
+include ../../../../../build/shared_unix/defs.mak
+include ../../../../../build/$(PLATFORM)/platformDefs.mak
+
+INCLUDE_DIRS = \
+ ../../include/public \
+ ../../include/private \
+ ../../src/shared \
+ ../../src/$(PLATFORM) \
+ $(FILE_PATH)/include/public \
+ $(FILE_INTERFACE_PATH)/include/public \
+ $(MATH_PATH)/include/public \
+ $(MATH_ARCHIVE_INCLUDE_PATH) \
+ $(RANDOM_PATH)/include/public \
+ $(LOCALIZATION_INCLUDE_PATH) \
+ $(SYNCHRONIZATION_PATH)/include/public \
+ ../../../../../../external/3rd/library/boost \
+ ../../../../../../external/ours/library/unicode/include \
+ ../../../../../../external/ours/library/archive/include \
+ $(COMMON_ENGINE_LIBRARY_INCLUDES)
+
+include ../../../../../build/shared_unix/library.mak
diff --git a/src/engine/shared/library/sharedXml/build/win32/includePaths.rsp b/src/engine/shared/library/sharedXml/build/win32/includePaths.rsp
new file mode 100644
index 000000000..6a0b0741f
--- /dev/null
+++ b/src/engine/shared/library/sharedXml/build/win32/includePaths.rsp
@@ -0,0 +1,11 @@
+../../../../../../external/3rd/library/libxml2-2.6.7.win32/include
+../../../../../../external/3rd/library/stlport453/stlport
+../../../../../../external/ours/library/fileInterface/include/public
+../../../sharedDebug/include/public
+../../../sharedFile/include/public
+../../../sharedFoundation/include/public
+../../../sharedFoundationTypes/include/public
+../../../sharedMemoryManager/include/public
+../../../sharedSynchronization/include/public
+../../include/private
+../../include/public
diff --git a/src/engine/shared/library/sharedXml/build/win32/settings.rsp b/src/engine/shared/library/sharedXml/build/win32/settings.rsp
new file mode 100644
index 000000000..9903a37a2
--- /dev/null
+++ b/src/engine/shared/library/sharedXml/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library
+debugInline
diff --git a/src/engine/shared/library/sharedXml/build/win32/sharedXml.vcproj b/src/engine/shared/library/sharedXml/build/win32/sharedXml.vcproj
new file mode 100644
index 000000000..556aea38d
--- /dev/null
+++ b/src/engine/shared/library/sharedXml/build/win32/sharedXml.vcproj
@@ -0,0 +1,442 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/engine/shared/library/sharedXml/build/win32/sharedXml.vcxproj b/src/engine/shared/library/sharedXml/build/win32/sharedXml.vcxproj
new file mode 100644
index 000000000..f709d99fa
--- /dev/null
+++ b/src/engine/shared/library/sharedXml/build/win32/sharedXml.vcxproj
@@ -0,0 +1,203 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {51E2988C-CE2D-42D7-A27C-06A322B4AAC2}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedXml\FirstSharedXml.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ true
+ true
+ sharedXml\FirstSharedXml.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\libxml2-2.6.7.win32\include;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\sharedDebug\include\public;..\..\..\sharedFile\include\public;..\..\..\sharedFoundation\include\public;..\..\..\sharedFoundationTypes\include\public;..\..\..\sharedMemoryManager\include\public;..\..\..\sharedSynchronization\include\public;..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ true
+ true
+ sharedXml\FirstSharedXml.h
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+ false
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ MaxSpeed
+
+
+ Create
+ Create
+ Create
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/external/3rd/application/UnicodeTester/build/win32/UnicodeTester.dsp b/src/external/3rd/application/UnicodeTester/build/win32/UnicodeTester.dsp
new file mode 100644
index 000000000..07d385191
--- /dev/null
+++ b/src/external/3rd/application/UnicodeTester/build/win32/UnicodeTester.dsp
@@ -0,0 +1,148 @@
+# Microsoft Developer Studio Project File - Name="UnicodeTester" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Application" 0x0101
+
+CFG=UnicodeTester - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "UnicodeTester.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 "UnicodeTester.mak" CFG="UnicodeTester - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "UnicodeTester - Win32 Release" (based on "Win32 (x86) Application")
+!MESSAGE "UnicodeTester - Win32 Debug" (based on "Win32 (x86) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+MTL=midl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "UnicodeTester - Win32 Release"
+
+# PROP BASE Use_MFC 5
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 5
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /Yu"stdafx.h" /FD /c
+# ADD CPP /nologo /MT /W3 /GX /O2 /I "../../include/shared" /D "NDEBUG" /D "WIN32" /D "_WINDOWS" /D "_UNICODE" /D "UNICODE" /Yu"stdafx.h" /FD /c
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
+# ADD RSC /l 0x409 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 /nologo /subsystem:windows /machine:I386
+# ADD LINK32 /nologo /entry:"wWinMainCRTStartup" /subsystem:windows /machine:I386
+
+!ELSEIF "$(CFG)" == "UnicodeTester - Win32 Debug"
+
+# PROP BASE Use_MFC 5
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 5
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /Yu"stdafx.h" /FD /GZ /c
+# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "../../include/shared" /D "_DEBUG" /D "WIN32" /D "_WINDOWS" /D "_UNICODE" /D "UNICODE" /Yu"stdafx.h" /FD /GZ /c
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
+# ADD RSC /l 0x409 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 uafxcwd.lib wsock32.lib dxguid.lib dinput8.lib dsound.lib /nologo /entry:"wWinMainCRTStartup" /subsystem:windows /debug /machine:I386 /pdbtype:sept
+
+!ENDIF
+
+# Begin Target
+
+# Name "UnicodeTester - Win32 Release"
+# Name "UnicodeTester - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=.\StdAfx.cpp
+# ADD CPP /Yc"stdafx.h"
+# End Source File
+# Begin Source File
+
+SOURCE=.\UnicodeTester.cpp
+# End Source File
+# Begin Source File
+
+SOURCE=.\UnicodeTester.rc
+# End Source File
+# Begin Source File
+
+SOURCE=.\UnicodeTesterDlg.cpp
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=.\Resource.h
+# End Source File
+# Begin Source File
+
+SOURCE=.\StdAfx.h
+# End Source File
+# Begin Source File
+
+SOURCE=.\UnicodeTester.h
+# End Source File
+# Begin Source File
+
+SOURCE=.\UnicodeTesterDlg.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# Begin Source File
+
+SOURCE=.\res\UnicodeTester.ico
+# End Source File
+# Begin Source File
+
+SOURCE=.\res\UnicodeTester.rc2
+# End Source File
+# End Group
+# Begin Source File
+
+SOURCE=.\ReadMe.txt
+# End Source File
+# End Target
+# End Project
diff --git a/src/external/3rd/library/atlmfc/lib/Atl.lib b/src/external/3rd/library/atlmfc/lib/Atl.lib
new file mode 100644
index 000000000..8a6cf9819
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/Atl.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/EAFXIS.lib b/src/external/3rd/library/atlmfc/lib/INTEL/EAFXIS.lib
new file mode 100644
index 000000000..d542419a8
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/EAFXIS.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/EAFXISD.lib b/src/external/3rd/library/atlmfc/lib/INTEL/EAFXISD.lib
new file mode 100644
index 000000000..d97180df0
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/EAFXISD.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFC80.LIB b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80.LIB
new file mode 100644
index 000000000..f18d12254
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80.LIB differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFC80.exp b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80.exp
new file mode 100644
index 000000000..5bedfd1bf
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80.exp differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFC80D.LIB b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80D.LIB
new file mode 100644
index 000000000..39134535c
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80D.LIB differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFC80D.exp b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80D.exp
new file mode 100644
index 000000000..397d1d2c1
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80D.exp differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFC80U.LIB b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80U.LIB
new file mode 100644
index 000000000..7c4a01686
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80U.LIB differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFC80U.exp b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80U.exp
new file mode 100644
index 000000000..bd4682f5b
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80U.exp differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFC80UD.LIB b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80UD.LIB
new file mode 100644
index 000000000..be5a727c9
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80UD.LIB differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFC80UD.exp b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80UD.exp
new file mode 100644
index 000000000..82a488913
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFC80UD.exp differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80.exp b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80.exp
new file mode 100644
index 000000000..6ef5c1f01
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80.exp differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80.lib b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80.lib
new file mode 100644
index 000000000..b99c262be
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80D.exp b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80D.exp
new file mode 100644
index 000000000..612c82f0c
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80D.exp differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80D.lib b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80D.lib
new file mode 100644
index 000000000..53f0debc9
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80D.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80U.exp b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80U.exp
new file mode 100644
index 000000000..1ed4d5e25
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80U.exp differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80U.lib b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80U.lib
new file mode 100644
index 000000000..6e9bf49f8
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80U.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80UD.exp b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80UD.exp
new file mode 100644
index 000000000..d69bbeb71
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80UD.exp differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80UD.lib b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80UD.lib
new file mode 100644
index 000000000..434c187dc
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCM80UD.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80.lib b/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80.lib
new file mode 100644
index 000000000..7989bc840
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80D.lib b/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80D.lib
new file mode 100644
index 000000000..e107d70ad
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80D.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80U.lib b/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80U.lib
new file mode 100644
index 000000000..7c8419924
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80U.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80UD.lib b/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80UD.lib
new file mode 100644
index 000000000..100d85fed
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/MFCS80UD.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/NAFXIS.lib b/src/external/3rd/library/atlmfc/lib/INTEL/NAFXIS.lib
new file mode 100644
index 000000000..96cfe49fa
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/NAFXIS.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/NAFXISD.lib b/src/external/3rd/library/atlmfc/lib/INTEL/NAFXISD.lib
new file mode 100644
index 000000000..4e4353175
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/NAFXISD.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/NafxcW.lib b/src/external/3rd/library/atlmfc/lib/INTEL/NafxcW.lib
new file mode 100644
index 000000000..fb62fdf4b
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/NafxcW.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/NafxcWD.lib b/src/external/3rd/library/atlmfc/lib/INTEL/NafxcWD.lib
new file mode 100644
index 000000000..5c4b5d951
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/NafxcWD.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/UafxcW.lib b/src/external/3rd/library/atlmfc/lib/INTEL/UafxcW.lib
new file mode 100644
index 000000000..7d42acce7
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/UafxcW.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/UafxcWD.lib b/src/external/3rd/library/atlmfc/lib/INTEL/UafxcWD.lib
new file mode 100644
index 000000000..532987a75
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/UafxcWD.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/atl.lib b/src/external/3rd/library/atlmfc/lib/INTEL/atl.lib
new file mode 100644
index 000000000..ebaa3e905
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/atl.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/atlmincrt.lib b/src/external/3rd/library/atlmfc/lib/INTEL/atlmincrt.lib
new file mode 100644
index 000000000..0427a6548
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/atlmincrt.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/atls.lib b/src/external/3rd/library/atlmfc/lib/INTEL/atls.lib
new file mode 100644
index 000000000..d8cad75a5
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/atls.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/atlsd.lib b/src/external/3rd/library/atlmfc/lib/INTEL/atlsd.lib
new file mode 100644
index 000000000..29b75144d
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/atlsd.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/INTEL/finalpublickey.snk b/src/external/3rd/library/atlmfc/lib/INTEL/finalpublickey.snk
new file mode 100644
index 000000000..9887c8bcb
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/INTEL/finalpublickey.snk differ
diff --git a/src/external/3rd/library/atlmfc/lib/atldload.lib b/src/external/3rd/library/atlmfc/lib/atldload.lib
new file mode 100644
index 000000000..dd02b3cf2
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/atldload.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/atlmincrt.lib b/src/external/3rd/library/atlmfc/lib/atlmincrt.lib
new file mode 100644
index 000000000..27769b0d2
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/atlmincrt.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/atls.lib b/src/external/3rd/library/atlmfc/lib/atls.lib
new file mode 100644
index 000000000..7c5f42488
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/atls.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/atlsd.lib b/src/external/3rd/library/atlmfc/lib/atlsd.lib
new file mode 100644
index 000000000..3d7a29d23
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/atlsd.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/eafxis.lib b/src/external/3rd/library/atlmfc/lib/eafxis.lib
new file mode 100644
index 000000000..a5b646c43
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/eafxis.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/eafxisd.lib b/src/external/3rd/library/atlmfc/lib/eafxisd.lib
new file mode 100644
index 000000000..0353f5ca1
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/eafxisd.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfc80.lib b/src/external/3rd/library/atlmfc/lib/mfc80.lib
new file mode 100644
index 000000000..4d43ded27
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfc80.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfc80d.lib b/src/external/3rd/library/atlmfc/lib/mfc80d.lib
new file mode 100644
index 000000000..4ac32ebe7
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfc80d.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfc80u.lib b/src/external/3rd/library/atlmfc/lib/mfc80u.lib
new file mode 100644
index 000000000..7ea9f7754
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfc80u.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfc80ud.lib b/src/external/3rd/library/atlmfc/lib/mfc80ud.lib
new file mode 100644
index 000000000..85d5b27db
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfc80ud.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfcdload.lib b/src/external/3rd/library/atlmfc/lib/mfcdload.lib
new file mode 100644
index 000000000..3ed98a10a
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfcdload.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfcm80.lib b/src/external/3rd/library/atlmfc/lib/mfcm80.lib
new file mode 100644
index 000000000..7097308cb
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfcm80.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfcm80d.lib b/src/external/3rd/library/atlmfc/lib/mfcm80d.lib
new file mode 100644
index 000000000..f6b029b99
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfcm80d.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfcm80u.lib b/src/external/3rd/library/atlmfc/lib/mfcm80u.lib
new file mode 100644
index 000000000..08a978365
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfcm80u.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfcm80ud.lib b/src/external/3rd/library/atlmfc/lib/mfcm80ud.lib
new file mode 100644
index 000000000..61d011448
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfcm80ud.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfcmifc80.dll b/src/external/3rd/library/atlmfc/lib/mfcmifc80.dll
new file mode 100644
index 000000000..bcbf64c8b
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfcmifc80.dll differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfcs80.lib b/src/external/3rd/library/atlmfc/lib/mfcs80.lib
new file mode 100644
index 000000000..a761d874f
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfcs80.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfcs80d.lib b/src/external/3rd/library/atlmfc/lib/mfcs80d.lib
new file mode 100644
index 000000000..c72e61377
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfcs80d.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfcs80u.lib b/src/external/3rd/library/atlmfc/lib/mfcs80u.lib
new file mode 100644
index 000000000..3b60dd476
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfcs80u.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/mfcs80ud.lib b/src/external/3rd/library/atlmfc/lib/mfcs80ud.lib
new file mode 100644
index 000000000..8aadff844
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/mfcs80ud.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/nafxcw.lib b/src/external/3rd/library/atlmfc/lib/nafxcw.lib
new file mode 100644
index 000000000..46559db91
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/nafxcw.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/nafxcwd.lib b/src/external/3rd/library/atlmfc/lib/nafxcwd.lib
new file mode 100644
index 000000000..aceb4a7c5
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/nafxcwd.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/nafxis.lib b/src/external/3rd/library/atlmfc/lib/nafxis.lib
new file mode 100644
index 000000000..ed8e483a9
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/nafxis.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/nafxisd.lib b/src/external/3rd/library/atlmfc/lib/nafxisd.lib
new file mode 100644
index 000000000..792318acf
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/nafxisd.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/uafxcw.lib b/src/external/3rd/library/atlmfc/lib/uafxcw.lib
new file mode 100644
index 000000000..18b80a077
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/uafxcw.lib differ
diff --git a/src/external/3rd/library/atlmfc/lib/uafxcwd.lib b/src/external/3rd/library/atlmfc/lib/uafxcwd.lib
new file mode 100644
index 000000000..b80877961
Binary files /dev/null and b/src/external/3rd/library/atlmfc/lib/uafxcwd.lib differ
diff --git a/src/external/3rd/library/bink/lib/win32/binkw32.dll b/src/external/3rd/library/bink/lib/win32/binkw32.dll
new file mode 100644
index 000000000..9513659ab
Binary files /dev/null and b/src/external/3rd/library/bink/lib/win32/binkw32.dll differ
diff --git a/src/external/3rd/library/bink/lib/win32/binkw32.lib b/src/external/3rd/library/bink/lib/win32/binkw32.lib
new file mode 100644
index 000000000..c1413df39
Binary files /dev/null and b/src/external/3rd/library/bink/lib/win32/binkw32.lib differ
diff --git a/src/external/3rd/library/blat194/build/win32/blat.dsp b/src/external/3rd/library/blat194/build/win32/blat.dsp
new file mode 100644
index 000000000..fd2f53a64
--- /dev/null
+++ b/src/external/3rd/library/blat194/build/win32/blat.dsp
@@ -0,0 +1,157 @@
+# Microsoft Developer Studio Project File - Name="blat" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Static Library" 0x0104
+
+CFG=blat - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "blat.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 "blat.mak" CFG="blat - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "blat - Win32 Release" (based on "Win32 (x86) Static Library")
+!MESSAGE "blat - Win32 Optimized" (based on "Win32 (x86) Static Library")
+!MESSAGE "blat - Win32 Debug" (based on "Win32 (x86) Static Library")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName "blat"
+# PROP Scc_LocalPath "..\.."
+CPP=cl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "blat - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "..\..\..\..\..\..\compile\win32\blat\Release"
+# PROP Intermediate_Dir "..\..\..\..\..\..\compile\win32\blat\Release"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
+# ADD CPP /nologo /G6 /MT /W4 /WX /GR /GX /Zi /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "DEBUG_LEVEL=0" /D "_LIB" /D "GENSOCK_STATIC_LINK" /Yu"FirstBlat.h" /FD /c
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
+# ADD RSC /l 0x409 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+
+!ELSEIF "$(CFG)" == "blat - Win32 Optimized"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Optimized"
+# PROP BASE Intermediate_Dir "Optimized"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "..\..\..\..\..\..\compile\win32\blat\Optimized"
+# PROP Intermediate_Dir "..\..\..\..\..\..\compile\win32\blat\Optimized"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
+# ADD CPP /nologo /G6 /MTd /W4 /WX /Gm /GR /GX /Zi /Ox /Ot /Og /Oi /Oy- /Gf /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "DEBUG_LEVEL=1" /D "_LIB" /D "GENSOCK_STATIC_LINK" /Yu"FirstBlat.h" /FD /c
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
+# ADD RSC /l 0x409 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+
+!ELSEIF "$(CFG)" == "blat - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "..\..\..\..\..\..\compile\win32\blat\Debug"
+# PROP Intermediate_Dir "..\..\..\..\..\..\compile\win32\blat\Debug"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
+# ADD CPP /nologo /G6 /MTd /W4 /WX /Gm /GR /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "DEBUG_LEVEL=2" /D "_LIB" /D "GENSOCK_STATIC_LINK" /Yu"FirstBlat.h" /FD /GZ /c
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
+# ADD RSC /l 0x409 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LIB32=link.exe -lib
+# ADD BASE LIB32 /nologo
+# ADD LIB32 /nologo
+
+!ENDIF
+
+# Begin Target
+
+# Name "blat - Win32 Release"
+# Name "blat - Win32 Optimized"
+# Name "blat - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;rc"
+# Begin Source File
+
+SOURCE=..\..\src\win32\blat.cpp
+# ADD CPP /W3
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\win32\blatcgi.cpp
+# ADD CPP /W3
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\win32\FirstBlat.cpp
+# ADD CPP /W3 /Yc
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\win32\GENSOCK\gensock.cpp
+# ADD CPP /W3
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "def;h;hpp;inl"
+# Begin Source File
+
+SOURCE=..\..\src\win32\blat.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\win32\FirstBlat.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\..\src\win32\GENSOCK\gensock.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# Begin Group "Template Files"
+
+# PROP Default_Filter "template"
+# End Group
+# End Target
+# End Project
diff --git a/src/external/3rd/library/blat194/build/win32/blat.vcproj b/src/external/3rd/library/blat194/build/win32/blat.vcproj
new file mode 100644
index 000000000..7001dd051
--- /dev/null
+++ b/src/external/3rd/library/blat194/build/win32/blat.vcproj
@@ -0,0 +1,428 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/external/3rd/library/blat194/build/win32/blat.vcxproj b/src/external/3rd/library/blat194/build/win32/blat.vcxproj
new file mode 100644
index 000000000..fd49b4254
--- /dev/null
+++ b/src/external/3rd/library/blat194/build/win32/blat.vcxproj
@@ -0,0 +1,211 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {ECBDFCFF-F4AE-475A-AA90-729EB96430A0}
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ .\..\..\..\..\..\..\compile\win32\blat\Optimized\
+ .\..\..\..\..\..\..\compile\win32\blat\Optimized\
+
+
+ .\..\..\..\..\..\..\compile\win32\blat\Debug\
+ .\..\..\..\..\..\..\compile\win32\blat\Debug\
+
+
+ .\..\..\..\..\..\..\compile\win32\blat\Release\
+ .\..\..\..\..\..\..\compile\win32\blat\Release\
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ WIN32;_DEBUG;DEBUG_LEVEL=1;_LIB;GENSOCK_STATIC_LINK;_CRT_SECURE_NO_DEPRECATE=1;%(PreprocessorDefinitions)
+ true
+ true
+ MultiThreadedDebug
+ true
+ Use
+ FirstBlat.h
+ .\..\..\..\..\..\..\compile\win32\blat\Optimized/blat.pch
+ .\..\..\..\..\..\..\compile\win32\blat\Optimized/
+ .\..\..\..\..\..\..\compile\win32\blat\Optimized/
+ .\..\..\..\..\..\..\compile\win32\blat\Optimized/
+ Level4
+ false
+ true
+ ProgramDatabase
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ .\..\..\..\..\..\..\compile\win32\blat\Optimized\blat.lib
+ true
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\blat\Optimized/blat.bsc
+
+
+
+
+ Disabled
+ WIN32;_DEBUG;DEBUG_LEVEL=2;_LIB;GENSOCK_STATIC_LINK;_CRT_SECURE_NO_DEPRECATE=1;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ false
+ true
+ Use
+ FirstBlat.h
+ .\..\..\..\..\..\..\compile\win32\blat\Debug/blat.pch
+ .\..\..\..\..\..\..\compile\win32\blat\Debug/
+ .\..\..\..\..\..\..\compile\win32\blat\Debug/
+ .\..\..\..\..\..\..\compile\win32\blat\Debug/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ .\..\..\..\..\..\..\compile\win32\blat\Debug\blat.lib
+ true
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\blat\Debug/blat.bsc
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ WIN32;NDEBUG;DEBUG_LEVEL=0;_LIB;GENSOCK_STATIC_LINK;_CRT_SECURE_NO_DEPRECATE=1;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ Use
+ FirstBlat.h
+ .\..\..\..\..\..\..\compile\win32\blat\Release/blat.pch
+ .\..\..\..\..\..\..\compile\win32\blat\Release/
+ .\..\..\..\..\..\..\compile\win32\blat\Release/
+ .\..\..\..\..\..\..\compile\win32\blat\Release/
+ Level4
+ false
+ true
+ ProgramDatabase
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ .\..\..\..\..\..\..\compile\win32\blat\Release\blat.lib
+ true
+
+
+ true
+ .\..\..\..\..\..\..\compile\win32\blat\Release/blat.bsc
+
+
+
+
+ Level3
+ MaxSpeed
+ Level3
+ Level3
+
+
+ Level3
+ MaxSpeed
+ Level3
+ Level3
+
+
+ Create
+ Level3
+ MaxSpeed
+ Create
+ Level3
+ Create
+ Level3
+
+
+ Level3
+ MaxSpeed
+ Level3
+ Level3
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/external/3rd/library/blat194/build/win32/includePaths.rsp b/src/external/3rd/library/blat194/build/win32/includePaths.rsp
new file mode 100644
index 000000000..8b1378917
--- /dev/null
+++ b/src/external/3rd/library/blat194/build/win32/includePaths.rsp
@@ -0,0 +1 @@
+
diff --git a/src/external/3rd/library/blat194/build/win32/settings.rsp b/src/external/3rd/library/blat194/build/win32/settings.rsp
new file mode 100644
index 000000000..77cd5c7b0
--- /dev/null
+++ b/src/external/3rd/library/blat194/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+library noPchDirectory
+dbgInfo_r_pdb
+debugInline
diff --git a/src/external/3rd/library/directx9/lib/DxErr9.lib b/src/external/3rd/library/directx9/lib/DxErr9.lib
new file mode 100644
index 000000000..3f039fa2a
Binary files /dev/null and b/src/external/3rd/library/directx9/lib/DxErr9.lib differ
diff --git a/src/external/3rd/library/directx9/lib/d3d9.lib b/src/external/3rd/library/directx9/lib/d3d9.lib
new file mode 100644
index 000000000..9e08d8637
Binary files /dev/null and b/src/external/3rd/library/directx9/lib/d3d9.lib differ
diff --git a/src/external/3rd/library/directx9/lib/d3dx.lib b/src/external/3rd/library/directx9/lib/d3dx.lib
new file mode 100644
index 000000000..e9450b1bc
Binary files /dev/null and b/src/external/3rd/library/directx9/lib/d3dx.lib differ
diff --git a/src/external/3rd/library/directx9/lib/d3dx9.lib b/src/external/3rd/library/directx9/lib/d3dx9.lib
new file mode 100644
index 000000000..8e280b0f5
Binary files /dev/null and b/src/external/3rd/library/directx9/lib/d3dx9.lib differ
diff --git a/src/external/3rd/library/directx9/lib/d3dx9d.dll b/src/external/3rd/library/directx9/lib/d3dx9d.dll
new file mode 100644
index 000000000..ad9d989a5
Binary files /dev/null and b/src/external/3rd/library/directx9/lib/d3dx9d.dll differ
diff --git a/src/external/3rd/library/directx9/lib/d3dx9dt.lib b/src/external/3rd/library/directx9/lib/d3dx9dt.lib
new file mode 100644
index 000000000..571b66937
Binary files /dev/null and b/src/external/3rd/library/directx9/lib/d3dx9dt.lib differ
diff --git a/src/external/3rd/library/directx9/lib/ddraw.lib b/src/external/3rd/library/directx9/lib/ddraw.lib
new file mode 100644
index 000000000..d7d0583e9
Binary files /dev/null and b/src/external/3rd/library/directx9/lib/ddraw.lib differ
diff --git a/src/external/3rd/library/directx9/lib/dinput8.lib b/src/external/3rd/library/directx9/lib/dinput8.lib
new file mode 100644
index 000000000..3fad62fbd
Binary files /dev/null and b/src/external/3rd/library/directx9/lib/dinput8.lib differ
diff --git a/src/external/3rd/library/directx9/lib/dsetup.lib b/src/external/3rd/library/directx9/lib/dsetup.lib
new file mode 100644
index 000000000..8acfa3ea3
Binary files /dev/null and b/src/external/3rd/library/directx9/lib/dsetup.lib differ
diff --git a/src/external/3rd/library/directx9/lib/dsound.lib b/src/external/3rd/library/directx9/lib/dsound.lib
new file mode 100644
index 000000000..6e9604d39
Binary files /dev/null and b/src/external/3rd/library/directx9/lib/dsound.lib differ
diff --git a/src/external/3rd/library/directx9/lib/dxguid.lib b/src/external/3rd/library/directx9/lib/dxguid.lib
new file mode 100644
index 000000000..f251a925f
Binary files /dev/null and b/src/external/3rd/library/directx9/lib/dxguid.lib differ
diff --git a/src/external/3rd/library/dpvs/lib/win32-x86/dpvs.lib b/src/external/3rd/library/dpvs/lib/win32-x86/dpvs.lib
new file mode 100644
index 000000000..1e2c661e4
Binary files /dev/null and b/src/external/3rd/library/dpvs/lib/win32-x86/dpvs.lib differ
diff --git a/src/external/3rd/library/dpvs/lib/win32-x86/dpvsd.lib b/src/external/3rd/library/dpvs/lib/win32-x86/dpvsd.lib
new file mode 100644
index 000000000..5e0214041
Binary files /dev/null and b/src/external/3rd/library/dpvs/lib/win32-x86/dpvsd.lib differ
diff --git a/src/external/3rd/library/lcdui/lib/lgLcd.lib b/src/external/3rd/library/lcdui/lib/lgLcd.lib
new file mode 100644
index 000000000..71c1a7a10
Binary files /dev/null and b/src/external/3rd/library/lcdui/lib/lgLcd.lib differ
diff --git a/src/external/3rd/library/lcdui_src/build/win32/includePaths.rsp b/src/external/3rd/library/lcdui_src/build/win32/includePaths.rsp
new file mode 100644
index 000000000..c97f313b2
--- /dev/null
+++ b/src/external/3rd/library/lcdui_src/build/win32/includePaths.rsp
@@ -0,0 +1,7 @@
+..\..\..\..\..\..\external\3rd\library\lcdui
+..\..\..\..\..\..\external\3rd\library\stlport453\stlport
+..\..\..\..\..\..\external\ours\library\fileInterface\include\public
+..\..\..\archive\include
+..\..\..\unicode\include
+..\..\src\win32
+..\..\src\win32\LCDUI
diff --git a/src/external/3rd/library/lcdui_src/build/win32/lcdui.vcproj b/src/external/3rd/library/lcdui_src/build/win32/lcdui.vcproj
new file mode 100644
index 000000000..c9b4def13
--- /dev/null
+++ b/src/external/3rd/library/lcdui_src/build/win32/lcdui.vcproj
@@ -0,0 +1,432 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/external/3rd/library/lcdui_src/build/win32/lcdui.vcxproj b/src/external/3rd/library/lcdui_src/build/win32/lcdui.vcxproj
new file mode 100644
index 000000000..ea9dc608c
--- /dev/null
+++ b/src/external/3rd/library/lcdui_src/build/win32/lcdui.vcxproj
@@ -0,0 +1,225 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {20D2AEE7-B60A-4EC9-B187-FA76062A6C39}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\..\..\..\..\external\3rd\library\lcdui;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\archive\include;..\..\..\unicode\include;..\..\src\win32;..\..\src\win32\LCDUI;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ false
+ true
+ true
+
+
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\..\..\..\..\external\3rd\library\lcdui;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\archive\include;..\..\..\unicode\include;..\..\src\win32;..\..\src\win32\LCDUI;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ false
+ true
+ true
+
+
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\..\..\..\..\external\3rd\library\lcdui;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;..\..\..\..\..\..\external\ours\library\fileInterface\include\public;..\..\..\archive\include;..\..\..\unicode\include;..\..\src\win32;..\..\src\win32\LCDUI;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ true
+
+
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {dc2cd926-8ea3-4add-aa62-a95cca8ac7dd}
+ false
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/external/3rd/library/lcdui_src/build/win32/settings.rsp b/src/external/3rd/library/lcdui_src/build/win32/settings.rsp
new file mode 100644
index 000000000..bed831cdd
--- /dev/null
+++ b/src/external/3rd/library/lcdui_src/build/win32/settings.rsp
@@ -0,0 +1,2 @@
+library noPch
+debugInline
diff --git a/src/external/3rd/library/libEverQuestTCG/build/win32/defines.rsp b/src/external/3rd/library/libEverQuestTCG/build/win32/defines.rsp
new file mode 100644
index 000000000..f6b0b81d2
--- /dev/null
+++ b/src/external/3rd/library/libEverQuestTCG/build/win32/defines.rsp
@@ -0,0 +1 @@
+ENABLE_TCG
diff --git a/src/external/3rd/library/libEverQuestTCG/build/win32/includePaths.rsp b/src/external/3rd/library/libEverQuestTCG/build/win32/includePaths.rsp
new file mode 100644
index 000000000..f5a1241ee
--- /dev/null
+++ b/src/external/3rd/library/libEverQuestTCG/build/win32/includePaths.rsp
@@ -0,0 +1,2 @@
+../../include/private
+../../include/public
diff --git a/src/external/3rd/library/libEverQuestTCG/build/win32/libEverQuestTCG.vcproj b/src/external/3rd/library/libEverQuestTCG/build/win32/libEverQuestTCG.vcproj
new file mode 100644
index 000000000..d452e0aac
--- /dev/null
+++ b/src/external/3rd/library/libEverQuestTCG/build/win32/libEverQuestTCG.vcproj
@@ -0,0 +1,300 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/external/3rd/library/libEverQuestTCG/build/win32/libEverQuestTCG.vcxproj b/src/external/3rd/library/libEverQuestTCG/build/win32/libEverQuestTCG.vcxproj
new file mode 100644
index 000000000..8303eeb68
--- /dev/null
+++ b/src/external/3rd/library/libEverQuestTCG/build/win32/libEverQuestTCG.vcxproj
@@ -0,0 +1,186 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {03F3C054-F380-4618-BE46-6E25061A3587}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;ENABLE_TCG;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ false
+ true
+ true
+
+
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;ENABLE_TCG;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ false
+ true
+ true
+
+
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\include\private;..\..\include\public;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;ENABLE_TCG;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ true
+
+
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level4
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/external/3rd/library/libEverQuestTCG/build/win32/settings.rsp b/src/external/3rd/library/libEverQuestTCG/build/win32/settings.rsp
new file mode 100644
index 000000000..993bfac72
--- /dev/null
+++ b/src/external/3rd/library/libEverQuestTCG/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+library
+debugInline
+noPch
diff --git a/src/external/3rd/library/libMozilla/build/win32/defines.rsp b/src/external/3rd/library/libMozilla/build/win32/defines.rsp
new file mode 100644
index 000000000..378104285
--- /dev/null
+++ b/src/external/3rd/library/libMozilla/build/win32/defines.rsp
@@ -0,0 +1 @@
+ENABLE_MOZILLA
diff --git a/src/external/3rd/library/libMozilla/build/win32/includePaths.rsp b/src/external/3rd/library/libMozilla/build/win32/includePaths.rsp
new file mode 100644
index 000000000..f5808468f
--- /dev/null
+++ b/src/external/3rd/library/libMozilla/build/win32/includePaths.rsp
@@ -0,0 +1,25 @@
+../../include/private
+../../include/public
+../../include/private/include
+../../include/private/sdk/include
+../../include/private/include/commandhandler
+../../include/private/include/content
+../../include/private/include/docshell
+../../include/private/include/dom
+../../include/private/include/embed_base
+../../include/private/include/gfx
+../../include/private/include/layout
+../../include/private/include/locale
+../../include/private/include/necko
+../../include/private/include/nkcache
+../../include/private/include/pref
+../../include/private/include/profdirserviceprovider
+../../include/private/include/string
+../../include/private/include/uriloader
+../../include/private/include/view
+../../include/private/include/widget
+../../include/private/include/xpcom
+../../include/private/include/xulapp
+../../include/private/include/xuldoc
+../../../../../../external/3rd/library/stlport453/stlport
+
diff --git a/src/external/3rd/library/libMozilla/build/win32/libMozilla.vcproj b/src/external/3rd/library/libMozilla/build/win32/libMozilla.vcproj
new file mode 100644
index 000000000..2301b319d
--- /dev/null
+++ b/src/external/3rd/library/libMozilla/build/win32/libMozilla.vcproj
@@ -0,0 +1,300 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/external/3rd/library/libMozilla/build/win32/libMozilla.vcxproj b/src/external/3rd/library/libMozilla/build/win32/libMozilla.vcxproj
new file mode 100644
index 000000000..66d162f1c
--- /dev/null
+++ b/src/external/3rd/library/libMozilla/build/win32/libMozilla.vcxproj
@@ -0,0 +1,186 @@
+
+
+
+
+ Debug
+ Win32
+
+
+ Optimized
+ Win32
+
+
+ Release
+ Win32
+
+
+
+ {C6C1E14A-DEDB-48C6-B028-0C9E4EFF5DC4}
+ Win32Proj
+
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+ StaticLibrary
+ v120
+ false
+ MultiByte
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>12.0.30501.0
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+ ..\..\..\..\..\..\compile\win32\$(ProjectName)\$(Configuration)\
+
+
+
+ Disabled
+ OnlyExplicitInline
+ ..\..\include\private;..\..\include\public;..\..\include\private\include;..\..\include\private\sdk\include;..\..\include\private\include\commandhandler;..\..\include\private\include\content;..\..\include\private\include\docshell;..\..\include\private\include\dom;..\..\include\private\include\embed_base;..\..\include\private\include\gfx;..\..\include\private\include\layout;..\..\include\private\include\locale;..\..\include\private\include\necko;..\..\include\private\include\nkcache;..\..\include\private\include\pref;..\..\include\private\include\profdirserviceprovider;..\..\include\private\include\string;..\..\include\private\include\uriloader;..\..\include\private\include\view;..\..\include\private\include\widget;..\..\include\private\include\xpcom;..\..\include\private\include\xulapp;..\..\include\private\include\xuldoc;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=2;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;ENABLE_MOZILLA;%(PreprocessorDefinitions)
+ true
+ EnableFastChecks
+ MultiThreadedDebug
+ true
+ false
+ true
+ true
+
+
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_d.pdb
+ Level3
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+ Full
+ OnlyExplicitInline
+ true
+ Speed
+ false
+ ..\..\include\private;..\..\include\public;..\..\include\private\include;..\..\include\private\sdk\include;..\..\include\private\include\commandhandler;..\..\include\private\include\content;..\..\include\private\include\docshell;..\..\include\private\include\dom;..\..\include\private\include\embed_base;..\..\include\private\include\gfx;..\..\include\private\include\layout;..\..\include\private\include\locale;..\..\include\private\include\necko;..\..\include\private\include\nkcache;..\..\include\private\include\pref;..\..\include\private\include\profdirserviceprovider;..\..\include\private\include\string;..\..\include\private\include\uriloader;..\..\include\private\include\view;..\..\include\private\include\widget;..\..\include\private\include\xpcom;..\..\include\private\include\xulapp;..\..\include\private\include\xuldoc;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;%(AdditionalIncludeDirectories)
+ WIN32;_DEBUG;_MBCS;DEBUG_LEVEL=1;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;ENABLE_MOZILLA;%(PreprocessorDefinitions)
+ true
+ MultiThreadedDebug
+ true
+ false
+ true
+ true
+
+
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_o.pdb
+ Level3
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ _DEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+ MaxSpeed
+ OnlyExplicitInline
+ true
+ Speed
+ true
+ ..\..\include\private;..\..\include\public;..\..\include\private\include;..\..\include\private\sdk\include;..\..\include\private\include\commandhandler;..\..\include\private\include\content;..\..\include\private\include\docshell;..\..\include\private\include\dom;..\..\include\private\include\embed_base;..\..\include\private\include\gfx;..\..\include\private\include\layout;..\..\include\private\include\locale;..\..\include\private\include\necko;..\..\include\private\include\nkcache;..\..\include\private\include\pref;..\..\include\private\include\profdirserviceprovider;..\..\include\private\include\string;..\..\include\private\include\uriloader;..\..\include\private\include\view;..\..\include\private\include\widget;..\..\include\private\include\xpcom;..\..\include\private\include\xulapp;..\..\include\private\include\xuldoc;..\..\..\..\..\..\external\3rd\library\stlport453\stlport;%(AdditionalIncludeDirectories)
+ WIN32;NDEBUG;_MBCS;DEBUG_LEVEL=0;_CRT_SECURE_NO_DEPRECATE=1;_USE_32BIT_TIME_T=1;_LIB;ENABLE_MOZILLA;%(PreprocessorDefinitions)
+ true
+ MultiThreaded
+ true
+ false
+ true
+ true
+
+
+ $(OutDir)$(ProjectName).pch
+ $(OutDir)
+ $(OutDir)
+ $(OutDir)$(ProjectName)_r.pdb
+ Level3
+ false
+ true
+ ProgramDatabase
+ Default
+ true
+
+
+ NDEBUG;%(PreprocessorDefinitions)
+ 0x0409
+
+
+ $(OutDir)$(ProjectName).lib
+ true
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/external/3rd/library/libMozilla/build/win32/settings.rsp b/src/external/3rd/library/libMozilla/build/win32/settings.rsp
new file mode 100644
index 000000000..993bfac72
--- /dev/null
+++ b/src/external/3rd/library/libMozilla/build/win32/settings.rsp
@@ -0,0 +1,3 @@
+library
+debugInline
+noPch
diff --git a/src/external/3rd/library/libMozilla/include/private/lib/debug/nspr4.lib b/src/external/3rd/library/libMozilla/include/private/lib/debug/nspr4.lib
new file mode 100644
index 000000000..98be67eb1
Binary files /dev/null and b/src/external/3rd/library/libMozilla/include/private/lib/debug/nspr4.lib differ
diff --git a/src/external/3rd/library/libMozilla/include/private/lib/debug/plc4.lib b/src/external/3rd/library/libMozilla/include/private/lib/debug/plc4.lib
new file mode 100644
index 000000000..b2f586260
Binary files /dev/null and b/src/external/3rd/library/libMozilla/include/private/lib/debug/plc4.lib differ
diff --git a/src/external/3rd/library/libMozilla/include/private/lib/debug/profdirserviceprovider_s.lib b/src/external/3rd/library/libMozilla/include/private/lib/debug/profdirserviceprovider_s.lib
new file mode 100644
index 000000000..a98e816f3
Binary files /dev/null and b/src/external/3rd/library/libMozilla/include/private/lib/debug/profdirserviceprovider_s.lib differ
diff --git a/src/external/3rd/library/libMozilla/include/private/lib/debug/xpcom.lib b/src/external/3rd/library/libMozilla/include/private/lib/debug/xpcom.lib
new file mode 100644
index 000000000..510257768
Binary files /dev/null and b/src/external/3rd/library/libMozilla/include/private/lib/debug/xpcom.lib differ
diff --git a/src/external/3rd/library/libMozilla/include/private/lib/debug/xul.lib b/src/external/3rd/library/libMozilla/include/private/lib/debug/xul.lib
new file mode 100644
index 000000000..435f35c9c
Binary files /dev/null and b/src/external/3rd/library/libMozilla/include/private/lib/debug/xul.lib differ
diff --git a/src/external/3rd/library/libMozilla/include/private/lib/release/nspr4.lib b/src/external/3rd/library/libMozilla/include/private/lib/release/nspr4.lib
new file mode 100644
index 000000000..267139092
Binary files /dev/null and b/src/external/3rd/library/libMozilla/include/private/lib/release/nspr4.lib differ
diff --git a/src/external/3rd/library/libMozilla/include/private/lib/release/plc4.lib b/src/external/3rd/library/libMozilla/include/private/lib/release/plc4.lib
new file mode 100644
index 000000000..8b1718f08
Binary files /dev/null and b/src/external/3rd/library/libMozilla/include/private/lib/release/plc4.lib differ
diff --git a/src/external/3rd/library/libMozilla/include/private/lib/release/profdirserviceprovider_s.lib b/src/external/3rd/library/libMozilla/include/private/lib/release/profdirserviceprovider_s.lib
new file mode 100644
index 000000000..7ca611242
Binary files /dev/null and b/src/external/3rd/library/libMozilla/include/private/lib/release/profdirserviceprovider_s.lib differ
diff --git a/src/external/3rd/library/libMozilla/include/private/lib/release/xpcom.lib b/src/external/3rd/library/libMozilla/include/private/lib/release/xpcom.lib
new file mode 100644
index 000000000..4135c0c10
Binary files /dev/null and b/src/external/3rd/library/libMozilla/include/private/lib/release/xpcom.lib differ
diff --git a/src/external/3rd/library/libMozilla/include/private/lib/release/xul.lib b/src/external/3rd/library/libMozilla/include/private/lib/release/xul.lib
new file mode 100644
index 000000000..df24d94eb
Binary files /dev/null and b/src/external/3rd/library/libMozilla/include/private/lib/release/xul.lib differ
diff --git a/src/external/3rd/library/libjpeg/lib/libjpeg.lib b/src/external/3rd/library/libjpeg/lib/libjpeg.lib
new file mode 100644
index 000000000..32ea77cb4
Binary files /dev/null and b/src/external/3rd/library/libjpeg/lib/libjpeg.lib differ
diff --git a/src/external/3rd/library/libxml/.libs/libxml2.a b/src/external/3rd/library/libxml/.libs/libxml2.a
new file mode 100644
index 000000000..9b7ba047f
Binary files /dev/null and b/src/external/3rd/library/libxml/.libs/libxml2.a differ
diff --git a/src/external/3rd/library/libxml/.libs/libxml2.la b/src/external/3rd/library/libxml/.libs/libxml2.la
new file mode 100644
index 000000000..52e2acfd4
--- /dev/null
+++ b/src/external/3rd/library/libxml/.libs/libxml2.la
@@ -0,0 +1,32 @@
+# libxml2.la - a libtool library file
+# Generated by ltmain.sh - GNU libtool 1.4.2 (1.922.2.54 2001/09/11 03:33:37)
+#
+# Please DO NOT delete this file!
+# It is necessary for linking the library.
+
+# The name that we can dlopen(3).
+dlname='libxml2.so.2'
+
+# Names of this library.
+library_names='libxml2.so.2.4.28 libxml2.so.2 libxml2.so'
+
+# The name of the static archive.
+old_library='libxml2.a'
+
+# Libraries that this one depends upon.
+dependency_libs=' -lz -lm'
+
+# Version information for libxml2.
+current=6
+age=4
+revision=28
+
+# Is this an already installed library?
+installed=no
+
+# Files to dlopen/dlpreopen
+dlopen=''
+dlpreopen=''
+
+# Directory that this library needs to be installed in:
+libdir='/usr/local/lib'
diff --git a/src/external/3rd/library/libxml/.libs/libxml2.lai b/src/external/3rd/library/libxml/.libs/libxml2.lai
new file mode 100644
index 000000000..ea62498bf
--- /dev/null
+++ b/src/external/3rd/library/libxml/.libs/libxml2.lai
@@ -0,0 +1,32 @@
+# libxml2.la - a libtool library file
+# Generated by ltmain.sh - GNU libtool 1.4.2 (1.922.2.54 2001/09/11 03:33:37)
+#
+# Please DO NOT delete this file!
+# It is necessary for linking the library.
+
+# The name that we can dlopen(3).
+dlname='libxml2.so.2'
+
+# Names of this library.
+library_names='libxml2.so.2.4.28 libxml2.so.2 libxml2.so'
+
+# The name of the static archive.
+old_library='libxml2.a'
+
+# Libraries that this one depends upon.
+dependency_libs=' -lz -lm'
+
+# Version information for libxml2.
+current=6
+age=4
+revision=28
+
+# Is this an already installed library?
+installed=yes
+
+# Files to dlopen/dlpreopen
+dlopen=''
+dlpreopen=''
+
+# Directory that this library needs to be installed in:
+libdir='/usr/local/lib'
diff --git a/src/external/3rd/library/libxml/.libs/libxml2.so b/src/external/3rd/library/libxml/.libs/libxml2.so
new file mode 100644
index 000000000..4b686fb25
Binary files /dev/null and b/src/external/3rd/library/libxml/.libs/libxml2.so differ
diff --git a/src/external/3rd/library/libxml/.libs/libxml2.so.2 b/src/external/3rd/library/libxml/.libs/libxml2.so.2
new file mode 100644
index 000000000..4b686fb25
Binary files /dev/null and b/src/external/3rd/library/libxml/.libs/libxml2.so.2 differ
diff --git a/src/external/3rd/library/libxml/.libs/libxml2.so.2.4.28 b/src/external/3rd/library/libxml/.libs/libxml2.so.2.4.28
new file mode 100644
index 000000000..4b686fb25
Binary files /dev/null and b/src/external/3rd/library/libxml/.libs/libxml2.so.2.4.28 differ
diff --git a/src/external/3rd/library/libxml/DOCBparser.lo b/src/external/3rd/library/libxml/DOCBparser.lo
new file mode 100644
index 000000000..01a969d9f
Binary files /dev/null and b/src/external/3rd/library/libxml/DOCBparser.lo differ
diff --git a/src/external/3rd/library/libxml/HTMLparser.lo b/src/external/3rd/library/libxml/HTMLparser.lo
new file mode 100644
index 000000000..e2b39d7f9
Binary files /dev/null and b/src/external/3rd/library/libxml/HTMLparser.lo differ
diff --git a/src/external/3rd/library/libxml/HTMLtree.lo b/src/external/3rd/library/libxml/HTMLtree.lo
new file mode 100644
index 000000000..bbc1f67b5
Binary files /dev/null and b/src/external/3rd/library/libxml/HTMLtree.lo differ
diff --git a/src/external/3rd/library/libxml/Makefile b/src/external/3rd/library/libxml/Makefile
new file mode 100644
index 000000000..b857a2f3e
--- /dev/null
+++ b/src/external/3rd/library/libxml/Makefile
@@ -0,0 +1,2031 @@
+# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
+
+# Copyright (C) 1994, 1995-8, 1999, 2001 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.
+
+# AUTOMAKE_ OPTIONS=no-dependencies
+
+
+SHELL = /bin/sh
+
+srcdir = .
+top_srcdir = .
+
+prefix = /usr/local
+exec_prefix = ${prefix}
+
+bindir = ${exec_prefix}/bin
+sbindir = ${exec_prefix}/sbin
+libexecdir = ${exec_prefix}/libexec
+datadir = ${prefix}/share
+sysconfdir = ${prefix}/etc
+sharedstatedir = ${prefix}/com
+localstatedir = ${prefix}/var
+libdir = ${exec_prefix}/lib
+infodir = ${prefix}/info
+mandir = ${prefix}/man
+includedir = ${prefix}/include
+oldincludedir = /usr/include
+
+DESTDIR =
+
+pkgdatadir = $(datadir)/libxml2
+pkglibdir = $(libdir)/libxml2
+pkgincludedir = $(includedir)/libxml2
+
+top_builddir = .
+
+ACLOCAL = aclocal-1.4
+AUTOCONF = autoconf
+AUTOMAKE = automake-1.4
+AUTOHEADER = autoheader
+
+INSTALL = /usr/bin/install -c
+INSTALL_PROGRAM = ${INSTALL} $(AM_INSTALL_PROGRAM_FLAGS)
+INSTALL_DATA = ${INSTALL} -m 644
+INSTALL_SCRIPT = ${INSTALL}
+transform = s,x,x,
+
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias =
+host_triplet = i686-pc-linux-gnu
+AS = @AS@
+C14N_OBJ = c14n.c
+CATALOG_OBJ = catalog.o
+CC = gcc
+CFLAGS = -g -O2 -Wall
+CPP = gcc -E
+DEBUG_OBJ = debugXML.o
+DLLTOOL = @DLLTOOL@
+DOCB_OBJ = DOCBparser.o
+ECHO = echo
+EXEEXT =
+FTP_OBJ = nanoftp.o
+HAVE_ISINF =
+HAVE_ISNAN =
+HTML_DIR = $(prefix)/doc
+HTML_OBJ = HTMLparser.o HTMLtree.o
+HTTP_OBJ = nanohttp.o
+ICONV_LIBS =
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
+LIBXML_MAJOR_VERSION = 2
+LIBXML_MICRO_VERSION = 28
+LIBXML_MINOR_VERSION = 4
+LIBXML_VERSION = 2.4.28
+LIBXML_VERSION_INFO = 6:28:4
+LIBXML_VERSION_NUMBER = 20428
+LN_S = ln -s
+MAINT = #
+MAKEINFO = makeinfo
+MV = /bin/mv
+M_LIBS = -lm
+OBJDUMP = @OBJDUMP@
+OBJEXT = o
+PACKAGE = libxml2
+PYTHON = /usr/bin/python
+PYTHON_INCLUDES = /usr/include/python1.5
+PYTHON_SITE_PACKAGES = /usr/lib/python1.5/site-packages
+PYTHON_SUBDIR = python
+PYTHON_VERSION = 1.5
+RANLIB = ranlib
+RDL_LIBS =
+RM = /bin/rm
+STRIP = strip
+TAR = /bin/tar
+TEST_REGEXPS = Regexptests Automatatests
+TEST_SCHEMAS =
+TEST_THREADS =
+THREAD_CFLAGS =
+THREAD_LIBS =
+U =
+VERSION = 2.4.28
+WITH_C14N = 1
+WITH_CATALOG = 1
+WITH_DEBUG = 1
+WITH_DOCB = 1
+WITH_FTP = 1
+WITH_HTML = 1
+WITH_HTTP = 1
+WITH_ICONV = 1
+WITH_MEM_DEBUG = 0
+WITH_REGEXPS = 1
+WITH_SCHEMAS = 0
+WITH_THREADS = 0
+WITH_TRIO = 0
+WITH_XINCLUDE = 1
+WITH_XPATH = 1
+WITH_XPTR = 1
+XINCLUDE_OBJ = xinclude.o
+XML_CFLAGS =
+XML_INCLUDEDIR = -I${includedir}/libxml2
+XML_LIBDIR = -L${libdir}
+XML_LIBS = -lxml2 -lz -lm
+XPATH_OBJ = xpath.o
+XPTR_OBJ = xpointer.o
+Z_CFLAGS =
+Z_LIBS = -lz
+
+SUBDIRS = include . doc example python
+
+DIST_SUBDIRS = include . doc example python
+
+INCLUDES = -I$(top_builddir)/include -I./include
+
+noinst_PROGRAMS = testSchemas testSAX testHTML testXPath testURI testDocbook \
+ testThreads testC14N testAutomata testRegexp
+
+
+bin_PROGRAMS = xmllint xmlcatalog
+
+bin_SCRIPTS = xml2-config
+
+lib_LTLIBRARIES = libxml2.la
+libxml2_la_LIBADD = -lz $(ICONV_LIBS) -lm
+
+libxml2_la_LDFLAGS = -version-info 6:28:4
+#libxml2_la_SOURCES = #SAX.c entities.c encoding.c error.c parserInternals.c \
+# parser.c tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c \
+# valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c \
+# xpointer.c xinclude.c nanohttp.c nanoftp.c DOCBparser.c \
+# catalog.c globals.c threads.c c14n.c \
+# xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c \
+# triostr.c trio.c
+libxml2_la_SOURCES = SAX.c entities.c encoding.c error.c parserInternals.c \
+ parser.c tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c \
+ valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c \
+ xpointer.c xinclude.c nanohttp.c nanoftp.c DOCBparser.c \
+ catalog.c globals.c threads.c c14n.c \
+ xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c
+
+DEPS = $(top_builddir)/libxml2.la
+LDADDS = $(top_builddir)/libxml2.la -lz $(ICONV_LIBS) -lm
+
+man_MANS = xml2-config.1 libxml.3
+
+m4datadir = $(datadir)/aclocal
+m4data_DATA = libxml.m4
+
+xmllint_SOURCES = xmllint.c
+xmllint_LDFLAGS =
+xmllint_DEPENDENCIES = $(DEPS)
+xmllint_LDADD = $(LDADDS)
+
+testSAX_SOURCES = testSAX.c
+testSAX_LDFLAGS =
+testSAX_DEPENDENCIES = $(DEPS)
+testSAX_LDADD = $(LDADDS)
+
+testHTML_SOURCES = testHTML.c
+testHTML_LDFLAGS =
+testHTML_DEPENDENCIES = $(DEPS)
+testHTML_LDADD = $(LDADDS)
+
+testDocbook_SOURCES = testDocbook.c
+testDocbook_LDFLAGS =
+testDocbook_DEPENDENCIES = $(DEPS)
+testDocbook_LDADD = $(LDADDS)
+
+xmlcatalog_SOURCES = xmlcatalog.c
+xmlcatalog_LDFLAGS =
+xmlcatalog_DEPENDENCIES = $(DEPS)
+xmlcatalog_LDADD = $(LDADDS)
+
+testXPath_SOURCES = testXPath.c
+testXPath_LDFLAGS =
+testXPath_DEPENDENCIES = $(DEPS)
+testXPath_LDADD = $(LDADDS)
+
+testC14N_SOURCES = testC14N.c
+testC14N_LDFLAGS =
+testC14N_DEPENDENCIES = $(DEPS)
+testC14N_LDADD = $(LDADDS)
+
+testThreads_SOURCES = testThreads.c
+testThreads_LDFLAGS =
+testThreads_DEPENDENCIES = $(DEPS)
+testThreads_LDADD = $(LDADDS)
+
+testURI_SOURCES = testURI.c
+testURI_LDFLAGS =
+testURI_DEPENDENCIES = $(DEPS)
+testURI_LDADD = $(LDADDS)
+
+testRegexp_SOURCES = testRegexp.c
+testRegexp_LDFLAGS =
+testRegexp_DEPENDENCIES = $(DEPS)
+testRegexp_LDADD = $(LDADDS)
+
+testAutomata_SOURCES = testAutomata.c
+testAutomata_LDFLAGS =
+testAutomata_DEPENDENCIES = $(DEPS)
+testAutomata_LDADD = $(LDADDS)
+
+testSchemas_SOURCES = testSchemas.c
+testSchemas_LDFLAGS =
+testSchemas_DEPENDENCIES = $(DEPS)
+testSchemas_LDADD = $(LDADDS)
+
+CLEANFILES = xml2Conf.sh
+
+confexecdir = $(libdir)
+confexec_DATA = xml2Conf.sh
+EXTRA_DIST = xml2-config.in xml2Conf.sh.in libxml.spec.in libxml.spec \
+ libxml.m4 Copyright check-xml-test-suite.py \
+ example/Makefile.am example/gjobread.c example/gjobs.xml \
+ $(man_MANS) libxml-2.0.pc.in \
+ trionan.c trionan.h triostr.c triostr.h trio.c trio.h \
+ triop.h triodef.h libxml.h \
+ testThreadsWin32.c genUnicode.py TODO_SCHEMAS
+
+
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = libxml-2.0.pc
+
+#
+# Instll the tests program sources as examples
+#
+BASE_DIR = $(datadir)/doc
+DOC_MODULE = libxml2-$(VERSION)
+EXAMPLES_DIR = $(BASE_DIR)/$(DOC_MODULE)/examples
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_HEADER = config.h
+CONFIG_CLEAN_FILES = libxml.spec xml2-config libxml-2.0.pc xml2Conf.sh
+LTLIBRARIES = $(lib_LTLIBRARIES)
+
+
+DEFS = -DHAVE_CONFIG_H -I. -I$(srcdir) -I.
+CPPFLAGS =
+LDFLAGS =
+LIBS =
+libxml2_la_DEPENDENCIES =
+libxml2_la_OBJECTS = SAX.lo entities.lo \
+encoding.lo error.lo parserInternals.lo \
+parser.lo tree.lo hash.lo list.lo xmlIO.lo \
+xmlmemory.lo uri.lo valid.lo xlink.lo \
+HTMLparser.lo HTMLtree.lo debugXML.lo xpath.lo \
+xpointer.lo xinclude.lo nanohttp.lo nanoftp.lo \
+DOCBparser.lo catalog.lo globals.lo threads.lo \
+c14n.lo xmlregexp.lo xmlschemas.lo \
+xmlschemastypes.lo xmlunicode.lo
+#libxml2_la_OBJECTS = SAX.lo entities.lo \
+#encoding.lo error.lo parserInternals.lo \
+#parser.lo tree.lo hash.lo list.lo xmlIO.lo \
+#xmlmemory.lo uri.lo valid.lo xlink.lo \
+#HTMLparser.lo HTMLtree.lo debugXML.lo xpath.lo \
+#xpointer.lo xinclude.lo nanohttp.lo nanoftp.lo \
+#DOCBparser.lo catalog.lo globals.lo threads.lo \
+#c14n.lo xmlregexp.lo xmlschemas.lo \
+#xmlschemastypes.lo xmlunicode.lo triostr.lo \
+#trio.lo
+bin_PROGRAMS = xmllint$(EXEEXT) xmlcatalog$(EXEEXT)
+noinst_PROGRAMS = testSchemas$(EXEEXT) testSAX$(EXEEXT) \
+testHTML$(EXEEXT) testXPath$(EXEEXT) testURI$(EXEEXT) \
+testDocbook$(EXEEXT) testThreads$(EXEEXT) testC14N$(EXEEXT) \
+testAutomata$(EXEEXT) testRegexp$(EXEEXT)
+PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
+
+xmllint_OBJECTS = xmllint.$(OBJEXT)
+xmlcatalog_OBJECTS = xmlcatalog.$(OBJEXT)
+testSchemas_OBJECTS = testSchemas.$(OBJEXT)
+testSAX_OBJECTS = testSAX.$(OBJEXT)
+testHTML_OBJECTS = testHTML.$(OBJEXT)
+testXPath_OBJECTS = testXPath.$(OBJEXT)
+testURI_OBJECTS = testURI.$(OBJEXT)
+testDocbook_OBJECTS = testDocbook.$(OBJEXT)
+testThreads_OBJECTS = testThreads.$(OBJEXT)
+testC14N_OBJECTS = testC14N.$(OBJEXT)
+testAutomata_OBJECTS = testAutomata.$(OBJEXT)
+testRegexp_OBJECTS = testRegexp.$(OBJEXT)
+SCRIPTS = $(bin_SCRIPTS)
+
+COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+CCLD = $(CC)
+LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
+man1dir = $(mandir)/man1
+man3dir = $(mandir)/man3
+MANS = $(man_MANS)
+
+NROFF = nroff
+DATA = $(confexec_DATA) $(m4data_DATA) $(pkgconfig_DATA)
+
+DIST_COMMON = README ./stamp-h.in AUTHORS COPYING ChangeLog INSTALL \
+Makefile.am Makefile.in NEWS TODO acconfig.h acinclude.m4 aclocal.m4 \
+config.guess config.h.in config.sub configure configure.in install-sh \
+libxml-2.0.pc.in libxml.spec.in ltconfig ltmain.sh missing \
+mkinstalldirs xml2-config.in xml2Conf.sh.in
+
+
+DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
+
+GZIP_ENV = --best
+SOURCES = $(libxml2_la_SOURCES) $(xmllint_SOURCES) $(xmlcatalog_SOURCES) $(testSchemas_SOURCES) $(testSAX_SOURCES) $(testHTML_SOURCES) $(testXPath_SOURCES) $(testURI_SOURCES) $(testDocbook_SOURCES) $(testThreads_SOURCES) $(testC14N_SOURCES) $(testAutomata_SOURCES) $(testRegexp_SOURCES)
+OBJECTS = $(libxml2_la_OBJECTS) $(xmllint_OBJECTS) $(xmlcatalog_OBJECTS) $(testSchemas_OBJECTS) $(testSAX_OBJECTS) $(testHTML_OBJECTS) $(testXPath_OBJECTS) $(testURI_OBJECTS) $(testDocbook_OBJECTS) $(testThreads_OBJECTS) $(testC14N_OBJECTS) $(testAutomata_OBJECTS) $(testRegexp_OBJECTS)
+
+all: all-redirect
+.SUFFIXES:
+.SUFFIXES: .S .c .lo .o .obj .s
+$(srcdir)/Makefile.in: # Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps Makefile
+
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) \
+ && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+$(ACLOCAL_M4): # configure.in acinclude.m4
+ cd $(srcdir) && $(ACLOCAL)
+
+config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+ $(SHELL) ./config.status --recheck
+$(srcdir)/configure: #$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
+ cd $(srcdir) && $(AUTOCONF)
+
+config.h: stamp-h
+ @if test ! -f $@; then \
+ rm -f stamp-h; \
+ $(MAKE) stamp-h; \
+ else :; fi
+stamp-h: $(srcdir)/config.h.in $(top_builddir)/config.status
+ cd $(top_builddir) \
+ && CONFIG_FILES= CONFIG_HEADERS=config.h \
+ $(SHELL) ./config.status
+ @echo timestamp > stamp-h 2> /dev/null
+$(srcdir)/config.h.in: #$(srcdir)/stamp-h.in
+ @if test ! -f $@; then \
+ rm -f $(srcdir)/stamp-h.in; \
+ $(MAKE) $(srcdir)/stamp-h.in; \
+ else :; fi
+$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
+ cd $(top_srcdir) && $(AUTOHEADER)
+ @echo timestamp > $(srcdir)/stamp-h.in 2> /dev/null
+
+mostlyclean-hdr:
+
+clean-hdr:
+
+distclean-hdr:
+ -rm -f config.h
+
+maintainer-clean-hdr:
+libxml.spec: $(top_builddir)/config.status libxml.spec.in
+ cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
+xml2-config: $(top_builddir)/config.status xml2-config.in
+ cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
+libxml-2.0.pc: $(top_builddir)/config.status libxml-2.0.pc.in
+ cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
+xml2Conf.sh: $(top_builddir)/config.status xml2Conf.sh.in
+ cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+mostlyclean-libLTLIBRARIES:
+
+clean-libLTLIBRARIES:
+ -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
+
+distclean-libLTLIBRARIES:
+
+maintainer-clean-libLTLIBRARIES:
+
+install-libLTLIBRARIES: $(lib_LTLIBRARIES)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(libdir)
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+ if test -f $$p; then \
+ echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(libdir)/$$p"; \
+ $(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(libdir)/$$p; \
+ else :; fi; \
+ done
+
+uninstall-libLTLIBRARIES:
+ @$(NORMAL_UNINSTALL)
+ list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+ $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
+ done
+
+.c.o:
+ $(COMPILE) -c $<
+
+# FIXME: We should only use cygpath when building on Windows,
+# and only if it is available.
+.c.obj:
+ $(COMPILE) -c `cygpath -w $<`
+
+.s.o:
+ $(COMPILE) -c $<
+
+.S.o:
+ $(COMPILE) -c $<
+
+mostlyclean-compile:
+ -rm -f *.o core *.core
+ -rm -f *.$(OBJEXT)
+
+clean-compile:
+
+distclean-compile:
+ -rm -f *.tab.c
+
+maintainer-clean-compile:
+
+.c.lo:
+ $(LIBTOOL) --mode=compile $(COMPILE) -c $<
+
+.s.lo:
+ $(LIBTOOL) --mode=compile $(COMPILE) -c $<
+
+.S.lo:
+ $(LIBTOOL) --mode=compile $(COMPILE) -c $<
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+distclean-libtool:
+
+maintainer-clean-libtool:
+
+libxml2.la: $(libxml2_la_OBJECTS) $(libxml2_la_DEPENDENCIES)
+ $(LINK) -rpath $(libdir) $(libxml2_la_LDFLAGS) $(libxml2_la_OBJECTS) $(libxml2_la_LIBADD) $(LIBS)
+
+mostlyclean-binPROGRAMS:
+
+clean-binPROGRAMS:
+ -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
+
+distclean-binPROGRAMS:
+
+maintainer-clean-binPROGRAMS:
+
+install-binPROGRAMS: $(bin_PROGRAMS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
+ @list='$(bin_PROGRAMS)'; for p in $$list; do \
+ if test -f $$p; then \
+ echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
+ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
+ else :; fi; \
+ done
+
+uninstall-binPROGRAMS:
+ @$(NORMAL_UNINSTALL)
+ list='$(bin_PROGRAMS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
+ done
+
+mostlyclean-noinstPROGRAMS:
+
+clean-noinstPROGRAMS:
+ -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
+
+distclean-noinstPROGRAMS:
+
+maintainer-clean-noinstPROGRAMS:
+
+xmllint$(EXEEXT): $(xmllint_OBJECTS) $(xmllint_DEPENDENCIES)
+ @rm -f xmllint$(EXEEXT)
+ $(LINK) $(xmllint_LDFLAGS) $(xmllint_OBJECTS) $(xmllint_LDADD) $(LIBS)
+
+xmlcatalog$(EXEEXT): $(xmlcatalog_OBJECTS) $(xmlcatalog_DEPENDENCIES)
+ @rm -f xmlcatalog$(EXEEXT)
+ $(LINK) $(xmlcatalog_LDFLAGS) $(xmlcatalog_OBJECTS) $(xmlcatalog_LDADD) $(LIBS)
+
+testSchemas$(EXEEXT): $(testSchemas_OBJECTS) $(testSchemas_DEPENDENCIES)
+ @rm -f testSchemas$(EXEEXT)
+ $(LINK) $(testSchemas_LDFLAGS) $(testSchemas_OBJECTS) $(testSchemas_LDADD) $(LIBS)
+
+testSAX$(EXEEXT): $(testSAX_OBJECTS) $(testSAX_DEPENDENCIES)
+ @rm -f testSAX$(EXEEXT)
+ $(LINK) $(testSAX_LDFLAGS) $(testSAX_OBJECTS) $(testSAX_LDADD) $(LIBS)
+
+testHTML$(EXEEXT): $(testHTML_OBJECTS) $(testHTML_DEPENDENCIES)
+ @rm -f testHTML$(EXEEXT)
+ $(LINK) $(testHTML_LDFLAGS) $(testHTML_OBJECTS) $(testHTML_LDADD) $(LIBS)
+
+testXPath$(EXEEXT): $(testXPath_OBJECTS) $(testXPath_DEPENDENCIES)
+ @rm -f testXPath$(EXEEXT)
+ $(LINK) $(testXPath_LDFLAGS) $(testXPath_OBJECTS) $(testXPath_LDADD) $(LIBS)
+
+testURI$(EXEEXT): $(testURI_OBJECTS) $(testURI_DEPENDENCIES)
+ @rm -f testURI$(EXEEXT)
+ $(LINK) $(testURI_LDFLAGS) $(testURI_OBJECTS) $(testURI_LDADD) $(LIBS)
+
+testDocbook$(EXEEXT): $(testDocbook_OBJECTS) $(testDocbook_DEPENDENCIES)
+ @rm -f testDocbook$(EXEEXT)
+ $(LINK) $(testDocbook_LDFLAGS) $(testDocbook_OBJECTS) $(testDocbook_LDADD) $(LIBS)
+
+testThreads$(EXEEXT): $(testThreads_OBJECTS) $(testThreads_DEPENDENCIES)
+ @rm -f testThreads$(EXEEXT)
+ $(LINK) $(testThreads_LDFLAGS) $(testThreads_OBJECTS) $(testThreads_LDADD) $(LIBS)
+
+testC14N$(EXEEXT): $(testC14N_OBJECTS) $(testC14N_DEPENDENCIES)
+ @rm -f testC14N$(EXEEXT)
+ $(LINK) $(testC14N_LDFLAGS) $(testC14N_OBJECTS) $(testC14N_LDADD) $(LIBS)
+
+testAutomata$(EXEEXT): $(testAutomata_OBJECTS) $(testAutomata_DEPENDENCIES)
+ @rm -f testAutomata$(EXEEXT)
+ $(LINK) $(testAutomata_LDFLAGS) $(testAutomata_OBJECTS) $(testAutomata_LDADD) $(LIBS)
+
+testRegexp$(EXEEXT): $(testRegexp_OBJECTS) $(testRegexp_DEPENDENCIES)
+ @rm -f testRegexp$(EXEEXT)
+ $(LINK) $(testRegexp_LDFLAGS) $(testRegexp_OBJECTS) $(testRegexp_LDADD) $(LIBS)
+
+install-binSCRIPTS: $(bin_SCRIPTS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
+ @list='$(bin_SCRIPTS)'; for p in $$list; do \
+ if test -f $$p; then \
+ echo " $(INSTALL_SCRIPT) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`"; \
+ $(INSTALL_SCRIPT) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
+ else if test -f $(srcdir)/$$p; then \
+ echo " $(INSTALL_SCRIPT) $(srcdir)/$$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`"; \
+ $(INSTALL_SCRIPT) $(srcdir)/$$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
+ else :; fi; fi; \
+ done
+
+uninstall-binSCRIPTS:
+ @$(NORMAL_UNINSTALL)
+ list='$(bin_SCRIPTS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
+ done
+
+install-man1:
+ $(mkinstalldirs) $(DESTDIR)$(man1dir)
+ @list='$(man1_MANS)'; \
+ l2='$(man_MANS)'; for i in $$l2; do \
+ case "$$i" in \
+ *.1*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
+ else file=$$i; fi; \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \
+ $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \
+ done
+
+uninstall-man1:
+ @list='$(man1_MANS)'; \
+ l2='$(man_MANS)'; for i in $$l2; do \
+ case "$$i" in \
+ *.1*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \
+ rm -f $(DESTDIR)$(man1dir)/$$inst; \
+ done
+
+install-man3:
+ $(mkinstalldirs) $(DESTDIR)$(man3dir)
+ @list='$(man3_MANS)'; \
+ l2='$(man_MANS)'; for i in $$l2; do \
+ case "$$i" in \
+ *.3*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
+ else file=$$i; fi; \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man3dir)/$$inst"; \
+ $(INSTALL_DATA) $$file $(DESTDIR)$(man3dir)/$$inst; \
+ done
+
+uninstall-man3:
+ @list='$(man3_MANS)'; \
+ l2='$(man_MANS)'; for i in $$l2; do \
+ case "$$i" in \
+ *.3*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " rm -f $(DESTDIR)$(man3dir)/$$inst"; \
+ rm -f $(DESTDIR)$(man3dir)/$$inst; \
+ done
+install-man: $(MANS)
+ @$(NORMAL_INSTALL)
+ $(MAKE) $(AM_MAKEFLAGS) install-man1 install-man3
+uninstall-man:
+ @$(NORMAL_UNINSTALL)
+ $(MAKE) $(AM_MAKEFLAGS) uninstall-man1 uninstall-man3
+
+install-confexecDATA: $(confexec_DATA)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(confexecdir)
+ @list='$(confexec_DATA)'; for p in $$list; do \
+ if test -f $(srcdir)/$$p; then \
+ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(confexecdir)/$$p"; \
+ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(confexecdir)/$$p; \
+ else if test -f $$p; then \
+ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(confexecdir)/$$p"; \
+ $(INSTALL_DATA) $$p $(DESTDIR)$(confexecdir)/$$p; \
+ fi; fi; \
+ done
+
+uninstall-confexecDATA:
+ @$(NORMAL_UNINSTALL)
+ list='$(confexec_DATA)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(confexecdir)/$$p; \
+ done
+
+install-m4dataDATA: $(m4data_DATA)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(m4datadir)
+ @list='$(m4data_DATA)'; for p in $$list; do \
+ if test -f $(srcdir)/$$p; then \
+ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(m4datadir)/$$p"; \
+ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(m4datadir)/$$p; \
+ else if test -f $$p; then \
+ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(m4datadir)/$$p"; \
+ $(INSTALL_DATA) $$p $(DESTDIR)$(m4datadir)/$$p; \
+ fi; fi; \
+ done
+
+uninstall-m4dataDATA:
+ @$(NORMAL_UNINSTALL)
+ list='$(m4data_DATA)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(m4datadir)/$$p; \
+ done
+
+install-pkgconfigDATA: $(pkgconfig_DATA)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(pkgconfigdir)
+ @list='$(pkgconfig_DATA)'; for p in $$list; do \
+ if test -f $(srcdir)/$$p; then \
+ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgconfigdir)/$$p"; \
+ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgconfigdir)/$$p; \
+ else if test -f $$p; then \
+ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgconfigdir)/$$p"; \
+ $(INSTALL_DATA) $$p $(DESTDIR)$(pkgconfigdir)/$$p; \
+ fi; fi; \
+ done
+
+uninstall-pkgconfigDATA:
+ @$(NORMAL_UNINSTALL)
+ list='$(pkgconfig_DATA)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(pkgconfigdir)/$$p; \
+ 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.
+
+
+
+all-recursive install-data-recursive install-exec-recursive \
+installdirs-recursive install-recursive uninstall-recursive \
+check-recursive installcheck-recursive info-recursive dvi-recursive:
+ @set fnord $(MAKEFLAGS); amf=$$2; \
+ 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) \
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+ 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:
+ @set fnord $(MAKEFLAGS); amf=$$2; \
+ dot_seen=no; \
+ rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
+ rev="$$subdir $$rev"; \
+ test "$$subdir" != "." || dot_seen=yes; \
+ done; \
+ test "$$dot_seen" = "no" && 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) \
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+ done && test -z "$$fail"
+tags-recursive:
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+ done
+
+tags: TAGS
+
+ID: $(HEADERS) $(SOURCES) $(LISP)
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ here=`pwd` && cd $(srcdir) \
+ && mkid -f$$here/ID $$unique $(LISP)
+
+TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) $(LISP)
+ tags=; \
+ here=`pwd`; \
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ if test "$$subdir" = .; then :; else \
+ test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
+ fi; \
+ done; \
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ test -z "$(ETAGS_ARGS)config.h.in$$unique$(LISP)$$tags" \
+ || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags config.h.in $$unique $(LISP) -o $$here/TAGS)
+
+mostlyclean-tags:
+
+clean-tags:
+
+distclean-tags:
+ -rm -f TAGS ID
+
+maintainer-clean-tags:
+
+distdir = $(PACKAGE)-$(VERSION)
+top_distdir = $(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
+ -rm -rf $(distdir)
+ GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
+ mkdir $(distdir)/=build
+ mkdir $(distdir)/=inst
+ dc_install_base=`cd $(distdir)/=inst && pwd`; \
+ cd $(distdir)/=build \
+ && ../configure --srcdir=.. --prefix=$$dc_install_base \
+ && $(MAKE) $(AM_MAKEFLAGS) \
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
+ && $(MAKE) $(AM_MAKEFLAGS) check \
+ && $(MAKE) $(AM_MAKEFLAGS) install \
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
+ && $(MAKE) $(AM_MAKEFLAGS) dist
+ -rm -rf $(distdir)
+ @banner="$(distdir).tar.gz is ready for distribution"; \
+ dashes=`echo "$$banner" | sed s/./=/g`; \
+ echo "$$dashes"; \
+ echo "$$banner"; \
+ echo "$$dashes"
+dist: distdir
+ -chmod -R a+r $(distdir)
+ GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
+ -rm -rf $(distdir)
+dist-all: distdir
+ -chmod -R a+r $(distdir)
+ GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
+ -rm -rf $(distdir)
+distdir: $(DISTFILES)
+ -rm -rf $(distdir)
+ mkdir $(distdir)
+ -chmod 777 $(distdir)
+ $(mkinstalldirs) $(distdir)/example
+ @for file in $(DISTFILES); do \
+ d=$(srcdir); \
+ if test -d $$d/$$file; then \
+ cp -pr $$d/$$file $(distdir)/$$file; \
+ else \
+ test -f $(distdir)/$$file \
+ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
+ || cp -p $$d/$$file $(distdir)/$$file || :; \
+ fi; \
+ done
+ for subdir in $(DIST_SUBDIRS); do \
+ if test "$$subdir" = .; then :; else \
+ test -d $(distdir)/$$subdir \
+ || mkdir $(distdir)/$$subdir \
+ || exit 1; \
+ chmod 777 $(distdir)/$$subdir; \
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
+ || exit 1; \
+ fi; \
+ done
+ $(MAKE) $(AM_MAKEFLAGS) top_distdir="$(top_distdir)" distdir="$(distdir)" dist-hook
+c14n.lo c14n.o : c14n.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/uri.h \
+ include/libxml/xpathInternals.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/c14n.h
+catalog.lo catalog.o : catalog.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/hash.h include/libxml/uri.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/catalog.h
+debugXML.lo debugXML.o : debugXML.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/debugXML.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/HTMLtree.h \
+ include/libxml/xpathInternals.h
+DOCBparser.lo DOCBparser.o : DOCBparser.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/DOCBparser.h include/libxml/uri.h
+encoding.lo encoding.o : encoding.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/encoding.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/HTMLparser.h
+entities.lo entities.o : entities.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/hash.h
+error.lo error.o : error.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/globals.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h
+globals.lo globals.o : globals.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h
+hash.lo hash.o : hash.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/hash.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/globals.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h
+HTMLparser.lo HTMLparser.o : HTMLparser.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/HTMLtree.h
+HTMLtree.lo HTMLtree.o : HTMLtree.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/HTMLparser.h include/libxml/HTMLtree.h \
+ include/libxml/parserInternals.h include/libxml/uri.h
+list.lo list.o : list.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h
+nanoftp.lo nanoftp.o : nanoftp.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/nanoftp.h
+nanohttp.lo nanohttp.o : nanohttp.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/nanohttp.h
+parser.lo parser.o : parser.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/uri.h include/libxml/catalog.h \
+ include/libxml/xpath.h include/libxml/hash.h
+parserInternals.lo parserInternals.o : parserInternals.c libxml.h \
+ config.h include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/uri.h include/libxml/catalog.h
+regexp.lo regexp.o : regexp.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/tree.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/regexp.h include/libxml/automata.h \
+ include/libxml/unicode.h
+SAX.lo SAX.o : SAX.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/parserInternals.h \
+ include/libxml/HTMLparser.h include/libxml/debugXML.h \
+ include/libxml/xpath.h include/libxml/hash.h \
+ include/libxml/uri.h include/libxml/HTMLtree.h
+schemas.lo schemas.o : schemas.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/hash.h include/libxml/schemas.h \
+ include/libxml/schemasInternals.h include/libxml/regexp.h \
+ include/libxml/schemastypes.h include/libxml/automata.h
+schemastypes.lo schemastypes.o : schemastypes.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/hash.h include/libxml/schemas.h \
+ include/libxml/schemasInternals.h include/libxml/regexp.h \
+ include/libxml/schemastypes.h
+testAutomata.o: testAutomata.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h
+testC14N.o: testC14N.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/xpathInternals.h \
+ include/libxml/c14n.h
+testDocbook.o: testDocbook.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/DOCBparser.h include/libxml/debugXML.h \
+ include/libxml/xpath.h include/libxml/hash.h
+testHTML.o: testHTML.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/HTMLparser.h \
+ include/libxml/HTMLtree.h include/libxml/debugXML.h \
+ include/libxml/xpath.h include/libxml/hash.h
+testRegexp.o: testRegexp.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h
+testSAX.o: testSAX.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/parserInternals.h \
+ include/libxml/HTMLparser.h include/libxml/debugXML.h \
+ include/libxml/xpath.h include/libxml/hash.h
+testSchemas.o: testSchemas.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/globals.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/debugXML.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/xmlschemas.h \
+ include/libxml/xmlschemastypes.h \
+ include/libxml/schemasInternals.h
+testThreads.o: testThreads.c libxml.h config.h \
+ include/libxml/xmlversion.h
+testURI.o: testURI.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/uri.h
+testXPath.o: testXPath.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xpath.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/hash.h include/libxml/debugXML.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/xpathInternals.h include/libxml/xpointer.h
+threads.lo threads.o : threads.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xmlmemory.h
+tree.lo tree.o : tree.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/uri.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/HTMLtree.h include/libxml/hash.h
+unicode.lo unicode.o : unicode.c libxml.h config.h \
+ include/libxml/xmlversion.h unicode.h
+uri.lo uri.o : uri.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/uri.h
+valid.lo valid.o : valid.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/hash.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h
+xinclude.lo xinclude.o : xinclude.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/uri.h include/libxml/xpointer.h \
+ include/libxml/xpath.h include/libxml/hash.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/xinclude.h
+xlink.lo xlink.o : xlink.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h
+xmlcatalog.o: xmlcatalog.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/uri.h \
+ include/libxml/catalog.h
+xmlIO.lo xmlIO.o : xmlIO.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/parserInternals.h \
+ include/libxml/HTMLparser.h include/libxml/uri.h \
+ include/libxml/nanohttp.h include/libxml/nanoftp.h \
+ include/libxml/catalog.h
+xmllint.o: xmllint.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/parserInternals.h \
+ include/libxml/HTMLparser.h include/libxml/HTMLtree.h \
+ include/libxml/xpath.h include/libxml/hash.h \
+ include/libxml/debugXML.h include/libxml/xinclude.h \
+ include/libxml/catalog.h include/libxml/DOCBparser.h
+xmlmemory.lo xmlmemory.o : xmlmemory.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h
+xmlregexp.lo xmlregexp.o : xmlregexp.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/xmlunicode.h
+xmlschemas.lo xmlschemas.o : xmlschemas.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/hash.h include/libxml/uri.h \
+ include/libxml/xmlschemas.h include/libxml/schemasInternals.h \
+ include/libxml/xmlschemastypes.h
+xmlschemastypes.lo xmlschemastypes.o : xmlschemastypes.c libxml.h \
+ config.h include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/hash.h include/libxml/xmlschemas.h \
+ include/libxml/schemasInternals.h \
+ include/libxml/xmlschemastypes.h
+xmlunicode.lo xmlunicode.o : xmlunicode.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlunicode.h
+xpath.lo xpath.o : xpath.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/xpathInternals.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/xpointer.h include/libxml/debugXML.h trionan.c \
+ triodef.h trionan.h
+xpointer.lo xpointer.o : xpointer.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xpointer.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/parserInternals.h \
+ include/libxml/HTMLparser.h include/libxml/uri.h \
+ include/libxml/xpathInternals.h
+
+info-am:
+info: info-recursive
+dvi-am:
+dvi: dvi-recursive
+check-am: all-am
+ $(MAKE) $(AM_MAKEFLAGS) check-local
+check: check-recursive
+installcheck-am:
+installcheck: installcheck-recursive
+all-recursive-am: config.h
+ $(MAKE) $(AM_MAKEFLAGS) all-recursive
+
+install-exec-am: install-libLTLIBRARIES install-binPROGRAMS \
+ install-binSCRIPTS install-confexecDATA
+install-exec: install-exec-recursive
+
+install-data-am: install-man install-m4dataDATA install-pkgconfigDATA \
+ install-data-local
+install-data: install-data-recursive
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+install: install-recursive
+uninstall-am: uninstall-libLTLIBRARIES uninstall-binPROGRAMS \
+ uninstall-binSCRIPTS uninstall-man \
+ uninstall-confexecDATA uninstall-m4dataDATA \
+ uninstall-pkgconfigDATA
+uninstall: uninstall-recursive
+all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(MANS) $(DATA) \
+ config.h
+all-redirect: all-recursive-am
+install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
+installdirs: installdirs-recursive
+installdirs-am:
+ $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) \
+ $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1 \
+ $(DESTDIR)$(mandir)/man3 $(DESTDIR)$(confexecdir) \
+ $(DESTDIR)$(m4datadir) $(DESTDIR)$(pkgconfigdir)
+
+
+mostlyclean-generic:
+
+clean-generic:
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f config.cache config.log stamp-h stamp-h[0-9]*
+
+maintainer-clean-generic:
+mostlyclean-am: mostlyclean-hdr mostlyclean-libLTLIBRARIES \
+ mostlyclean-compile mostlyclean-libtool \
+ mostlyclean-binPROGRAMS mostlyclean-noinstPROGRAMS \
+ mostlyclean-tags mostlyclean-generic
+
+mostlyclean: mostlyclean-recursive
+
+clean-am: clean-hdr clean-libLTLIBRARIES clean-compile clean-libtool \
+ clean-binPROGRAMS clean-noinstPROGRAMS clean-tags \
+ clean-generic mostlyclean-am
+
+clean: clean-recursive
+
+distclean-am: distclean-hdr distclean-libLTLIBRARIES distclean-compile \
+ distclean-libtool distclean-binPROGRAMS \
+ distclean-noinstPROGRAMS distclean-tags \
+ distclean-generic clean-am
+ -rm -f libtool
+
+distclean: distclean-recursive
+ -rm -f config.status
+
+maintainer-clean-am: maintainer-clean-hdr \
+ maintainer-clean-libLTLIBRARIES \
+ maintainer-clean-compile maintainer-clean-libtool \
+ maintainer-clean-binPROGRAMS \
+ maintainer-clean-noinstPROGRAMS maintainer-clean-tags \
+ maintainer-clean-generic distclean-am
+ @echo "This command is intended for maintainers to use;"
+ @echo "it deletes files that may require special tools to rebuild."
+
+maintainer-clean: maintainer-clean-recursive
+ -rm -f config.status
+
+.PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \
+mostlyclean-libLTLIBRARIES distclean-libLTLIBRARIES \
+clean-libLTLIBRARIES maintainer-clean-libLTLIBRARIES \
+uninstall-libLTLIBRARIES install-libLTLIBRARIES mostlyclean-compile \
+distclean-compile clean-compile maintainer-clean-compile \
+mostlyclean-libtool distclean-libtool clean-libtool \
+maintainer-clean-libtool mostlyclean-binPROGRAMS distclean-binPROGRAMS \
+clean-binPROGRAMS maintainer-clean-binPROGRAMS uninstall-binPROGRAMS \
+install-binPROGRAMS mostlyclean-noinstPROGRAMS distclean-noinstPROGRAMS \
+clean-noinstPROGRAMS maintainer-clean-noinstPROGRAMS \
+uninstall-binSCRIPTS install-binSCRIPTS install-man1 uninstall-man1 \
+install-man3 uninstall-man3 install-man uninstall-man \
+uninstall-confexecDATA install-confexecDATA uninstall-m4dataDATA \
+install-m4dataDATA uninstall-pkgconfigDATA install-pkgconfigDATA \
+install-data-recursive uninstall-data-recursive install-exec-recursive \
+uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
+all-recursive check-recursive installcheck-recursive info-recursive \
+dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
+maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
+distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
+dvi-am dvi check-local check check-am installcheck-am installcheck \
+all-recursive-am install-exec-am install-exec install-data-local \
+install-data-am install-data install-am install uninstall-am uninstall \
+all-redirect all-am all installdirs-am installdirs mostlyclean-generic \
+distclean-generic clean-generic maintainer-clean-generic clean \
+mostlyclean distclean maintainer-clean
+
+
+check-local: tests
+
+testall : tests SVGtests SAXtests
+
+tests: XMLtests XMLenttests HTMLtests Validtests URItests XPathtests XPtrtests XIncludetests C14Ntests Scripttests Catatests Regexptests Automatatests
+ @(if [ "python" != "" ] ; then cd python ; $(MAKE) tests ; fi)
+
+valgrind:
+ @echo '## Running the regression tests under Valgrind'
+ @echo '## Go get a cup of coffee it is gonna take a while ...'
+ $(MAKE) CHECKER='valgrind -q' tests
+
+HTMLtests : testHTML$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## HTML regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/HTML/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/HTML/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML $$i > $(srcdir)/result/HTML/$$name 2>$(srcdir)/result/HTML/$$name.err ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML $$i > result.$$name 2> error.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/HTML/$$name result.$$name ; \
+ diff -b $(srcdir)/result/HTML/$$name.err error.$$name ; \
+ $(CHECKER) $(top_builddir)/testHTML result.$$name > result2.$$name 2>error.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name error.$$name ; \
+ fi ; fi ; done)
+ @echo "##"
+ @echo "## Push HTML regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/HTML/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/HTML/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML $$i > $(srcdir)/result/HTML/$$name 2>$(srcdir)/result/HTML/$$name.err ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --push $$i > result.$$name 2> error.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/HTML/$$name result.$$name ; \
+ cut -b 1-15 $(srcdir)/result/HTML/$$name.err > errorcut.$$name; \
+ cut -b 1-15 error.$$name > errorcut2.$$name; \
+ diff -b errorcut.$$name errorcut2.$$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --push result.$$name > result2.$$name 2>error.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name error.$$name errorcut.$$name errorcut2.$$name ; \
+ fi ; fi ; done)
+ @echo "##"
+ @echo "## HTML SAX regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/HTML/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/HTML/$$name.sax ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --sax $$i > $(srcdir)/result/HTML/$$name.sax ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --sax $$i > result.$$name.sax ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/HTML/$$name.sax result.$$name.sax ; \
+ rm result.$$name.sax ; \
+ fi ; fi ; done)
+ @echo "##"
+ @echo "## Push HTML SAX regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/HTML/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/HTML/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --sax $$i > $(srcdir)/result/HTML/$$name.sax ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --push --sax $$i > result.$$name.sax ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/HTML/$$name.sax result.$$name.sax ; \
+ rm result.$$name.sax ; \
+ fi ; fi ; done)
+
+XMLtests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XML regression tests"
+ @echo "##"
+ @echo "## You should see one warning on entity 'title.xml' for ent2"
+ @echo "##"
+ -@(for i in $(srcdir)/test/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint $$i > $(srcdir)/result/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint $$i > result.$$name ; \
+ diff $(srcdir)/result/$$name result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint result.$$name > result2.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name ; \
+ fi ; fi ; done)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XML push regression tests"
+ @echo "##"
+ @echo "## You should see one warning on entity 'title.xml' for ent2"
+ @echo "##"
+ -@(for i in $(srcdir)/test/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --push $$i > $(srcdir)/result/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --push $$i > result.$$name ; \
+ diff $(srcdir)/result/$$name result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --push result.$$name > result2.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name ; \
+ fi ; fi ; done)
+ @echo "##"
+ @echo "## XML regression tests on memory"
+ @echo "##"
+ @echo "## You should see two warnings on entity 'title.xml' for ent2"
+ @echo "##"
+ -@(for i in $(srcdir)/test/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --memory $$i > $(srcdir)/result/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --memory $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/$$name result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --memory result.$$name > result2.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name ; \
+ fi ; fi ; done)
+
+Docbtests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## SGML DocBook regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/DocBook/*.sgm ; do \
+ name=`basename $$i .sgm`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/DocBook/$$name.xml ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --sgml $$i > $(srcdir)/result/DocBook/$$name.xml ; \
+ $(CHECKER) $(top_builddir)/xmllint --valid --noout $(srcdir)/result/DocBook/$$name.xml ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --sgml $$i > result.$$name ; \
+ diff $(srcdir)/result/DocBook/$$name.xml result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --valid --noout result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+XMLenttests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XML entity subst regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/noent/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --noent $$i > $(srcdir)/result/noent/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --noent $$i > result.$$name ; \
+ diff $(srcdir)/result/noent/$$name result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --noent result.$$name > result2.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name ; \
+ fi ; fi ; done)
+
+URItests : testURI$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## URI module regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/URI/*.data ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/URI/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testURI -base 'http://foo.com/path/to/index.html?orig#help' < $$i > $(srcdir)/result/URI/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testURI -base 'http://foo.com/path/to/index.html?orig#help' < $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/URI/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+ -@(for i in $(srcdir)/test/URI/*.uri ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/URI/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testURI < $$i > $(srcdir)/result/URI/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testURI < $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/URI/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+XPathtests : testXPath$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XPath regression tests"
+ @echo "##"
+ -@(if [ "`$(top_builddir)/testXPath | grep 'support not compiled in'`" != "" ] ; \
+ then echo Skipping debug not compiled in ; exit 0 ; fi ; \
+ for i in $(srcdir)/test/XPath/expr/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/XPath/expr/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testXPath -f --expr $$i > $(srcdir)/result/XPath/expr/$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testXPath -f --expr $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/XPath/expr/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done ; \
+ for i in $(srcdir)/test/XPath/docs/* ; do \
+ if [ ! -d $$i ] ; then \
+ doc=`basename $$i`; \
+ for j in $(srcdir)/test/XPath/tests/$$doc* ; do \
+ if [ ! -f $$j ] ; then continue ; fi ; \
+ name=`basename $$j`; \
+ if [ ! -d $$j ] ; then \
+ if [ ! -f $(srcdir)/result/XPath/tests/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testXPath -f -i $$i $$j > $(srcdir)/result/XPath/tests/$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testXPath -f -i $$i $$j > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/XPath/tests/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done ; fi ; done)
+
+XPtrtests : testXPath$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XPointer regression tests"
+ @echo "##"
+ -@(if [ "`$(top_builddir)/testXPath | grep 'support not compiled in'`" != "" ] ; \
+ then echo Skipping debug not compiled in ; exit 0 ; fi ; \
+ for i in $(srcdir)/test/XPath/docs/* ; do \
+ if [ ! -d $$i ] ; then \
+ doc=`basename $$i`; \
+ for j in $(srcdir)/test/XPath/xptr/$$doc* ; do \
+ if [ ! -f $$j ] ; then continue ; fi ; \
+ name=`basename $$j`; \
+ if [ ! -d $$j ] ; then \
+ if [ ! -f $(srcdir)/result/XPath/xptr/$$name ] ; then \
+ echo New test file $$name ; \
+ ./testXPath -xptr -f -i $$i $$j > $(srcdir)/result/XPath/xptr/$$name ; \
+ else \
+ echo Testing $$name ; \
+ ./testXPath -xptr -f -i $$i $$j > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/XPath/xptr/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done ; fi ; done)
+
+XIncludetests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XInclude regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/XInclude/docs/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/XInclude/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --nowarning --xinclude $$i > $(srcdir)/result/XInclude/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --nowarning --xinclude $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/XInclude/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+Scripttests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Scripts regression tests"
+ @echo "## Some of the base computations may be different if srcdir != ."
+ @echo "##"
+ -@(for i in $(srcdir)/test/scripts/*.script ; do \
+ name=`basename $$i .script`; \
+ xml=$(srcdir)/test/scripts/`basename $$i .script`.xml; \
+ if [ -f $$xml ] ; then \
+ if [ ! -f $(srcdir)/result/scripts/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > $(srcdir)/result/scripts/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/scripts/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+Catatests : xmlcatalog$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Catalog regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/catalogs/*.script ; do \
+ name=`basename $$i .script`; \
+ xml=$(srcdir)/test/catalogs/`basename $$i .script`.xml; \
+ if [ -f $$xml ] ; then \
+ if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i > $(srcdir)/result/catalogs/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/catalogs/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+ -@(for i in $(srcdir)/test/catalogs/*.script ; do \
+ name=`basename $$i .script`; \
+ sgml=$(srcdir)/test/catalogs/`basename $$i .script`.sgml; \
+ if [ -f $$sgml ] ; then \
+ if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > $(srcdir)/result/catalogs/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/catalogs/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+ @echo "Add and del operations on XML Catalogs"
+ -@($(CHECKER) $(top_builddir)/xmlcatalog --create --noout $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid sysid $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid2 sysid2 $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid3 sysid3 $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ diff result/catalogs/mycatalog.full $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid3 $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid2 $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ diff result/catalogs/mycatalog.empty $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ rm -f $(srcdir)/result/catalogs/mycatalog)
+
+SVGtests : xmllint$(EXEEXT)
+ @echo "##"
+ @echo "## SVG parsing regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/SVG/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/SVG/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint $$i > $(srcdir)/result/SVG/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint $$i > result.$$name ; \
+ diff $(srcdir)/result/SVG/$$name result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint result.$$name > result2.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name ; \
+ fi ; fi ; done)
+
+Threadtests : testThreads$(EXEEXT)
+ @echo "##"
+ @echo "## Threaded regression tests"
+ @echo "##"
+ $(CHECKER) $(top_builddir)/testThreads
+
+SAXtests : testSAX$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## SAX callbacks regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/SAXresult/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testSAX $$i > $(srcdir)/SAXresult/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testSAX $$i > result.$$name ; \
+ diff $(srcdir)/SAXresult/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+Validtests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Valid documents regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/VCM/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --valid --noout --nowarning $$i ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ fi ; done ; exit 0)
+ @echo "##"
+ @echo "## Validity checking regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/VC/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/VC/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --noout --valid $$i 2> $(srcdir)/result/VC/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --noout --valid $$i 2> result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/VC/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+ @echo "##"
+ @echo "## General documents valid regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/valid/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/valid/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --valid $$i > $(srcdir)/result/valid/$$name 2>$(srcdir)/result/valid/$$name.err ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --valid $$i > result.$$name 2>error.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/valid/$$name result.$$name ; \
+ diff $(srcdir)/result/valid/$$name.err error.$$name ; \
+ rm result.$$name error.$$name ; \
+ fi ; fi ; done)
+
+Regexptests: testRegexp$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Regexp regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/regexp/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/regexp/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testRegexp -i $$i > $(srcdir)/result/regexp/$$name; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testRegexp -i $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/regexp/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+Automatatests: testAutomata$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Automata regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/automata/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/automata/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testAutomata $$i > $(srcdir)/result/automata/$$name; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testAutomata $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/automata/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+C14Ntests : testC14N$(EXEEXT)
+ @echo "##"
+ @echo "## C14N and XPath regression tests"
+ @echo "##"
+ -@(for m in with-comments without-comments exc-without-comments ; do \
+ for i in $(srcdir)/test/c14n/$$m/*.xml ; do \
+ if [ ! -d $$i ] ; then \
+ name=`basename $$i .xml`; \
+ echo Testing $$m/$$name; \
+ cmdline="$(CHECKER) $(top_builddir)/testC14N --$$m $$i"; \
+ if [ -f $(srcdir)/test/c14n/$$m/$$name.xpath ] ; then \
+ cmdline="$$cmdline $(srcdir)/test/c14n/$$m/$$name.xpath"; \
+ if [ -f $(srcdir)/test/c14n/$$m/$$name.ns ] ; then \
+ cmdline="$$cmdline '`cat $(srcdir)/test/c14n/$$m/$$name.ns`'"; \
+ fi; \
+ fi; \
+ $$cmdline > $(srcdir)/test/c14n/test.tmp; \
+ if [ $$? -eq 0 ]; then \
+ diff $(srcdir)/result/c14n/$$m/$$name $(srcdir)/test/c14n/test.tmp; \
+ if [ $$? -ne 0 ]; then \
+ echo "Test failed"; \
+ cat $(srcdir)/test/c14n/test.tmp; \
+ fi; \
+ else \
+ echo "C14N failed"; \
+ fi; \
+ fi; \
+ rm -f $(srcdir)/test/c14n/test.tmp; \
+ done; \
+ done)
+
+Schemastests: testSchemas$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Schemas regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/schemas/*_*.xsd ; do \
+ name=`basename $$i | sed 's+_.*++'`; \
+ sno=`basename $$i | sed 's+.*_\(.*\).xsd+\1+'`; \
+ for j in $(srcdir)/test/schemas/"$$name"_*.xml ; do \
+ xno=`basename $$j | sed 's+.*_\(.*\).xml+\1+'`; \
+ if [ ! -f $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno" ]; \
+ then \
+ echo New test file "$$name"_"$$sno"_"$$xno" ; \
+ $(CHECKER) $(top_builddir)/testSchemas $$i $$j \
+ > $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno" \
+ 2> $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno".err; \
+ else \
+ echo Testing "$$name"_"$$sno"_"$$xno" ; \
+ $(CHECKER) $(top_builddir)/testSchemas $$i $$j \
+ > res.$$name 2> err.$$name;\
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno" \
+ res.$$name;\
+ diff $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno".err \
+ err.$$name;\
+ grep Unimplemented err.$$name; \
+ rm res.$$name err.$$name ; \
+ fi ; \
+ done; done)
+
+dist-hook: libxml.spec
+ -cp libxml.spec $(distdir)
+ (cd $(srcdir) ; tar -cf - --exclude CVS win32 macos vms test result SAXresult ) | (cd $(distdir); tar xf -)
+
+cleantar:
+ @(rm -f libxml*.tar.gz COPYING.LIB)
+
+rpm: cleantar
+ @(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
+
+install-data-local:
+ $(mkinstalldirs) $(DESTDIR)$(BASE_DIR)/$(DOC_MODULE)
+ -/usr/bin/install -c -m 0644 $(srcdir)/Copyright $(DESTDIR)$(BASE_DIR)/$(DOC_MODULE)
+ $(mkinstalldirs) $(DESTDIR)$(EXAMPLES_DIR)
+ -/usr/bin/install -c -m 0644 $(srcdir)/xmllint.c $(DESTDIR)$(EXAMPLES_DIR)
+ -/usr/bin/install -c -m 0644 $(srcdir)/testSAX.c $(DESTDIR)$(EXAMPLES_DIR)
+ -/usr/bin/install -c -m 0644 $(srcdir)/testHTML.c $(DESTDIR)$(EXAMPLES_DIR)
+ -/usr/bin/install -c -m 0644 $(srcdir)/testXPath.c $(DESTDIR)$(EXAMPLES_DIR)
+
+# 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/src/external/3rd/library/libxml/Makefile.in b/src/external/3rd/library/libxml/Makefile.in
new file mode 100644
index 000000000..97d4a1acf
--- /dev/null
+++ b/src/external/3rd/library/libxml/Makefile.in
@@ -0,0 +1,2031 @@
+# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
+
+# Copyright (C) 1994, 1995-8, 1999, 2001 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.
+
+# AUTOMAKE_ OPTIONS=no-dependencies
+
+
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+includedir = @includedir@
+oldincludedir = /usr/include
+
+DESTDIR =
+
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+
+top_builddir = .
+
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+transform = @program_transform_name@
+
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias = @host_alias@
+host_triplet = @host@
+AS = @AS@
+C14N_OBJ = @C14N_OBJ@
+CATALOG_OBJ = @CATALOG_OBJ@
+CC = @CC@
+CFLAGS = @CFLAGS@
+CPP = @CPP@
+DEBUG_OBJ = @DEBUG_OBJ@
+DLLTOOL = @DLLTOOL@
+DOCB_OBJ = @DOCB_OBJ@
+ECHO = @ECHO@
+EXEEXT = @EXEEXT@
+FTP_OBJ = @FTP_OBJ@
+HAVE_ISINF = @HAVE_ISINF@
+HAVE_ISNAN = @HAVE_ISNAN@
+HTML_DIR = @HTML_DIR@
+HTML_OBJ = @HTML_OBJ@
+HTTP_OBJ = @HTTP_OBJ@
+ICONV_LIBS = @ICONV_LIBS@
+LIBTOOL = @LIBTOOL@
+LIBXML_MAJOR_VERSION = @LIBXML_MAJOR_VERSION@
+LIBXML_MICRO_VERSION = @LIBXML_MICRO_VERSION@
+LIBXML_MINOR_VERSION = @LIBXML_MINOR_VERSION@
+LIBXML_VERSION = @LIBXML_VERSION@
+LIBXML_VERSION_INFO = @LIBXML_VERSION_INFO@
+LIBXML_VERSION_NUMBER = @LIBXML_VERSION_NUMBER@
+LN_S = @LN_S@
+MAINT = @MAINT@
+MAKEINFO = @MAKEINFO@
+MV = @MV@
+M_LIBS = @M_LIBS@
+OBJDUMP = @OBJDUMP@
+OBJEXT = @OBJEXT@
+PACKAGE = @PACKAGE@
+PYTHON = @PYTHON@
+PYTHON_INCLUDES = @PYTHON_INCLUDES@
+PYTHON_SITE_PACKAGES = @PYTHON_SITE_PACKAGES@
+PYTHON_SUBDIR = @PYTHON_SUBDIR@
+PYTHON_VERSION = @PYTHON_VERSION@
+RANLIB = @RANLIB@
+RDL_LIBS = @RDL_LIBS@
+RM = @RM@
+STRIP = @STRIP@
+TAR = @TAR@
+TEST_REGEXPS = @TEST_REGEXPS@
+TEST_SCHEMAS = @TEST_SCHEMAS@
+TEST_THREADS = @TEST_THREADS@
+THREAD_CFLAGS = @THREAD_CFLAGS@
+THREAD_LIBS = @THREAD_LIBS@
+U = @U@
+VERSION = @VERSION@
+WITH_C14N = @WITH_C14N@
+WITH_CATALOG = @WITH_CATALOG@
+WITH_DEBUG = @WITH_DEBUG@
+WITH_DOCB = @WITH_DOCB@
+WITH_FTP = @WITH_FTP@
+WITH_HTML = @WITH_HTML@
+WITH_HTTP = @WITH_HTTP@
+WITH_ICONV = @WITH_ICONV@
+WITH_MEM_DEBUG = @WITH_MEM_DEBUG@
+WITH_REGEXPS = @WITH_REGEXPS@
+WITH_SCHEMAS = @WITH_SCHEMAS@
+WITH_THREADS = @WITH_THREADS@
+WITH_TRIO = @WITH_TRIO@
+WITH_XINCLUDE = @WITH_XINCLUDE@
+WITH_XPATH = @WITH_XPATH@
+WITH_XPTR = @WITH_XPTR@
+XINCLUDE_OBJ = @XINCLUDE_OBJ@
+XML_CFLAGS = @XML_CFLAGS@
+XML_INCLUDEDIR = @XML_INCLUDEDIR@
+XML_LIBDIR = @XML_LIBDIR@
+XML_LIBS = @XML_LIBS@
+XPATH_OBJ = @XPATH_OBJ@
+XPTR_OBJ = @XPTR_OBJ@
+Z_CFLAGS = @Z_CFLAGS@
+Z_LIBS = @Z_LIBS@
+
+SUBDIRS = include . doc example @PYTHON_SUBDIR@
+
+DIST_SUBDIRS = include . doc example python
+
+INCLUDES = -I$(top_builddir)/include -I@srcdir@/include @THREAD_CFLAGS@ @Z_CFLAGS@
+
+noinst_PROGRAMS = testSchemas testSAX testHTML testXPath testURI testDocbook \
+ testThreads testC14N testAutomata testRegexp
+
+
+bin_PROGRAMS = xmllint xmlcatalog
+
+bin_SCRIPTS = xml2-config
+
+lib_LTLIBRARIES = libxml2.la
+libxml2_la_LIBADD = @THREAD_LIBS@ @Z_LIBS@ $(ICONV_LIBS) -lm
+
+libxml2_la_LDFLAGS = -version-info @LIBXML_VERSION_INFO@
+@WITH_TRIO_SOURCES_TRUE@libxml2_la_SOURCES = @WITH_TRIO_SOURCES_TRUE@SAX.c entities.c encoding.c error.c parserInternals.c \
+@WITH_TRIO_SOURCES_TRUE@ parser.c tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c \
+@WITH_TRIO_SOURCES_TRUE@ valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c \
+@WITH_TRIO_SOURCES_TRUE@ xpointer.c xinclude.c nanohttp.c nanoftp.c DOCBparser.c \
+@WITH_TRIO_SOURCES_TRUE@ catalog.c globals.c threads.c c14n.c \
+@WITH_TRIO_SOURCES_TRUE@ xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c \
+@WITH_TRIO_SOURCES_TRUE@ triostr.c trio.c
+@WITH_TRIO_SOURCES_FALSE@libxml2_la_SOURCES = @WITH_TRIO_SOURCES_FALSE@SAX.c entities.c encoding.c error.c parserInternals.c \
+@WITH_TRIO_SOURCES_FALSE@ parser.c tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c \
+@WITH_TRIO_SOURCES_FALSE@ valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c \
+@WITH_TRIO_SOURCES_FALSE@ xpointer.c xinclude.c nanohttp.c nanoftp.c DOCBparser.c \
+@WITH_TRIO_SOURCES_FALSE@ catalog.c globals.c threads.c c14n.c \
+@WITH_TRIO_SOURCES_FALSE@ xmlregexp.c xmlschemas.c xmlschemastypes.c xmlunicode.c
+
+DEPS = $(top_builddir)/libxml2.la
+LDADDS = $(top_builddir)/libxml2.la @THREAD_LIBS@ @Z_LIBS@ $(ICONV_LIBS) -lm
+
+man_MANS = xml2-config.1 libxml.3
+
+m4datadir = $(datadir)/aclocal
+m4data_DATA = libxml.m4
+
+xmllint_SOURCES = xmllint.c
+xmllint_LDFLAGS =
+xmllint_DEPENDENCIES = $(DEPS)
+xmllint_LDADD = @RDL_LIBS@ $(LDADDS)
+
+testSAX_SOURCES = testSAX.c
+testSAX_LDFLAGS =
+testSAX_DEPENDENCIES = $(DEPS)
+testSAX_LDADD = $(LDADDS)
+
+testHTML_SOURCES = testHTML.c
+testHTML_LDFLAGS =
+testHTML_DEPENDENCIES = $(DEPS)
+testHTML_LDADD = $(LDADDS)
+
+testDocbook_SOURCES = testDocbook.c
+testDocbook_LDFLAGS =
+testDocbook_DEPENDENCIES = $(DEPS)
+testDocbook_LDADD = $(LDADDS)
+
+xmlcatalog_SOURCES = xmlcatalog.c
+xmlcatalog_LDFLAGS =
+xmlcatalog_DEPENDENCIES = $(DEPS)
+xmlcatalog_LDADD = @RDL_LIBS@ $(LDADDS)
+
+testXPath_SOURCES = testXPath.c
+testXPath_LDFLAGS =
+testXPath_DEPENDENCIES = $(DEPS)
+testXPath_LDADD = $(LDADDS)
+
+testC14N_SOURCES = testC14N.c
+testC14N_LDFLAGS =
+testC14N_DEPENDENCIES = $(DEPS)
+testC14N_LDADD = $(LDADDS)
+
+testThreads_SOURCES = testThreads.c
+testThreads_LDFLAGS =
+testThreads_DEPENDENCIES = $(DEPS)
+testThreads_LDADD = $(LDADDS)
+
+testURI_SOURCES = testURI.c
+testURI_LDFLAGS =
+testURI_DEPENDENCIES = $(DEPS)
+testURI_LDADD = $(LDADDS)
+
+testRegexp_SOURCES = testRegexp.c
+testRegexp_LDFLAGS =
+testRegexp_DEPENDENCIES = $(DEPS)
+testRegexp_LDADD = $(LDADDS)
+
+testAutomata_SOURCES = testAutomata.c
+testAutomata_LDFLAGS =
+testAutomata_DEPENDENCIES = $(DEPS)
+testAutomata_LDADD = $(LDADDS)
+
+testSchemas_SOURCES = testSchemas.c
+testSchemas_LDFLAGS =
+testSchemas_DEPENDENCIES = $(DEPS)
+testSchemas_LDADD = $(LDADDS)
+
+CLEANFILES = xml2Conf.sh
+
+confexecdir = $(libdir)
+confexec_DATA = xml2Conf.sh
+EXTRA_DIST = xml2-config.in xml2Conf.sh.in libxml.spec.in libxml.spec \
+ libxml.m4 Copyright check-xml-test-suite.py \
+ example/Makefile.am example/gjobread.c example/gjobs.xml \
+ $(man_MANS) libxml-2.0.pc.in \
+ trionan.c trionan.h triostr.c triostr.h trio.c trio.h \
+ triop.h triodef.h libxml.h \
+ testThreadsWin32.c genUnicode.py TODO_SCHEMAS
+
+
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = libxml-2.0.pc
+
+#
+# Instll the tests program sources as examples
+#
+BASE_DIR = $(datadir)/doc
+DOC_MODULE = libxml2-$(VERSION)
+EXAMPLES_DIR = $(BASE_DIR)/$(DOC_MODULE)/examples
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_HEADER = config.h
+CONFIG_CLEAN_FILES = libxml.spec xml2-config libxml-2.0.pc xml2Conf.sh
+LTLIBRARIES = $(lib_LTLIBRARIES)
+
+
+DEFS = @DEFS@ -I. -I$(srcdir) -I.
+CPPFLAGS = @CPPFLAGS@
+LDFLAGS = @LDFLAGS@
+LIBS = @LIBS@
+libxml2_la_DEPENDENCIES =
+@WITH_TRIO_SOURCES_FALSE@libxml2_la_OBJECTS = SAX.lo entities.lo \
+@WITH_TRIO_SOURCES_FALSE@encoding.lo error.lo parserInternals.lo \
+@WITH_TRIO_SOURCES_FALSE@parser.lo tree.lo hash.lo list.lo xmlIO.lo \
+@WITH_TRIO_SOURCES_FALSE@xmlmemory.lo uri.lo valid.lo xlink.lo \
+@WITH_TRIO_SOURCES_FALSE@HTMLparser.lo HTMLtree.lo debugXML.lo xpath.lo \
+@WITH_TRIO_SOURCES_FALSE@xpointer.lo xinclude.lo nanohttp.lo nanoftp.lo \
+@WITH_TRIO_SOURCES_FALSE@DOCBparser.lo catalog.lo globals.lo threads.lo \
+@WITH_TRIO_SOURCES_FALSE@c14n.lo xmlregexp.lo xmlschemas.lo \
+@WITH_TRIO_SOURCES_FALSE@xmlschemastypes.lo xmlunicode.lo
+@WITH_TRIO_SOURCES_TRUE@libxml2_la_OBJECTS = SAX.lo entities.lo \
+@WITH_TRIO_SOURCES_TRUE@encoding.lo error.lo parserInternals.lo \
+@WITH_TRIO_SOURCES_TRUE@parser.lo tree.lo hash.lo list.lo xmlIO.lo \
+@WITH_TRIO_SOURCES_TRUE@xmlmemory.lo uri.lo valid.lo xlink.lo \
+@WITH_TRIO_SOURCES_TRUE@HTMLparser.lo HTMLtree.lo debugXML.lo xpath.lo \
+@WITH_TRIO_SOURCES_TRUE@xpointer.lo xinclude.lo nanohttp.lo nanoftp.lo \
+@WITH_TRIO_SOURCES_TRUE@DOCBparser.lo catalog.lo globals.lo threads.lo \
+@WITH_TRIO_SOURCES_TRUE@c14n.lo xmlregexp.lo xmlschemas.lo \
+@WITH_TRIO_SOURCES_TRUE@xmlschemastypes.lo xmlunicode.lo triostr.lo \
+@WITH_TRIO_SOURCES_TRUE@trio.lo
+bin_PROGRAMS = xmllint$(EXEEXT) xmlcatalog$(EXEEXT)
+noinst_PROGRAMS = testSchemas$(EXEEXT) testSAX$(EXEEXT) \
+testHTML$(EXEEXT) testXPath$(EXEEXT) testURI$(EXEEXT) \
+testDocbook$(EXEEXT) testThreads$(EXEEXT) testC14N$(EXEEXT) \
+testAutomata$(EXEEXT) testRegexp$(EXEEXT)
+PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
+
+xmllint_OBJECTS = xmllint.$(OBJEXT)
+xmlcatalog_OBJECTS = xmlcatalog.$(OBJEXT)
+testSchemas_OBJECTS = testSchemas.$(OBJEXT)
+testSAX_OBJECTS = testSAX.$(OBJEXT)
+testHTML_OBJECTS = testHTML.$(OBJEXT)
+testXPath_OBJECTS = testXPath.$(OBJEXT)
+testURI_OBJECTS = testURI.$(OBJEXT)
+testDocbook_OBJECTS = testDocbook.$(OBJEXT)
+testThreads_OBJECTS = testThreads.$(OBJEXT)
+testC14N_OBJECTS = testC14N.$(OBJEXT)
+testAutomata_OBJECTS = testAutomata.$(OBJEXT)
+testRegexp_OBJECTS = testRegexp.$(OBJEXT)
+SCRIPTS = $(bin_SCRIPTS)
+
+COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+CCLD = $(CC)
+LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
+man1dir = $(mandir)/man1
+man3dir = $(mandir)/man3
+MANS = $(man_MANS)
+
+NROFF = nroff
+DATA = $(confexec_DATA) $(m4data_DATA) $(pkgconfig_DATA)
+
+DIST_COMMON = README ./stamp-h.in AUTHORS COPYING ChangeLog INSTALL \
+Makefile.am Makefile.in NEWS TODO acconfig.h acinclude.m4 aclocal.m4 \
+config.guess config.h.in config.sub configure configure.in install-sh \
+libxml-2.0.pc.in libxml.spec.in ltconfig ltmain.sh missing \
+mkinstalldirs xml2-config.in xml2Conf.sh.in
+
+
+DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
+
+GZIP_ENV = --best
+SOURCES = $(libxml2_la_SOURCES) $(xmllint_SOURCES) $(xmlcatalog_SOURCES) $(testSchemas_SOURCES) $(testSAX_SOURCES) $(testHTML_SOURCES) $(testXPath_SOURCES) $(testURI_SOURCES) $(testDocbook_SOURCES) $(testThreads_SOURCES) $(testC14N_SOURCES) $(testAutomata_SOURCES) $(testRegexp_SOURCES)
+OBJECTS = $(libxml2_la_OBJECTS) $(xmllint_OBJECTS) $(xmlcatalog_OBJECTS) $(testSchemas_OBJECTS) $(testSAX_OBJECTS) $(testHTML_OBJECTS) $(testXPath_OBJECTS) $(testURI_OBJECTS) $(testDocbook_OBJECTS) $(testThreads_OBJECTS) $(testC14N_OBJECTS) $(testAutomata_OBJECTS) $(testRegexp_OBJECTS)
+
+all: all-redirect
+.SUFFIXES:
+.SUFFIXES: .S .c .lo .o .obj .s
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps Makefile
+
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) \
+ && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in acinclude.m4
+ cd $(srcdir) && $(ACLOCAL)
+
+config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
+ $(SHELL) ./config.status --recheck
+$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
+ cd $(srcdir) && $(AUTOCONF)
+
+config.h: stamp-h
+ @if test ! -f $@; then \
+ rm -f stamp-h; \
+ $(MAKE) stamp-h; \
+ else :; fi
+stamp-h: $(srcdir)/config.h.in $(top_builddir)/config.status
+ cd $(top_builddir) \
+ && CONFIG_FILES= CONFIG_HEADERS=config.h \
+ $(SHELL) ./config.status
+ @echo timestamp > stamp-h 2> /dev/null
+$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@$(srcdir)/stamp-h.in
+ @if test ! -f $@; then \
+ rm -f $(srcdir)/stamp-h.in; \
+ $(MAKE) $(srcdir)/stamp-h.in; \
+ else :; fi
+$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
+ cd $(top_srcdir) && $(AUTOHEADER)
+ @echo timestamp > $(srcdir)/stamp-h.in 2> /dev/null
+
+mostlyclean-hdr:
+
+clean-hdr:
+
+distclean-hdr:
+ -rm -f config.h
+
+maintainer-clean-hdr:
+libxml.spec: $(top_builddir)/config.status libxml.spec.in
+ cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
+xml2-config: $(top_builddir)/config.status xml2-config.in
+ cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
+libxml-2.0.pc: $(top_builddir)/config.status libxml-2.0.pc.in
+ cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
+xml2Conf.sh: $(top_builddir)/config.status xml2Conf.sh.in
+ cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+mostlyclean-libLTLIBRARIES:
+
+clean-libLTLIBRARIES:
+ -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
+
+distclean-libLTLIBRARIES:
+
+maintainer-clean-libLTLIBRARIES:
+
+install-libLTLIBRARIES: $(lib_LTLIBRARIES)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(libdir)
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+ if test -f $$p; then \
+ echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(libdir)/$$p"; \
+ $(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(libdir)/$$p; \
+ else :; fi; \
+ done
+
+uninstall-libLTLIBRARIES:
+ @$(NORMAL_UNINSTALL)
+ list='$(lib_LTLIBRARIES)'; for p in $$list; do \
+ $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$$p; \
+ done
+
+.c.o:
+ $(COMPILE) -c $<
+
+# FIXME: We should only use cygpath when building on Windows,
+# and only if it is available.
+.c.obj:
+ $(COMPILE) -c `cygpath -w $<`
+
+.s.o:
+ $(COMPILE) -c $<
+
+.S.o:
+ $(COMPILE) -c $<
+
+mostlyclean-compile:
+ -rm -f *.o core *.core
+ -rm -f *.$(OBJEXT)
+
+clean-compile:
+
+distclean-compile:
+ -rm -f *.tab.c
+
+maintainer-clean-compile:
+
+.c.lo:
+ $(LIBTOOL) --mode=compile $(COMPILE) -c $<
+
+.s.lo:
+ $(LIBTOOL) --mode=compile $(COMPILE) -c $<
+
+.S.lo:
+ $(LIBTOOL) --mode=compile $(COMPILE) -c $<
+
+mostlyclean-libtool:
+ -rm -f *.lo
+
+clean-libtool:
+ -rm -rf .libs _libs
+
+distclean-libtool:
+
+maintainer-clean-libtool:
+
+libxml2.la: $(libxml2_la_OBJECTS) $(libxml2_la_DEPENDENCIES)
+ $(LINK) -rpath $(libdir) $(libxml2_la_LDFLAGS) $(libxml2_la_OBJECTS) $(libxml2_la_LIBADD) $(LIBS)
+
+mostlyclean-binPROGRAMS:
+
+clean-binPROGRAMS:
+ -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
+
+distclean-binPROGRAMS:
+
+maintainer-clean-binPROGRAMS:
+
+install-binPROGRAMS: $(bin_PROGRAMS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
+ @list='$(bin_PROGRAMS)'; for p in $$list; do \
+ if test -f $$p; then \
+ echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
+ $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
+ else :; fi; \
+ done
+
+uninstall-binPROGRAMS:
+ @$(NORMAL_UNINSTALL)
+ list='$(bin_PROGRAMS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
+ done
+
+mostlyclean-noinstPROGRAMS:
+
+clean-noinstPROGRAMS:
+ -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
+
+distclean-noinstPROGRAMS:
+
+maintainer-clean-noinstPROGRAMS:
+
+xmllint$(EXEEXT): $(xmllint_OBJECTS) $(xmllint_DEPENDENCIES)
+ @rm -f xmllint$(EXEEXT)
+ $(LINK) $(xmllint_LDFLAGS) $(xmllint_OBJECTS) $(xmllint_LDADD) $(LIBS)
+
+xmlcatalog$(EXEEXT): $(xmlcatalog_OBJECTS) $(xmlcatalog_DEPENDENCIES)
+ @rm -f xmlcatalog$(EXEEXT)
+ $(LINK) $(xmlcatalog_LDFLAGS) $(xmlcatalog_OBJECTS) $(xmlcatalog_LDADD) $(LIBS)
+
+testSchemas$(EXEEXT): $(testSchemas_OBJECTS) $(testSchemas_DEPENDENCIES)
+ @rm -f testSchemas$(EXEEXT)
+ $(LINK) $(testSchemas_LDFLAGS) $(testSchemas_OBJECTS) $(testSchemas_LDADD) $(LIBS)
+
+testSAX$(EXEEXT): $(testSAX_OBJECTS) $(testSAX_DEPENDENCIES)
+ @rm -f testSAX$(EXEEXT)
+ $(LINK) $(testSAX_LDFLAGS) $(testSAX_OBJECTS) $(testSAX_LDADD) $(LIBS)
+
+testHTML$(EXEEXT): $(testHTML_OBJECTS) $(testHTML_DEPENDENCIES)
+ @rm -f testHTML$(EXEEXT)
+ $(LINK) $(testHTML_LDFLAGS) $(testHTML_OBJECTS) $(testHTML_LDADD) $(LIBS)
+
+testXPath$(EXEEXT): $(testXPath_OBJECTS) $(testXPath_DEPENDENCIES)
+ @rm -f testXPath$(EXEEXT)
+ $(LINK) $(testXPath_LDFLAGS) $(testXPath_OBJECTS) $(testXPath_LDADD) $(LIBS)
+
+testURI$(EXEEXT): $(testURI_OBJECTS) $(testURI_DEPENDENCIES)
+ @rm -f testURI$(EXEEXT)
+ $(LINK) $(testURI_LDFLAGS) $(testURI_OBJECTS) $(testURI_LDADD) $(LIBS)
+
+testDocbook$(EXEEXT): $(testDocbook_OBJECTS) $(testDocbook_DEPENDENCIES)
+ @rm -f testDocbook$(EXEEXT)
+ $(LINK) $(testDocbook_LDFLAGS) $(testDocbook_OBJECTS) $(testDocbook_LDADD) $(LIBS)
+
+testThreads$(EXEEXT): $(testThreads_OBJECTS) $(testThreads_DEPENDENCIES)
+ @rm -f testThreads$(EXEEXT)
+ $(LINK) $(testThreads_LDFLAGS) $(testThreads_OBJECTS) $(testThreads_LDADD) $(LIBS)
+
+testC14N$(EXEEXT): $(testC14N_OBJECTS) $(testC14N_DEPENDENCIES)
+ @rm -f testC14N$(EXEEXT)
+ $(LINK) $(testC14N_LDFLAGS) $(testC14N_OBJECTS) $(testC14N_LDADD) $(LIBS)
+
+testAutomata$(EXEEXT): $(testAutomata_OBJECTS) $(testAutomata_DEPENDENCIES)
+ @rm -f testAutomata$(EXEEXT)
+ $(LINK) $(testAutomata_LDFLAGS) $(testAutomata_OBJECTS) $(testAutomata_LDADD) $(LIBS)
+
+testRegexp$(EXEEXT): $(testRegexp_OBJECTS) $(testRegexp_DEPENDENCIES)
+ @rm -f testRegexp$(EXEEXT)
+ $(LINK) $(testRegexp_LDFLAGS) $(testRegexp_OBJECTS) $(testRegexp_LDADD) $(LIBS)
+
+install-binSCRIPTS: $(bin_SCRIPTS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(bindir)
+ @list='$(bin_SCRIPTS)'; for p in $$list; do \
+ if test -f $$p; then \
+ echo " $(INSTALL_SCRIPT) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`"; \
+ $(INSTALL_SCRIPT) $$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
+ else if test -f $(srcdir)/$$p; then \
+ echo " $(INSTALL_SCRIPT) $(srcdir)/$$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`"; \
+ $(INSTALL_SCRIPT) $(srcdir)/$$p $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
+ else :; fi; fi; \
+ done
+
+uninstall-binSCRIPTS:
+ @$(NORMAL_UNINSTALL)
+ list='$(bin_SCRIPTS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(bindir)/`echo $$p|sed '$(transform)'`; \
+ done
+
+install-man1:
+ $(mkinstalldirs) $(DESTDIR)$(man1dir)
+ @list='$(man1_MANS)'; \
+ l2='$(man_MANS)'; for i in $$l2; do \
+ case "$$i" in \
+ *.1*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
+ else file=$$i; fi; \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \
+ $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \
+ done
+
+uninstall-man1:
+ @list='$(man1_MANS)'; \
+ l2='$(man_MANS)'; for i in $$l2; do \
+ case "$$i" in \
+ *.1*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \
+ rm -f $(DESTDIR)$(man1dir)/$$inst; \
+ done
+
+install-man3:
+ $(mkinstalldirs) $(DESTDIR)$(man3dir)
+ @list='$(man3_MANS)'; \
+ l2='$(man_MANS)'; for i in $$l2; do \
+ case "$$i" in \
+ *.3*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
+ else file=$$i; fi; \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man3dir)/$$inst"; \
+ $(INSTALL_DATA) $$file $(DESTDIR)$(man3dir)/$$inst; \
+ done
+
+uninstall-man3:
+ @list='$(man3_MANS)'; \
+ l2='$(man_MANS)'; for i in $$l2; do \
+ case "$$i" in \
+ *.3*) list="$$list $$i" ;; \
+ esac; \
+ done; \
+ for i in $$list; do \
+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
+ echo " rm -f $(DESTDIR)$(man3dir)/$$inst"; \
+ rm -f $(DESTDIR)$(man3dir)/$$inst; \
+ done
+install-man: $(MANS)
+ @$(NORMAL_INSTALL)
+ $(MAKE) $(AM_MAKEFLAGS) install-man1 install-man3
+uninstall-man:
+ @$(NORMAL_UNINSTALL)
+ $(MAKE) $(AM_MAKEFLAGS) uninstall-man1 uninstall-man3
+
+install-confexecDATA: $(confexec_DATA)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(confexecdir)
+ @list='$(confexec_DATA)'; for p in $$list; do \
+ if test -f $(srcdir)/$$p; then \
+ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(confexecdir)/$$p"; \
+ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(confexecdir)/$$p; \
+ else if test -f $$p; then \
+ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(confexecdir)/$$p"; \
+ $(INSTALL_DATA) $$p $(DESTDIR)$(confexecdir)/$$p; \
+ fi; fi; \
+ done
+
+uninstall-confexecDATA:
+ @$(NORMAL_UNINSTALL)
+ list='$(confexec_DATA)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(confexecdir)/$$p; \
+ done
+
+install-m4dataDATA: $(m4data_DATA)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(m4datadir)
+ @list='$(m4data_DATA)'; for p in $$list; do \
+ if test -f $(srcdir)/$$p; then \
+ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(m4datadir)/$$p"; \
+ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(m4datadir)/$$p; \
+ else if test -f $$p; then \
+ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(m4datadir)/$$p"; \
+ $(INSTALL_DATA) $$p $(DESTDIR)$(m4datadir)/$$p; \
+ fi; fi; \
+ done
+
+uninstall-m4dataDATA:
+ @$(NORMAL_UNINSTALL)
+ list='$(m4data_DATA)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(m4datadir)/$$p; \
+ done
+
+install-pkgconfigDATA: $(pkgconfig_DATA)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(pkgconfigdir)
+ @list='$(pkgconfig_DATA)'; for p in $$list; do \
+ if test -f $(srcdir)/$$p; then \
+ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgconfigdir)/$$p"; \
+ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgconfigdir)/$$p; \
+ else if test -f $$p; then \
+ echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgconfigdir)/$$p"; \
+ $(INSTALL_DATA) $$p $(DESTDIR)$(pkgconfigdir)/$$p; \
+ fi; fi; \
+ done
+
+uninstall-pkgconfigDATA:
+ @$(NORMAL_UNINSTALL)
+ list='$(pkgconfig_DATA)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(pkgconfigdir)/$$p; \
+ 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.
+
+@SET_MAKE@
+
+all-recursive install-data-recursive install-exec-recursive \
+installdirs-recursive install-recursive uninstall-recursive \
+check-recursive installcheck-recursive info-recursive dvi-recursive:
+ @set fnord $(MAKEFLAGS); amf=$$2; \
+ 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) \
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+ 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:
+ @set fnord $(MAKEFLAGS); amf=$$2; \
+ dot_seen=no; \
+ rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
+ rev="$$subdir $$rev"; \
+ test "$$subdir" != "." || dot_seen=yes; \
+ done; \
+ test "$$dot_seen" = "no" && 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) \
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+ done && test -z "$$fail"
+tags-recursive:
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+ done
+
+tags: TAGS
+
+ID: $(HEADERS) $(SOURCES) $(LISP)
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ here=`pwd` && cd $(srcdir) \
+ && mkid -f$$here/ID $$unique $(LISP)
+
+TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) $(LISP)
+ tags=; \
+ here=`pwd`; \
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ if test "$$subdir" = .; then :; else \
+ test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
+ fi; \
+ done; \
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ test -z "$(ETAGS_ARGS)config.h.in$$unique$(LISP)$$tags" \
+ || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags config.h.in $$unique $(LISP) -o $$here/TAGS)
+
+mostlyclean-tags:
+
+clean-tags:
+
+distclean-tags:
+ -rm -f TAGS ID
+
+maintainer-clean-tags:
+
+distdir = $(PACKAGE)-$(VERSION)
+top_distdir = $(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
+ -rm -rf $(distdir)
+ GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
+ mkdir $(distdir)/=build
+ mkdir $(distdir)/=inst
+ dc_install_base=`cd $(distdir)/=inst && pwd`; \
+ cd $(distdir)/=build \
+ && ../configure --srcdir=.. --prefix=$$dc_install_base \
+ && $(MAKE) $(AM_MAKEFLAGS) \
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
+ && $(MAKE) $(AM_MAKEFLAGS) check \
+ && $(MAKE) $(AM_MAKEFLAGS) install \
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
+ && $(MAKE) $(AM_MAKEFLAGS) dist
+ -rm -rf $(distdir)
+ @banner="$(distdir).tar.gz is ready for distribution"; \
+ dashes=`echo "$$banner" | sed s/./=/g`; \
+ echo "$$dashes"; \
+ echo "$$banner"; \
+ echo "$$dashes"
+dist: distdir
+ -chmod -R a+r $(distdir)
+ GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
+ -rm -rf $(distdir)
+dist-all: distdir
+ -chmod -R a+r $(distdir)
+ GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
+ -rm -rf $(distdir)
+distdir: $(DISTFILES)
+ -rm -rf $(distdir)
+ mkdir $(distdir)
+ -chmod 777 $(distdir)
+ $(mkinstalldirs) $(distdir)/example
+ @for file in $(DISTFILES); do \
+ d=$(srcdir); \
+ if test -d $$d/$$file; then \
+ cp -pr $$d/$$file $(distdir)/$$file; \
+ else \
+ test -f $(distdir)/$$file \
+ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
+ || cp -p $$d/$$file $(distdir)/$$file || :; \
+ fi; \
+ done
+ for subdir in $(DIST_SUBDIRS); do \
+ if test "$$subdir" = .; then :; else \
+ test -d $(distdir)/$$subdir \
+ || mkdir $(distdir)/$$subdir \
+ || exit 1; \
+ chmod 777 $(distdir)/$$subdir; \
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
+ || exit 1; \
+ fi; \
+ done
+ $(MAKE) $(AM_MAKEFLAGS) top_distdir="$(top_distdir)" distdir="$(distdir)" dist-hook
+c14n.lo c14n.o : c14n.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/uri.h \
+ include/libxml/xpathInternals.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/c14n.h
+catalog.lo catalog.o : catalog.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/hash.h include/libxml/uri.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/catalog.h
+debugXML.lo debugXML.o : debugXML.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/debugXML.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/HTMLtree.h \
+ include/libxml/xpathInternals.h
+DOCBparser.lo DOCBparser.o : DOCBparser.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/DOCBparser.h include/libxml/uri.h
+encoding.lo encoding.o : encoding.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/encoding.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/HTMLparser.h
+entities.lo entities.o : entities.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/hash.h
+error.lo error.o : error.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/globals.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h
+globals.lo globals.o : globals.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h
+hash.lo hash.o : hash.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/hash.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/globals.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h
+HTMLparser.lo HTMLparser.o : HTMLparser.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/HTMLtree.h
+HTMLtree.lo HTMLtree.o : HTMLtree.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/HTMLparser.h include/libxml/HTMLtree.h \
+ include/libxml/parserInternals.h include/libxml/uri.h
+list.lo list.o : list.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h
+nanoftp.lo nanoftp.o : nanoftp.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/nanoftp.h
+nanohttp.lo nanohttp.o : nanohttp.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/nanohttp.h
+parser.lo parser.o : parser.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/uri.h include/libxml/catalog.h \
+ include/libxml/xpath.h include/libxml/hash.h
+parserInternals.lo parserInternals.o : parserInternals.c libxml.h \
+ config.h include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/uri.h include/libxml/catalog.h
+regexp.lo regexp.o : regexp.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/tree.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/regexp.h include/libxml/automata.h \
+ include/libxml/unicode.h
+SAX.lo SAX.o : SAX.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/parserInternals.h \
+ include/libxml/HTMLparser.h include/libxml/debugXML.h \
+ include/libxml/xpath.h include/libxml/hash.h \
+ include/libxml/uri.h include/libxml/HTMLtree.h
+schemas.lo schemas.o : schemas.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/hash.h include/libxml/schemas.h \
+ include/libxml/schemasInternals.h include/libxml/regexp.h \
+ include/libxml/schemastypes.h include/libxml/automata.h
+schemastypes.lo schemastypes.o : schemastypes.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/hash.h include/libxml/schemas.h \
+ include/libxml/schemasInternals.h include/libxml/regexp.h \
+ include/libxml/schemastypes.h
+testAutomata.o: testAutomata.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h
+testC14N.o: testC14N.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/xpathInternals.h \
+ include/libxml/c14n.h
+testDocbook.o: testDocbook.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/DOCBparser.h include/libxml/debugXML.h \
+ include/libxml/xpath.h include/libxml/hash.h
+testHTML.o: testHTML.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/HTMLparser.h \
+ include/libxml/HTMLtree.h include/libxml/debugXML.h \
+ include/libxml/xpath.h include/libxml/hash.h
+testRegexp.o: testRegexp.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h
+testSAX.o: testSAX.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/parserInternals.h \
+ include/libxml/HTMLparser.h include/libxml/debugXML.h \
+ include/libxml/xpath.h include/libxml/hash.h
+testSchemas.o: testSchemas.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/globals.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/debugXML.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/xmlschemas.h \
+ include/libxml/xmlschemastypes.h \
+ include/libxml/schemasInternals.h
+testThreads.o: testThreads.c libxml.h config.h \
+ include/libxml/xmlversion.h
+testURI.o: testURI.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/uri.h
+testXPath.o: testXPath.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xpath.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/hash.h include/libxml/debugXML.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/xpathInternals.h include/libxml/xpointer.h
+threads.lo threads.o : threads.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xmlmemory.h
+tree.lo tree.o : tree.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/uri.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/HTMLtree.h include/libxml/hash.h
+unicode.lo unicode.o : unicode.c libxml.h config.h \
+ include/libxml/xmlversion.h unicode.h
+uri.lo uri.o : uri.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/uri.h
+valid.lo valid.o : valid.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/hash.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h
+xinclude.lo xinclude.o : xinclude.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/uri.h include/libxml/xpointer.h \
+ include/libxml/xpath.h include/libxml/hash.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/xinclude.h
+xlink.lo xlink.o : xlink.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h
+xmlcatalog.o: xmlcatalog.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/uri.h \
+ include/libxml/catalog.h
+xmlIO.lo xmlIO.o : xmlIO.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/parserInternals.h \
+ include/libxml/HTMLparser.h include/libxml/uri.h \
+ include/libxml/nanohttp.h include/libxml/nanoftp.h \
+ include/libxml/catalog.h
+xmllint.o: xmllint.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/parserInternals.h \
+ include/libxml/HTMLparser.h include/libxml/HTMLtree.h \
+ include/libxml/xpath.h include/libxml/hash.h \
+ include/libxml/debugXML.h include/libxml/xinclude.h \
+ include/libxml/catalog.h include/libxml/DOCBparser.h
+xmlmemory.lo xmlmemory.o : xmlmemory.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h
+xmlregexp.lo xmlregexp.o : xmlregexp.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/xmlunicode.h
+xmlschemas.lo xmlschemas.o : xmlschemas.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/hash.h include/libxml/uri.h \
+ include/libxml/xmlschemas.h include/libxml/schemasInternals.h \
+ include/libxml/xmlschemastypes.h
+xmlschemastypes.lo xmlschemastypes.o : xmlschemastypes.c libxml.h \
+ config.h include/libxml/xmlversion.h include/libxml/xmlmemory.h \
+ include/libxml/threads.h include/libxml/globals.h \
+ include/libxml/parser.h include/libxml/tree.h \
+ include/libxml/xmlregexp.h include/libxml/valid.h \
+ include/libxml/list.h include/libxml/xmlautomata.h \
+ include/libxml/entities.h include/libxml/encoding.h \
+ include/libxml/xmlIO.h include/libxml/xmlerror.h \
+ include/libxml/SAX.h include/libxml/xlink.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/hash.h include/libxml/xmlschemas.h \
+ include/libxml/schemasInternals.h \
+ include/libxml/xmlschemastypes.h
+xmlunicode.lo xmlunicode.o : xmlunicode.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xmlunicode.h
+xpath.lo xpath.o : xpath.c libxml.h config.h include/libxml/xmlversion.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/xpathInternals.h \
+ include/libxml/parserInternals.h include/libxml/HTMLparser.h \
+ include/libxml/xpointer.h include/libxml/debugXML.h trionan.c \
+ triodef.h trionan.h
+xpointer.lo xpointer.o : xpointer.c libxml.h config.h \
+ include/libxml/xmlversion.h include/libxml/xpointer.h \
+ include/libxml/tree.h include/libxml/xmlregexp.h \
+ include/libxml/xmlmemory.h include/libxml/threads.h \
+ include/libxml/globals.h include/libxml/parser.h \
+ include/libxml/valid.h include/libxml/list.h \
+ include/libxml/xmlautomata.h include/libxml/entities.h \
+ include/libxml/encoding.h include/libxml/xmlIO.h \
+ include/libxml/xmlerror.h include/libxml/SAX.h \
+ include/libxml/xlink.h include/libxml/xpath.h \
+ include/libxml/hash.h include/libxml/parserInternals.h \
+ include/libxml/HTMLparser.h include/libxml/uri.h \
+ include/libxml/xpathInternals.h
+
+info-am:
+info: info-recursive
+dvi-am:
+dvi: dvi-recursive
+check-am: all-am
+ $(MAKE) $(AM_MAKEFLAGS) check-local
+check: check-recursive
+installcheck-am:
+installcheck: installcheck-recursive
+all-recursive-am: config.h
+ $(MAKE) $(AM_MAKEFLAGS) all-recursive
+
+install-exec-am: install-libLTLIBRARIES install-binPROGRAMS \
+ install-binSCRIPTS install-confexecDATA
+install-exec: install-exec-recursive
+
+install-data-am: install-man install-m4dataDATA install-pkgconfigDATA \
+ install-data-local
+install-data: install-data-recursive
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+install: install-recursive
+uninstall-am: uninstall-libLTLIBRARIES uninstall-binPROGRAMS \
+ uninstall-binSCRIPTS uninstall-man \
+ uninstall-confexecDATA uninstall-m4dataDATA \
+ uninstall-pkgconfigDATA
+uninstall: uninstall-recursive
+all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(MANS) $(DATA) \
+ config.h
+all-redirect: all-recursive-am
+install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
+installdirs: installdirs-recursive
+installdirs-am:
+ $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) \
+ $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man1 \
+ $(DESTDIR)$(mandir)/man3 $(DESTDIR)$(confexecdir) \
+ $(DESTDIR)$(m4datadir) $(DESTDIR)$(pkgconfigdir)
+
+
+mostlyclean-generic:
+
+clean-generic:
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
+
+distclean-generic:
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f config.cache config.log stamp-h stamp-h[0-9]*
+
+maintainer-clean-generic:
+mostlyclean-am: mostlyclean-hdr mostlyclean-libLTLIBRARIES \
+ mostlyclean-compile mostlyclean-libtool \
+ mostlyclean-binPROGRAMS mostlyclean-noinstPROGRAMS \
+ mostlyclean-tags mostlyclean-generic
+
+mostlyclean: mostlyclean-recursive
+
+clean-am: clean-hdr clean-libLTLIBRARIES clean-compile clean-libtool \
+ clean-binPROGRAMS clean-noinstPROGRAMS clean-tags \
+ clean-generic mostlyclean-am
+
+clean: clean-recursive
+
+distclean-am: distclean-hdr distclean-libLTLIBRARIES distclean-compile \
+ distclean-libtool distclean-binPROGRAMS \
+ distclean-noinstPROGRAMS distclean-tags \
+ distclean-generic clean-am
+ -rm -f libtool
+
+distclean: distclean-recursive
+ -rm -f config.status
+
+maintainer-clean-am: maintainer-clean-hdr \
+ maintainer-clean-libLTLIBRARIES \
+ maintainer-clean-compile maintainer-clean-libtool \
+ maintainer-clean-binPROGRAMS \
+ maintainer-clean-noinstPROGRAMS maintainer-clean-tags \
+ maintainer-clean-generic distclean-am
+ @echo "This command is intended for maintainers to use;"
+ @echo "it deletes files that may require special tools to rebuild."
+
+maintainer-clean: maintainer-clean-recursive
+ -rm -f config.status
+
+.PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \
+mostlyclean-libLTLIBRARIES distclean-libLTLIBRARIES \
+clean-libLTLIBRARIES maintainer-clean-libLTLIBRARIES \
+uninstall-libLTLIBRARIES install-libLTLIBRARIES mostlyclean-compile \
+distclean-compile clean-compile maintainer-clean-compile \
+mostlyclean-libtool distclean-libtool clean-libtool \
+maintainer-clean-libtool mostlyclean-binPROGRAMS distclean-binPROGRAMS \
+clean-binPROGRAMS maintainer-clean-binPROGRAMS uninstall-binPROGRAMS \
+install-binPROGRAMS mostlyclean-noinstPROGRAMS distclean-noinstPROGRAMS \
+clean-noinstPROGRAMS maintainer-clean-noinstPROGRAMS \
+uninstall-binSCRIPTS install-binSCRIPTS install-man1 uninstall-man1 \
+install-man3 uninstall-man3 install-man uninstall-man \
+uninstall-confexecDATA install-confexecDATA uninstall-m4dataDATA \
+install-m4dataDATA uninstall-pkgconfigDATA install-pkgconfigDATA \
+install-data-recursive uninstall-data-recursive install-exec-recursive \
+uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \
+all-recursive check-recursive installcheck-recursive info-recursive \
+dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \
+maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
+distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
+dvi-am dvi check-local check check-am installcheck-am installcheck \
+all-recursive-am install-exec-am install-exec install-data-local \
+install-data-am install-data install-am install uninstall-am uninstall \
+all-redirect all-am all installdirs-am installdirs mostlyclean-generic \
+distclean-generic clean-generic maintainer-clean-generic clean \
+mostlyclean distclean maintainer-clean
+
+
+check-local: tests
+
+testall : tests SVGtests SAXtests
+
+tests: XMLtests XMLenttests HTMLtests Validtests URItests XPathtests XPtrtests XIncludetests C14Ntests Scripttests Catatests @TEST_REGEXPS@ @TEST_SCHEMAS@ @TEST_THREADS@
+ @(if [ "@PYTHON_SUBDIR@" != "" ] ; then cd python ; $(MAKE) tests ; fi)
+
+valgrind:
+ @echo '## Running the regression tests under Valgrind'
+ @echo '## Go get a cup of coffee it is gonna take a while ...'
+ $(MAKE) CHECKER='valgrind -q' tests
+
+HTMLtests : testHTML$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## HTML regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/HTML/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/HTML/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML $$i > $(srcdir)/result/HTML/$$name 2>$(srcdir)/result/HTML/$$name.err ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML $$i > result.$$name 2> error.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/HTML/$$name result.$$name ; \
+ diff -b $(srcdir)/result/HTML/$$name.err error.$$name ; \
+ $(CHECKER) $(top_builddir)/testHTML result.$$name > result2.$$name 2>error.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name error.$$name ; \
+ fi ; fi ; done)
+ @echo "##"
+ @echo "## Push HTML regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/HTML/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/HTML/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML $$i > $(srcdir)/result/HTML/$$name 2>$(srcdir)/result/HTML/$$name.err ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --push $$i > result.$$name 2> error.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/HTML/$$name result.$$name ; \
+ cut -b 1-15 $(srcdir)/result/HTML/$$name.err > errorcut.$$name; \
+ cut -b 1-15 error.$$name > errorcut2.$$name; \
+ diff -b errorcut.$$name errorcut2.$$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --push result.$$name > result2.$$name 2>error.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name error.$$name errorcut.$$name errorcut2.$$name ; \
+ fi ; fi ; done)
+ @echo "##"
+ @echo "## HTML SAX regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/HTML/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/HTML/$$name.sax ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --sax $$i > $(srcdir)/result/HTML/$$name.sax ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --sax $$i > result.$$name.sax ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/HTML/$$name.sax result.$$name.sax ; \
+ rm result.$$name.sax ; \
+ fi ; fi ; done)
+ @echo "##"
+ @echo "## Push HTML SAX regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/HTML/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/HTML/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --sax $$i > $(srcdir)/result/HTML/$$name.sax ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testHTML --push --sax $$i > result.$$name.sax ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/HTML/$$name.sax result.$$name.sax ; \
+ rm result.$$name.sax ; \
+ fi ; fi ; done)
+
+XMLtests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XML regression tests"
+ @echo "##"
+ @echo "## You should see one warning on entity 'title.xml' for ent2"
+ @echo "##"
+ -@(for i in $(srcdir)/test/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint $$i > $(srcdir)/result/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint $$i > result.$$name ; \
+ diff $(srcdir)/result/$$name result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint result.$$name > result2.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name ; \
+ fi ; fi ; done)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XML push regression tests"
+ @echo "##"
+ @echo "## You should see one warning on entity 'title.xml' for ent2"
+ @echo "##"
+ -@(for i in $(srcdir)/test/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --push $$i > $(srcdir)/result/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --push $$i > result.$$name ; \
+ diff $(srcdir)/result/$$name result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --push result.$$name > result2.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name ; \
+ fi ; fi ; done)
+ @echo "##"
+ @echo "## XML regression tests on memory"
+ @echo "##"
+ @echo "## You should see two warnings on entity 'title.xml' for ent2"
+ @echo "##"
+ -@(for i in $(srcdir)/test/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --memory $$i > $(srcdir)/result/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --memory $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/$$name result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --memory result.$$name > result2.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name ; \
+ fi ; fi ; done)
+
+Docbtests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## SGML DocBook regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/DocBook/*.sgm ; do \
+ name=`basename $$i .sgm`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/DocBook/$$name.xml ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --sgml $$i > $(srcdir)/result/DocBook/$$name.xml ; \
+ $(CHECKER) $(top_builddir)/xmllint --valid --noout $(srcdir)/result/DocBook/$$name.xml ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --sgml $$i > result.$$name ; \
+ diff $(srcdir)/result/DocBook/$$name.xml result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --valid --noout result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+XMLenttests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XML entity subst regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/noent/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --noent $$i > $(srcdir)/result/noent/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --noent $$i > result.$$name ; \
+ diff $(srcdir)/result/noent/$$name result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --noent result.$$name > result2.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name ; \
+ fi ; fi ; done)
+
+URItests : testURI$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## URI module regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/URI/*.data ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/URI/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testURI -base 'http://foo.com/path/to/index.html?orig#help' < $$i > $(srcdir)/result/URI/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testURI -base 'http://foo.com/path/to/index.html?orig#help' < $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/URI/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+ -@(for i in $(srcdir)/test/URI/*.uri ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/URI/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testURI < $$i > $(srcdir)/result/URI/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testURI < $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/URI/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+XPathtests : testXPath$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XPath regression tests"
+ @echo "##"
+ -@(if [ "`$(top_builddir)/testXPath | grep 'support not compiled in'`" != "" ] ; \
+ then echo Skipping debug not compiled in ; exit 0 ; fi ; \
+ for i in $(srcdir)/test/XPath/expr/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/XPath/expr/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testXPath -f --expr $$i > $(srcdir)/result/XPath/expr/$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testXPath -f --expr $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/XPath/expr/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done ; \
+ for i in $(srcdir)/test/XPath/docs/* ; do \
+ if [ ! -d $$i ] ; then \
+ doc=`basename $$i`; \
+ for j in $(srcdir)/test/XPath/tests/$$doc* ; do \
+ if [ ! -f $$j ] ; then continue ; fi ; \
+ name=`basename $$j`; \
+ if [ ! -d $$j ] ; then \
+ if [ ! -f $(srcdir)/result/XPath/tests/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testXPath -f -i $$i $$j > $(srcdir)/result/XPath/tests/$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testXPath -f -i $$i $$j > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/XPath/tests/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done ; fi ; done)
+
+XPtrtests : testXPath$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XPointer regression tests"
+ @echo "##"
+ -@(if [ "`$(top_builddir)/testXPath | grep 'support not compiled in'`" != "" ] ; \
+ then echo Skipping debug not compiled in ; exit 0 ; fi ; \
+ for i in $(srcdir)/test/XPath/docs/* ; do \
+ if [ ! -d $$i ] ; then \
+ doc=`basename $$i`; \
+ for j in $(srcdir)/test/XPath/xptr/$$doc* ; do \
+ if [ ! -f $$j ] ; then continue ; fi ; \
+ name=`basename $$j`; \
+ if [ ! -d $$j ] ; then \
+ if [ ! -f $(srcdir)/result/XPath/xptr/$$name ] ; then \
+ echo New test file $$name ; \
+ ./testXPath -xptr -f -i $$i $$j > $(srcdir)/result/XPath/xptr/$$name ; \
+ else \
+ echo Testing $$name ; \
+ ./testXPath -xptr -f -i $$i $$j > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/XPath/xptr/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done ; fi ; done)
+
+XIncludetests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## XInclude regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/XInclude/docs/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/XInclude/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --nowarning --xinclude $$i > $(srcdir)/result/XInclude/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --nowarning --xinclude $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/XInclude/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+Scripttests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Scripts regression tests"
+ @echo "## Some of the base computations may be different if srcdir != ."
+ @echo "##"
+ -@(for i in $(srcdir)/test/scripts/*.script ; do \
+ name=`basename $$i .script`; \
+ xml=$(srcdir)/test/scripts/`basename $$i .script`.xml; \
+ if [ -f $$xml ] ; then \
+ if [ ! -f $(srcdir)/result/scripts/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > $(srcdir)/result/scripts/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --shell $$xml < $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/scripts/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+Catatests : xmlcatalog$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Catalog regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/catalogs/*.script ; do \
+ name=`basename $$i .script`; \
+ xml=$(srcdir)/test/catalogs/`basename $$i .script`.xml; \
+ if [ -f $$xml ] ; then \
+ if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i > $(srcdir)/result/catalogs/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$xml < $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/catalogs/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+ -@(for i in $(srcdir)/test/catalogs/*.script ; do \
+ name=`basename $$i .script`; \
+ sgml=$(srcdir)/test/catalogs/`basename $$i .script`.sgml; \
+ if [ -f $$sgml ] ; then \
+ if [ ! -f $(srcdir)/result/catalogs/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > $(srcdir)/result/catalogs/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --shell $$sgml < $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/catalogs/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+ @echo "Add and del operations on XML Catalogs"
+ -@($(CHECKER) $(top_builddir)/xmlcatalog --create --noout $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid sysid $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid2 sysid2 $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --add public Pubid3 sysid3 $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ diff result/catalogs/mycatalog.full $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid3 $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ $(CHECKER) $(top_builddir)/xmlcatalog --noout --del sysid2 $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ diff result/catalogs/mycatalog.empty $(srcdir)/result/catalogs/mycatalog; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0"; \
+ rm -f $(srcdir)/result/catalogs/mycatalog)
+
+SVGtests : xmllint$(EXEEXT)
+ @echo "##"
+ @echo "## SVG parsing regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/SVG/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/SVG/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint $$i > $(srcdir)/result/SVG/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint $$i > result.$$name ; \
+ diff $(srcdir)/result/SVG/$$name result.$$name ; \
+ $(CHECKER) $(top_builddir)/xmllint result.$$name > result2.$$name ; \
+ diff result.$$name result2.$$name ; \
+ rm result.$$name result2.$$name ; \
+ fi ; fi ; done)
+
+Threadtests : testThreads$(EXEEXT)
+ @echo "##"
+ @echo "## Threaded regression tests"
+ @echo "##"
+ $(CHECKER) $(top_builddir)/testThreads
+
+SAXtests : testSAX$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## SAX callbacks regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/SAXresult/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testSAX $$i > $(srcdir)/SAXresult/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testSAX $$i > result.$$name ; \
+ diff $(srcdir)/SAXresult/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+Validtests : xmllint$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Valid documents regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/VCM/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --valid --noout --nowarning $$i ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ fi ; done ; exit 0)
+ @echo "##"
+ @echo "## Validity checking regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/VC/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/VC/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --noout --valid $$i 2> $(srcdir)/result/VC/$$name ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --noout --valid $$i 2> result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/VC/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+ @echo "##"
+ @echo "## General documents valid regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/valid/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/valid/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --valid $$i > $(srcdir)/result/valid/$$name 2>$(srcdir)/result/valid/$$name.err ; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/xmllint --valid $$i > result.$$name 2>error.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/valid/$$name result.$$name ; \
+ diff $(srcdir)/result/valid/$$name.err error.$$name ; \
+ rm result.$$name error.$$name ; \
+ fi ; fi ; done)
+
+Regexptests: testRegexp$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Regexp regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/regexp/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/regexp/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testRegexp -i $$i > $(srcdir)/result/regexp/$$name; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testRegexp -i $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/regexp/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+Automatatests: testAutomata$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Automata regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/automata/* ; do \
+ name=`basename $$i`; \
+ if [ ! -d $$i ] ; then \
+ if [ ! -f $(srcdir)/result/automata/$$name ] ; then \
+ echo New test file $$name ; \
+ $(CHECKER) $(top_builddir)/testAutomata $$i > $(srcdir)/result/automata/$$name; \
+ else \
+ echo Testing $$name ; \
+ $(CHECKER) $(top_builddir)/testAutomata $$i > result.$$name ; \
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/automata/$$name result.$$name ; \
+ rm result.$$name ; \
+ fi ; fi ; done)
+
+C14Ntests : testC14N$(EXEEXT)
+ @echo "##"
+ @echo "## C14N and XPath regression tests"
+ @echo "##"
+ -@(for m in with-comments without-comments exc-without-comments ; do \
+ for i in $(srcdir)/test/c14n/$$m/*.xml ; do \
+ if [ ! -d $$i ] ; then \
+ name=`basename $$i .xml`; \
+ echo Testing $$m/$$name; \
+ cmdline="$(CHECKER) $(top_builddir)/testC14N --$$m $$i"; \
+ if [ -f $(srcdir)/test/c14n/$$m/$$name.xpath ] ; then \
+ cmdline="$$cmdline $(srcdir)/test/c14n/$$m/$$name.xpath"; \
+ if [ -f $(srcdir)/test/c14n/$$m/$$name.ns ] ; then \
+ cmdline="$$cmdline '`cat $(srcdir)/test/c14n/$$m/$$name.ns`'"; \
+ fi; \
+ fi; \
+ $$cmdline > $(srcdir)/test/c14n/test.tmp; \
+ if [ $$? -eq 0 ]; then \
+ diff $(srcdir)/result/c14n/$$m/$$name $(srcdir)/test/c14n/test.tmp; \
+ if [ $$? -ne 0 ]; then \
+ echo "Test failed"; \
+ cat $(srcdir)/test/c14n/test.tmp; \
+ fi; \
+ else \
+ echo "C14N failed"; \
+ fi; \
+ fi; \
+ rm -f $(srcdir)/test/c14n/test.tmp; \
+ done; \
+ done)
+
+Schemastests: testSchemas$(EXEEXT)
+ @(echo > .memdump)
+ @echo "##"
+ @echo "## Schemas regression tests"
+ @echo "##"
+ -@(for i in $(srcdir)/test/schemas/*_*.xsd ; do \
+ name=`basename $$i | sed 's+_.*++'`; \
+ sno=`basename $$i | sed 's+.*_\(.*\).xsd+\1+'`; \
+ for j in $(srcdir)/test/schemas/"$$name"_*.xml ; do \
+ xno=`basename $$j | sed 's+.*_\(.*\).xml+\1+'`; \
+ if [ ! -f $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno" ]; \
+ then \
+ echo New test file "$$name"_"$$sno"_"$$xno" ; \
+ $(CHECKER) $(top_builddir)/testSchemas $$i $$j \
+ > $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno" \
+ 2> $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno".err; \
+ else \
+ echo Testing "$$name"_"$$sno"_"$$xno" ; \
+ $(CHECKER) $(top_builddir)/testSchemas $$i $$j \
+ > res.$$name 2> err.$$name;\
+ grep "MORY ALLO" .memdump | grep -v "MEMORY ALLOCATED : 0";\
+ diff $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno" \
+ res.$$name;\
+ diff $(srcdir)/result/schemas/"$$name"_"$$sno"_"$$xno".err \
+ err.$$name;\
+ grep Unimplemented err.$$name; \
+ rm res.$$name err.$$name ; \
+ fi ; \
+ done; done)
+
+dist-hook: libxml.spec
+ -cp libxml.spec $(distdir)
+ (cd $(srcdir) ; tar -cf - --exclude CVS win32 macos vms test result SAXresult ) | (cd $(distdir); tar xf -)
+
+cleantar:
+ @(rm -f libxml*.tar.gz COPYING.LIB)
+
+rpm: cleantar
+ @(unset CDPATH ; $(MAKE) dist && rpmbuild -ta $(distdir).tar.gz)
+
+install-data-local:
+ $(mkinstalldirs) $(DESTDIR)$(BASE_DIR)/$(DOC_MODULE)
+ -@INSTALL@ -m 0644 $(srcdir)/Copyright $(DESTDIR)$(BASE_DIR)/$(DOC_MODULE)
+ $(mkinstalldirs) $(DESTDIR)$(EXAMPLES_DIR)
+ -@INSTALL@ -m 0644 $(srcdir)/xmllint.c $(DESTDIR)$(EXAMPLES_DIR)
+ -@INSTALL@ -m 0644 $(srcdir)/testSAX.c $(DESTDIR)$(EXAMPLES_DIR)
+ -@INSTALL@ -m 0644 $(srcdir)/testHTML.c $(DESTDIR)$(EXAMPLES_DIR)
+ -@INSTALL@ -m 0644 $(srcdir)/testXPath.c $(DESTDIR)$(EXAMPLES_DIR)
+
+# 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/src/external/3rd/library/libxml/SAX.lo b/src/external/3rd/library/libxml/SAX.lo
new file mode 100644
index 000000000..0d8199105
Binary files /dev/null and b/src/external/3rd/library/libxml/SAX.lo differ
diff --git a/src/external/3rd/library/libxml/aclocal.m4 b/src/external/3rd/library/libxml/aclocal.m4
new file mode 100644
index 000000000..724701e5d
--- /dev/null
+++ b/src/external/3rd/library/libxml/aclocal.m4
@@ -0,0 +1,3821 @@
+dnl aclocal.m4 generated automatically by aclocal 1.4-p6
+
+dnl Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc.
+dnl This file is free software; the Free Software Foundation
+dnl gives unlimited permission to copy and/or distribute it,
+dnl with or without modifications, as long as this notice is preserved.
+
+dnl This program is distributed in the hope that it will be useful,
+dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
+dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
+dnl PARTICULAR PURPOSE.
+
+dnl Like AC_TRY_EVAL but also errors out if the compiler generates
+dnl _any_ output. Some compilers might issue warnings which we want
+dnl to catch.
+AC_DEFUN(AC_TRY_EVAL2,
+[{ (eval echo configure:__oline__: \"[$]$1\") 1>&AC_FD_CC; dnl
+(eval [$]$1) 2>&AC_FD_CC; _out=`eval [$]$1 2>&1` && test "x$_out" = x; }])
+
+dnl Like AC_TRY_COMPILE but calls AC_TRY_EVAL2 instead of AC_TRY_EVAL
+AC_DEFUN(AC_TRY_COMPILE2,
+[cat > conftest.$ac_ext <&AC_FD_CC
+ cat conftest.$ac_ext >&AC_FD_CC
+ifelse([$4], , , [ rm -rf conftest*
+ $4
+])dnl
+fi
+rm -f conftest*])
+
+# Like AC_CONFIG_HEADER, but automatically create stamp file.
+
+AC_DEFUN([AM_CONFIG_HEADER],
+[AC_PREREQ([2.12])
+AC_CONFIG_HEADER([$1])
+dnl When config.status generates a header, we must update the stamp-h file.
+dnl This file resides in the same directory as the config header
+dnl that is generated. We must strip everything past the first ":",
+dnl and everything past the last "/".
+AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl
+ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>,
+<>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>,
+<>; do
+ case " <<$>>CONFIG_HEADERS " in
+ *" <<$>>am_file "*<<)>>
+ echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx
+ ;;
+ esac
+ am_indx=`expr "<<$>>am_indx" + 1`
+done<<>>dnl>>)
+changequote([,]))])
+
+# Do all the work for Automake. 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.
+
+# serial 1
+
+dnl Usage:
+dnl AM_INIT_AUTOMAKE(package,version, [no-define])
+
+AC_DEFUN([AM_INIT_AUTOMAKE],
+[AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
+AC_REQUIRE([AC_PROG_INSTALL])
+PACKAGE=[$1]
+AC_SUBST(PACKAGE)
+VERSION=[$2]
+AC_SUBST(VERSION)
+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
+ifelse([$3],,
+AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
+AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
+AC_REQUIRE([AM_SANITY_CHECK])
+AC_REQUIRE([AC_ARG_PROGRAM])
+dnl FIXME This is truly gross.
+missing_dir=`cd $ac_aux_dir && pwd`
+AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}, $missing_dir)
+AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
+AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}, $missing_dir)
+AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
+AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
+AC_REQUIRE([AC_PROG_MAKE_SET])])
+
+# Copyright 2002 Free Software Foundation, Inc.
+
+# 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, 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
+
+# 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.4"])
+
+# 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.4-p6])])
+
+#
+# Check to make sure that the build environment is sane.
+#
+
+AC_DEFUN([AM_SANITY_CHECK],
+[AC_MSG_CHECKING([whether build environment is sane])
+# Just in case
+sleep 1
+echo timestamp > conftestfile
+# 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 conftestfile 2> /dev/null`
+ if test "[$]*" = "X"; then
+ # -L didn't work.
+ set X `ls -t $srcdir/configure conftestfile`
+ fi
+ if test "[$]*" != "X $srcdir/configure conftestfile" \
+ && test "[$]*" != "X conftestfile $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" = conftestfile
+ )
+then
+ # Ok.
+ :
+else
+ AC_MSG_ERROR([newly created file is older than distributed files!
+Check your system clock])
+fi
+rm -f conftest*
+AC_MSG_RESULT(yes)])
+
+dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
+dnl The program must properly implement --version.
+AC_DEFUN([AM_MISSING_PROG],
+[AC_MSG_CHECKING(for working $2)
+# Run test in a subshell; some versions of sh will print an error if
+# an executable is not found, even if stderr is redirected.
+# Redirect stdin to placate older versions of autoconf. Sigh.
+if ($2 --version) < /dev/null > /dev/null 2>&1; then
+ $1=$2
+ AC_MSG_RESULT(found)
+else
+ $1="$3/missing $2"
+ AC_MSG_RESULT(missing)
+fi
+AC_SUBST($1)])
+
+
+# serial 1
+
+AC_DEFUN([AM_C_PROTOTYPES],
+[AC_REQUIRE([AM_PROG_CC_STDC])
+AC_REQUIRE([AC_PROG_CPP])
+AC_MSG_CHECKING([for function prototypes])
+if test "$am_cv_prog_cc_stdc" != no; then
+ AC_MSG_RESULT(yes)
+ AC_DEFINE(PROTOTYPES,1,[Define if compiler has function prototypes])
+ U= ANSI2KNR=
+else
+ AC_MSG_RESULT(no)
+ U=_ ANSI2KNR=./ansi2knr
+ # Ensure some checks needed by ansi2knr itself.
+ AC_HEADER_STDC
+ AC_CHECK_HEADERS(string.h)
+fi
+AC_SUBST(U)dnl
+AC_SUBST(ANSI2KNR)dnl
+])
+
+
+# serial 1
+
+# @defmac AC_PROG_CC_STDC
+# @maindex PROG_CC_STDC
+# @ovindex CC
+# If the C compiler in not in ANSI C mode by default, try to add an option
+# to output variable @code{CC} to make it so. This macro tries various
+# options that select ANSI C on some system or another. It considers the
+# compiler to be in ANSI C mode if it handles function prototypes correctly.
+#
+# If you use this macro, you should check after calling it whether the C
+# compiler has been set to accept ANSI C; if not, the shell variable
+# @code{am_cv_prog_cc_stdc} is set to @samp{no}. If you wrote your source
+# code in ANSI C, you can make an un-ANSIfied copy of it by using the
+# program @code{ansi2knr}, which comes with Ghostscript.
+# @end defmac
+
+AC_DEFUN([AM_PROG_CC_STDC],
+[AC_REQUIRE([AC_PROG_CC])
+AC_BEFORE([$0], [AC_C_INLINE])
+AC_BEFORE([$0], [AC_C_CONST])
+dnl Force this before AC_PROG_CPP. Some cpp's, eg on HPUX, require
+dnl a magic option to avoid problems with ANSI preprocessor commands
+dnl like #elif.
+dnl FIXME: can't do this because then AC_AIX won't work due to a
+dnl circular dependency.
+dnl AC_BEFORE([$0], [AC_PROG_CPP])
+AC_MSG_CHECKING(for ${CC-cc} option to accept ANSI C)
+AC_CACHE_VAL(am_cv_prog_cc_stdc,
+[am_cv_prog_cc_stdc=no
+ac_save_CC="$CC"
+# Don't try gcc -ansi; that turns off useful extensions and
+# breaks some systems' header files.
+# AIX -qlanglvl=ansi
+# Ultrix and OSF/1 -std1
+# HP-UX -Aa -D_HPUX_SOURCE
+# SVR4 -Xc -D__EXTENSIONS__
+for ac_arg in "" -qlanglvl=ansi -std1 "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
+do
+ CC="$ac_save_CC $ac_arg"
+ AC_TRY_COMPILE(
+[#include
+#include
+#include
+#include
+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
+struct buf { int x; };
+FILE * (*rcsopen) (struct buf *, struct stat *, int);
+static char *e (p, i)
+ char **p;
+ int i;
+{
+ return p[i];
+}
+static char *f (char * (*g) (char **, int), char **p, ...)
+{
+ char *s;
+ va_list v;
+ va_start (v,p);
+ s = g (p, va_arg (v,int));
+ va_end (v);
+ return s;
+}
+int test (int i, double x);
+struct s1 {int (*f) (int a);};
+struct s2 {int (*f) (double a);};
+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
+int argc;
+char **argv;
+], [
+return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
+],
+[am_cv_prog_cc_stdc="$ac_arg"; break])
+done
+CC="$ac_save_CC"
+])
+if test -z "$am_cv_prog_cc_stdc"; then
+ AC_MSG_RESULT([none needed])
+else
+ AC_MSG_RESULT($am_cv_prog_cc_stdc)
+fi
+case "x$am_cv_prog_cc_stdc" in
+ x|xno) ;;
+ *) CC="$CC $am_cv_prog_cc_stdc" ;;
+esac
+])
+
+# libtool.m4 - Configure libtool for the host system. -*-Shell-script-*-
+
+# serial 46 AC_PROG_LIBTOOL
+
+AC_DEFUN([AC_PROG_LIBTOOL],
+[AC_REQUIRE([AC_LIBTOOL_SETUP])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_DEFUN([AC_LIBTOOL_SETUP],
+[AC_PREREQ(2.13)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
+AC_REQUIRE([AC_OBJEXT])dnl
+AC_REQUIRE([AC_EXEEXT])dnl
+dnl
+
+_LT_AC_PROG_ECHO_BACKSLASH
+# 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_CHECK_TOOL(RANLIB, ranlib, :)
+AC_CHECK_TOOL(STRIP, strip, :)
+
+ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
+ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
+enable_win32_dll=yes, enable_win32_dll=no)
+
+AC_ARG_ENABLE(libtool-lock,
+ [ --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
+*-*-irix6*)
+ # Find out which ABI we are using.
+ echo '[#]line __oline__ "configure"' > conftest.$ac_ext
+ if AC_TRY_EVAL(ac_compile); then
+ 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
+ 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_SAVE
+ AC_LANG_C
+ AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
+ AC_LANG_RESTORE])
+ 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
+ ;;
+
+ifdef([AC_PROVIDE_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)
+
+ # recent cygwin and mingw systems supply a stub DllMain which the user
+ # can override, but on older systems we have to supply one
+ AC_CACHE_CHECK([if libtool should supply DllMain function], lt_cv_need_dllmain,
+ [AC_TRY_LINK([],
+ [extern int __attribute__((__stdcall__)) DllMain(void*, int, void*);
+ DllMain (0, 0, 0);],
+ [lt_cv_need_dllmain=no],[lt_cv_need_dllmain=yes])])
+
+ case $host/$CC in
+ *-*-cygwin*/gcc*-mno-cygwin*|*-*-mingw*)
+ # old mingw systems require "-dll" to link a DLL, while more recent ones
+ # require "-mdll"
+ SAVE_CFLAGS="$CFLAGS"
+ CFLAGS="$CFLAGS -mdll"
+ AC_CACHE_CHECK([how to link DLLs], lt_cv_cc_dll_switch,
+ [AC_TRY_LINK([], [], [lt_cv_cc_dll_switch=-mdll],[lt_cv_cc_dll_switch=-dll])])
+ CFLAGS="$SAVE_CFLAGS" ;;
+ *-*-cygwin* | *-*-pw32*)
+ # cygwin systems need to pass --dll to the linker, and not link
+ # crt.o which will require a WinMain@16 definition.
+ lt_cv_cc_dll_switch="-Wl,--dll -nostartfiles" ;;
+ esac
+ ;;
+ ])
+esac
+
+_LT_AC_LTCONFIG_HACK
+
+])
+
+# AC_LIBTOOL_HEADER_ASSERT
+# ------------------------
+AC_DEFUN([AC_LIBTOOL_HEADER_ASSERT],
+[AC_CACHE_CHECK([whether $CC supports assert without backlinking],
+ [lt_cv_func_assert_works],
+ [case $host in
+ *-*-solaris*)
+ if test "$GCC" = yes && test "$with_gnu_ld" != yes; then
+ case `$CC --version 2>/dev/null` in
+ [[12]].*) lt_cv_func_assert_works=no ;;
+ *) lt_cv_func_assert_works=yes ;;
+ esac
+ fi
+ ;;
+ esac])
+
+if test "x$lt_cv_func_assert_works" = xyes; then
+ AC_CHECK_HEADERS(assert.h)
+fi
+])# AC_LIBTOOL_HEADER_ASSERT
+
+# _LT_AC_CHECK_DLFCN
+# --------------------
+AC_DEFUN([_LT_AC_CHECK_DLFCN],
+[AC_CHECK_HEADERS(dlfcn.h)
+])# _LT_AC_CHECK_DLFCN
+
+# 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])
+AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [dnl
+
+# 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 the above into a raw symbol and a C symbol.
+symxfrm='\1 \2\3 \3'
+
+# Transform an extracted symbol line into a proper C declaration
+lt_cv_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern char \1;/p'"
+
+# Transform an extracted symbol line into symbol name and symbol address
+lt_cv_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
+ lt_cv_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern char \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
+ lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'"
+ ;;
+irix*)
+ symcode='[[BCDEGRST]]'
+ ;;
+solaris* | sysv5*)
+ symcode='[[BDT]]'
+ ;;
+sysv4)
+ symcode='[[DFNSTU]]'
+ ;;
+esac
+
+# Handle CRLF in mingw tool chain
+opt_cr=
+case $host_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.
+if $NM -V 2>&1 | egrep '(GNU|with BFD)' > /dev/null; then
+ symcode='[[ABCDGISTW]]'
+fi
+
+# Try without a prefix undercore, then with it.
+for ac_symprfx in "" "_"; do
+
+ # 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 egrep ' nm_test_var$' "$nlist" >/dev/null; then
+ if egrep ' 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_global_symbol_to_cdecl"' < "$nlist" >> conftest.$ac_ext'
+
+ cat <> conftest.$ac_ext
+#if defined (__STDC__) && __STDC__
+# define lt_ptr void *
+#else
+# define lt_ptr char *
+# define const
+#endif
+
+/* The mapping between symbol names and symbols. */
+const struct {
+ const char *name;
+ lt_ptr address;
+}
+lt_preloaded_symbols[[]] =
+{
+EOF
+ sed "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr) \&\2},/" < "$nlist" >> conftest.$ac_ext
+ cat <<\EOF >> conftest.$ac_ext
+ {0, (lt_ptr) 0}
+};
+
+#ifdef __cplusplus
+}
+#endif
+EOF
+ # Now try linking the two files.
+ mv conftest.$ac_objext conftstm.$ac_objext
+ save_LIBS="$LIBS"
+ save_CFLAGS="$CFLAGS"
+ LIBS="conftstm.$ac_objext"
+ CFLAGS="$CFLAGS$no_builtin_flag"
+ if AC_TRY_EVAL(ac_link) && test -s conftest; then
+ pipe_works=yes
+ fi
+ LIBS="$save_LIBS"
+ CFLAGS="$save_CFLAGS"
+ else
+ echo "cannot find nm_test_func in $nlist" >&AC_FD_CC
+ fi
+ else
+ echo "cannot find nm_test_var in $nlist" >&AC_FD_CC
+ fi
+ else
+ echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AC_FD_CC
+ fi
+ else
+ echo "$progname: failed program was:" >&AC_FD_CC
+ 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
+])
+global_symbol_pipe="$lt_cv_sys_global_symbol_pipe"
+if test -z "$lt_cv_sys_global_symbol_pipe"; then
+ global_symbol_to_cdecl=
+ global_symbol_to_c_name_address=
+else
+ global_symbol_to_cdecl="$lt_cv_global_symbol_to_cdecl"
+ global_symbol_to_c_name_address="$lt_cv_global_symbol_to_c_name_address"
+fi
+if test -z "$global_symbol_pipe$global_symbol_to_cdec$global_symbol_to_c_name_address";
+then
+ AC_MSG_RESULT(failed)
+else
+ AC_MSG_RESULT(ok)
+fi
+]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
+
+# _LT_AC_LIBTOOL_SYS_PATH_SEPARATOR
+# ---------------------------------
+AC_DEFUN([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR],
+[# Find the correct PATH separator. Usually this is `:', but
+# DJGPP uses `;' like DOS.
+if test "X${PATH_SEPARATOR+set}" != Xset; then
+ UNAME=${UNAME-`uname 2>/dev/null`}
+ case X$UNAME in
+ *-DOS) lt_cv_sys_path_separator=';' ;;
+ *) lt_cv_sys_path_separator=':' ;;
+ esac
+ PATH_SEPARATOR=$lt_cv_sys_path_separator
+fi
+])# _LT_AC_LIBTOOL_SYS_PATH_SEPARATOR
+
+# _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],
+[ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)],
+ [AC_DIVERT_PUSH(NOTICE)])
+_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR
+
+# 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 &&
+ 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.
+
+ IFS="${IFS= }"; save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+ for dir in $PATH /usr/ucb; do
+ 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="$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)
+AC_DIVERT_POP
+])# _LT_AC_PROG_ECHO_BACKSLASH
+
+# _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],
+[if test "$cross_compiling" = yes; then :
+ [$4]
+else
+ AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
+ 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; ) 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],
+[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
+ ;;
+
+ cygwin* | mingw* | pw32*)
+ lt_cv_dlopen="LoadLibrary"
+ lt_cv_dlopen_libs=
+ ;;
+
+ *)
+ 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"
+ AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
+ 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_DEFUN([_LT_AC_LTCONFIG_HACK],
+[AC_REQUIRE([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])dnl
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+Xsed='sed -e s/^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'
+
+# Constants:
+rm="rm -f"
+
+# Global variables:
+default_ofile=libtool
+can_build_shared=yes
+
+# All known linkers require a `.a' archive for static linking (except M$VC,
+# which needs '.lib').
+libext=a
+ltmain="$ac_aux_dir/ltmain.sh"
+ofile="$default_ofile"
+with_gnu_ld="$lt_cv_prog_gnu_ld"
+need_locks="$enable_libtool_lock"
+
+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 "$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 "$OBJDUMP" && OBJDUMP=objdump
+test -z "$RANLIB" && RANLIB=:
+test -z "$STRIP" && STRIP=:
+test -z "$ac_objext" && ac_objext=o
+
+if test x"$host" != x"$build"; then
+ ac_tool_prefix=${host_alias}-
+else
+ ac_tool_prefix=
+fi
+
+# Transform linux* to *-*-linux-gnu*, to support old configure scripts.
+case $host_os in
+linux-gnu*) ;;
+linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'`
+esac
+
+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
+
+# 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
+
+# Allow CC to be a program name with arguments.
+set dummy $CC
+compiler="[$]2"
+
+AC_MSG_CHECKING([for objdir])
+rm -f .libs 2>/dev/null
+mkdir .libs 2>/dev/null
+if test -d .libs; then
+ objdir=.libs
+else
+ # MS-DOS does not allow filenames that begin with a dot.
+ objdir=_libs
+fi
+rmdir .libs 2>/dev/null
+AC_MSG_RESULT($objdir)
+
+
+AC_ARG_WITH(pic,
+[ --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
+
+# We assume here that the value for lt_cv_prog_cc_pic will not be cached
+# in isolation, and that seeing it set (from the cache) indicates that
+# the associated values are set (in the cache) correctly too.
+AC_MSG_CHECKING([for $compiler option to produce PIC])
+AC_CACHE_VAL(lt_cv_prog_cc_pic,
+[ lt_cv_prog_cc_pic=
+ lt_cv_prog_cc_shlib=
+ lt_cv_prog_cc_wl=
+ lt_cv_prog_cc_static=
+ lt_cv_prog_cc_no_builtin=
+ lt_cv_prog_cc_can_build_shared=$can_build_shared
+
+ if test "$GCC" = yes; then
+ lt_cv_prog_cc_wl='-Wl,'
+ lt_cv_prog_cc_static='-static'
+
+ case $host_os in
+ aix*)
+ # Below there is a dirty hack to force normal static linking with -ldl
+ # The problem is because libdl dynamically linked with both libc and
+ # libC (AIX C++ library), which obviously doesn't included in libraries
+ # list by gcc. This cause undefined symbols with -static flags.
+ # This hack allows C programs to be linked with "-static -ldl", but
+ # not sure about C++ programs.
+ lt_cv_prog_cc_static="$lt_cv_prog_cc_static ${lt_cv_prog_cc_wl}-lC"
+ ;;
+ 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_cv_prog_cc_pic='-m68020 -resident32 -malways-restore-a4'
+ ;;
+ beos* | irix5* | irix6* | osf3* | osf4* | osf5*)
+ # PIC is the default for these OSes.
+ ;;
+ darwin* | rhapsody*)
+ # PIC is the default on this platform
+ # Common symbols not allowed in MH_DYLIB files
+ lt_cv_prog_cc_pic='-fno-common'
+ ;;
+ cygwin* | 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_cv_prog_cc_pic='-DDLL_EXPORT'
+ ;;
+ sysv4*MP*)
+ if test -d /usr/nec; then
+ lt_cv_prog_cc_pic=-Kconform_pic
+ fi
+ ;;
+ *)
+ lt_cv_prog_cc_pic='-fPIC'
+ ;;
+ esac
+ else
+ # PORTME Check for PIC flags for the system compiler.
+ case $host_os in
+ aix3* | aix4* | aix5*)
+ lt_cv_prog_cc_wl='-Wl,'
+ # All AIX code is PIC.
+ if test "$host_cpu" = ia64; then
+ # AIX 5 now supports IA64 processor
+ lt_cv_prog_cc_static='-Bstatic'
+ else
+ lt_cv_prog_cc_static='-bnso -bI:/lib/syscalls.exp'
+ fi
+ ;;
+
+ hpux9* | hpux10* | hpux11*)
+ # Is there a better lt_cv_prog_cc_static that works with the bundled CC?
+ lt_cv_prog_cc_wl='-Wl,'
+ lt_cv_prog_cc_static="${lt_cv_prog_cc_wl}-a ${lt_cv_prog_cc_wl}archive"
+ lt_cv_prog_cc_pic='+Z'
+ ;;
+
+ irix5* | irix6*)
+ lt_cv_prog_cc_wl='-Wl,'
+ lt_cv_prog_cc_static='-non_shared'
+ # PIC (with -KPIC) is the default.
+ ;;
+
+ cygwin* | 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_cv_prog_cc_pic='-DDLL_EXPORT'
+ ;;
+
+ newsos6)
+ lt_cv_prog_cc_pic='-KPIC'
+ lt_cv_prog_cc_static='-Bstatic'
+ ;;
+
+ osf3* | osf4* | osf5*)
+ # All OSF/1 code is PIC.
+ lt_cv_prog_cc_wl='-Wl,'
+ lt_cv_prog_cc_static='-non_shared'
+ ;;
+
+ sco3.2v5*)
+ lt_cv_prog_cc_pic='-Kpic'
+ lt_cv_prog_cc_static='-dn'
+ lt_cv_prog_cc_shlib='-belf'
+ ;;
+
+ solaris*)
+ lt_cv_prog_cc_pic='-KPIC'
+ lt_cv_prog_cc_static='-Bstatic'
+ lt_cv_prog_cc_wl='-Wl,'
+ ;;
+
+ sunos4*)
+ lt_cv_prog_cc_pic='-PIC'
+ lt_cv_prog_cc_static='-Bstatic'
+ lt_cv_prog_cc_wl='-Qoption ld '
+ ;;
+
+ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
+ lt_cv_prog_cc_pic='-KPIC'
+ lt_cv_prog_cc_static='-Bstatic'
+ if test "x$host_vendor" = xsni; then
+ lt_cv_prog_cc_wl='-LD'
+ else
+ lt_cv_prog_cc_wl='-Wl,'
+ fi
+ ;;
+
+ uts4*)
+ lt_cv_prog_cc_pic='-pic'
+ lt_cv_prog_cc_static='-Bstatic'
+ ;;
+
+ sysv4*MP*)
+ if test -d /usr/nec ;then
+ lt_cv_prog_cc_pic='-Kconform_pic'
+ lt_cv_prog_cc_static='-Bstatic'
+ fi
+ ;;
+
+ *)
+ lt_cv_prog_cc_can_build_shared=no
+ ;;
+ esac
+ fi
+])
+if test -z "$lt_cv_prog_cc_pic"; then
+ AC_MSG_RESULT([none])
+else
+ AC_MSG_RESULT([$lt_cv_prog_cc_pic])
+
+ # Check to make sure the pic_flag actually works.
+ AC_MSG_CHECKING([if $compiler PIC flag $lt_cv_prog_cc_pic works])
+ AC_CACHE_VAL(lt_cv_prog_cc_pic_works, [dnl
+ save_CFLAGS="$CFLAGS"
+ CFLAGS="$CFLAGS $lt_cv_prog_cc_pic -DPIC"
+ AC_TRY_COMPILE([], [], [dnl
+ case $host_os in
+ hpux9* | hpux10* | hpux11*)
+ # On HP-UX, both CC and GCC only warn that PIC is supported... then
+ # they create non-PIC objects. So, if there were any warnings, we
+ # assume that PIC is not supported.
+ if test -s conftest.err; then
+ lt_cv_prog_cc_pic_works=no
+ else
+ lt_cv_prog_cc_pic_works=yes
+ fi
+ ;;
+ *)
+ lt_cv_prog_cc_pic_works=yes
+ ;;
+ esac
+ ], [dnl
+ lt_cv_prog_cc_pic_works=no
+ ])
+ CFLAGS="$save_CFLAGS"
+ ])
+
+ if test "X$lt_cv_prog_cc_pic_works" = Xno; then
+ lt_cv_prog_cc_pic=
+ lt_cv_prog_cc_can_build_shared=no
+ else
+ lt_cv_prog_cc_pic=" $lt_cv_prog_cc_pic"
+ fi
+
+ AC_MSG_RESULT([$lt_cv_prog_cc_pic_works])
+fi
+
+# Check for any special shared library compilation flags.
+if test -n "$lt_cv_prog_cc_shlib"; then
+ AC_MSG_WARN([\`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries])
+ if echo "$old_CC $old_CFLAGS " | egrep -e "[[ ]]$lt_cv_prog_cc_shlib[[ ]]" >/dev/null; then :
+ else
+ AC_MSG_WARN([add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure])
+ lt_cv_prog_cc_can_build_shared=no
+ fi
+fi
+
+AC_MSG_CHECKING([if $compiler static flag $lt_cv_prog_cc_static works])
+AC_CACHE_VAL([lt_cv_prog_cc_static_works], [dnl
+ lt_cv_prog_cc_static_works=no
+ save_LDFLAGS="$LDFLAGS"
+ LDFLAGS="$LDFLAGS $lt_cv_prog_cc_static"
+ AC_TRY_LINK([], [], [lt_cv_prog_cc_static_works=yes])
+ LDFLAGS="$save_LDFLAGS"
+])
+
+# Belt *and* braces to stop my trousers falling down:
+test "X$lt_cv_prog_cc_static_works" = Xno && lt_cv_prog_cc_static=
+AC_MSG_RESULT([$lt_cv_prog_cc_static_works])
+
+pic_flag="$lt_cv_prog_cc_pic"
+special_shlib_compile_flags="$lt_cv_prog_cc_shlib"
+wl="$lt_cv_prog_cc_wl"
+link_static_flag="$lt_cv_prog_cc_static"
+no_builtin_flag="$lt_cv_prog_cc_no_builtin"
+can_build_shared="$lt_cv_prog_cc_can_build_shared"
+
+
+# Check to see if options -o and -c are simultaneously supported by compiler
+AC_MSG_CHECKING([if $compiler supports -c -o file.$ac_objext])
+AC_CACHE_VAL([lt_cv_compiler_c_o], [
+$rm -r conftest 2>/dev/null
+mkdir conftest
+cd conftest
+echo "int some_variable = 0;" > conftest.$ac_ext
+mkdir out
+# According to Tom Tromey, Ian Lance Taylor reported there are C compilers
+# that will create temporary files in the current directory regardless of
+# the output directory. Thus, making CWD read-only will cause this test
+# to fail, enabling locking or at least warning the user not to do parallel
+# builds.
+chmod -w .
+save_CFLAGS="$CFLAGS"
+CFLAGS="$CFLAGS -o out/conftest2.$ac_objext"
+compiler_c_o=no
+if { (eval echo configure:__oline__: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && 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
+ if test -s out/conftest.err; then
+ lt_cv_compiler_c_o=no
+ else
+ lt_cv_compiler_c_o=yes
+ fi
+else
+ # Append any errors to the config.log.
+ cat out/conftest.err 1>&AC_FD_CC
+ lt_cv_compiler_c_o=no
+fi
+CFLAGS="$save_CFLAGS"
+chmod u+w .
+$rm conftest* out/*
+rmdir out
+cd ..
+rmdir conftest
+$rm -r conftest 2>/dev/null
+])
+compiler_c_o=$lt_cv_compiler_c_o
+AC_MSG_RESULT([$compiler_c_o])
+
+if test x"$compiler_c_o" = x"yes"; then
+ # Check to see if we can write to a .lo
+ AC_MSG_CHECKING([if $compiler supports -c -o file.lo])
+ AC_CACHE_VAL([lt_cv_compiler_o_lo], [
+ lt_cv_compiler_o_lo=no
+ save_CFLAGS="$CFLAGS"
+ CFLAGS="$CFLAGS -c -o conftest.lo"
+ save_objext="$ac_objext"
+ ac_objext=lo
+ AC_TRY_COMPILE([], [int some_variable = 0;], [dnl
+ # The compiler can only warn and ignore the option if not recognized
+ # So say no if there are warnings
+ if test -s conftest.err; then
+ lt_cv_compiler_o_lo=no
+ else
+ lt_cv_compiler_o_lo=yes
+ fi
+ ])
+ ac_objext="$save_objext"
+ CFLAGS="$save_CFLAGS"
+ ])
+ compiler_o_lo=$lt_cv_compiler_o_lo
+ AC_MSG_RESULT([$compiler_o_lo])
+else
+ compiler_o_lo=no
+fi
+
+# Check to see if we can do hard links to lock some files if needed
+hard_links="nottested"
+if test "$compiler_c_o" = 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
+
+if test "$GCC" = yes; then
+ # Check to see if options -fno-rtti -fno-exceptions are supported by compiler
+ AC_MSG_CHECKING([if $compiler supports -fno-rtti -fno-exceptions])
+ echo "int some_variable = 0;" > conftest.$ac_ext
+ save_CFLAGS="$CFLAGS"
+ CFLAGS="$CFLAGS -fno-rtti -fno-exceptions -c conftest.$ac_ext"
+ compiler_rtti_exceptions=no
+ AC_TRY_COMPILE([], [int some_variable = 0;], [dnl
+ # The compiler can only warn and ignore the option if not recognized
+ # So say no if there are warnings
+ if test -s conftest.err; then
+ compiler_rtti_exceptions=no
+ else
+ compiler_rtti_exceptions=yes
+ fi
+ ])
+ CFLAGS="$save_CFLAGS"
+ AC_MSG_RESULT([$compiler_rtti_exceptions])
+
+ if test "$compiler_rtti_exceptions" = "yes"; then
+ no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions'
+ else
+ no_builtin_flag=' -fno-builtin'
+ fi
+fi
+
+# See if the linker supports building shared libraries.
+AC_MSG_CHECKING([whether the linker ($LD) supports shared libraries])
+
+allow_undefined_flag=
+no_undefined_flag=
+need_lib_prefix=unknown
+need_version=unknown
+# when you set need_version to no, make sure it does not cause -set_version
+# flags to be left without arguments
+archive_cmds=
+archive_expsym_cmds=
+old_archive_from_new_cmds=
+old_archive_from_expsyms_cmds=
+export_dynamic_flag_spec=
+whole_archive_flag_spec=
+thread_safe_flag_spec=
+hardcode_into_libs=no
+hardcode_libdir_flag_spec=
+hardcode_libdir_separator=
+hardcode_direct=no
+hardcode_minus_L=no
+hardcode_shlibpath_var=unsupported
+runpath_var=
+link_all_deplibs=unknown
+always_export_symbols=no
+export_symbols_cmds='$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
+include_expsyms=
+# exclude_expsyms can be an egrep regular expression 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'.
+exclude_expsyms="_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=
+
+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
+
+ld_shlibs=yes
+if test "$with_gnu_ld" = yes; then
+ # If archive_cmds runs LD, not CC, wlarc should be empty
+ wlarc='${wl}'
+
+ # See if GNU ld supports shared libraries.
+ case $host_os in
+ aix3* | aix4* | aix5*)
+ # On AIX, the GNU linker is very broken
+ # Note:Check GNU linker on AIX 5-IA64 when/if it becomes available.
+ ld_shlibs=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
+ ;;
+
+ amigaos*)
+ archive_cmds='$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)'
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_minus_L=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 use
+ # them.
+ ld_shlibs=no
+ ;;
+
+ beos*)
+ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
+ allow_undefined_flag=unsupported
+ # Joseph Beckenbach says some releases of gcc
+ # support --undefined. This deserves some investigation. FIXME
+ archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+ else
+ ld_shlibs=no
+ fi
+ ;;
+
+ cygwin* | mingw* | pw32*)
+ # hardcode_libdir_flag_spec is actually meaningless, as there is
+ # no search path for DLLs.
+ hardcode_libdir_flag_spec='-L$libdir'
+ allow_undefined_flag=unsupported
+ always_export_symbols=yes
+
+ extract_expsyms_cmds='test -f $output_objdir/impgen.c || \
+ sed -e "/^# \/\* impgen\.c starts here \*\//,/^# \/\* impgen.c ends here \*\// { s/^# //;s/^# *$//; p; }" -e d < $''0 > $output_objdir/impgen.c~
+ test -f $output_objdir/impgen.exe || (cd $output_objdir && \
+ if test "x$HOST_CC" != "x" ; then $HOST_CC -o impgen impgen.c ; \
+ else $CC -o impgen impgen.c ; fi)~
+ $output_objdir/impgen $dir/$soroot > $output_objdir/$soname-def'
+
+ old_archive_from_expsyms_cmds='$DLLTOOL --as=$AS --dllname $soname --def $output_objdir/$soname-def --output-lib $output_objdir/$newlib'
+
+ # cygwin and mingw dlls have different entry points and sets of symbols
+ # to exclude.
+ # FIXME: what about values for MSVC?
+ dll_entry=__cygwin_dll_entry@12
+ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12~
+ case $host_os in
+ mingw*)
+ # mingw values
+ dll_entry=_DllMainCRTStartup@12
+ dll_exclude_symbols=DllMain@12,DllMainCRTStartup@12,DllEntryPoint@12~
+ ;;
+ esac
+
+ # mingw and cygwin differ, and it's simplest to just exclude the union
+ # of the two symbol sets.
+ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12,DllMainCRTStartup@12,DllEntryPoint@12
+
+ # recent cygwin and mingw systems supply a stub DllMain which the user
+ # can override, but on older systems we have to supply one (in ltdll.c)
+ if test "x$lt_cv_need_dllmain" = "xyes"; then
+ ltdll_obj='$output_objdir/$soname-ltdll.'"$ac_objext "
+ ltdll_cmds='test -f $output_objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $''0 > $output_objdir/$soname-ltdll.c~
+ test -f $output_objdir/$soname-ltdll.$ac_objext || (cd $output_objdir && $CC -c $soname-ltdll.c)~'
+ else
+ ltdll_obj=
+ ltdll_cmds=
+ fi
+
+ # Extract the symbol export list from an `--export-all' def file,
+ # then regenerate the def file from the symbol export list, so that
+ # the compiled dll only exports the symbol export list.
+ # Be careful not to strip the DATA tag left be newer dlltools.
+ export_symbols_cmds="$ltdll_cmds"'
+ $DLLTOOL --export-all --exclude-symbols '$dll_exclude_symbols' --output-def $output_objdir/$soname-def '$ltdll_obj'$libobjs $convenience~
+ sed -e "1,/EXPORTS/d" -e "s/ @ [[0-9]]*//" -e "s/ *;.*$//" < $output_objdir/$soname-def > $export_symbols'
+
+ # If the export-symbols file already is a .def file (1st line
+ # is EXPORTS), use it as is.
+ # If DATA tags from a recent dlltool are present, honour them!
+ archive_expsym_cmds='if test "x`head -1 $export_symbols`" = xEXPORTS; then
+ cp $export_symbols $output_objdir/$soname-def;
+ else
+ echo EXPORTS > $output_objdir/$soname-def;
+ _lt_hint=1;
+ cat $export_symbols | while read symbol; do
+ set dummy \$symbol;
+ case \[$]# in
+ 2) echo " \[$]2 @ \$_lt_hint ; " >> $output_objdir/$soname-def;;
+ *) echo " \[$]2 @ \$_lt_hint \[$]3 ; " >> $output_objdir/$soname-def;;
+ esac;
+ _lt_hint=`expr 1 + \$_lt_hint`;
+ done;
+ fi~
+ '"$ltdll_cmds"'
+ $CC -Wl,--base-file,$output_objdir/$soname-base '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~
+ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp~
+ $CC -Wl,--base-file,$output_objdir/$soname-base $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~
+ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp --output-lib $output_objdir/$libname.dll.a~
+ $CC $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags'
+ ;;
+
+ netbsd*)
+ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
+ archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
+ wlarc=
+ else
+ archive_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+ archive_expsym_cmds='$CC -shared -nodefaultlibs $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 | egrep 'BFD 2\.8' > /dev/null; then
+ ld_shlibs=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 | egrep ': supported targets:.* elf' > /dev/null; then
+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+ else
+ ld_shlibs=no
+ fi
+ ;;
+
+ sunos4*)
+ archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
+ wlarc=
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ *)
+ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+ else
+ ld_shlibs=no
+ fi
+ ;;
+ esac
+
+ if test "$ld_shlibs" = yes; then
+ runpath_var=LD_RUN_PATH
+ hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir'
+ export_dynamic_flag_spec='${wl}--export-dynamic'
+ case $host_os in
+ cygwin* | mingw* | pw32*)
+ # dlltool doesn't understand --whole-archive et. al.
+ whole_archive_flag_spec=
+ ;;
+ *)
+ # ancient GNU ld didn't support --whole-archive et. al.
+ if $LD --help 2>&1 | egrep 'no-whole-archive' > /dev/null; then
+ whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
+ else
+ whole_archive_flag_spec=
+ fi
+ ;;
+ esac
+ fi
+else
+ # PORTME fill in a description of your system's linker (not GNU ld)
+ case $host_os in
+ aix3*)
+ allow_undefined_flag=unsupported
+ always_export_symbols=yes
+ archive_expsym_cmds='$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.
+ hardcode_minus_L=yes
+ if test "$GCC" = yes && test -z "$link_static_flag"; then
+ # Neither direct hardcoding nor static linking is supported with a
+ # broken collect2.
+ hardcode_direct=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
+ 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.
+
+ hardcode_direct=yes
+ archive_cmds=''
+ hardcode_libdir_separator=':'
+ if test "$GCC" = yes; then
+ case $host_os in aix4.[[012]]|aix4.[[012]].*)
+ collect2name=`${CC} -print-prog-name=collect2`
+ if test -f "$collect2name" && \
+ strings "$collect2name" | grep resolve_lib_name >/dev/null
+ then
+ # We have reworked collect2
+ hardcode_direct=yes
+ else
+ # We have old collect2
+ hardcode_direct=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
+ hardcode_minus_L=yes
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_libdir_separator=
+ fi
+ esac
+
+ shared_flag='-shared'
+ else
+ # not using gcc
+ if test "$host_cpu" = ia64; then
+ shared_flag='${wl}-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 can do strange things, so it is better to
+ # generate a list of symbols to export.
+ always_export_symbols=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.
+ allow_undefined_flag='-berok'
+ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib'
+ archive_expsym_cmds="\$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
+ hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
+ allow_undefined_flag="-z nodefs"
+ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname ${wl}-h$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"
+ else
+ hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib'
+ # Warning - without using the other run time loading flags,
+ # -berok will link without error, but may produce a broken library.
+ allow_undefined_flag='${wl}-berok'
+ # This is a bit strange, but is similar to how AIX traditionally builds
+ # it's shared libraries.
+ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"' ~$AR -crlo $objdir/$libname$release.a $objdir/$soname'
+ fi
+ fi
+ ;;
+
+ amigaos*)
+ archive_cmds='$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)'
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_minus_L=yes
+ # see comment about different semantics on the GNU ld section
+ ld_shlibs=no
+ ;;
+
+ 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.
+ hardcode_libdir_flag_spec=' '
+ allow_undefined_flag=unsupported
+ # Tell ltmain to make .lib files, not .a files.
+ libext=lib
+ # FIXME: Setting linknames here is a bad hack.
+ archive_cmds='$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.
+ old_archive_from_new_cmds='true'
+ # FIXME: Should let the user specify the lib program.
+ old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs'
+ fix_srcfile_path='`cygpath -w "$srcfile"`'
+ ;;
+
+ darwin* | rhapsody*)
+ case "$host_os" in
+ rhapsody* | darwin1.[[012]])
+ allow_undefined_flag='-undefined suppress'
+ ;;
+ *) # Darwin 1.3 on
+ allow_undefined_flag='-flat_namespace -undefined suppress'
+ ;;
+ esac
+ # FIXME: Relying on posixy $() will cause problems for
+ # cross-compilation, but unfortunately the echo tests do not
+ # yet detect zsh echo's removal of \ escapes.
+ archive_cmds='$nonopt $(test "x$module" = xyes && echo -bundle || echo -dynamiclib) $allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags -install_name $rpath/$soname $verstring'
+ # We need to add '_' to the symbols in $export_symbols first
+ #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ whole_archive_flag_spec='-all_load $convenience'
+ ;;
+
+ freebsd1*)
+ ld_shlibs=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*)
+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
+ hardcode_libdir_flag_spec='-R$libdir'
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ # Unfortunately, older versions of FreeBSD 2 do not have this feature.
+ freebsd2*)
+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_direct=yes
+ hardcode_minus_L=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
+ freebsd*)
+ archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
+ hardcode_libdir_flag_spec='-R$libdir'
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ hpux9* | hpux10* | hpux11*)
+ case $host_os in
+ hpux9*) archive_cmds='$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' ;;
+ *) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;;
+ esac
+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
+ hardcode_libdir_separator=:
+ hardcode_direct=yes
+ hardcode_minus_L=yes # Not in the search PATH, but as the default
+ # location of the library.
+ export_dynamic_flag_spec='${wl}-E'
+ ;;
+
+ irix5* | irix6*)
+ if test "$GCC" = yes; then
+ archive_cmds='$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
+ archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
+ fi
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_separator=:
+ link_all_deplibs=yes
+ ;;
+
+ netbsd*)
+ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
+ else
+ archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF
+ fi
+ hardcode_libdir_flag_spec='-R$libdir'
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ newsos6)
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_direct=yes
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_separator=:
+ hardcode_shlibpath_var=no
+ ;;
+
+ openbsd*)
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ export_dynamic_flag_spec='${wl}-E'
+ else
+ case "$host_os" in
+ openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_libdir_flag_spec='-R$libdir'
+ ;;
+ *)
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ ;;
+ esac
+ fi
+ ;;
+
+ os2*)
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_minus_L=yes
+ allow_undefined_flag=unsupported
+ archive_cmds='$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'
+ old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
+ ;;
+
+ osf3*)
+ if test "$GCC" = yes; then
+ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
+ archive_cmds='$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
+ allow_undefined_flag=' -expect_unresolved \*'
+ archive_cmds='$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
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_separator=:
+ ;;
+
+ osf4* | osf5*) # as osf3* with the addition of -msym flag
+ if test "$GCC" = yes; then
+ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
+ archive_cmds='$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'
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ else
+ allow_undefined_flag=' -expect_unresolved \*'
+ archive_cmds='$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'
+ archive_expsym_cmds='for i in `cat $export_symbols`; do printf "-exported_symbol " >> $lib.exp; echo "\$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 ${objdir}/so_locations -o $lib~$rm $lib.exp'
+
+ #Both c and cxx compiler support -rpath directly
+ hardcode_libdir_flag_spec='-rpath $libdir'
+ fi
+ hardcode_libdir_separator=:
+ ;;
+
+ sco3.2v5*)
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_shlibpath_var=no
+ runpath_var=LD_RUN_PATH
+ hardcode_runpath_var=yes
+ export_dynamic_flag_spec='${wl}-Bexport'
+ ;;
+
+ solaris*)
+ # gcc --version < 3.0 without binutils cannot create self contained
+ # shared libraries reliably, requiring libgcc.a to resolve some of
+ # the object symbols generated in some cases. Libraries that use
+ # assert need libgcc.a to resolve __eprintf, for example. Linking
+ # a copy of libgcc.a into every shared library to guarantee resolving
+ # such symbols causes other problems: According to Tim Van Holder
+ # , C++ libraries end up with a separate
+ # (to the application) exception stack for one thing.
+ no_undefined_flag=' -z defs'
+ if test "$GCC" = yes; then
+ case `$CC --version 2>/dev/null` in
+ [[12]].*)
+ cat <&2
+
+*** Warning: Releases of GCC earlier than version 3.0 cannot reliably
+*** create self contained shared libraries on Solaris systems, without
+*** introducing a dependency on libgcc.a. Therefore, libtool is disabling
+*** -no-undefined support, which will at least allow you to build shared
+*** libraries. However, you may find that when you link such libraries
+*** into an application without using GCC, you have to manually add
+*** \`gcc --print-libgcc-file-name\` to the link command. We urge you to
+*** upgrade to a newer version of GCC. Another option is to rebuild your
+*** current GCC to use the GNU linker from GNU binutils 2.9.1 or newer.
+
+EOF
+ no_undefined_flag=
+ ;;
+ esac
+ fi
+ # $CC -shared without GNU ld will not create a library from C++
+ # object files and a static libstdc++, better avoid it by now
+ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ archive_expsym_cmds='$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'
+ hardcode_libdir_flag_spec='-R$libdir'
+ hardcode_shlibpath_var=no
+ case $host_os in
+ solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
+ *) # Supported since Solaris 2.6 (maybe 2.5.1?)
+ whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;;
+ esac
+ link_all_deplibs=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.
+ archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
+ else
+ archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
+ fi
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_direct=yes
+ hardcode_minus_L=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ sysv4)
+ if test "x$host_vendor" = xsno; then
+ archive_cmds='$LD -G -Bsymbolic -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_direct=yes # is this really true???
+ else
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_direct=no #Motorola manual says yes, but my tests say they lie
+ fi
+ runpath_var='LD_RUN_PATH'
+ hardcode_shlibpath_var=no
+ ;;
+
+ sysv4.3*)
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_shlibpath_var=no
+ export_dynamic_flag_spec='-Bexport'
+ ;;
+
+ sysv5*)
+ no_undefined_flag=' -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
+ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ archive_expsym_cmds='$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'
+ hardcode_libdir_flag_spec=
+ hardcode_shlibpath_var=no
+ runpath_var='LD_RUN_PATH'
+ ;;
+
+ uts4*)
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_shlibpath_var=no
+ ;;
+
+ dgux*)
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_shlibpath_var=no
+ ;;
+
+ sysv4*MP*)
+ if test -d /usr/nec; then
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_shlibpath_var=no
+ runpath_var=LD_RUN_PATH
+ hardcode_runpath_var=yes
+ ld_shlibs=yes
+ fi
+ ;;
+
+ sysv4.2uw2*)
+ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_direct=yes
+ hardcode_minus_L=no
+ hardcode_shlibpath_var=no
+ hardcode_runpath_var=yes
+ runpath_var=LD_RUN_PATH
+ ;;
+
+ sysv5uw7* | unixware7*)
+ no_undefined_flag='${wl}-z ${wl}text'
+ if test "$GCC" = yes; then
+ archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+ else
+ archive_cmds='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+ fi
+ runpath_var='LD_RUN_PATH'
+ hardcode_shlibpath_var=no
+ ;;
+
+ *)
+ ld_shlibs=no
+ ;;
+ esac
+fi
+AC_MSG_RESULT([$ld_shlibs])
+test "$ld_shlibs" = no && can_build_shared=no
+
+# Check hardcoding attributes.
+AC_MSG_CHECKING([how to hardcode library paths into programs])
+hardcode_action=
+if test -n "$hardcode_libdir_flag_spec" || \
+ test -n "$runpath_var"; then
+
+ # We can hardcode non-existant directories.
+ if test "$hardcode_direct" != 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 "$hardcode_shlibpath_var" != no &&
+ test "$hardcode_minus_L" != no; then
+ # Linking always hardcodes the temporary library directory.
+ hardcode_action=relink
+ else
+ # We can link without hardcoding, and we can hardcode nonexisting dirs.
+ hardcode_action=immediate
+ fi
+else
+ # We cannot hardcode anything, or else we can only hardcode existing
+ # directories.
+ hardcode_action=unsupported
+fi
+AC_MSG_RESULT([$hardcode_action])
+
+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
+ AC_MSG_RESULT([no])
+fi
+
+reload_cmds='$LD$reload_flag -o $output$reload_objs'
+test -z "$deplibs_check_method" && deplibs_check_method=unknown
+
+# PORTME Fill in your ld.so characteristics
+AC_MSG_CHECKING([dynamic linker characteristics])
+library_names_spec=
+libname_spec='lib$name'
+soname_spec=
+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"
+sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
+
+case $host_os in
+aix3*)
+ version_type=linux
+ library_names_spec='${libname}${release}.so$versuffix $libname.a'
+ shlibpath_var=LIBPATH
+
+ # AIX has no versioning support, so we append a major version to the name.
+ soname_spec='${libname}${release}.so$major'
+ ;;
+
+aix4* | aix5*)
+ version_type=linux
+ if test "$host_cpu" = ia64; then
+ # AIX 5 supports IA64
+ library_names_spec='${libname}${release}.so$major ${libname}${release}.so$versuffix $libname.so'
+ 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}.so$versuffix ${libname}${release}.so$major $libname.so'
+ 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}.so$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}.so'
+ dynamic_linker="$host_os ld.so"
+ shlibpath_var=LIBRARY_PATH
+ ;;
+
+bsdi4*)
+ version_type=linux
+ need_version=no
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$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"
+ export_dynamic_flag_spec=-rdynamic
+ # 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
+ need_version=no
+ need_lib_prefix=no
+ case $GCC,$host_os in
+ yes,cygwin*)
+ library_names_spec='$libname.dll.a'
+ soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll'
+ postinstall_cmds='dlpath=`bash 2>&1 -c '\''. $dir/${file}i;echo \$dlname'\''`~
+ dldir=$destdir/`dirname \$dlpath`~
+ test -d \$dldir || mkdir -p \$dldir~
+ $install_prog .libs/$dlname \$dldir/$dlname'
+ postuninstall_cmds='dldll=`bash 2>&1 -c '\''. $file; echo \$dlname'\''`~
+ dlpath=$dir/\$dldll~
+ $rm \$dlpath'
+ ;;
+ yes,mingw*)
+ library_names_spec='${libname}`echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll'
+ sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g"`
+ ;;
+ yes,pw32*)
+ library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll'
+ ;;
+ *)
+ library_names_spec='${libname}`echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll $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
+ # FIXME: Relying on posixy $() will cause problems for
+ # cross-compilation, but unfortunately the echo tests do not
+ # yet detect zsh echo's removal of \ escapes.
+ library_names_spec='${libname}${release}${versuffix}.$(test .$module = .yes && echo so || echo dylib) ${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib) ${libname}.$(test .$module = .yes && echo so || echo dylib)'
+ soname_spec='${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib)'
+ shlibpath_overrides_runpath=yes
+ shlibpath_var=DYLD_LIBRARY_PATH
+ ;;
+
+freebsd1*)
+ dynamic_linker=no
+ ;;
+
+freebsd*)
+ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
+ version_type=freebsd-$objformat
+ case $version_type in
+ freebsd-elf*)
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so'
+ need_version=no
+ need_lib_prefix=no
+ ;;
+ freebsd-*)
+ library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix'
+ need_version=yes
+ ;;
+ esac
+ shlibpath_var=LD_LIBRARY_PATH
+ case $host_os in
+ freebsd2*)
+ shlibpath_overrides_runpath=yes
+ ;;
+ *)
+ 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}.so$versuffix ${libname}${release}.so${major} ${libname}.so'
+ soname_spec='${libname}${release}.so$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.
+ dynamic_linker="$host_os dld.sl"
+ version_type=sunos
+ need_lib_prefix=no
+ need_version=no
+ shlibpath_var=SHLIB_PATH
+ shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
+ library_names_spec='${libname}${release}.sl$versuffix ${libname}${release}.sl$major $libname.sl'
+ soname_spec='${libname}${release}.sl$major'
+ # HP-UX runs *really* slowly unless shared libraries are mode 555.
+ postinstall_cmds='chmod 555 $lib'
+ ;;
+
+irix5* | irix6*)
+ version_type=irix
+ need_lib_prefix=no
+ need_version=no
+ soname_spec='${libname}${release}.so$major'
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so $libname.so'
+ case $host_os in
+ irix5*)
+ libsuff= shlibsuff=
+ ;;
+ *)
+ case $LD in # libtool.m4 will add one of these switches to LD
+ *-32|*"-32 ") libsuff= shlibsuff= libmagic=32-bit;;
+ *-n32|*"-n32 ") libsuff=32 shlibsuff=N32 libmagic=N32;;
+ *-64|*"-64 ") 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}"
+ ;;
+
+# No shared lib support for Linux oldld, aout, or coff.
+linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*)
+ dynamic_linker=no
+ ;;
+
+# This must be Linux ELF.
+linux-gnu*)
+ version_type=linux
+ need_lib_prefix=no
+ need_version=no
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$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
+
+ # 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'
+ ;;
+
+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}.so$versuffix ${libname}.so$versuffix'
+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
+ dynamic_linker='NetBSD (a.out) ld.so'
+ else
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so ${libname}.so'
+ soname_spec='${libname}${release}.so$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}.so$versuffix ${libname}${release}.so$major $libname.so'
+ shlibpath_var=LD_LIBRARY_PATH
+ shlibpath_overrides_runpath=yes
+ ;;
+
+openbsd*)
+ version_type=sunos
+ need_lib_prefix=no
+ need_version=no
+ 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
+ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
+ shlibpath_var=LD_LIBRARY_PATH
+ ;;
+
+os2*)
+ libname_spec='$name'
+ need_lib_prefix=no
+ library_names_spec='$libname.dll $libname.a'
+ dynamic_linker='OS/2 ld.exe'
+ shlibpath_var=LIBPATH
+ ;;
+
+osf3* | osf4* | osf5*)
+ version_type=osf
+ need_version=no
+ soname_spec='${libname}${release}.so'
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so'
+ 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}.so$major'
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ shlibpath_var=LD_LIBRARY_PATH
+ ;;
+
+solaris*)
+ version_type=linux
+ need_lib_prefix=no
+ need_version=no
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$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}.so$versuffix ${libname}.so$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}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$major'
+ shlibpath_var=LD_LIBRARY_PATH
+ case $host_vendor in
+ sni)
+ shlibpath_overrides_runpath=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
+ ;;
+
+uts4*)
+ version_type=linux
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$major'
+ shlibpath_var=LD_LIBRARY_PATH
+ ;;
+
+dgux*)
+ version_type=linux
+ need_lib_prefix=no
+ need_version=no
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$major'
+ shlibpath_var=LD_LIBRARY_PATH
+ ;;
+
+sysv4*MP*)
+ if test -d /usr/nec ;then
+ version_type=linux
+ library_names_spec='$libname.so.$versuffix $libname.so.$major $libname.so'
+ soname_spec='$libname.so.$major'
+ shlibpath_var=LD_LIBRARY_PATH
+ fi
+ ;;
+
+*)
+ dynamic_linker=no
+ ;;
+esac
+AC_MSG_RESULT([$dynamic_linker])
+test "$dynamic_linker" = no && can_build_shared=no
+
+# Report the final consequences.
+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*)
+ 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])
+
+if test "$hardcode_action" = 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
+
+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
+
+AC_LIBTOOL_DLOPEN_SELF
+
+if test "$enable_shared" = yes && test "$GCC" = yes; then
+ case $archive_cmds 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])
+ AC_CACHE_VAL([lt_cv_archive_cmds_need_lc],
+ [$rm conftest*
+ echo 'static int dummy;' > conftest.$ac_ext
+
+ if AC_TRY_EVAL(ac_compile); then
+ soname=conftest
+ lib=conftest
+ libobjs=conftest.$ac_objext
+ deplibs=
+ wl=$lt_cv_prog_cc_wl
+ compiler_flags=-v
+ linker_flags=-v
+ verstring=
+ output_objdir=.
+ libname=conftest
+ save_allow_undefined_flag=$allow_undefined_flag
+ allow_undefined_flag=
+ if AC_TRY_EVAL(archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1)
+ then
+ lt_cv_archive_cmds_need_lc=no
+ else
+ lt_cv_archive_cmds_need_lc=yes
+ fi
+ allow_undefined_flag=$save_allow_undefined_flag
+ else
+ cat conftest.err 1>&5
+ fi])
+ AC_MSG_RESULT([$lt_cv_archive_cmds_need_lc])
+ ;;
+ esac
+fi
+need_lc=${lt_cv_archive_cmds_need_lc-yes}
+
+# The second clause should only fire when bootstrapping the
+# libtool distribution, otherwise you forgot to ship ltmain.sh
+# with your package, and you will get complaints that there are
+# no rules to generate ltmain.sh.
+if test -f "$ltmain"; then
+ :
+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.
+ test -f Makefile && make "$ltmain"
+fi
+
+if test -f "$ltmain"; then
+ trap "$rm \"${ofile}T\"; exit 1" 1 2 15
+ $rm -f "${ofile}T"
+
+ echo creating $ofile
+
+ # Now quote all the things that may contain metacharacters while being
+ # careful not to overquote the AC_SUBSTed values. We take copies of the
+ # variables and quote the copies for generation of the libtool script.
+ for var in echo old_CC old_CFLAGS \
+ AR AR_FLAGS CC LD LN_S NM SHELL \
+ reload_flag reload_cmds wl \
+ pic_flag link_static_flag no_builtin_flag export_dynamic_flag_spec \
+ thread_safe_flag_spec whole_archive_flag_spec libname_spec \
+ library_names_spec soname_spec \
+ RANLIB old_archive_cmds old_archive_from_new_cmds old_postinstall_cmds \
+ old_postuninstall_cmds archive_cmds archive_expsym_cmds postinstall_cmds \
+ postuninstall_cmds extract_expsyms_cmds old_archive_from_expsyms_cmds \
+ old_striplib striplib file_magic_cmd export_symbols_cmds \
+ deplibs_check_method allow_undefined_flag no_undefined_flag \
+ finish_cmds finish_eval global_symbol_pipe global_symbol_to_cdecl \
+ global_symbol_to_c_name_address \
+ hardcode_libdir_flag_spec hardcode_libdir_separator \
+ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \
+ compiler_c_o compiler_o_lo need_locks exclude_expsyms include_expsyms; do
+
+ case $var in
+ reload_cmds | old_archive_cmds | old_archive_from_new_cmds | \
+ old_postinstall_cmds | old_postuninstall_cmds | \
+ export_symbols_cmds | archive_cmds | archive_expsym_cmds | \
+ extract_expsyms_cmds | old_archive_from_expsyms_cmds | \
+ postinstall_cmds | postuninstall_cmds | \
+ finish_cmds | sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
+ # Double-quote double-evaled strings.
+ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
+ ;;
+ *)
+ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
+ ;;
+ esac
+ done
+
+ cat <<__EOF__ > "${ofile}T"
+#! $SHELL
+
+# `$echo "$ofile" | 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-2000 Free Software Foundation, Inc.
+# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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.
+
+# Sed that helps us avoid accidentally triggering echo(1) options like -n.
+Xsed="sed -e s/^X//"
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
+
+# ### BEGIN LIBTOOL CONFIG
+
+# 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=$need_lc
+
+# Whether or not to optimize for fast installation.
+fast_install=$enable_fast_install
+
+# The host system.
+host_alias=$host_alias
+host=$host
+
+# An echo program that does not interpret backslashes.
+echo=$lt_echo
+
+# The archiver.
+AR=$lt_AR
+AR_FLAGS=$lt_AR_FLAGS
+
+# The default C compiler.
+CC=$lt_CC
+
+# Is the compiler the GNU C compiler?
+with_gcc=$GCC
+
+# The linker used to build libraries.
+LD=$lt_LD
+
+# 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=$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_wl
+
+# Object file suffix (normally "o").
+objext="$ac_objext"
+
+# Old archive suffix (normally "a").
+libext="$libext"
+
+# Executable file suffix (normally "").
+exeext="$exeext"
+
+# Additional compiler flags for building library objects.
+pic_flag=$lt_pic_flag
+pic_mode=$pic_mode
+
+# Does compiler simultaneously support -c and -o options?
+compiler_c_o=$lt_compiler_c_o
+
+# Can we write directly to a .lo ?
+compiler_o_lo=$lt_compiler_o_lo
+
+# 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_link_static_flag
+
+# Compiler flag to turn off builtin functions.
+no_builtin_flag=$lt_no_builtin_flag
+
+# Compiler flag to allow reflexive dlopens.
+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
+
+# Compiler flag to generate shared objects directly from archives.
+whole_archive_flag_spec=$lt_whole_archive_flag_spec
+
+# Compiler flag to generate thread-safe objects.
+thread_safe_flag_spec=$lt_thread_safe_flag_spec
+
+# 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_old_archive_cmds
+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_old_archive_from_new_cmds
+
+# Create a temporary old-style archive to link instead of a shared archive.
+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
+
+# Commands used to build and install a shared archive.
+archive_cmds=$lt_archive_cmds
+archive_expsym_cmds=$lt_archive_expsym_cmds
+postinstall_cmds=$lt_postinstall_cmds
+postuninstall_cmds=$lt_postuninstall_cmds
+
+# Commands to strip libraries.
+old_striplib=$lt_old_striplib
+striplib=$lt_striplib
+
+# 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_allow_undefined_flag
+
+# Flag that forces no undefined symbols.
+no_undefined_flag=$lt_no_undefined_flag
+
+# 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_global_symbol_pipe
+
+# Transform the output of nm in a proper C declaration
+global_symbol_to_cdecl=$lt_global_symbol_to_cdecl
+
+# Transform the output of nm in a C name address pair
+global_symbol_to_c_name_address=$lt_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=$hardcode_action
+
+# 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_hardcode_libdir_flag_spec
+
+# Whether we need a single -rpath flag with a separated argument.
+hardcode_libdir_separator=$lt_hardcode_libdir_separator
+
+# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
+# resulting binary.
+hardcode_direct=$hardcode_direct
+
+# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
+# resulting binary.
+hardcode_minus_L=$hardcode_minus_L
+
+# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
+# the resulting binary.
+hardcode_shlibpath_var=$hardcode_shlibpath_var
+
+# 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=$link_all_deplibs
+
+# 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="$fix_srcfile_path"
+
+# Set to yes if exported symbols are required.
+always_export_symbols=$always_export_symbols
+
+# The commands to list exported symbols.
+export_symbols_cmds=$lt_export_symbols_cmds
+
+# 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_exclude_expsyms
+
+# Symbols that must always be exported.
+include_expsyms=$lt_include_expsyms
+
+# ### END LIBTOOL CONFIG
+
+__EOF__
+
+ case $host_os in
+ aix3*)
+ cat <<\EOF >> "${ofile}T"
+
+# 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
+
+ case $host_os in
+ cygwin* | mingw* | pw32* | os2*)
+ cat <<'EOF' >> "${ofile}T"
+ # This is a source program that is used to create dlls on Windows
+ # Don't remove nor modify the starting and closing comments
+# /* 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 */
+ # This is a source program that is used to create import libraries
+ # on Windows for dlls which lack them. Don't remove nor modify the
+ # starting and closing comments
+# /* impgen.c starts here */
+# /* Copyright (C) 1999-2000 Free Software Foundation, Inc.
+#
+# This file is part of GNU libtool.
+#
+# 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.
+# */
+#
+# #include /* for printf() */
+# #include /* for open(), lseek(), read() */
+# #include /* for O_RDONLY, O_BINARY */
+# #include /* for strdup() */
+#
+# /* O_BINARY isn't required (or even defined sometimes) under Unix */
+# #ifndef O_BINARY
+# #define O_BINARY 0
+# #endif
+#
+# static unsigned int
+# pe_get16 (fd, offset)
+# int fd;
+# int offset;
+# {
+# unsigned char b[2];
+# lseek (fd, offset, SEEK_SET);
+# read (fd, b, 2);
+# return b[0] + (b[1]<<8);
+# }
+#
+# static unsigned int
+# pe_get32 (fd, offset)
+# int fd;
+# int offset;
+# {
+# unsigned char b[4];
+# lseek (fd, offset, SEEK_SET);
+# read (fd, b, 4);
+# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24);
+# }
+#
+# static unsigned int
+# pe_as32 (ptr)
+# void *ptr;
+# {
+# unsigned char *b = ptr;
+# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24);
+# }
+#
+# int
+# main (argc, argv)
+# int argc;
+# char *argv[];
+# {
+# int dll;
+# unsigned long pe_header_offset, opthdr_ofs, num_entries, i;
+# unsigned long export_rva, export_size, nsections, secptr, expptr;
+# unsigned long name_rvas, nexp;
+# unsigned char *expdata, *erva;
+# char *filename, *dll_name;
+#
+# filename = argv[1];
+#
+# dll = open(filename, O_RDONLY|O_BINARY);
+# if (dll < 1)
+# return 1;
+#
+# dll_name = filename;
+#
+# for (i=0; filename[i]; i++)
+# if (filename[i] == '/' || filename[i] == '\\' || filename[i] == ':')
+# dll_name = filename + i +1;
+#
+# pe_header_offset = pe_get32 (dll, 0x3c);
+# opthdr_ofs = pe_header_offset + 4 + 20;
+# num_entries = pe_get32 (dll, opthdr_ofs + 92);
+#
+# if (num_entries < 1) /* no exports */
+# return 1;
+#
+# export_rva = pe_get32 (dll, opthdr_ofs + 96);
+# export_size = pe_get32 (dll, opthdr_ofs + 100);
+# nsections = pe_get16 (dll, pe_header_offset + 4 +2);
+# secptr = (pe_header_offset + 4 + 20 +
+# pe_get16 (dll, pe_header_offset + 4 + 16));
+#
+# expptr = 0;
+# for (i = 0; i < nsections; i++)
+# {
+# char sname[8];
+# unsigned long secptr1 = secptr + 40 * i;
+# unsigned long vaddr = pe_get32 (dll, secptr1 + 12);
+# unsigned long vsize = pe_get32 (dll, secptr1 + 16);
+# unsigned long fptr = pe_get32 (dll, secptr1 + 20);
+# lseek(dll, secptr1, SEEK_SET);
+# read(dll, sname, 8);
+# if (vaddr <= export_rva && vaddr+vsize > export_rva)
+# {
+# expptr = fptr + (export_rva - vaddr);
+# if (export_rva + export_size > vaddr + vsize)
+# export_size = vsize - (export_rva - vaddr);
+# break;
+# }
+# }
+#
+# expdata = (unsigned char*)malloc(export_size);
+# lseek (dll, expptr, SEEK_SET);
+# read (dll, expdata, export_size);
+# erva = expdata - export_rva;
+#
+# nexp = pe_as32 (expdata+24);
+# name_rvas = pe_as32 (expdata+32);
+#
+# printf ("EXPORTS\n");
+# for (i = 0; i> "${ofile}T" || (rm -f "${ofile}T"; exit 1)
+
+ mv -f "${ofile}T" "$ofile" || \
+ (rm -f "$ofile" && cp "${ofile}T" "$ofile" && rm -f "${ofile}T")
+ chmod +x "$ofile"
+fi
+
+])# _LT_AC_LTCONFIG_HACK
+
+# AC_LIBTOOL_DLOPEN - enable checks for dlopen support
+AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])])
+
+# AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's
+AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])])
+
+# AC_ENABLE_SHARED - implement the --enable-shared flag
+# Usage: AC_ENABLE_SHARED[(DEFAULT)]
+# Where 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,
+changequote(<<, >>)dnl
+<< --enable-shared[=PKGS] build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT],
+changequote([, ])dnl
+[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.
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
+ for pkg in $enableval; do
+ if test "X$pkg" = "X$p"; then
+ enable_shared=yes
+ fi
+ done
+ IFS="$ac_save_ifs"
+ ;;
+esac],
+enable_shared=AC_ENABLE_SHARED_DEFAULT)dnl
+])
+
+# 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_ENABLE_STATIC - implement the --enable-static flag
+# Usage: AC_ENABLE_STATIC[(DEFAULT)]
+# Where 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,
+changequote(<<, >>)dnl
+<< --enable-static[=PKGS] build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT],
+changequote([, ])dnl
+[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.
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
+ for pkg in $enableval; do
+ if test "X$pkg" = "X$p"; then
+ enable_static=yes
+ fi
+ done
+ IFS="$ac_save_ifs"
+ ;;
+esac],
+enable_static=AC_ENABLE_STATIC_DEFAULT)dnl
+])
+
+# 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_ENABLE_FAST_INSTALL - implement the --enable-fast-install flag
+# Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)]
+# Where 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,
+changequote(<<, >>)dnl
+<< --enable-fast-install[=PKGS] optimize for fast installation [default=>>AC_ENABLE_FAST_INSTALL_DEFAULT],
+changequote([, ])dnl
+[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.
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
+ for pkg in $enableval; do
+ if test "X$pkg" = "X$p"; then
+ enable_fast_install=yes
+ fi
+ done
+ IFS="$ac_save_ifs"
+ ;;
+esac],
+enable_fast_install=AC_ENABLE_FAST_INSTALL_DEFAULT)dnl
+])
+
+# 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_LIBTOOL_PICMODE - implement the --with-pic flag
+# Usage: AC_LIBTOOL_PICMODE[(MODE)]
+# Where 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_PATH_TOOL_PREFIX - find a file program which can recognise shared library
+AC_DEFUN([AC_PATH_TOOL_PREFIX],
+[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_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
+ ;;
+ *)
+ ac_save_MAGIC_CMD="$MAGIC_CMD"
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
+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
+ 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="$ac_save_ifs"
+ MAGIC_CMD="$ac_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_MAGIC - find a file program which can recognise a shared library
+AC_DEFUN([AC_PATH_MAGIC],
+[AC_REQUIRE([AC_CHECK_TOOL_PREFIX])dnl
+AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin:$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)
+ else
+ MAGIC_CMD=:
+ fi
+fi
+])
+
+
+# AC_PROG_LD - find the path to the GNU or non-GNU linker
+AC_DEFUN([AC_PROG_LD],
+[AC_ARG_WITH(gnu-ld,
+[ --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([AC_PROG_CC])dnl
+AC_REQUIRE([AC_CANONICAL_HOST])dnl
+AC_REQUIRE([AC_CANONICAL_BUILD])dnl
+AC_REQUIRE([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR])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 GCC])
+ 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.
+ [[\\/]]* | [[A-Za-z]]:[[\\/]]*)
+ re_direlt='/[[^/]][[^/]]*/\.\./'
+ # Canonicalize the path 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
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+ for ac_dir in $PATH; do
+ 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 GNU ld's only accept -v.
+ # Break only if it was the GNU/non-GNU ld that we prefer.
+ if "$lt_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
+ test "$with_gnu_ld" != no && break
+ else
+ test "$with_gnu_ld" != yes && break
+ fi
+ fi
+ done
+ IFS="$ac_save_ifs"
+else
+ lt_cv_path_LD="$LD" # Let the user override the test with a path.
+fi])
+LD="$lt_cv_path_LD"
+if test -n "$LD"; then
+ AC_MSG_RESULT($LD)
+else
+ AC_MSG_RESULT(no)
+fi
+test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
+AC_PROG_LD_GNU
+])
+
+# AC_PROG_LD_GNU -
+AC_DEFUN([AC_PROG_LD_GNU],
+[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
+[# I'd rather use --version here, but apparently some GNU ld's only accept -v.
+if $LD -v 2>&1 &5; then
+ lt_cv_prog_gnu_ld=yes
+else
+ lt_cv_prog_gnu_ld=no
+fi])
+with_gnu_ld=$lt_cv_prog_gnu_ld
+])
+
+# AC_PROG_LD_RELOAD_FLAG - find reload flag for linker
+# -- PORTME Some linkers may need a different reload flag.
+AC_DEFUN([AC_PROG_LD_RELOAD_FLAG],
+[AC_CACHE_CHECK([for $LD option to reload object files], lt_cv_ld_reload_flag,
+[lt_cv_ld_reload_flag='-r'])
+reload_flag=$lt_cv_ld_reload_flag
+test -n "$reload_flag" && reload_flag=" $reload_flag"
+])
+
+# AC_DEPLIBS_CHECK_METHOD - how to check for library dependencies
+# -- PORTME fill in with the dynamic library characteristics
+AC_DEFUN([AC_DEPLIBS_CHECK_METHOD],
+[AC_CACHE_CHECK([how to recognise dependant libraries],
+lt_cv_deplibs_check_method,
+[lt_cv_file_magic_cmd='$MAGIC_CMD'
+lt_cv_file_magic_test_file=
+lt_cv_deplibs_check_method='unknown'
+# Need to set the preceding variable on all platforms that support
+# interlibrary dependencies.
+# 'none' -- dependencies not supported.
+# `unknown' -- same as none, but documents that we really don't know.
+# 'pass_all' -- all dependencies passed with no checks.
+# 'test_compile' -- check by making test program.
+# 'file_magic [[regex]]' -- check by looking for files in library path
+# which responds to the $file_magic_cmd with a given egrep regex.
+# If you have `file' or equivalent on your system and you're not sure
+# whether `pass_all' will *always* work, you probably want this one.
+
+case $host_os in
+aix4* | aix5*)
+ lt_cv_deplibs_check_method=pass_all
+ ;;
+
+beos*)
+ lt_cv_deplibs_check_method=pass_all
+ ;;
+
+bsdi4*)
+ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
+ lt_cv_file_magic_cmd='/usr/bin/file -L'
+ lt_cv_file_magic_test_file=/shlib/libc.so
+ ;;
+
+cygwin* | mingw* | pw32*)
+ lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
+ lt_cv_file_magic_cmd='$OBJDUMP -f'
+ ;;
+
+darwin* | rhapsody*)
+ lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library'
+ lt_cv_file_magic_cmd='/usr/bin/file -L'
+ case "$host_os" in
+ rhapsody* | darwin1.[[012]])
+ lt_cv_file_magic_test_file=`echo /System/Library/Frameworks/System.framework/Versions/*/System | head -1`
+ ;;
+ *) # Darwin 1.3 on
+ lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib'
+ ;;
+ esac
+ ;;
+
+freebsd*)
+ if echo __ELF__ | $CC -E - | grep __ELF__ > /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)/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_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
+ lt_cv_file_magic_cmd=/usr/bin/file
+ lt_cv_file_magic_test_file=/usr/lib/libc.sl
+ ;;
+
+irix5* | irix6*)
+ case $host_os in
+ irix5*)
+ # this will be overridden with pass_all, but let us keep it just in case
+ lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1"
+ ;;
+ *)
+ case $LD in
+ *-32|*"-32 ") libmagic=32-bit;;
+ *-n32|*"-n32 ") libmagic=N32;;
+ *-64|*"-64 ") libmagic=64-bit;;
+ *) libmagic=never-match;;
+ esac
+ # this will be overridden with pass_all, but let us keep it just in case
+ lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[[1234]] dynamic lib MIPS - version 1"
+ ;;
+ esac
+ lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*`
+ lt_cv_deplibs_check_method=pass_all
+ ;;
+
+# This must be Linux ELF.
+linux-gnu*)
+ case $host_cpu in
+ alpha* | hppa* | i*86 | powerpc* | sparc* | ia64* | s390* )
+ lt_cv_deplibs_check_method=pass_all ;;
+ *)
+ # glibc up to 2.1.1 does not perform some relocations on ARM
+ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;;
+ esac
+ lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
+ ;;
+
+netbsd*)
+ if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
+ lt_cv_deplibs_check_method='match_pattern /lib[[^/\.]]+\.so\.[[0-9]]+\.[[0-9]]+$'
+ else
+ lt_cv_deplibs_check_method='match_pattern /lib[[^/\.]]+\.so$'
+ 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
+ ;;
+
+openbsd*)
+ lt_cv_file_magic_cmd=/usr/bin/file
+ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
+ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+ lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB shared object'
+ else
+ lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library'
+ fi
+ ;;
+
+osf3* | osf4* | osf5*)
+ # this will be overridden with pass_all, but let us keep it just in case
+ lt_cv_deplibs_check_method='file_magic COFF format alpha shared library'
+ lt_cv_file_magic_test_file=/shlib/libc.so
+ lt_cv_deplibs_check_method=pass_all
+ ;;
+
+sco3.2v5*)
+ lt_cv_deplibs_check_method=pass_all
+ ;;
+
+solaris*)
+ lt_cv_deplibs_check_method=pass_all
+ lt_cv_file_magic_test_file=/lib/libc.so
+ ;;
+
+sysv5uw[[78]]* | sysv4*uw2*)
+ 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
+ ;;
+ esac
+ ;;
+esac
+])
+file_magic_cmd=$lt_cv_file_magic_cmd
+deplibs_check_method=$lt_cv_deplibs_check_method
+])
+
+
+# AC_PROG_NM - find the path to a BSD-compatible name lister
+AC_DEFUN([AC_PROG_NM],
+[AC_REQUIRE([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR])dnl
+AC_MSG_CHECKING([for BSD-compatible nm])
+AC_CACHE_VAL(lt_cv_path_NM,
+[if test -n "$NM"; then
+ # Let the user override the test.
+ lt_cv_path_NM="$NM"
+else
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+ for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
+ 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
+ if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then
+ lt_cv_path_NM="$tmp_nm -B"
+ break
+ elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
+ lt_cv_path_NM="$tmp_nm -p"
+ break
+ else
+ 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
+ fi
+ fi
+ done
+ IFS="$ac_save_ifs"
+ test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
+fi])
+NM="$lt_cv_path_NM"
+AC_MSG_RESULT([$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*)
+ # These system don't have libm
+ ;;
+*-ncr-sysv4.3*)
+ AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
+ AC_CHECK_LIB(m, main, LIBM="$LIBM -lm")
+ ;;
+*)
+ AC_CHECK_LIB(m, main, LIBM="-lm")
+ ;;
+esac
+])
+
+# AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for
+# the libltdl convenience library and INCLTDL to the include flags for
+# the libltdl header and adds --enable-ltdl-convenience to the
+# configure arguments. Note that LIBLTDL and INCLTDL are not
+# AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If DIR is not
+# provided, it is assumed to be `libltdl'. LIBLTDL will be prefixed
+# with '${top_builddir}/' and INCLTDL 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
+ INCLTDL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
+])
+
+# AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for
+# the libltdl installable library and INCLTDL to the include flags for
+# the libltdl header and adds --enable-ltdl-install to the configure
+# arguments. Note that LIBLTDL and INCLTDL are not AC_SUBSTed, nor is
+# AC_CONFIG_SUBDIRS called. If DIR is not provided and an installed
+# libltdl is not found, it is assumed to be `libltdl'. LIBLTDL will
+# be prefixed with '${top_builddir}/' and INCLTDL 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.
+# 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, main,
+ [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
+ INCLTDL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
+ else
+ ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
+ LIBLTDL="-lltdl"
+ INCLTDL=
+ fi
+])
+
+# 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])
+
+# Add --enable-maintainer-mode option to configure.
+# From Jim Meyering
+
+# serial 1
+
+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
+]
+)
+
+# Define a conditional.
+
+AC_DEFUN([AM_CONDITIONAL],
+[AC_SUBST($1_TRUE)
+AC_SUBST($1_FALSE)
+if $2; then
+ $1_TRUE=
+ $1_FALSE='#'
+else
+ $1_TRUE='#'
+ $1_FALSE=
+fi])
+
diff --git a/src/external/3rd/library/libxml/c14n.lo b/src/external/3rd/library/libxml/c14n.lo
new file mode 100644
index 000000000..67b0b755a
Binary files /dev/null and b/src/external/3rd/library/libxml/c14n.lo differ
diff --git a/src/external/3rd/library/libxml/catalog.lo b/src/external/3rd/library/libxml/catalog.lo
new file mode 100644
index 000000000..fc6818fea
Binary files /dev/null and b/src/external/3rd/library/libxml/catalog.lo differ
diff --git a/src/external/3rd/library/libxml/config.status b/src/external/3rd/library/libxml/config.status
new file mode 100644
index 000000000..e30ca923b
--- /dev/null
+++ b/src/external/3rd/library/libxml/config.status
@@ -0,0 +1,1110 @@
+#! /bin/sh
+# Generated by configure.
+# Run this file to recreate the current configuration.
+# Compiler output produced by configure, useful for debugging
+# configure, is in config.log if it exists.
+
+debug=false
+SHELL=${CONFIG_SHELL-/bin/sh}
+
+## --------------------- ##
+## M4sh Initialization. ##
+## --------------------- ##
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
+ set -o posix
+fi
+
+# NLS nuisances.
+# Support unset when possible.
+if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
+ as_unset=unset
+else
+ as_unset=false
+fi
+
+(set +x; test -n "`(LANG=C; export LANG) 2>&1`") &&
+ { $as_unset LANG || test "${LANG+set}" != set; } ||
+ { LANG=C; export LANG; }
+(set +x; test -n "`(LC_ALL=C; export LC_ALL) 2>&1`") &&
+ { $as_unset LC_ALL || test "${LC_ALL+set}" != set; } ||
+ { LC_ALL=C; export LC_ALL; }
+(set +x; test -n "`(LC_TIME=C; export LC_TIME) 2>&1`") &&
+ { $as_unset LC_TIME || test "${LC_TIME+set}" != set; } ||
+ { LC_TIME=C; export LC_TIME; }
+(set +x; test -n "`(LC_CTYPE=C; export LC_CTYPE) 2>&1`") &&
+ { $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set; } ||
+ { LC_CTYPE=C; export LC_CTYPE; }
+(set +x; test -n "`(LANGUAGE=C; export LANGUAGE) 2>&1`") &&
+ { $as_unset LANGUAGE || test "${LANGUAGE+set}" != set; } ||
+ { LANGUAGE=C; export LANGUAGE; }
+(set +x; test -n "`(LC_COLLATE=C; export LC_COLLATE) 2>&1`") &&
+ { $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set; } ||
+ { LC_COLLATE=C; export LC_COLLATE; }
+(set +x; test -n "`(LC_NUMERIC=C; export LC_NUMERIC) 2>&1`") &&
+ { $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set; } ||
+ { LC_NUMERIC=C; export LC_NUMERIC; }
+(set +x; test -n "`(LC_MESSAGES=C; export LC_MESSAGES) 2>&1`") &&
+ { $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set; } ||
+ { LC_MESSAGES=C; export LC_MESSAGES; }
+
+
+# Name of the executable.
+as_me=`(basename "$0") 2>/dev/null ||
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$0" : 'X\(//\)$' \| \
+ X"$0" : 'X\(/\)$' \| \
+ . : '\(.\)' 2>/dev/null ||
+echo X/"$0" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
+ /^X\/\(\/\/\)$/{ s//\1/; q; }
+ /^X\/\(\/\).*/{ s//\1/; q; }
+ s/.*/./; q'`
+
+# PATH needs CR, and LINENO needs CR and PATH.
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conftest.sh
+ echo "exit 0" >>conftest.sh
+ chmod +x conftest.sh
+ if (PATH=".;."; conftest.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
+ fi
+ rm -f conftest.sh
+fi
+
+
+ as_lineno_1=$LINENO
+ as_lineno_2=$LINENO
+ as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
+ test "x$as_lineno_1" != "x$as_lineno_2" &&
+ test "x$as_lineno_3" = "x$as_lineno_2" || {
+ # Find who we are. Look in the path if we contain no path at all
+ # relative or not.
+ case $0 in
+ *[\\/]* ) as_myself=$0 ;;
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+done
+
+ ;;
+ esac
+ # We did not find ourselves, most probably we were run as `sh COMMAND'
+ # in which case we are not to be found in the path.
+ if test "x$as_myself" = x; then
+ as_myself=$0
+ fi
+ if test ! -f "$as_myself"; then
+ { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
+echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
+ { (exit 1); exit 1; }; }
+ fi
+ case $CONFIG_SHELL in
+ '')
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for as_base in sh bash ksh sh5; do
+ case $as_dir in
+ /*)
+ if ("$as_dir/$as_base" -c '
+ as_lineno_1=$LINENO
+ as_lineno_2=$LINENO
+ as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
+ test "x$as_lineno_1" != "x$as_lineno_2" &&
+ test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
+ CONFIG_SHELL=$as_dir/$as_base
+ export CONFIG_SHELL
+ exec "$CONFIG_SHELL" "$0" ${1+"$@"}
+ fi;;
+ esac
+ done
+done
+;;
+ esac
+
+ # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
+ # uniformly replaced by the line number. The first 'sed' inserts a
+ # line-number line before each line; the second 'sed' does the real
+ # work. The second script uses 'N' to pair each line-number line
+ # with the numbered line, and appends trailing '-' during
+ # substitution so that $LINENO is not a special case at line end.
+ # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
+ # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
+ sed '=' <$as_myself |
+ sed '
+ N
+ s,$,-,
+ : loop
+ s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
+ t loop
+ s,-$,,
+ s,^['$as_cr_digits']*\n,,
+ ' >$as_me.lineno &&
+ chmod +x $as_me.lineno ||
+ { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
+echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
+ { (exit 1); exit 1; }; }
+
+ # Don't try to exec as it changes $[0], causing all sort of problems
+ # (the dirname of $[0] is not the place where we might find the
+ # original and so on. Autoconf is especially sensible to this).
+ . ./$as_me.lineno
+ # Exit status is that of the last command.
+ exit
+}
+
+
+case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
+ *c*,-n*) ECHO_N= ECHO_C='
+' ECHO_T=' ' ;;
+ *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
+ *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
+esac
+
+if expr a : '\(a\)' >/dev/null 2>&1; then
+ as_expr=expr
+else
+ as_expr=false
+fi
+
+rm -f conf$$ conf$$.exe conf$$.file
+echo >conf$$.file
+if ln -s conf$$.file conf$$ 2>/dev/null; then
+ # We could just check for DJGPP; but this test a) works b) is more generic
+ # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
+ if test -f conf$$.exe; then
+ # Don't use ln at all; we don't have any links
+ as_ln_s='cp -p'
+ else
+ as_ln_s='ln -s'
+ fi
+elif ln conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s=ln
+else
+ as_ln_s='cp -p'
+fi
+rm -f conf$$ conf$$.exe conf$$.file
+
+as_executable_p="test -f"
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
+
+
+# IFS
+# We need space, tab and new line, in precisely that order.
+as_nl='
+'
+IFS=" $as_nl"
+
+# CDPATH.
+$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=$PATH_SEPARATOR; export CDPATH; }
+
+exec 6>&1
+
+# Open the log real soon, to keep \$[0] and so on meaningful, and to
+# report actual input values of CONFIG_FILES etc. instead of their
+# values after options handling. Logging --version etc. is OK.
+exec 5>>config.log
+{
+ echo
+ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+## Running $as_me. ##
+_ASBOX
+} >&5
+cat >&5 <<_CSEOF
+
+This file was extended by $as_me, which was
+generated by GNU Autoconf 2.53. Invocation command line was
+
+ CONFIG_FILES = $CONFIG_FILES
+ CONFIG_HEADERS = $CONFIG_HEADERS
+ CONFIG_LINKS = $CONFIG_LINKS
+ CONFIG_COMMANDS = $CONFIG_COMMANDS
+ $ $0 $@
+
+_CSEOF
+echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
+echo >&5
+config_files=" libxml.spec Makefile include/Makefile include/libxml/Makefile doc/Makefile example/Makefile python/Makefile python/tests/Makefile include/libxml/xmlversion.h xml2-config libxml-2.0.pc xml2Conf.sh python/setup.py"
+config_headers=" config.h"
+config_commands=" default-1"
+
+ac_cs_usage="\
+\`$as_me' instantiates files from templates according to the
+current configuration.
+
+Usage: $0 [OPTIONS] [FILE]...
+
+ -h, --help print this help, then exit
+ -V, --version print version number, then exit
+ -d, --debug don't remove temporary files
+ --recheck update $as_me by reconfiguring in the same conditions
+ --file=FILE[:TEMPLATE]
+ instantiate the configuration file FILE
+ --header=FILE[:TEMPLATE]
+ instantiate the configuration header FILE
+
+Configuration files:
+$config_files
+
+Configuration headers:
+$config_headers
+
+Configuration commands:
+$config_commands
+
+Report bugs to ."
+ac_cs_version="\
+config.status
+configured by ./configure, generated by GNU Autoconf 2.53,
+ with options \"\"
+
+Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
+Free Software Foundation, Inc.
+This config.status script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it."
+srcdir=.
+INSTALL="/usr/bin/install -c"
+# If no file are specified by the user, then we need to provide default
+# value. By we need to know if files were specified by the user.
+ac_need_defaults=:
+while test $# != 0
+do
+ case $1 in
+ --*=*)
+ ac_option=`expr "x$1" : 'x\([^=]*\)='`
+ ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
+ shift
+ set dummy "$ac_option" "$ac_optarg" ${1+"$@"}
+ shift
+ ;;
+ -*);;
+ *) # This is not an option, so the user has probably given explicit
+ # arguments.
+ ac_need_defaults=false;;
+ esac
+
+ case $1 in
+ # Handling of the options.
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+ echo "running /bin/sh ./configure " " --no-create --no-recursion"
+ exec /bin/sh ./configure --no-create --no-recursion ;;
+ --version | --vers* | -V )
+ echo "$ac_cs_version"; exit 0 ;;
+ --he | --h)
+ # Conflict between --help and --header
+ { { echo "$as_me:$LINENO: error: ambiguous option: $1
+Try \`$0 --help' for more information." >&5
+echo "$as_me: error: ambiguous option: $1
+Try \`$0 --help' for more information." >&2;}
+ { (exit 1); exit 1; }; };;
+ --help | --hel | -h )
+ echo "$ac_cs_usage"; exit 0 ;;
+ --debug | --d* | -d )
+ debug=: ;;
+ --file | --fil | --fi | --f )
+ shift
+ CONFIG_FILES="$CONFIG_FILES $1"
+ ac_need_defaults=false;;
+ --header | --heade | --head | --hea )
+ shift
+ CONFIG_HEADERS="$CONFIG_HEADERS $1"
+ ac_need_defaults=false;;
+
+ # This is an error.
+ -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
+Try \`$0 --help' for more information." >&5
+echo "$as_me: error: unrecognized option: $1
+Try \`$0 --help' for more information." >&2;}
+ { (exit 1); exit 1; }; } ;;
+
+ *) ac_config_targets="$ac_config_targets $1" ;;
+
+ esac
+ shift
+done
+
+#
+# INIT-COMMANDS section.
+#
+
+
+
+for ac_config_target in $ac_config_targets
+do
+ case "$ac_config_target" in
+ # Handling of arguments.
+ "libxml.spec" ) CONFIG_FILES="$CONFIG_FILES libxml.spec" ;;
+ "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+ "include/Makefile" ) CONFIG_FILES="$CONFIG_FILES include/Makefile" ;;
+ "include/libxml/Makefile" ) CONFIG_FILES="$CONFIG_FILES include/libxml/Makefile" ;;
+ "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
+ "example/Makefile" ) CONFIG_FILES="$CONFIG_FILES example/Makefile" ;;
+ "python/Makefile" ) CONFIG_FILES="$CONFIG_FILES python/Makefile" ;;
+ "python/tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES python/tests/Makefile" ;;
+ "include/libxml/xmlversion.h" ) CONFIG_FILES="$CONFIG_FILES include/libxml/xmlversion.h" ;;
+ "xml2-config" ) CONFIG_FILES="$CONFIG_FILES xml2-config" ;;
+ "libxml-2.0.pc" ) CONFIG_FILES="$CONFIG_FILES libxml-2.0.pc" ;;
+ "xml2Conf.sh" ) CONFIG_FILES="$CONFIG_FILES xml2Conf.sh" ;;
+ "python/setup.py" ) CONFIG_FILES="$CONFIG_FILES python/setup.py" ;;
+ "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
+ "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
+ *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
+echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
+ { (exit 1); exit 1; }; };;
+ esac
+done
+
+# If the user did not use the arguments to specify the items to instantiate,
+# then the envvar interface is used. Set only those that are not.
+# We use the long form for the default assignment because of an extremely
+# bizarre bug on SunOS 4.1.3.
+if $ac_need_defaults; then
+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
+ test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
+ test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
+fi
+
+# Create a temporary directory, and hook for its removal unless debugging.
+$debug ||
+{
+ trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
+ trap '{ (exit 1); exit 1; }' 1 2 13 15
+}
+
+# Create a (secure) tmp directory for tmp files.
+: ${TMPDIR=/tmp}
+{
+ tmp=`(umask 077 && mktemp -d -q "$TMPDIR/csXXXXXX") 2>/dev/null` &&
+ test -n "$tmp" && test -d "$tmp"
+} ||
+{
+ tmp=$TMPDIR/cs$$-$RANDOM
+ (umask 077 && mkdir $tmp)
+} ||
+{
+ echo "$me: cannot create a temporary directory in $TMPDIR" >&2
+ { (exit 1); exit 1; }
+}
+
+
+#
+# CONFIG_FILES section.
+#
+
+# No need to generate the scripts if there are no CONFIG_FILES.
+# This happens for instance when ./config.status config.h
+if test -n "$CONFIG_FILES"; then
+ # Protect against being on the right side of a sed subst in config.status.
+ sed 's/,@/@@/; s/@,/@@/; s/,;t t$/@;t t/; /@;t t$/s/[\\&,]/\\&/g;
+ s/@@/,@/; s/@@/@,/; s/@;t t$/,;t t/' >$tmp/subs.sed <<\CEOF
+s,@SHELL@,/bin/sh,;t t
+s,@PATH_SEPARATOR@,:,;t t
+s,@PACKAGE_NAME@,,;t t
+s,@PACKAGE_TARNAME@,,;t t
+s,@PACKAGE_VERSION@,,;t t
+s,@PACKAGE_STRING@,,;t t
+s,@PACKAGE_BUGREPORT@,,;t t
+s,@exec_prefix@,${prefix},;t t
+s,@prefix@,/usr/local,;t t
+s,@program_transform_name@,s,x,x,,;t t
+s,@bindir@,${exec_prefix}/bin,;t t
+s,@sbindir@,${exec_prefix}/sbin,;t t
+s,@libexecdir@,${exec_prefix}/libexec,;t t
+s,@datadir@,${prefix}/share,;t t
+s,@sysconfdir@,${prefix}/etc,;t t
+s,@sharedstatedir@,${prefix}/com,;t t
+s,@localstatedir@,${prefix}/var,;t t
+s,@libdir@,${exec_prefix}/lib,;t t
+s,@includedir@,${prefix}/include,;t t
+s,@oldincludedir@,/usr/include,;t t
+s,@infodir@,${prefix}/info,;t t
+s,@mandir@,${prefix}/man,;t t
+s,@build_alias@,,;t t
+s,@host_alias@,,;t t
+s,@target_alias@,,;t t
+s,@DEFS@,-DHAVE_CONFIG_H,;t t
+s,@ECHO_C@,,;t t
+s,@ECHO_N@,-n,;t t
+s,@ECHO_T@,,;t t
+s,@LIBS@,,;t t
+s,@build@,i686-pc-linux-gnu,;t t
+s,@build_cpu@,i686,;t t
+s,@build_vendor@,pc,;t t
+s,@build_os@,linux-gnu,;t t
+s,@host@,i686-pc-linux-gnu,;t t
+s,@host_cpu@,i686,;t t
+s,@host_vendor@,pc,;t t
+s,@host_os@,linux-gnu,;t t
+s,@LIBXML_MAJOR_VERSION@,2,;t t
+s,@LIBXML_MINOR_VERSION@,4,;t t
+s,@LIBXML_MICRO_VERSION@,28,;t t
+s,@LIBXML_VERSION@,2.4.28,;t t
+s,@LIBXML_VERSION_INFO@,6:28:4,;t t
+s,@LIBXML_VERSION_NUMBER@,20428,;t t
+s,@INSTALL_PROGRAM@,${INSTALL},;t t
+s,@INSTALL_SCRIPT@,${INSTALL},;t t
+s,@INSTALL_DATA@,${INSTALL} -m 644,;t t
+s,@PACKAGE@,libxml2,;t t
+s,@VERSION@,2.4.28,;t t
+s,@ACLOCAL@,aclocal-1.4,;t t
+s,@AUTOCONF@,autoconf,;t t
+s,@AUTOMAKE@,automake-1.4,;t t
+s,@AUTOHEADER@,autoheader,;t t
+s,@MAKEINFO@,makeinfo,;t t
+s,@SET_MAKE@,,;t t
+s,@CC@,gcc,;t t
+s,@CFLAGS@,-g -O2 -Wall,;t t
+s,@LDFLAGS@,,;t t
+s,@CPPFLAGS@,,;t t
+s,@ac_ct_CC@,gcc,;t t
+s,@EXEEXT@,,;t t
+s,@OBJEXT@,o,;t t
+s,@CPP@,gcc -E,;t t
+s,@RM@,/bin/rm,;t t
+s,@MV@,/bin/mv,;t t
+s,@TAR@,/bin/tar,;t t
+s,@U@,,;t t
+s,@ANSI2KNR@,,;t t
+s,@LN_S@,ln -s,;t t
+s,@ECHO@,echo,;t t
+s,@RANLIB@,ranlib,;t t
+s,@ac_ct_RANLIB@,ranlib,;t t
+s,@STRIP@,strip,;t t
+s,@ac_ct_STRIP@,strip,;t t
+s,@LIBTOOL@,$(SHELL) $(top_builddir)/libtool,;t t
+s,@MAINTAINER_MODE_TRUE@,#,;t t
+s,@MAINTAINER_MODE_FALSE@,,;t t
+s,@MAINT@,#,;t t
+s,@Z_CFLAGS@,,;t t
+s,@Z_LIBS@,-lz,;t t
+s,@HTML_DIR@,$(prefix)/doc,;t t
+s,@PYTHON@,/usr/bin/python,;t t
+s,@WITH_PYTHON_TRUE@,,;t t
+s,@WITH_PYTHON_FALSE@,#,;t t
+s,@PYTHON_SUBDIR@,python,;t t
+s,@WITH_TRIO_SOURCES_TRUE@,#,;t t
+s,@WITH_TRIO_SOURCES_FALSE@,,;t t
+s,@WITH_TRIO@,0,;t t
+s,@THREAD_LIBS@,,;t t
+s,@WITH_THREADS@,0,;t t
+s,@THREAD_CFLAGS@,,;t t
+s,@TEST_THREADS@,,;t t
+s,@WITH_FTP@,1,;t t
+s,@FTP_OBJ@,nanoftp.o,;t t
+s,@WITH_HTTP@,1,;t t
+s,@HTTP_OBJ@,nanohttp.o,;t t
+s,@WITH_HTML@,1,;t t
+s,@HTML_OBJ@,HTMLparser.o HTMLtree.o,;t t
+s,@WITH_CATALOG@,1,;t t
+s,@CATALOG_OBJ@,catalog.o,;t t
+s,@WITH_DOCB@,1,;t t
+s,@DOCB_OBJ@,DOCBparser.o,;t t
+s,@WITH_XPATH@,1,;t t
+s,@XPATH_OBJ@,xpath.o,;t t
+s,@WITH_XPTR@,1,;t t
+s,@XPTR_OBJ@,xpointer.o,;t t
+s,@WITH_C14N@,1,;t t
+s,@C14N_OBJ@,c14n.c,;t t
+s,@WITH_XINCLUDE@,1,;t t
+s,@XINCLUDE_OBJ@,xinclude.o,;t t
+s,@WITH_ICONV@,1,;t t
+s,@WITH_SCHEMAS@,0,;t t
+s,@TEST_SCHEMAS@,,;t t
+s,@WITH_REGEXPS@,1,;t t
+s,@TEST_REGEXPS@,Regexptests Automatatests,;t t
+s,@WITH_DEBUG@,1,;t t
+s,@DEBUG_OBJ@,debugXML.o,;t t
+s,@WITH_MEM_DEBUG@,0,;t t
+s,@XML_CFLAGS@,,;t t
+s,@XML_LIBDIR@,-L${libdir},;t t
+s,@XML_LIBS@,-lxml2 -lz -lm ,;t t
+s,@ICONV_LIBS@,,;t t
+s,@XML_INCLUDEDIR@,-I${includedir}/libxml2,;t t
+s,@HAVE_ISNAN@,,;t t
+s,@HAVE_ISINF@,,;t t
+s,@PYTHON_VERSION@,1.5,;t t
+s,@PYTHON_INCLUDES@,/usr/include/python1.5,;t t
+s,@PYTHON_SITE_PACKAGES@,/usr/lib/python1.5/site-packages,;t t
+s,@M_LIBS@,-lm,;t t
+s,@RDL_LIBS@,,;t t
+CEOF
+
+ # Split the substitutions into bite-sized pieces for seds with
+ # small command number limits, like on Digital OSF/1 and HP-UX.
+ ac_max_sed_lines=48
+ ac_sed_frag=1 # Number of current file.
+ ac_beg=1 # First line for current file.
+ ac_end=$ac_max_sed_lines # Line after last line for current file.
+ ac_more_lines=:
+ ac_sed_cmds=
+ while $ac_more_lines; do
+ if test $ac_beg -gt 1; then
+ sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+ else
+ sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+ fi
+ if test ! -s $tmp/subs.frag; then
+ ac_more_lines=false
+ else
+ # The purpose of the label and of the branching condition is to
+ # speed up the sed processing (if there are no `@' at all, there
+ # is no need to browse any of the substitutions).
+ # These are the two extra sed commands mentioned above.
+ (echo ':t
+ /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
+ if test -z "$ac_sed_cmds"; then
+ ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
+ else
+ ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
+ fi
+ ac_sed_frag=`expr $ac_sed_frag + 1`
+ ac_beg=$ac_end
+ ac_end=`expr $ac_end + $ac_max_sed_lines`
+ fi
+ done
+ if test -z "$ac_sed_cmds"; then
+ ac_sed_cmds=cat
+ fi
+fi # test -n "$CONFIG_FILES"
+
+for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
+ # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
+ case $ac_file in
+ - | *:- | *:-:* ) # input from stdin
+ cat >$tmp/stdin
+ ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+ *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+ * ) ac_file_in=$ac_file.in ;;
+ esac
+
+ # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
+ ac_dir=`(dirname "$ac_file") 2>/dev/null ||
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$ac_file" : 'X\(//\)[^/]' \| \
+ X"$ac_file" : 'X\(//\)$' \| \
+ X"$ac_file" : 'X\(/\)' \| \
+ . : '\(.\)' 2>/dev/null ||
+echo X"$ac_file" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+ /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+ /^X\(\/\/\)$/{ s//\1/; q; }
+ /^X\(\/\).*/{ s//\1/; q; }
+ s/.*/./; q'`
+ { case "$ac_dir" in
+ [\\/]* | ?:[\\/]* ) as_incr_dir=;;
+ *) as_incr_dir=.;;
+esac
+as_dummy="$ac_dir"
+for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
+ case $as_mkdir_dir in
+ # Skip DOS drivespec
+ ?:) as_incr_dir=$as_mkdir_dir ;;
+ *)
+ as_incr_dir=$as_incr_dir/$as_mkdir_dir
+ test -d "$as_incr_dir" ||
+ mkdir "$as_incr_dir" ||
+ { { echo "$as_me:$LINENO: error: cannot create \"$ac_dir\"" >&5
+echo "$as_me: error: cannot create \"$ac_dir\"" >&2;}
+ { (exit 1); exit 1; }; }
+ ;;
+ esac
+done; }
+
+ ac_builddir=.
+
+if test "$ac_dir" != .; then
+ ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
+ # A "../" for each directory in $ac_dir_suffix.
+ ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+else
+ ac_dir_suffix= ac_top_builddir=
+fi
+
+case $srcdir in
+ .) # No --srcdir option. We are building in place.
+ ac_srcdir=.
+ if test -z "$ac_top_builddir"; then
+ ac_top_srcdir=.
+ else
+ ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+ fi ;;
+ [\\/]* | ?:[\\/]* ) # Absolute path.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir ;;
+ *) # Relative path.
+ ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_builddir$srcdir ;;
+esac
+# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
+# absolute.
+ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
+ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
+ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
+ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
+
+
+ case $INSTALL in
+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
+ *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
+ esac
+
+ if test x"$ac_file" != x-; then
+ { echo "$as_me:$LINENO: creating $ac_file" >&5
+echo "$as_me: creating $ac_file" >&6;}
+ rm -f "$ac_file"
+ fi
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
+ # use $as_me), people would be surprised to read:
+ # /* config.h. Generated by config.status. */
+ if test x"$ac_file" = x-; then
+ configure_input=
+ else
+ configure_input="$ac_file. "
+ fi
+ configure_input=$configure_input"Generated from `echo $ac_file_in |
+ sed 's,.*/,,'` by configure."
+
+ # First look for the input files in the build tree, otherwise in the
+ # src tree.
+ ac_file_inputs=`IFS=:
+ for f in $ac_file_in; do
+ case $f in
+ -) echo $tmp/stdin ;;
+ [\\/$]*)
+ # Absolute (can't be DOS-style, as IFS=:)
+ test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+echo "$as_me: error: cannot find input file: $f" >&2;}
+ { (exit 1); exit 1; }; }
+ echo $f;;
+ *) # Relative
+ if test -f "$f"; then
+ # Build tree
+ echo $f
+ elif test -f "$srcdir/$f"; then
+ # Source tree
+ echo $srcdir/$f
+ else
+ # /dev/null tree
+ { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+echo "$as_me: error: cannot find input file: $f" >&2;}
+ { (exit 1); exit 1; }; }
+ fi;;
+ esac
+ done` || { (exit 1); exit 1; }
+ sed "/^[ ]*VPATH[ ]*=/{
+s/:*\$(srcdir):*/:/;
+s/:*\${srcdir}:*/:/;
+s/:*@srcdir@:*/:/;
+s/^\([^=]*=[ ]*\):*/\1/;
+s/:*$//;
+s/^[^=]*=[ ]*$//;
+}
+
+:t
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+s,@configure_input@,$configure_input,;t t
+s,@srcdir@,$ac_srcdir,;t t
+s,@abs_srcdir@,$ac_abs_srcdir,;t t
+s,@top_srcdir@,$ac_top_srcdir,;t t
+s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
+s,@builddir@,$ac_builddir,;t t
+s,@abs_builddir@,$ac_abs_builddir,;t t
+s,@top_builddir@,$ac_top_builddir,;t t
+s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
+s,@INSTALL@,$ac_INSTALL,;t t
+" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
+ rm -f $tmp/stdin
+ if test x"$ac_file" != x-; then
+ mv $tmp/out $ac_file
+ else
+ cat $tmp/out
+ rm -f $tmp/out
+ fi
+
+done
+
+#
+# CONFIG_HEADER section.
+#
+
+# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
+# NAME is the cpp macro being defined and VALUE is the value it is being given.
+#
+# ac_d sets the value in "#define NAME VALUE" lines.
+ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
+ac_dB='[ ].*$,\1#\2'
+ac_dC=' '
+ac_dD=',;t'
+# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
+ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
+ac_uB='$,\1#\2define\3'
+ac_uC=' '
+ac_uD=',;t'
+
+for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
+ # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
+ case $ac_file in
+ - | *:- | *:-:* ) # input from stdin
+ cat >$tmp/stdin
+ ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+ *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+ * ) ac_file_in=$ac_file.in ;;
+ esac
+
+ test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
+echo "$as_me: creating $ac_file" >&6;}
+
+ # First look for the input files in the build tree, otherwise in the
+ # src tree.
+ ac_file_inputs=`IFS=:
+ for f in $ac_file_in; do
+ case $f in
+ -) echo $tmp/stdin ;;
+ [\\/$]*)
+ # Absolute (can't be DOS-style, as IFS=:)
+ test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+echo "$as_me: error: cannot find input file: $f" >&2;}
+ { (exit 1); exit 1; }; }
+ echo $f;;
+ *) # Relative
+ if test -f "$f"; then
+ # Build tree
+ echo $f
+ elif test -f "$srcdir/$f"; then
+ # Source tree
+ echo $srcdir/$f
+ else
+ # /dev/null tree
+ { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+echo "$as_me: error: cannot find input file: $f" >&2;}
+ { (exit 1); exit 1; }; }
+ fi;;
+ esac
+ done` || { (exit 1); exit 1; }
+ # Remove the trailing spaces.
+ sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
+
+ # Handle all the #define templates only if necessary.
+ if egrep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then
+ # If there are no defines, we may have an empty if/fi
+ :
+ cat >$tmp/defines.sed <$tmp/out
+ rm -f $tmp/in
+ mv $tmp/out $tmp/in
+
+ cat >$tmp/defines.sed <$tmp/out
+ rm -f $tmp/in
+ mv $tmp/out $tmp/in
+
+ fi # egrep
+
+ # Handle all the #undef templates
+ cat >$tmp/undefs.sed <$tmp/out
+ rm -f $tmp/in
+ mv $tmp/out $tmp/in
+
+ cat >$tmp/undefs.sed <$tmp/out
+ rm -f $tmp/in
+ mv $tmp/out $tmp/in
+
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
+ # use $as_me), people would be surprised to read:
+ # /* config.h. Generated by config.status. */
+ if test x"$ac_file" = x-; then
+ echo "/* Generated by configure. */" >$tmp/config.h
+ else
+ echo "/* $ac_file. Generated by configure. */" >$tmp/config.h
+ fi
+ cat $tmp/in >>$tmp/config.h
+ rm -f $tmp/in
+ if test x"$ac_file" != x-; then
+ if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
+ { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
+echo "$as_me: $ac_file is unchanged" >&6;}
+ else
+ ac_dir=`(dirname "$ac_file") 2>/dev/null ||
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$ac_file" : 'X\(//\)[^/]' \| \
+ X"$ac_file" : 'X\(//\)$' \| \
+ X"$ac_file" : 'X\(/\)' \| \
+ . : '\(.\)' 2>/dev/null ||
+echo X"$ac_file" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+ /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+ /^X\(\/\/\)$/{ s//\1/; q; }
+ /^X\(\/\).*/{ s//\1/; q; }
+ s/.*/./; q'`
+ { case "$ac_dir" in
+ [\\/]* | ?:[\\/]* ) as_incr_dir=;;
+ *) as_incr_dir=.;;
+esac
+as_dummy="$ac_dir"
+for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
+ case $as_mkdir_dir in
+ # Skip DOS drivespec
+ ?:) as_incr_dir=$as_mkdir_dir ;;
+ *)
+ as_incr_dir=$as_incr_dir/$as_mkdir_dir
+ test -d "$as_incr_dir" ||
+ mkdir "$as_incr_dir" ||
+ { { echo "$as_me:$LINENO: error: cannot create \"$ac_dir\"" >&5
+echo "$as_me: error: cannot create \"$ac_dir\"" >&2;}
+ { (exit 1); exit 1; }; }
+ ;;
+ esac
+done; }
+
+ rm -f $ac_file
+ mv $tmp/config.h $ac_file
+ fi
+ else
+ cat $tmp/config.h
+ rm -f $tmp/config.h
+ fi
+done
+
+#
+# CONFIG_COMMANDS section.
+#
+for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
+ ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
+ ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
+ ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
+$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$ac_dest" : 'X\(//\)[^/]' \| \
+ X"$ac_dest" : 'X\(//\)$' \| \
+ X"$ac_dest" : 'X\(/\)' \| \
+ . : '\(.\)' 2>/dev/null ||
+echo X"$ac_dest" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+ /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+ /^X\(\/\/\)$/{ s//\1/; q; }
+ /^X\(\/\).*/{ s//\1/; q; }
+ s/.*/./; q'`
+ ac_builddir=.
+
+if test "$ac_dir" != .; then
+ ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
+ # A "../" for each directory in $ac_dir_suffix.
+ ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+else
+ ac_dir_suffix= ac_top_builddir=
+fi
+
+case $srcdir in
+ .) # No --srcdir option. We are building in place.
+ ac_srcdir=.
+ if test -z "$ac_top_builddir"; then
+ ac_top_srcdir=.
+ else
+ ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+ fi ;;
+ [\\/]* | ?:[\\/]* ) # Absolute path.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir ;;
+ *) # Relative path.
+ ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_builddir$srcdir ;;
+esac
+# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
+# absolute.
+ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
+ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
+ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
+ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
+
+
+ { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
+echo "$as_me: executing $ac_dest commands" >&6;}
+ case $ac_dest in
+ default-1 ) test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h ;;
+ esac
+done
+
+{ (exit 0); exit 0; }
diff --git a/src/external/3rd/library/libxml/configure b/src/external/3rd/library/libxml/configure
new file mode 100644
index 000000000..9c22abb95
--- /dev/null
+++ b/src/external/3rd/library/libxml/configure
@@ -0,0 +1,14903 @@
+#! /bin/sh
+# Guess values for system-dependent variables and create Makefiles.
+# Generated by GNU Autoconf 2.53.
+#
+# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
+# Free Software Foundation, Inc.
+# This configure script is free software; the Free Software Foundation
+# gives unlimited permission to copy, distribute and modify it.
+
+# Find the correct PATH separator. Usually this is `:', but
+# DJGPP uses `;' like DOS.
+if test "X${PATH_SEPARATOR+set}" != Xset; then
+ UNAME=${UNAME-`uname 2>/dev/null`}
+ case X$UNAME in
+ *-DOS) lt_cv_sys_path_separator=';' ;;
+ *) lt_cv_sys_path_separator=':' ;;
+ esac
+ PATH_SEPARATOR=$lt_cv_sys_path_separator
+fi
+
+
+# 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 &&
+ 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.
+
+ IFS="${IFS= }"; save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+ for dir in $PATH /usr/ucb; do
+ 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="$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
+
+
+
+if expr a : '\(a\)' >/dev/null 2>&1; then
+ as_expr=expr
+else
+ as_expr=false
+fi
+
+
+## --------------------- ##
+## M4sh Initialization. ##
+## --------------------- ##
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
+ set -o posix
+fi
+
+# NLS nuisances.
+# Support unset when possible.
+if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
+ as_unset=unset
+else
+ as_unset=false
+fi
+
+(set +x; test -n "`(LANG=C; export LANG) 2>&1`") &&
+ { $as_unset LANG || test "${LANG+set}" != set; } ||
+ { LANG=C; export LANG; }
+(set +x; test -n "`(LC_ALL=C; export LC_ALL) 2>&1`") &&
+ { $as_unset LC_ALL || test "${LC_ALL+set}" != set; } ||
+ { LC_ALL=C; export LC_ALL; }
+(set +x; test -n "`(LC_TIME=C; export LC_TIME) 2>&1`") &&
+ { $as_unset LC_TIME || test "${LC_TIME+set}" != set; } ||
+ { LC_TIME=C; export LC_TIME; }
+(set +x; test -n "`(LC_CTYPE=C; export LC_CTYPE) 2>&1`") &&
+ { $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set; } ||
+ { LC_CTYPE=C; export LC_CTYPE; }
+(set +x; test -n "`(LANGUAGE=C; export LANGUAGE) 2>&1`") &&
+ { $as_unset LANGUAGE || test "${LANGUAGE+set}" != set; } ||
+ { LANGUAGE=C; export LANGUAGE; }
+(set +x; test -n "`(LC_COLLATE=C; export LC_COLLATE) 2>&1`") &&
+ { $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set; } ||
+ { LC_COLLATE=C; export LC_COLLATE; }
+(set +x; test -n "`(LC_NUMERIC=C; export LC_NUMERIC) 2>&1`") &&
+ { $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set; } ||
+ { LC_NUMERIC=C; export LC_NUMERIC; }
+(set +x; test -n "`(LC_MESSAGES=C; export LC_MESSAGES) 2>&1`") &&
+ { $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set; } ||
+ { LC_MESSAGES=C; export LC_MESSAGES; }
+
+
+# Name of the executable.
+as_me=`(basename "$0") 2>/dev/null ||
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$0" : 'X\(//\)$' \| \
+ X"$0" : 'X\(/\)$' \| \
+ . : '\(.\)' 2>/dev/null ||
+echo X/"$0" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
+ /^X\/\(\/\/\)$/{ s//\1/; q; }
+ /^X\/\(\/\).*/{ s//\1/; q; }
+ s/.*/./; q'`
+
+# PATH needs CR, and LINENO needs CR and PATH.
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conftest.sh
+ echo "exit 0" >>conftest.sh
+ chmod +x conftest.sh
+ if (PATH=".;."; conftest.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
+ fi
+ rm -f conftest.sh
+fi
+
+
+ as_lineno_1=$LINENO
+ as_lineno_2=$LINENO
+ as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
+ test "x$as_lineno_1" != "x$as_lineno_2" &&
+ test "x$as_lineno_3" = "x$as_lineno_2" || {
+ # Find who we are. Look in the path if we contain no path at all
+ # relative or not.
+ case $0 in
+ *[\\/]* ) as_myself=$0 ;;
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+done
+
+ ;;
+ esac
+ # We did not find ourselves, most probably we were run as `sh COMMAND'
+ # in which case we are not to be found in the path.
+ if test "x$as_myself" = x; then
+ as_myself=$0
+ fi
+ if test ! -f "$as_myself"; then
+ { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
+ { (exit 1); exit 1; }; }
+ fi
+ case $CONFIG_SHELL in
+ '')
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for as_base in sh bash ksh sh5; do
+ case $as_dir in
+ /*)
+ if ("$as_dir/$as_base" -c '
+ as_lineno_1=$LINENO
+ as_lineno_2=$LINENO
+ as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
+ test "x$as_lineno_1" != "x$as_lineno_2" &&
+ test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
+ CONFIG_SHELL=$as_dir/$as_base
+ export CONFIG_SHELL
+ exec "$CONFIG_SHELL" "$0" ${1+"$@"}
+ fi;;
+ esac
+ done
+done
+;;
+ esac
+
+ # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
+ # uniformly replaced by the line number. The first 'sed' inserts a
+ # line-number line before each line; the second 'sed' does the real
+ # work. The second script uses 'N' to pair each line-number line
+ # with the numbered line, and appends trailing '-' during
+ # substitution so that $LINENO is not a special case at line end.
+ # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
+ # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
+ sed '=' <$as_myself |
+ sed '
+ N
+ s,$,-,
+ : loop
+ s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
+ t loop
+ s,-$,,
+ s,^['$as_cr_digits']*\n,,
+ ' >$as_me.lineno &&
+ chmod +x $as_me.lineno ||
+ { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
+ { (exit 1); exit 1; }; }
+
+ # Don't try to exec as it changes $[0], causing all sort of problems
+ # (the dirname of $[0] is not the place where we might find the
+ # original and so on. Autoconf is especially sensible to this).
+ . ./$as_me.lineno
+ # Exit status is that of the last command.
+ exit
+}
+
+
+case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
+ *c*,-n*) ECHO_N= ECHO_C='
+' ECHO_T=' ' ;;
+ *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
+ *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
+esac
+
+if expr a : '\(a\)' >/dev/null 2>&1; then
+ as_expr=expr
+else
+ as_expr=false
+fi
+
+rm -f conf$$ conf$$.exe conf$$.file
+echo >conf$$.file
+if ln -s conf$$.file conf$$ 2>/dev/null; then
+ # We could just check for DJGPP; but this test a) works b) is more generic
+ # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
+ if test -f conf$$.exe; then
+ # Don't use ln at all; we don't have any links
+ as_ln_s='cp -p'
+ else
+ as_ln_s='ln -s'
+ fi
+elif ln conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s=ln
+else
+ as_ln_s='cp -p'
+fi
+rm -f conf$$ conf$$.exe conf$$.file
+
+as_executable_p="test -f"
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
+
+
+# IFS
+# We need space, tab and new line, in precisely that order.
+as_nl='
+'
+IFS=" $as_nl"
+
+# CDPATH.
+$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=$PATH_SEPARATOR; export CDPATH; }
+
+
+# Name of the host.
+# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
+# so uname gets run too.
+ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
+
+exec 6>&1
+
+#
+# Initializations.
+#
+ac_default_prefix=/usr/local
+cross_compiling=no
+subdirs=
+MFLAGS=
+MAKEFLAGS=
+SHELL=${CONFIG_SHELL-/bin/sh}
+
+# Maximum number of lines to put in a shell here document.
+# This variable seems obsolete. It should probably be removed, and
+# only ac_max_sed_lines should be used.
+: ${ac_max_here_lines=38}
+
+# Identity of this package.
+PACKAGE_NAME=
+PACKAGE_TARNAME=
+PACKAGE_VERSION=
+PACKAGE_STRING=
+PACKAGE_BUGREPORT=
+
+ac_unique_file="entities.c"
+# Factoring default headers for most tests.
+ac_includes_default="\
+#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"
+
+
+# Initialize some variables set by options.
+ac_init_help=
+ac_init_version=false
+# The variables have the same names as the options, with
+# dashes changed to underlines.
+cache_file=/dev/null
+exec_prefix=NONE
+no_create=
+no_recursion=
+prefix=NONE
+program_prefix=NONE
+program_suffix=NONE
+program_transform_name=s,x,x,
+silent=
+site=
+srcdir=
+verbose=
+x_includes=NONE
+x_libraries=NONE
+
+# Installation directory options.
+# These are left unexpanded so users can "make install exec_prefix=/foo"
+# and all the variables that are supposed to be based on exec_prefix
+# by default will actually change.
+# Use braces instead of parens because sh, perl, etc. also accept them.
+bindir='${exec_prefix}/bin'
+sbindir='${exec_prefix}/sbin'
+libexecdir='${exec_prefix}/libexec'
+datadir='${prefix}/share'
+sysconfdir='${prefix}/etc'
+sharedstatedir='${prefix}/com'
+localstatedir='${prefix}/var'
+libdir='${exec_prefix}/lib'
+includedir='${prefix}/include'
+oldincludedir='/usr/include'
+infodir='${prefix}/info'
+mandir='${prefix}/man'
+
+ac_prev=
+for ac_option
+do
+ # If the previous option needs an argument, assign it.
+ if test -n "$ac_prev"; then
+ eval "$ac_prev=\$ac_option"
+ ac_prev=
+ continue
+ fi
+
+ ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
+
+ # Accept the important Cygnus configure options, so we can diagnose typos.
+
+ case $ac_option in
+
+ -bindir | --bindir | --bindi | --bind | --bin | --bi)
+ ac_prev=bindir ;;
+ -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
+ bindir=$ac_optarg ;;
+
+ -build | --build | --buil | --bui | --bu)
+ ac_prev=build_alias ;;
+ -build=* | --build=* | --buil=* | --bui=* | --bu=*)
+ build_alias=$ac_optarg ;;
+
+ -cache-file | --cache-file | --cache-fil | --cache-fi \
+ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
+ ac_prev=cache_file ;;
+ -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
+ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
+ cache_file=$ac_optarg ;;
+
+ --config-cache | -C)
+ cache_file=config.cache ;;
+
+ -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
+ ac_prev=datadir ;;
+ -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
+ | --da=*)
+ datadir=$ac_optarg ;;
+
+ -disable-* | --disable-*)
+ ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
+ { echo "$as_me: error: invalid feature name: $ac_feature" >&2
+ { (exit 1); exit 1; }; }
+ ac_feature=`echo $ac_feature | sed 's/-/_/g'`
+ eval "enable_$ac_feature=no" ;;
+
+ -enable-* | --enable-*)
+ ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
+ { echo "$as_me: error: invalid feature name: $ac_feature" >&2
+ { (exit 1); exit 1; }; }
+ ac_feature=`echo $ac_feature | sed 's/-/_/g'`
+ case $ac_option in
+ *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
+ *) ac_optarg=yes ;;
+ esac
+ eval "enable_$ac_feature='$ac_optarg'" ;;
+
+ -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
+ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
+ | --exec | --exe | --ex)
+ ac_prev=exec_prefix ;;
+ -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
+ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
+ | --exec=* | --exe=* | --ex=*)
+ exec_prefix=$ac_optarg ;;
+
+ -gas | --gas | --ga | --g)
+ # Obsolete; use --with-gas.
+ with_gas=yes ;;
+
+ -help | --help | --hel | --he | -h)
+ ac_init_help=long ;;
+ -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
+ ac_init_help=recursive ;;
+ -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
+ ac_init_help=short ;;
+
+ -host | --host | --hos | --ho)
+ ac_prev=host_alias ;;
+ -host=* | --host=* | --hos=* | --ho=*)
+ host_alias=$ac_optarg ;;
+
+ -includedir | --includedir | --includedi | --included | --include \
+ | --includ | --inclu | --incl | --inc)
+ ac_prev=includedir ;;
+ -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
+ | --includ=* | --inclu=* | --incl=* | --inc=*)
+ includedir=$ac_optarg ;;
+
+ -infodir | --infodir | --infodi | --infod | --info | --inf)
+ ac_prev=infodir ;;
+ -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
+ infodir=$ac_optarg ;;
+
+ -libdir | --libdir | --libdi | --libd)
+ ac_prev=libdir ;;
+ -libdir=* | --libdir=* | --libdi=* | --libd=*)
+ libdir=$ac_optarg ;;
+
+ -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
+ | --libexe | --libex | --libe)
+ ac_prev=libexecdir ;;
+ -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
+ | --libexe=* | --libex=* | --libe=*)
+ libexecdir=$ac_optarg ;;
+
+ -localstatedir | --localstatedir | --localstatedi | --localstated \
+ | --localstate | --localstat | --localsta | --localst \
+ | --locals | --local | --loca | --loc | --lo)
+ ac_prev=localstatedir ;;
+ -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+ | --localstate=* | --localstat=* | --localsta=* | --localst=* \
+ | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
+ localstatedir=$ac_optarg ;;
+
+ -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+ ac_prev=mandir ;;
+ -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
+ mandir=$ac_optarg ;;
+
+ -nfp | --nfp | --nf)
+ # Obsolete; use --without-fp.
+ with_fp=no ;;
+
+ -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+ | --no-cr | --no-c | -n)
+ no_create=yes ;;
+
+ -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
+ no_recursion=yes ;;
+
+ -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
+ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
+ | --oldin | --oldi | --old | --ol | --o)
+ ac_prev=oldincludedir ;;
+ -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
+ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
+ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
+ oldincludedir=$ac_optarg ;;
+
+ -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
+ ac_prev=prefix ;;
+ -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
+ prefix=$ac_optarg ;;
+
+ -program-prefix | --program-prefix | --program-prefi | --program-pref \
+ | --program-pre | --program-pr | --program-p)
+ ac_prev=program_prefix ;;
+ -program-prefix=* | --program-prefix=* | --program-prefi=* \
+ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
+ program_prefix=$ac_optarg ;;
+
+ -program-suffix | --program-suffix | --program-suffi | --program-suff \
+ | --program-suf | --program-su | --program-s)
+ ac_prev=program_suffix ;;
+ -program-suffix=* | --program-suffix=* | --program-suffi=* \
+ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
+ program_suffix=$ac_optarg ;;
+
+ -program-transform-name | --program-transform-name \
+ | --program-transform-nam | --program-transform-na \
+ | --program-transform-n | --program-transform- \
+ | --program-transform | --program-transfor \
+ | --program-transfo | --program-transf \
+ | --program-trans | --program-tran \
+ | --progr-tra | --program-tr | --program-t)
+ ac_prev=program_transform_name ;;
+ -program-transform-name=* | --program-transform-name=* \
+ | --program-transform-nam=* | --program-transform-na=* \
+ | --program-transform-n=* | --program-transform-=* \
+ | --program-transform=* | --program-transfor=* \
+ | --program-transfo=* | --program-transf=* \
+ | --program-trans=* | --program-tran=* \
+ | --progr-tra=* | --program-tr=* | --program-t=*)
+ program_transform_name=$ac_optarg ;;
+
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil)
+ silent=yes ;;
+
+ -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
+ ac_prev=sbindir ;;
+ -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
+ | --sbi=* | --sb=*)
+ sbindir=$ac_optarg ;;
+
+ -sharedstatedir | --sharedstatedir | --sharedstatedi \
+ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
+ | --sharedst | --shareds | --shared | --share | --shar \
+ | --sha | --sh)
+ ac_prev=sharedstatedir ;;
+ -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
+ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
+ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
+ | --sha=* | --sh=*)
+ sharedstatedir=$ac_optarg ;;
+
+ -site | --site | --sit)
+ ac_prev=site ;;
+ -site=* | --site=* | --sit=*)
+ site=$ac_optarg ;;
+
+ -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
+ ac_prev=srcdir ;;
+ -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
+ srcdir=$ac_optarg ;;
+
+ -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
+ | --syscon | --sysco | --sysc | --sys | --sy)
+ ac_prev=sysconfdir ;;
+ -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
+ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
+ sysconfdir=$ac_optarg ;;
+
+ -target | --target | --targe | --targ | --tar | --ta | --t)
+ ac_prev=target_alias ;;
+ -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
+ target_alias=$ac_optarg ;;
+
+ -v | -verbose | --verbose | --verbos | --verbo | --verb)
+ verbose=yes ;;
+
+ -version | --version | --versio | --versi | --vers | -V)
+ ac_init_version=: ;;
+
+ -with-* | --with-*)
+ ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
+ { echo "$as_me: error: invalid package name: $ac_package" >&2
+ { (exit 1); exit 1; }; }
+ ac_package=`echo $ac_package| sed 's/-/_/g'`
+ case $ac_option in
+ *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
+ *) ac_optarg=yes ;;
+ esac
+ eval "with_$ac_package='$ac_optarg'" ;;
+
+ -without-* | --without-*)
+ ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null &&
+ { echo "$as_me: error: invalid package name: $ac_package" >&2
+ { (exit 1); exit 1; }; }
+ ac_package=`echo $ac_package | sed 's/-/_/g'`
+ eval "with_$ac_package=no" ;;
+
+ --x)
+ # Obsolete; use --with-x.
+ with_x=yes ;;
+
+ -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
+ | --x-incl | --x-inc | --x-in | --x-i)
+ ac_prev=x_includes ;;
+ -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
+ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
+ x_includes=$ac_optarg ;;
+
+ -x-libraries | --x-libraries | --x-librarie | --x-librari \
+ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
+ ac_prev=x_libraries ;;
+ -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
+ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
+ x_libraries=$ac_optarg ;;
+
+ -*) { echo "$as_me: error: unrecognized option: $ac_option
+Try \`$0 --help' for more information." >&2
+ { (exit 1); exit 1; }; }
+ ;;
+
+ *=*)
+ ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
+ # Reject names that are not valid shell variable names.
+ expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
+ { echo "$as_me: error: invalid variable name: $ac_envvar" >&2
+ { (exit 1); exit 1; }; }
+ ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
+ eval "$ac_envvar='$ac_optarg'"
+ export $ac_envvar ;;
+
+ *)
+ # FIXME: should be removed in autoconf 3.0.
+ echo "$as_me: WARNING: you should use --build, --host, --target" >&2
+ expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
+ echo "$as_me: WARNING: invalid host type: $ac_option" >&2
+ : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
+ ;;
+
+ esac
+done
+
+if test -n "$ac_prev"; then
+ ac_option=--`echo $ac_prev | sed 's/_/-/g'`
+ { echo "$as_me: error: missing argument to $ac_option" >&2
+ { (exit 1); exit 1; }; }
+fi
+
+# Be sure to have absolute paths.
+for ac_var in exec_prefix prefix
+do
+ eval ac_val=$`echo $ac_var`
+ case $ac_val in
+ [\\/$]* | ?:[\\/]* | NONE | '' ) ;;
+ *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
+ { (exit 1); exit 1; }; };;
+ esac
+done
+
+# Be sure to have absolute paths.
+for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
+ localstatedir libdir includedir oldincludedir infodir mandir
+do
+ eval ac_val=$`echo $ac_var`
+ case $ac_val in
+ [\\/$]* | ?:[\\/]* ) ;;
+ *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
+ { (exit 1); exit 1; }; };;
+ esac
+done
+
+# There might be people who depend on the old broken behavior: `$host'
+# used to hold the argument of --host etc.
+# FIXME: To remove some day.
+build=$build_alias
+host=$host_alias
+target=$target_alias
+
+# FIXME: To remove some day.
+if test "x$host_alias" != x; then
+ if test "x$build_alias" = x; then
+ cross_compiling=maybe
+ echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
+ If a cross compiler is detected then cross compile mode will be used." >&2
+ elif test "x$build_alias" != "x$host_alias"; then
+ cross_compiling=yes
+ fi
+fi
+
+ac_tool_prefix=
+test -n "$host_alias" && ac_tool_prefix=$host_alias-
+
+test "$silent" = yes && exec 6>/dev/null
+
+
+# Find the source files, if location was not specified.
+if test -z "$srcdir"; then
+ ac_srcdir_defaulted=yes
+ # Try the directory containing this script, then its parent.
+ ac_confdir=`(dirname "$0") 2>/dev/null ||
+$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$0" : 'X\(//\)[^/]' \| \
+ X"$0" : 'X\(//\)$' \| \
+ X"$0" : 'X\(/\)' \| \
+ . : '\(.\)' 2>/dev/null ||
+echo X"$0" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+ /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+ /^X\(\/\/\)$/{ s//\1/; q; }
+ /^X\(\/\).*/{ s//\1/; q; }
+ s/.*/./; q'`
+ srcdir=$ac_confdir
+ if test ! -r $srcdir/$ac_unique_file; then
+ srcdir=..
+ fi
+else
+ ac_srcdir_defaulted=no
+fi
+if test ! -r $srcdir/$ac_unique_file; then
+ if test "$ac_srcdir_defaulted" = yes; then
+ { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2
+ { (exit 1); exit 1; }; }
+ else
+ { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
+ { (exit 1); exit 1; }; }
+ fi
+fi
+srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
+ac_env_build_alias_set=${build_alias+set}
+ac_env_build_alias_value=$build_alias
+ac_cv_env_build_alias_set=${build_alias+set}
+ac_cv_env_build_alias_value=$build_alias
+ac_env_host_alias_set=${host_alias+set}
+ac_env_host_alias_value=$host_alias
+ac_cv_env_host_alias_set=${host_alias+set}
+ac_cv_env_host_alias_value=$host_alias
+ac_env_target_alias_set=${target_alias+set}
+ac_env_target_alias_value=$target_alias
+ac_cv_env_target_alias_set=${target_alias+set}
+ac_cv_env_target_alias_value=$target_alias
+ac_env_CC_set=${CC+set}
+ac_env_CC_value=$CC
+ac_cv_env_CC_set=${CC+set}
+ac_cv_env_CC_value=$CC
+ac_env_CFLAGS_set=${CFLAGS+set}
+ac_env_CFLAGS_value=$CFLAGS
+ac_cv_env_CFLAGS_set=${CFLAGS+set}
+ac_cv_env_CFLAGS_value=$CFLAGS
+ac_env_LDFLAGS_set=${LDFLAGS+set}
+ac_env_LDFLAGS_value=$LDFLAGS
+ac_cv_env_LDFLAGS_set=${LDFLAGS+set}
+ac_cv_env_LDFLAGS_value=$LDFLAGS
+ac_env_CPPFLAGS_set=${CPPFLAGS+set}
+ac_env_CPPFLAGS_value=$CPPFLAGS
+ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set}
+ac_cv_env_CPPFLAGS_value=$CPPFLAGS
+ac_env_CPP_set=${CPP+set}
+ac_env_CPP_value=$CPP
+ac_cv_env_CPP_set=${CPP+set}
+ac_cv_env_CPP_value=$CPP
+
+#
+# Report the --help message.
+#
+if test "$ac_init_help" = "long"; then
+ # Omit some internal or obsolete options to make the list less imposing.
+ # This message is too long to be a string in the A/UX 3.1 sh.
+ cat <<_ACEOF
+\`configure' configures this package to adapt to many kinds of systems.
+
+Usage: $0 [OPTION]... [VAR=VALUE]...
+
+To assign environment variables (e.g., CC, CFLAGS...), specify them as
+VAR=VALUE. See below for descriptions of some of the useful variables.
+
+Defaults for the options are specified in brackets.
+
+Configuration:
+ -h, --help display this help and exit
+ --help=short display options specific to this package
+ --help=recursive display the short help of all the included packages
+ -V, --version display version information and exit
+ -q, --quiet, --silent do not print \`checking...' messages
+ --cache-file=FILE cache test results in FILE [disabled]
+ -C, --config-cache alias for \`--cache-file=config.cache'
+ -n, --no-create do not create output files
+ --srcdir=DIR find the sources in DIR [configure dir or \`..']
+
+_ACEOF
+
+ cat <<_ACEOF
+Installation directories:
+ --prefix=PREFIX install architecture-independent files in PREFIX
+ [$ac_default_prefix]
+ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
+ [PREFIX]
+
+By default, \`make install' will install all the files in
+\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
+an installation prefix other than \`$ac_default_prefix' using \`--prefix',
+for instance \`--prefix=\$HOME'.
+
+For better control, use the options below.
+
+Fine tuning of the installation directories:
+ --bindir=DIR user executables [EPREFIX/bin]
+ --sbindir=DIR system admin executables [EPREFIX/sbin]
+ --libexecdir=DIR program executables [EPREFIX/libexec]
+ --datadir=DIR read-only architecture-independent data [PREFIX/share]
+ --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
+ --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
+ --localstatedir=DIR modifiable single-machine data [PREFIX/var]
+ --libdir=DIR object code libraries [EPREFIX/lib]
+ --includedir=DIR C header files [PREFIX/include]
+ --oldincludedir=DIR C header files for non-gcc [/usr/include]
+ --infodir=DIR info documentation [PREFIX/info]
+ --mandir=DIR man documentation [PREFIX/man]
+_ACEOF
+
+ cat <<\_ACEOF
+
+Program names:
+ --program-prefix=PREFIX prepend PREFIX to installed program names
+ --program-suffix=SUFFIX append SUFFIX to installed program names
+ --program-transform-name=PROGRAM run sed PROGRAM on installed program names
+
+System types:
+ --build=BUILD configure for building on BUILD [guessed]
+ --host=HOST cross-compile to build programs to run on HOST [BUILD]
+_ACEOF
+fi
+
+if test -n "$ac_init_help"; then
+
+ cat <<\_ACEOF
+
+Optional Features:
+ --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
+ --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
+ --enable-shared=PKGS build shared libraries default=yes
+ --enable-static=PKGS build static libraries default=yes
+ --enable-fast-install=PKGS optimize for fast installation default=yes
+ --disable-libtool-lock avoid locking (might break parallel builds)
+ --enable-maintainer-mode enable make rules and dependencies not useful
+ (and sometimes confusing) to the casual installer
+
+Optional Packages:
+ --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
+ --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
+ --with-html-dir=PATH path to installed docs
+ --with-gnu-ld assume the C compiler uses GNU ld default=no
+ --with-pic try to use only PIC/non-PIC objects default=use both
+ --with-zlib=DIR use libz in DIR
+ --with-python=DIR Build Python bindings if found
+ --with-readline=DIR use readline in DIR
+ --with-threads Add multithread support(off)
+ --with-thread-alloc Add per-thread memory(off)
+ --with-history Add history support to xmllint shell(off)
+ --with-ftp Add the FTP support (on)
+ --with-http Add the HTTP support (on)
+ --with-html Add the HTML support (on)
+ --with-catalog Add the Catalog support (on)
+ --with-docbook Add Docbook SGML support (on)
+ --with-xpath Add the XPATH support (on)
+ --with-xptr Add the XPointer support (on)
+ --with-c14n Add the Canonicalization support (on)
+ --with-xinclude Add the XInclude support (on)
+ --with-iconv=DIR Add ICONV support (on)
+ --with-schemas Add experimental Schemas support (off)
+ --with-regexps Add Regular Expressions support (on)
+ --with-debug Add the debugging module (on)
+ --with-mem-debug Add the memory debugging module (off)
+
+Some influential environment variables:
+ CC C compiler command
+ CFLAGS C compiler flags
+ LDFLAGS linker flags, e.g. -L if you have libraries in a
+ nonstandard directory
+ CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have
+ headers in a nonstandard directory
+ CPP C preprocessor
+
+Use these variables to override the choices made by `configure' or to help
+it to find libraries and programs with nonstandard names/locations.
+
+_ACEOF
+fi
+
+if test "$ac_init_help" = "recursive"; then
+ # If there are subdirs, report their specific --help.
+ ac_popdir=`pwd`
+ for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
+ test -d $ac_dir || continue
+ ac_builddir=.
+
+if test "$ac_dir" != .; then
+ ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
+ # A "../" for each directory in $ac_dir_suffix.
+ ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+else
+ ac_dir_suffix= ac_top_builddir=
+fi
+
+case $srcdir in
+ .) # No --srcdir option. We are building in place.
+ ac_srcdir=.
+ if test -z "$ac_top_builddir"; then
+ ac_top_srcdir=.
+ else
+ ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+ fi ;;
+ [\\/]* | ?:[\\/]* ) # Absolute path.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir ;;
+ *) # Relative path.
+ ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_builddir$srcdir ;;
+esac
+# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
+# absolute.
+ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
+ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
+ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
+ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
+
+ cd $ac_dir
+ # Check for guested configure; otherwise get Cygnus style configure.
+ if test -f $ac_srcdir/configure.gnu; then
+ echo
+ $SHELL $ac_srcdir/configure.gnu --help=recursive
+ elif test -f $ac_srcdir/configure; then
+ echo
+ $SHELL $ac_srcdir/configure --help=recursive
+ elif test -f $ac_srcdir/configure.ac ||
+ test -f $ac_srcdir/configure.in; then
+ echo
+ $ac_configure --help
+ else
+ echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
+ fi
+ cd $ac_popdir
+ done
+fi
+
+test -n "$ac_init_help" && exit 0
+if $ac_init_version; then
+ cat <<\_ACEOF
+
+Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
+Free Software Foundation, Inc.
+This configure script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it.
+_ACEOF
+ exit 0
+fi
+exec 5>config.log
+cat >&5 <<_ACEOF
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+
+It was created by $as_me, which was
+generated by GNU Autoconf 2.53. Invocation command line was
+
+ $ $0 $@
+
+_ACEOF
+{
+cat <<_ASUNAME
+## --------- ##
+## Platform. ##
+## --------- ##
+
+hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
+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 || echo unknown`
+/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
+
+/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
+/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
+/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
+hostinfo = `(hostinfo) 2>/dev/null || echo unknown`
+/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
+/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
+/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
+
+_ASUNAME
+
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ echo "PATH: $as_dir"
+done
+
+} >&5
+
+cat >&5 <<_ACEOF
+
+
+## ----------- ##
+## Core tests. ##
+## ----------- ##
+
+_ACEOF
+
+
+# Keep a trace of the command line.
+# Strip out --no-create and --no-recursion so they do not pile up.
+# Also quote any args containing shell meta-characters.
+ac_configure_args=
+ac_sep=
+for ac_arg
+do
+ case $ac_arg in
+ -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+ | --no-cr | --no-c | -n ) continue ;;
+ -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
+ continue ;;
+ *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
+ ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
+ esac
+ case " $ac_configure_args " in
+ *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
+ *) ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
+ ac_sep=" " ;;
+ esac
+ # Get rid of the leading space.
+done
+
+# When interrupted or exit'd, cleanup temporary files, and complete
+# config.log. We remove comments because anyway the quotes in there
+# would cause problems or look ugly.
+# WARNING: Be sure not to use single quotes in there, as some shells,
+# such as our DU 5.0 friend, will then `close' the trap.
+trap 'exit_status=$?
+ # Save into config.log some information that might help in debugging.
+ {
+ echo
+ cat <<\_ASBOX
+## ---------------- ##
+## Cache variables. ##
+## ---------------- ##
+_ASBOX
+ echo
+ # The following way of writing the cache mishandles newlines in values,
+{
+ (set) 2>&1 |
+ case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in
+ *ac_space=\ *)
+ sed -n \
+ "s/'"'"'/'"'"'\\\\'"'"''"'"'/g;
+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p"
+ ;;
+ *)
+ sed -n \
+ "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
+ ;;
+ esac;
+}
+ echo
+ if test -s confdefs.h; then
+ cat <<\_ASBOX
+## ----------- ##
+## confdefs.h. ##
+## ----------- ##
+_ASBOX
+ echo
+ sed "/^$/d" confdefs.h
+ echo
+ fi
+ test "$ac_signal" != 0 &&
+ echo "$as_me: caught signal $ac_signal"
+ echo "$as_me: exit $exit_status"
+ } >&5
+ rm -f core core.* *.core &&
+ rm -rf conftest* confdefs* conf$$* $ac_clean_files &&
+ exit $exit_status
+ ' 0
+for ac_signal in 1 2 13 15; do
+ trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal
+done
+ac_signal=0
+
+# confdefs.h avoids OS command line length limits that DEFS can exceed.
+rm -rf conftest* confdefs.h
+# AIX cpp loses on an empty file, so make sure it contains at least a newline.
+echo >confdefs.h
+
+# Predefined preprocessor variables.
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_NAME "$PACKAGE_NAME"
+_ACEOF
+
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
+_ACEOF
+
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_VERSION "$PACKAGE_VERSION"
+_ACEOF
+
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_STRING "$PACKAGE_STRING"
+_ACEOF
+
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
+_ACEOF
+
+
+# Let the site file select an alternate cache file if it wants to.
+# Prefer explicitly selected file to automatically selected ones.
+if test -z "$CONFIG_SITE"; then
+ if test "x$prefix" != xNONE; then
+ CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
+ else
+ CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
+ fi
+fi
+for ac_site_file in $CONFIG_SITE; do
+ if test -r "$ac_site_file"; then
+ { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
+echo "$as_me: loading site script $ac_site_file" >&6;}
+ sed 's/^/| /' "$ac_site_file" >&5
+ . "$ac_site_file"
+ fi
+done
+
+if test -r "$cache_file"; then
+ # Some versions of bash will fail to source /dev/null (special
+ # files actually), so we avoid doing that.
+ if test -f "$cache_file"; then
+ { echo "$as_me:$LINENO: loading cache $cache_file" >&5
+echo "$as_me: loading cache $cache_file" >&6;}
+ case $cache_file in
+ [\\/]* | ?:[\\/]* ) . $cache_file;;
+ *) . ./$cache_file;;
+ esac
+ fi
+else
+ { echo "$as_me:$LINENO: creating cache $cache_file" >&5
+echo "$as_me: creating cache $cache_file" >&6;}
+ >$cache_file
+fi
+
+# Check that the precious variables saved in the cache have kept the same
+# value.
+ac_cache_corrupted=false
+for ac_var in `(set) 2>&1 |
+ sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do
+ eval ac_old_set=\$ac_cv_env_${ac_var}_set
+ eval ac_new_set=\$ac_env_${ac_var}_set
+ eval ac_old_val="\$ac_cv_env_${ac_var}_value"
+ eval ac_new_val="\$ac_env_${ac_var}_value"
+ case $ac_old_set,$ac_new_set in
+ set,)
+ { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
+echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
+ ac_cache_corrupted=: ;;
+ ,set)
+ { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
+echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
+ ac_cache_corrupted=: ;;
+ ,);;
+ *)
+ if test "x$ac_old_val" != "x$ac_new_val"; then
+ { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
+echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
+ { echo "$as_me:$LINENO: former value: $ac_old_val" >&5
+echo "$as_me: former value: $ac_old_val" >&2;}
+ { echo "$as_me:$LINENO: current value: $ac_new_val" >&5
+echo "$as_me: current value: $ac_new_val" >&2;}
+ ac_cache_corrupted=:
+ fi;;
+ esac
+ # Pass precious variables to config.status.
+ if test "$ac_new_set" = set; then
+ case $ac_new_val in
+ *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
+ ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
+ *) ac_arg=$ac_var=$ac_new_val ;;
+ esac
+ case " $ac_configure_args " in
+ *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
+ *) ac_configure_args="$ac_configure_args '$ac_arg'" ;;
+ esac
+ fi
+done
+if $ac_cache_corrupted; then
+ { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
+echo "$as_me: error: changes in the environment can compromise the build" >&2;}
+ { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
+echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
+ { (exit 1); exit 1; }; }
+fi
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ac_config_headers="$ac_config_headers config.h"
+
+ac_config_commands="$ac_config_commands default-1"
+
+ac_aux_dir=
+for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
+ if test -f $ac_dir/install-sh; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install-sh -c"
+ break
+ elif test -f $ac_dir/install.sh; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/install.sh -c"
+ break
+ elif test -f $ac_dir/shtool; then
+ ac_aux_dir=$ac_dir
+ ac_install_sh="$ac_aux_dir/shtool install -c"
+ break
+ fi
+done
+if test -z "$ac_aux_dir"; then
+ { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
+echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
+ { (exit 1); exit 1; }; }
+fi
+ac_config_guess="$SHELL $ac_aux_dir/config.guess"
+ac_config_sub="$SHELL $ac_aux_dir/config.sub"
+ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
+
+# Make sure we can run config.sub.
+$ac_config_sub sun4 >/dev/null 2>&1 ||
+ { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5
+echo "$as_me: error: cannot run $ac_config_sub" >&2;}
+ { (exit 1); exit 1; }; }
+
+echo "$as_me:$LINENO: checking build system type" >&5
+echo $ECHO_N "checking build system type... $ECHO_C" >&6
+if test "${ac_cv_build+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_cv_build_alias=$build_alias
+test -z "$ac_cv_build_alias" &&
+ ac_cv_build_alias=`$ac_config_guess`
+test -z "$ac_cv_build_alias" &&
+ { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
+echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
+ { (exit 1); exit 1; }; }
+ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
+ { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
+echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;}
+ { (exit 1); exit 1; }; }
+
+fi
+echo "$as_me:$LINENO: result: $ac_cv_build" >&5
+echo "${ECHO_T}$ac_cv_build" >&6
+build=$ac_cv_build
+build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+
+
+echo "$as_me:$LINENO: checking host system type" >&5
+echo $ECHO_N "checking host system type... $ECHO_C" >&6
+if test "${ac_cv_host+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_cv_host_alias=$host_alias
+test -z "$ac_cv_host_alias" &&
+ ac_cv_host_alias=$ac_cv_build_alias
+ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
+ { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
+echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
+ { (exit 1); exit 1; }; }
+
+fi
+echo "$as_me:$LINENO: result: $ac_cv_host" >&5
+echo "${ECHO_T}$ac_cv_host" >&6
+host=$ac_cv_host
+host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+
+
+
+LIBXML_MAJOR_VERSION=2
+LIBXML_MINOR_VERSION=4
+LIBXML_MICRO_VERSION=28
+LIBXML_VERSION=$LIBXML_MAJOR_VERSION.$LIBXML_MINOR_VERSION.$LIBXML_MICRO_VERSION
+LIBXML_VERSION_INFO=`expr $LIBXML_MAJOR_VERSION + $LIBXML_MINOR_VERSION`:$LIBXML_MICRO_VERSION:$LIBXML_MINOR_VERSION
+
+LIBXML_VERSION_NUMBER=`expr $LIBXML_MAJOR_VERSION \* 10000 + $LIBXML_MINOR_VERSION \* 100 + $LIBXML_MICRO_VERSION`
+
+
+
+
+
+
+
+
+VERSION=${LIBXML_VERSION}
+
+am__api_version="1.4"
+# Find a good install program. We prefer a C program (faster),
+# so one script is as good as another. But avoid the broken or
+# incompatible versions:
+# SysV /etc/install, /usr/sbin/install
+# SunOS /usr/etc/install
+# IRIX /sbin/install
+# AIX /bin/install
+# AmigaOS /C/install, which installs bootblocks on floppy discs
+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
+# ./install, which can be erroneously created by make from ./install.sh.
+echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
+echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
+if test -z "$INSTALL"; then
+if test "${ac_cv_path_install+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ # Account for people who put trailing slashes in PATH elements.
+case $as_dir/ in
+ ./ | .// | /cC/* | \
+ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
+ /usr/ucb/* ) ;;
+ *)
+ # OSF1 and SCO ODT 3.0 have their own names for install.
+ # Don't use installbsd from OSF since it installs stuff as root
+ # by default.
+ for ac_prog in ginstall scoinst install; do
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
+ if test $ac_prog = install &&
+ grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # AIX install. It has an incompatible calling convention.
+ :
+ elif test $ac_prog = install &&
+ grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # program-specific install script used by HP pwplus--don't use.
+ :
+ else
+ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
+ break 3
+ fi
+ fi
+ done
+ done
+ ;;
+esac
+done
+
+
+fi
+ if test "${ac_cv_path_install+set}" = set; then
+ INSTALL=$ac_cv_path_install
+ else
+ # As a last resort, use the slow shell script. We don't cache a
+ # path for INSTALL within a source directory, because that will
+ # break other packages using the cache if that directory is
+ # removed, or if the path is relative.
+ INSTALL=$ac_install_sh
+ fi
+fi
+echo "$as_me:$LINENO: result: $INSTALL" >&5
+echo "${ECHO_T}$INSTALL" >&6
+
+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
+# It thinks the first close brace ends the variable substitution.
+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
+
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
+
+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
+
+echo "$as_me:$LINENO: checking whether build environment is sane" >&5
+echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6
+# Just in case
+sleep 1
+echo timestamp > conftestfile
+# 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 conftestfile 2> /dev/null`
+ if test "$*" = "X"; then
+ # -L didn't work.
+ set X `ls -t $srcdir/configure conftestfile`
+ fi
+ if test "$*" != "X $srcdir/configure conftestfile" \
+ && test "$*" != "X conftestfile $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".
+ { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken
+alias in your environment" >&5
+echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken
+alias in your environment" >&2;}
+ { (exit 1); exit 1; }; }
+ fi
+
+ test "$2" = conftestfile
+ )
+then
+ # Ok.
+ :
+else
+ { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!
+Check your system clock" >&5
+echo "$as_me: error: newly created file is older than distributed files!
+Check your system clock" >&2;}
+ { (exit 1); exit 1; }; }
+fi
+rm -f conftest*
+echo "$as_me:$LINENO: result: yes" >&5
+echo "${ECHO_T}yes" >&6
+test "$program_prefix" != NONE &&
+ program_transform_name="s,^,$program_prefix,;$program_transform_name"
+# Use a double $ so make ignores it.
+test "$program_suffix" != NONE &&
+ program_transform_name="s,\$,$program_suffix,;$program_transform_name"
+# Double any \ or $. echo might interpret backslashes.
+# By default was `s,x,x', remove it if useless.
+cat <<\_ACEOF >conftest.sed
+s/[\\$]/&&/g;s/;s,x,x,$//
+_ACEOF
+program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
+rm conftest.sed
+
+echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \${MAKE}" >&5
+echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
+set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
+if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.make <<\_ACEOF
+all:
+ @echo 'ac_maketemp="${MAKE}"'
+_ACEOF
+# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
+eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
+if test -n "$ac_maketemp"; then
+ eval ac_cv_prog_make_${ac_make}_set=yes
+else
+ eval ac_cv_prog_make_${ac_make}_set=no
+fi
+rm -f conftest.make
+fi
+if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
+ echo "$as_me:$LINENO: result: yes" >&5
+echo "${ECHO_T}yes" >&6
+ SET_MAKE=
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+ SET_MAKE="MAKE=${MAKE-make}"
+fi
+
+
+PACKAGE=libxml2
+
+VERSION=$VERSION
+
+if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
+ { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
+echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
+ { (exit 1); exit 1; }; }
+fi
+
+cat >>confdefs.h <<_ACEOF
+#define PACKAGE "$PACKAGE"
+_ACEOF
+
+
+cat >>confdefs.h <<_ACEOF
+#define VERSION "$VERSION"
+_ACEOF
+
+
+
+missing_dir=`cd $ac_aux_dir && pwd`
+echo "$as_me:$LINENO: checking for working aclocal-${am__api_version}" >&5
+echo $ECHO_N "checking for working aclocal-${am__api_version}... $ECHO_C" >&6
+# Run test in a subshell; some versions of sh will print an error if
+# an executable is not found, even if stderr is redirected.
+# Redirect stdin to placate older versions of autoconf. Sigh.
+if (aclocal-${am__api_version} --version) < /dev/null > /dev/null 2>&1; then
+ ACLOCAL=aclocal-${am__api_version}
+ echo "$as_me:$LINENO: result: found" >&5
+echo "${ECHO_T}found" >&6
+else
+ ACLOCAL="$missing_dir/missing aclocal-${am__api_version}"
+ echo "$as_me:$LINENO: result: missing" >&5
+echo "${ECHO_T}missing" >&6
+fi
+
+echo "$as_me:$LINENO: checking for working autoconf" >&5
+echo $ECHO_N "checking for working autoconf... $ECHO_C" >&6
+# Run test in a subshell; some versions of sh will print an error if
+# an executable is not found, even if stderr is redirected.
+# Redirect stdin to placate older versions of autoconf. Sigh.
+if (autoconf --version) < /dev/null > /dev/null 2>&1; then
+ AUTOCONF=autoconf
+ echo "$as_me:$LINENO: result: found" >&5
+echo "${ECHO_T}found" >&6
+else
+ AUTOCONF="$missing_dir/missing autoconf"
+ echo "$as_me:$LINENO: result: missing" >&5
+echo "${ECHO_T}missing" >&6
+fi
+
+echo "$as_me:$LINENO: checking for working automake-${am__api_version}" >&5
+echo $ECHO_N "checking for working automake-${am__api_version}... $ECHO_C" >&6
+# Run test in a subshell; some versions of sh will print an error if
+# an executable is not found, even if stderr is redirected.
+# Redirect stdin to placate older versions of autoconf. Sigh.
+if (automake-${am__api_version} --version) < /dev/null > /dev/null 2>&1; then
+ AUTOMAKE=automake-${am__api_version}
+ echo "$as_me:$LINENO: result: found" >&5
+echo "${ECHO_T}found" >&6
+else
+ AUTOMAKE="$missing_dir/missing automake-${am__api_version}"
+ echo "$as_me:$LINENO: result: missing" >&5
+echo "${ECHO_T}missing" >&6
+fi
+
+echo "$as_me:$LINENO: checking for working autoheader" >&5
+echo $ECHO_N "checking for working autoheader... $ECHO_C" >&6
+# Run test in a subshell; some versions of sh will print an error if
+# an executable is not found, even if stderr is redirected.
+# Redirect stdin to placate older versions of autoconf. Sigh.
+if (autoheader --version) < /dev/null > /dev/null 2>&1; then
+ AUTOHEADER=autoheader
+ echo "$as_me:$LINENO: result: found" >&5
+echo "${ECHO_T}found" >&6
+else
+ AUTOHEADER="$missing_dir/missing autoheader"
+ echo "$as_me:$LINENO: result: missing" >&5
+echo "${ECHO_T}missing" >&6
+fi
+
+echo "$as_me:$LINENO: checking for working makeinfo" >&5
+echo $ECHO_N "checking for working makeinfo... $ECHO_C" >&6
+# Run test in a subshell; some versions of sh will print an error if
+# an executable is not found, even if stderr is redirected.
+# Redirect stdin to placate older versions of autoconf. Sigh.
+if (makeinfo --version) < /dev/null > /dev/null 2>&1; then
+ MAKEINFO=makeinfo
+ echo "$as_me:$LINENO: result: found" >&5
+echo "${ECHO_T}found" >&6
+else
+ MAKEINFO="$missing_dir/missing makeinfo"
+ echo "$as_me:$LINENO: result: missing" >&5
+echo "${ECHO_T}missing" >&6
+fi
+
+
+
+
+# Check whether --with-html-dir or --without-html-dir was given.
+if test "${with_html_dir+set}" = set; then
+ withval="$with_html_dir"
+
+fi;
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+if test -n "$ac_tool_prefix"; then
+ # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
+set dummy ${ac_tool_prefix}gcc; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_CC+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$CC"; then
+ ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_CC="${ac_tool_prefix}gcc"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+fi
+fi
+CC=$ac_cv_prog_CC
+if test -n "$CC"; then
+ echo "$as_me:$LINENO: result: $CC" >&5
+echo "${ECHO_T}$CC" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+fi
+if test -z "$ac_cv_prog_CC"; then
+ ac_ct_CC=$CC
+ # Extract the first word of "gcc", so it can be a program name with args.
+set dummy gcc; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$ac_ct_CC"; then
+ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_ac_ct_CC="gcc"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+fi
+fi
+ac_ct_CC=$ac_cv_prog_ac_ct_CC
+if test -n "$ac_ct_CC"; then
+ echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
+echo "${ECHO_T}$ac_ct_CC" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+ CC=$ac_ct_CC
+else
+ CC="$ac_cv_prog_CC"
+fi
+
+if test -z "$CC"; then
+ if test -n "$ac_tool_prefix"; then
+ # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
+set dummy ${ac_tool_prefix}cc; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_CC+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$CC"; then
+ ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_CC="${ac_tool_prefix}cc"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+fi
+fi
+CC=$ac_cv_prog_CC
+if test -n "$CC"; then
+ echo "$as_me:$LINENO: result: $CC" >&5
+echo "${ECHO_T}$CC" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+fi
+if test -z "$ac_cv_prog_CC"; then
+ ac_ct_CC=$CC
+ # Extract the first word of "cc", so it can be a program name with args.
+set dummy cc; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$ac_ct_CC"; then
+ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_ac_ct_CC="cc"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+fi
+fi
+ac_ct_CC=$ac_cv_prog_ac_ct_CC
+if test -n "$ac_ct_CC"; then
+ echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
+echo "${ECHO_T}$ac_ct_CC" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+ CC=$ac_ct_CC
+else
+ CC="$ac_cv_prog_CC"
+fi
+
+fi
+if test -z "$CC"; then
+ # Extract the first word of "cc", so it can be a program name with args.
+set dummy cc; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_CC+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$CC"; then
+ ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+ ac_prog_rejected=no
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
+ ac_prog_rejected=yes
+ continue
+ fi
+ ac_cv_prog_CC="cc"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+if test $ac_prog_rejected = yes; then
+ # We found a bogon in the path, so make sure we never use it.
+ set dummy $ac_cv_prog_CC
+ shift
+ if test $# != 0; then
+ # We chose a different compiler from the bogus one.
+ # However, it has the same basename, so the bogon will be chosen
+ # first if we set CC to just the basename; use the full file name.
+ shift
+ set dummy "$as_dir/$ac_word" ${1+"$@"}
+ shift
+ ac_cv_prog_CC="$@"
+ fi
+fi
+fi
+fi
+CC=$ac_cv_prog_CC
+if test -n "$CC"; then
+ echo "$as_me:$LINENO: result: $CC" >&5
+echo "${ECHO_T}$CC" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+fi
+if test -z "$CC"; then
+ if test -n "$ac_tool_prefix"; then
+ for ac_prog in cl
+ do
+ # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
+set dummy $ac_tool_prefix$ac_prog; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_CC+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$CC"; then
+ ac_cv_prog_CC="$CC" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+fi
+fi
+CC=$ac_cv_prog_CC
+if test -n "$CC"; then
+ echo "$as_me:$LINENO: result: $CC" >&5
+echo "${ECHO_T}$CC" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+ test -n "$CC" && break
+ done
+fi
+if test -z "$CC"; then
+ ac_ct_CC=$CC
+ for ac_prog in cl
+do
+ # Extract the first word of "$ac_prog", so it can be a program name with args.
+set dummy $ac_prog; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$ac_ct_CC"; then
+ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_ac_ct_CC="$ac_prog"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+fi
+fi
+ac_ct_CC=$ac_cv_prog_ac_ct_CC
+if test -n "$ac_ct_CC"; then
+ echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
+echo "${ECHO_T}$ac_ct_CC" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+ test -n "$ac_ct_CC" && break
+done
+
+ CC=$ac_ct_CC
+fi
+
+fi
+
+
+test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH" >&5
+echo "$as_me: error: no acceptable C compiler found in \$PATH" >&2;}
+ { (exit 1); exit 1; }; }
+
+# Provide some information about the compiler.
+echo "$as_me:$LINENO:" \
+ "checking for C compiler version" >&5
+ac_compiler=`set X $ac_compile; echo $2`
+{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5
+ (eval $ac_compiler --version &5) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5
+ (eval $ac_compiler -v &5) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5
+ (eval $ac_compiler -V &5) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+
+ ;
+ return 0;
+}
+_ACEOF
+ac_clean_files_save=$ac_clean_files
+ac_clean_files="$ac_clean_files a.out a.exe"
+# Try to create an executable without -o first, disregard a.out.
+# It will help us diagnose broken compilers, and finding out an intuition
+# of exeext.
+echo "$as_me:$LINENO: checking for C compiler default output" >&5
+echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
+ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
+if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
+ (eval $ac_link_default) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; then
+ # Find the output, starting from the most likely. This scheme is
+# not robust to junk in `.', hence go to wildcards (a.*) only as a last
+# resort.
+
+# Be careful to initialize this variable, since it used to be cached.
+# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
+ac_cv_exeext=
+for ac_file in `ls a_out.exe a.exe conftest.exe 2>/dev/null;
+ ls a.out conftest 2>/dev/null;
+ ls a.* conftest.* 2>/dev/null`; do
+ case $ac_file in
+ *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb | *.xSYM ) ;;
+ a.out ) # We found the default executable, but exeext='' is most
+ # certainly right.
+ break;;
+ *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+ # FIXME: I believe we export ac_cv_exeext for Libtool --akim.
+ export ac_cv_exeext
+ break;;
+ * ) break;;
+ esac
+done
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+{ { echo "$as_me:$LINENO: error: C compiler cannot create executables" >&5
+echo "$as_me: error: C compiler cannot create executables" >&2;}
+ { (exit 77); exit 77; }; }
+fi
+
+ac_exeext=$ac_cv_exeext
+echo "$as_me:$LINENO: result: $ac_file" >&5
+echo "${ECHO_T}$ac_file" >&6
+
+# Check the compiler produces executables we can run. If not, either
+# the compiler is broken, or we cross compile.
+echo "$as_me:$LINENO: checking whether the C compiler works" >&5
+echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
+# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
+# If not cross compiling, check that we can run a simple program.
+if test "$cross_compiling" != yes; then
+ if { ac_try='./$ac_file'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ cross_compiling=no
+ else
+ if test "$cross_compiling" = maybe; then
+ cross_compiling=yes
+ else
+ { { echo "$as_me:$LINENO: error: cannot run C compiled programs.
+If you meant to cross compile, use \`--host'." >&5
+echo "$as_me: error: cannot run C compiled programs.
+If you meant to cross compile, use \`--host'." >&2;}
+ { (exit 1); exit 1; }; }
+ fi
+ fi
+fi
+echo "$as_me:$LINENO: result: yes" >&5
+echo "${ECHO_T}yes" >&6
+
+rm -f a.out a.exe conftest$ac_cv_exeext
+ac_clean_files=$ac_clean_files_save
+# Check the compiler produces executables we can run. If not, either
+# the compiler is broken, or we cross compile.
+echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
+echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
+echo "$as_me:$LINENO: result: $cross_compiling" >&5
+echo "${ECHO_T}$cross_compiling" >&6
+
+echo "$as_me:$LINENO: checking for suffix of executables" >&5
+echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; then
+ # If both `conftest.exe' and `conftest' are `present' (well, observable)
+# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
+# work properly (i.e., refer to `conftest.exe'), while it won't with
+# `rm'.
+for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
+ case $ac_file in
+ *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
+ *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
+ export ac_cv_exeext
+ break;;
+ * ) break;;
+ esac
+done
+else
+ { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link" >&5
+echo "$as_me: error: cannot compute suffix of executables: cannot compile and link" >&2;}
+ { (exit 1); exit 1; }; }
+fi
+
+rm -f conftest$ac_cv_exeext
+echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
+echo "${ECHO_T}$ac_cv_exeext" >&6
+
+rm -f conftest.$ac_ext
+EXEEXT=$ac_cv_exeext
+ac_exeext=$EXEEXT
+echo "$as_me:$LINENO: checking for suffix of object files" >&5
+echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6
+if test "${ac_cv_objext+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.o conftest.obj
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; then
+ for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
+ case $ac_file in
+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb ) ;;
+ *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
+ break;;
+ esac
+done
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile" >&5
+echo "$as_me: error: cannot compute suffix of object files: cannot compile" >&2;}
+ { (exit 1); exit 1; }; }
+fi
+
+rm -f conftest.$ac_cv_objext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
+echo "${ECHO_T}$ac_cv_objext" >&6
+OBJEXT=$ac_cv_objext
+ac_objext=$OBJEXT
+echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
+echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
+if test "${ac_cv_c_compiler_gnu+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+#ifndef __GNUC__
+ choke me
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_compiler_gnu=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_compiler_gnu=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+ac_cv_c_compiler_gnu=$ac_compiler_gnu
+
+fi
+echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
+echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
+GCC=`test $ac_compiler_gnu = yes && echo yes`
+ac_test_CFLAGS=${CFLAGS+set}
+ac_save_CFLAGS=$CFLAGS
+CFLAGS="-g"
+echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
+echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
+if test "${ac_cv_prog_cc_g+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_prog_cc_g=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_prog_cc_g=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
+echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
+if test "$ac_test_CFLAGS" = set; then
+ CFLAGS=$ac_save_CFLAGS
+elif test $ac_cv_prog_cc_g = yes; then
+ if test "$GCC" = yes; then
+ CFLAGS="-g -O2"
+ else
+ CFLAGS="-g"
+ fi
+else
+ if test "$GCC" = yes; then
+ CFLAGS="-O2"
+ else
+ CFLAGS=
+ fi
+fi
+# Some people use a C++ compiler to compile C. Since we use `exit',
+# in C++ we need to declare it. In case someone uses the same compiler
+# for both compiling C and C++ we need to have the C++ compiler decide
+# the declaration of exit, since it's the most demanding environment.
+cat >conftest.$ac_ext <<_ACEOF
+#ifndef __cplusplus
+ choke me
+#endif
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ for ac_declaration in \
+ ''\
+ '#include ' \
+ 'extern "C" void std::exit (int) throw (); using std::exit;' \
+ 'extern "C" void std::exit (int); using std::exit;' \
+ 'extern "C" void exit (int) throw ();' \
+ 'extern "C" void exit (int);' \
+ 'void exit (int);'
+do
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+$ac_declaration
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+exit (42);
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ :
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+continue
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_declaration
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+exit (42);
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ break
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+done
+rm -f conftest*
+if test -n "$ac_declaration"; then
+ echo '#ifdef __cplusplus' >>confdefs.h
+ echo $ac_declaration >>confdefs.h
+ echo '#endif' >>confdefs.h
+fi
+
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+# Find a good install program. We prefer a C program (faster),
+# so one script is as good as another. But avoid the broken or
+# incompatible versions:
+# SysV /etc/install, /usr/sbin/install
+# SunOS /usr/etc/install
+# IRIX /sbin/install
+# AIX /bin/install
+# AmigaOS /C/install, which installs bootblocks on floppy discs
+# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
+# AFS /usr/afsws/bin/install, which mishandles nonexistent args
+# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
+# ./install, which can be erroneously created by make from ./install.sh.
+echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
+echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6
+if test -z "$INSTALL"; then
+if test "${ac_cv_path_install+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ # Account for people who put trailing slashes in PATH elements.
+case $as_dir/ in
+ ./ | .// | /cC/* | \
+ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
+ /usr/ucb/* ) ;;
+ *)
+ # OSF1 and SCO ODT 3.0 have their own names for install.
+ # Don't use installbsd from OSF since it installs stuff as root
+ # by default.
+ for ac_prog in ginstall scoinst install; do
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
+ if test $ac_prog = install &&
+ grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # AIX install. It has an incompatible calling convention.
+ :
+ elif test $ac_prog = install &&
+ grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
+ # program-specific install script used by HP pwplus--don't use.
+ :
+ else
+ ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
+ break 3
+ fi
+ fi
+ done
+ done
+ ;;
+esac
+done
+
+
+fi
+ if test "${ac_cv_path_install+set}" = set; then
+ INSTALL=$ac_cv_path_install
+ else
+ # As a last resort, use the slow shell script. We don't cache a
+ # path for INSTALL within a source directory, because that will
+ # break other packages using the cache if that directory is
+ # removed, or if the path is relative.
+ INSTALL=$ac_install_sh
+ fi
+fi
+echo "$as_me:$LINENO: result: $INSTALL" >&5
+echo "${ECHO_T}$INSTALL" >&6
+
+# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
+# It thinks the first close brace ends the variable substitution.
+test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
+
+test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
+
+test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5
+echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
+# On Suns, sometimes $CPP names a directory.
+if test -n "$CPP" && test -d "$CPP"; then
+ CPP=
+fi
+if test -z "$CPP"; then
+ if test "${ac_cv_prog_CPP+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ # Double quotes because CPP needs to be expanded
+ for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
+ do
+ ac_preproc_ok=false
+for ac_c_preproc_warn_flag in '' yes
+do
+ # Use a header file that comes with gcc, so configuring glibc
+ # with a fresh cross-compiler works.
+ # On the NeXT, cc -E runs the code through the compiler's parser,
+ # not just through cpp. "Syntax error" is here to catch this case.
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+ Syntax error
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ :
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ # Broken: fails on valid input.
+continue
+fi
+rm -f conftest.err conftest.$ac_ext
+
+ # OK, works on sane cases. Now check whether non-existent headers
+ # can be detected and how.
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ # Broken: success on invalid input.
+continue
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ # Passes both tests.
+ac_preproc_ok=:
+break
+fi
+rm -f conftest.err conftest.$ac_ext
+
+done
+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
+rm -f conftest.err conftest.$ac_ext
+if $ac_preproc_ok; then
+ break
+fi
+
+ done
+ ac_cv_prog_CPP=$CPP
+
+fi
+ CPP=$ac_cv_prog_CPP
+else
+ ac_cv_prog_CPP=$CPP
+fi
+echo "$as_me:$LINENO: result: $CPP" >&5
+echo "${ECHO_T}$CPP" >&6
+ac_preproc_ok=false
+for ac_c_preproc_warn_flag in '' yes
+do
+ # Use a header file that comes with gcc, so configuring glibc
+ # with a fresh cross-compiler works.
+ # On the NeXT, cc -E runs the code through the compiler's parser,
+ # not just through cpp. "Syntax error" is here to catch this case.
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+ Syntax error
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ :
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ # Broken: fails on valid input.
+continue
+fi
+rm -f conftest.err conftest.$ac_ext
+
+ # OK, works on sane cases. Now check whether non-existent headers
+ # can be detected and how.
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ # Broken: success on invalid input.
+continue
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ # Passes both tests.
+ac_preproc_ok=:
+break
+fi
+rm -f conftest.err conftest.$ac_ext
+
+done
+# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
+rm -f conftest.err conftest.$ac_ext
+if $ac_preproc_ok; then
+ :
+else
+ { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check" >&5
+echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
+ { (exit 1); exit 1; }; }
+fi
+
+ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+# Extract the first word of "rm", so it can be a program name with args.
+set dummy rm; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_path_RM+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ case $RM in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_RM="$RM" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_RM="$as_dir/$ac_word$ac_exec_ext"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+ test -z "$ac_cv_path_RM" && ac_cv_path_RM="/bin/rm"
+ ;;
+esac
+fi
+RM=$ac_cv_path_RM
+
+if test -n "$RM"; then
+ echo "$as_me:$LINENO: result: $RM" >&5
+echo "${ECHO_T}$RM" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+# Extract the first word of "mv", so it can be a program name with args.
+set dummy mv; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_path_MV+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ case $MV in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_MV="$MV" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_MV="$as_dir/$ac_word$ac_exec_ext"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+ test -z "$ac_cv_path_MV" && ac_cv_path_MV="/bin/mv"
+ ;;
+esac
+fi
+MV=$ac_cv_path_MV
+
+if test -n "$MV"; then
+ echo "$as_me:$LINENO: result: $MV" >&5
+echo "${ECHO_T}$MV" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+# Extract the first word of "tar", so it can be a program name with args.
+set dummy tar; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_path_TAR+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ case $TAR in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_TAR="$TAR" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_TAR="$as_dir/$ac_word$ac_exec_ext"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+ test -z "$ac_cv_path_TAR" && ac_cv_path_TAR="/bin/tar"
+ ;;
+esac
+fi
+TAR=$ac_cv_path_TAR
+
+if test -n "$TAR"; then
+ echo "$as_me:$LINENO: result: $TAR" >&5
+echo "${ECHO_T}$TAR" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+
+
+
+
+
+echo "$as_me:$LINENO: checking for ${CC-cc} option to accept ANSI C" >&5
+echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6
+if test "${am_cv_prog_cc_stdc+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ am_cv_prog_cc_stdc=no
+ac_save_CC="$CC"
+# Don't try gcc -ansi; that turns off useful extensions and
+# breaks some systems' header files.
+# AIX -qlanglvl=ansi
+# Ultrix and OSF/1 -std1
+# HP-UX -Aa -D_HPUX_SOURCE
+# SVR4 -Xc -D__EXTENSIONS__
+for ac_arg in "" -qlanglvl=ansi -std1 "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
+do
+ CC="$ac_save_CC $ac_arg"
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+#include
+#include
+#include
+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
+struct buf { int x; };
+FILE * (*rcsopen) (struct buf *, struct stat *, int);
+static char *e (p, i)
+ char **p;
+ int i;
+{
+ return p[i];
+}
+static char *f (char * (*g) (char **, int), char **p, ...)
+{
+ char *s;
+ va_list v;
+ va_start (v,p);
+ s = g (p, va_arg (v,int));
+ va_end (v);
+ return s;
+}
+int test (int i, double x);
+struct s1 {int (*f) (int a);};
+struct s2 {int (*f) (double a);};
+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
+int argc;
+char **argv;
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+
+return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ am_cv_prog_cc_stdc="$ac_arg"; break
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+done
+CC="$ac_save_CC"
+
+fi
+
+if test -z "$am_cv_prog_cc_stdc"; then
+ echo "$as_me:$LINENO: result: none needed" >&5
+echo "${ECHO_T}none needed" >&6
+else
+ echo "$as_me:$LINENO: result: $am_cv_prog_cc_stdc" >&5
+echo "${ECHO_T}$am_cv_prog_cc_stdc" >&6
+fi
+case "x$am_cv_prog_cc_stdc" in
+ x|xno) ;;
+ *) CC="$CC $am_cv_prog_cc_stdc" ;;
+esac
+
+
+# On IRIX 5.3, sys/types and inttypes.h are conflicting.
+
+
+
+
+
+
+
+
+
+for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
+ inttypes.h stdint.h unistd.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_Header=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_Header=no"
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+
+
+echo "$as_me:$LINENO: checking for function prototypes" >&5
+echo $ECHO_N "checking for function prototypes... $ECHO_C" >&6
+if test "$am_cv_prog_cc_stdc" != no; then
+ echo "$as_me:$LINENO: result: yes" >&5
+echo "${ECHO_T}yes" >&6
+
+cat >>confdefs.h <<\_ACEOF
+#define PROTOTYPES 1
+_ACEOF
+
+ U= ANSI2KNR=
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+ U=_ ANSI2KNR=./ansi2knr
+ # Ensure some checks needed by ansi2knr itself.
+ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
+echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
+if test "${ac_cv_header_stdc+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+#include
+#include
+#include
+
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_cv_header_stdc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_cv_header_stdc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+
+if test $ac_cv_header_stdc = yes; then
+ # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+
+_ACEOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "memchr" >/dev/null 2>&1; then
+ :
+else
+ ac_cv_header_stdc=no
+fi
+rm -f conftest*
+
+fi
+
+if test $ac_cv_header_stdc = yes; then
+ # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+
+_ACEOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "free" >/dev/null 2>&1; then
+ :
+else
+ ac_cv_header_stdc=no
+fi
+rm -f conftest*
+
+fi
+
+if test $ac_cv_header_stdc = yes; then
+ # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
+ if test "$cross_compiling" = yes; then
+ :
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "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);
+}
+_ACEOF
+rm -f conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ :
+else
+ echo "$as_me: program exited with status $ac_status" >&5
+echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+( exit $ac_status )
+ac_cv_header_stdc=no
+fi
+rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+fi
+fi
+fi
+echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
+echo "${ECHO_T}$ac_cv_header_stdc" >&6
+if test $ac_cv_header_stdc = yes; then
+
+cat >>confdefs.h <<\_ACEOF
+#define STDC_HEADERS 1
+_ACEOF
+
+fi
+
+
+for ac_header in string.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+fi
+
+test "x$U" != "x" && { { echo "$as_me:$LINENO: error: Compiler not ANSI compliant" >&5
+echo "$as_me: error: Compiler not ANSI compliant" >&2;}
+ { (exit 1); exit 1; }; }
+
+# Check whether --enable-shared or --disable-shared was given.
+if test "${enable_shared+set}" = set; then
+ enableval="$enable_shared"
+ 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.
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
+ for pkg in $enableval; do
+ if test "X$pkg" = "X$p"; then
+ enable_shared=yes
+ fi
+ done
+ IFS="$ac_save_ifs"
+ ;;
+esac
+else
+ enable_shared=yes
+fi;
+# Check whether --enable-static or --disable-static was given.
+if test "${enable_static+set}" = set; then
+ enableval="$enable_static"
+ 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.
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
+ for pkg in $enableval; do
+ if test "X$pkg" = "X$p"; then
+ enable_static=yes
+ fi
+ done
+ IFS="$ac_save_ifs"
+ ;;
+esac
+else
+ enable_static=yes
+fi;
+# Check whether --enable-fast-install or --disable-fast-install was given.
+if test "${enable_fast_install+set}" = set; then
+ enableval="$enable_fast_install"
+ 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.
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
+ for pkg in $enableval; do
+ if test "X$pkg" = "X$p"; then
+ enable_fast_install=yes
+ fi
+ done
+ IFS="$ac_save_ifs"
+ ;;
+esac
+else
+ enable_fast_install=yes
+fi;
+# Find the correct PATH separator. Usually this is `:', but
+# DJGPP uses `;' like DOS.
+if test "X${PATH_SEPARATOR+set}" != Xset; then
+ UNAME=${UNAME-`uname 2>/dev/null`}
+ case X$UNAME in
+ *-DOS) lt_cv_sys_path_separator=';' ;;
+ *) lt_cv_sys_path_separator=':' ;;
+ esac
+ PATH_SEPARATOR=$lt_cv_sys_path_separator
+fi
+
+
+# Check whether --with-gnu-ld or --without-gnu-ld was given.
+if test "${with_gnu_ld+set}" = set; then
+ withval="$with_gnu_ld"
+ test "$withval" = no || with_gnu_ld=yes
+else
+ with_gnu_ld=no
+fi;
+ac_prog=ld
+if test "$GCC" = yes; then
+ # Check if gcc -print-prog-name=ld gives a path.
+ echo "$as_me:$LINENO: checking for ld used by GCC" >&5
+echo $ECHO_N "checking for ld used by GCC... $ECHO_C" >&6
+ 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.
+ [\\/]* | [A-Za-z]:[\\/]*)
+ re_direlt='/[^/][^/]*/\.\./'
+ # Canonicalize the path 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
+ echo "$as_me:$LINENO: checking for GNU ld" >&5
+echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6
+else
+ echo "$as_me:$LINENO: checking for non-GNU ld" >&5
+echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6
+fi
+if test "${lt_cv_path_LD+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -z "$LD"; then
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+ for ac_dir in $PATH; do
+ 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 GNU ld's only accept -v.
+ # Break only if it was the GNU/non-GNU ld that we prefer.
+ if "$lt_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
+ test "$with_gnu_ld" != no && break
+ else
+ test "$with_gnu_ld" != yes && break
+ fi
+ fi
+ done
+ IFS="$ac_save_ifs"
+else
+ lt_cv_path_LD="$LD" # Let the user override the test with a path.
+fi
+fi
+
+LD="$lt_cv_path_LD"
+if test -n "$LD"; then
+ echo "$as_me:$LINENO: result: $LD" >&5
+echo "${ECHO_T}$LD" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5
+echo "$as_me: error: no acceptable ld found in \$PATH" >&2;}
+ { (exit 1); exit 1; }; }
+echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5
+echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6
+if test "${lt_cv_prog_gnu_ld+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ # I'd rather use --version here, but apparently some GNU ld's only accept -v.
+if $LD -v 2>&1 &5; then
+ lt_cv_prog_gnu_ld=yes
+else
+ lt_cv_prog_gnu_ld=no
+fi
+fi
+echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5
+echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6
+with_gnu_ld=$lt_cv_prog_gnu_ld
+
+
+echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5
+echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6
+if test "${lt_cv_ld_reload_flag+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ lt_cv_ld_reload_flag='-r'
+fi
+echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5
+echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6
+reload_flag=$lt_cv_ld_reload_flag
+test -n "$reload_flag" && reload_flag=" $reload_flag"
+
+echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5
+echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6
+if test "${lt_cv_path_NM+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$NM"; then
+ # Let the user override the test.
+ lt_cv_path_NM="$NM"
+else
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
+ for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
+ 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
+ if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then
+ lt_cv_path_NM="$tmp_nm -B"
+ break
+ elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
+ lt_cv_path_NM="$tmp_nm -p"
+ break
+ else
+ 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
+ fi
+ fi
+ done
+ IFS="$ac_save_ifs"
+ test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
+fi
+fi
+
+NM="$lt_cv_path_NM"
+echo "$as_me:$LINENO: result: $NM" >&5
+echo "${ECHO_T}$NM" >&6
+
+echo "$as_me:$LINENO: checking whether ln -s works" >&5
+echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
+LN_S=$as_ln_s
+if test "$LN_S" = "ln -s"; then
+ echo "$as_me:$LINENO: result: yes" >&5
+echo "${ECHO_T}yes" >&6
+else
+ echo "$as_me:$LINENO: result: no, using $LN_S" >&5
+echo "${ECHO_T}no, using $LN_S" >&6
+fi
+
+echo "$as_me:$LINENO: checking how to recognise dependant libraries" >&5
+echo $ECHO_N "checking how to recognise dependant libraries... $ECHO_C" >&6
+if test "${lt_cv_deplibs_check_method+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ lt_cv_file_magic_cmd='$MAGIC_CMD'
+lt_cv_file_magic_test_file=
+lt_cv_deplibs_check_method='unknown'
+# Need to set the preceding variable on all platforms that support
+# interlibrary dependencies.
+# 'none' -- dependencies not supported.
+# `unknown' -- same as none, but documents that we really don't know.
+# 'pass_all' -- all dependencies passed with no checks.
+# 'test_compile' -- check by making test program.
+# 'file_magic [[regex]]' -- check by looking for files in library path
+# which responds to the $file_magic_cmd with a given egrep regex.
+# If you have `file' or equivalent on your system and you're not sure
+# whether `pass_all' will *always* work, you probably want this one.
+
+case $host_os in
+aix4* | aix5*)
+ lt_cv_deplibs_check_method=pass_all
+ ;;
+
+beos*)
+ lt_cv_deplibs_check_method=pass_all
+ ;;
+
+bsdi4*)
+ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
+ lt_cv_file_magic_cmd='/usr/bin/file -L'
+ lt_cv_file_magic_test_file=/shlib/libc.so
+ ;;
+
+cygwin* | mingw* | pw32*)
+ lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
+ lt_cv_file_magic_cmd='$OBJDUMP -f'
+ ;;
+
+darwin* | rhapsody*)
+ lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library'
+ lt_cv_file_magic_cmd='/usr/bin/file -L'
+ case "$host_os" in
+ rhapsody* | darwin1.[012])
+ lt_cv_file_magic_test_file=`echo /System/Library/Frameworks/System.framework/Versions/*/System | head -1`
+ ;;
+ *) # Darwin 1.3 on
+ lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib'
+ ;;
+ esac
+ ;;
+
+freebsd*)
+ if echo __ELF__ | $CC -E - | grep __ELF__ > /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)/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_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library'
+ lt_cv_file_magic_cmd=/usr/bin/file
+ lt_cv_file_magic_test_file=/usr/lib/libc.sl
+ ;;
+
+irix5* | irix6*)
+ case $host_os in
+ irix5*)
+ # this will be overridden with pass_all, but let us keep it just in case
+ lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1"
+ ;;
+ *)
+ case $LD in
+ *-32|*"-32 ") libmagic=32-bit;;
+ *-n32|*"-n32 ") libmagic=N32;;
+ *-64|*"-64 ") libmagic=64-bit;;
+ *) libmagic=never-match;;
+ esac
+ # this will be overridden with pass_all, but let us keep it just in case
+ lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[1234] dynamic lib MIPS - version 1"
+ ;;
+ esac
+ lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*`
+ lt_cv_deplibs_check_method=pass_all
+ ;;
+
+# This must be Linux ELF.
+linux-gnu*)
+ case $host_cpu in
+ alpha* | hppa* | i*86 | powerpc* | sparc* | ia64* | s390* )
+ lt_cv_deplibs_check_method=pass_all ;;
+ *)
+ # glibc up to 2.1.1 does not perform some relocations on ARM
+ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;;
+ esac
+ lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
+ ;;
+
+netbsd*)
+ if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
+ lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so\.[0-9]+\.[0-9]+$'
+ else
+ lt_cv_deplibs_check_method='match_pattern /lib[^/\.]+\.so$'
+ 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
+ ;;
+
+openbsd*)
+ lt_cv_file_magic_cmd=/usr/bin/file
+ lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
+ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+ lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB shared object'
+ else
+ lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library'
+ fi
+ ;;
+
+osf3* | osf4* | osf5*)
+ # this will be overridden with pass_all, but let us keep it just in case
+ lt_cv_deplibs_check_method='file_magic COFF format alpha shared library'
+ lt_cv_file_magic_test_file=/shlib/libc.so
+ lt_cv_deplibs_check_method=pass_all
+ ;;
+
+sco3.2v5*)
+ lt_cv_deplibs_check_method=pass_all
+ ;;
+
+solaris*)
+ lt_cv_deplibs_check_method=pass_all
+ lt_cv_file_magic_test_file=/lib/libc.so
+ ;;
+
+sysv5uw[78]* | sysv4*uw2*)
+ 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
+ ;;
+ esac
+ ;;
+esac
+
+fi
+echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5
+echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6
+file_magic_cmd=$lt_cv_file_magic_cmd
+deplibs_check_method=$lt_cv_deplibs_check_method
+
+
+
+
+
+
+
+# Check for command to grab the raw symbol name followed by C symbol from nm.
+echo "$as_me:$LINENO: checking command to parse $NM output" >&5
+echo $ECHO_N "checking command to parse $NM output... $ECHO_C" >&6
+if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+
+# 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 the above into a raw symbol and a C symbol.
+symxfrm='\1 \2\3 \3'
+
+# Transform an extracted symbol line into a proper C declaration
+lt_cv_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern char \1;/p'"
+
+# Transform an extracted symbol line into symbol name and symbol address
+lt_cv_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
+ lt_cv_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern char \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
+ lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'"
+ ;;
+irix*)
+ symcode='[BCDEGRST]'
+ ;;
+solaris* | sysv5*)
+ symcode='[BDT]'
+ ;;
+sysv4)
+ symcode='[DFNSTU]'
+ ;;
+esac
+
+# Handle CRLF in mingw tool chain
+opt_cr=
+case $host_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.
+if $NM -V 2>&1 | egrep '(GNU|with BFD)' > /dev/null; then
+ symcode='[ABCDGISTW]'
+fi
+
+# Try without a prefix undercore, then with it.
+for ac_symprfx in "" "_"; do
+
+ # 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 <&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; then
+ # Now try to grab the symbols.
+ nlist=conftest.nm
+ if { (eval echo "$as_me:$LINENO: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\"") >&5
+ (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } && 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 egrep ' nm_test_var$' "$nlist" >/dev/null; then
+ if egrep ' 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_global_symbol_to_cdecl"' < "$nlist" >> conftest.$ac_ext'
+
+ cat <> conftest.$ac_ext
+#if defined (__STDC__) && __STDC__
+# define lt_ptr void *
+#else
+# define lt_ptr char *
+# define const
+#endif
+
+/* The mapping between symbol names and symbols. */
+const struct {
+ const char *name;
+ lt_ptr address;
+}
+lt_preloaded_symbols[] =
+{
+EOF
+ sed "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr) \&\2},/" < "$nlist" >> conftest.$ac_ext
+ cat <<\EOF >> conftest.$ac_ext
+ {0, (lt_ptr) 0}
+};
+
+#ifdef __cplusplus
+}
+#endif
+EOF
+ # Now try linking the two files.
+ mv conftest.$ac_objext conftstm.$ac_objext
+ save_LIBS="$LIBS"
+ save_CFLAGS="$CFLAGS"
+ LIBS="conftstm.$ac_objext"
+ CFLAGS="$CFLAGS$no_builtin_flag"
+ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } && test -s conftest; then
+ pipe_works=yes
+ fi
+ LIBS="$save_LIBS"
+ CFLAGS="$save_CFLAGS"
+ else
+ echo "cannot find nm_test_func in $nlist" >&5
+ fi
+ else
+ echo "cannot find nm_test_var in $nlist" >&5
+ fi
+ else
+ echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5
+ fi
+ else
+ echo "$progname: failed program was:" >&5
+ 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
+
+fi
+
+global_symbol_pipe="$lt_cv_sys_global_symbol_pipe"
+if test -z "$lt_cv_sys_global_symbol_pipe"; then
+ global_symbol_to_cdecl=
+ global_symbol_to_c_name_address=
+else
+ global_symbol_to_cdecl="$lt_cv_global_symbol_to_cdecl"
+ global_symbol_to_c_name_address="$lt_cv_global_symbol_to_c_name_address"
+fi
+if test -z "$global_symbol_pipe$global_symbol_to_cdec$global_symbol_to_c_name_address";
+then
+ echo "$as_me:$LINENO: result: failed" >&5
+echo "${ECHO_T}failed" >&6
+else
+ echo "$as_me:$LINENO: result: ok" >&5
+echo "${ECHO_T}ok" >&6
+fi
+
+
+for ac_header in dlfcn.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+
+
+
+# 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
+ echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5
+echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6
+if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ case $MAGIC_CMD in
+ /*)
+ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
+ ;;
+ ?:/*)
+ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
+ ;;
+ *)
+ ac_save_MAGIC_CMD="$MAGIC_CMD"
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
+ ac_dummy="/usr/bin:$PATH"
+ for ac_dir in $ac_dummy; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f $ac_dir/${ac_tool_prefix}file; then
+ lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file"
+ 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="$ac_save_ifs"
+ MAGIC_CMD="$ac_save_MAGIC_CMD"
+ ;;
+esac
+fi
+
+MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
+if test -n "$MAGIC_CMD"; then
+ echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
+echo "${ECHO_T}$MAGIC_CMD" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+if test -z "$lt_cv_path_MAGIC_CMD"; then
+ if test -n "$ac_tool_prefix"; then
+ echo "$as_me:$LINENO: checking for file" >&5
+echo $ECHO_N "checking for file... $ECHO_C" >&6
+if test "${lt_cv_path_MAGIC_CMD+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ case $MAGIC_CMD in
+ /*)
+ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
+ ;;
+ ?:/*)
+ lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
+ ;;
+ *)
+ ac_save_MAGIC_CMD="$MAGIC_CMD"
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=":"
+ ac_dummy="/usr/bin:$PATH"
+ for ac_dir in $ac_dummy; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f $ac_dir/file; then
+ lt_cv_path_MAGIC_CMD="$ac_dir/file"
+ 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="$ac_save_ifs"
+ MAGIC_CMD="$ac_save_MAGIC_CMD"
+ ;;
+esac
+fi
+
+MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
+if test -n "$MAGIC_CMD"; then
+ echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5
+echo "${ECHO_T}$MAGIC_CMD" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+ else
+ MAGIC_CMD=:
+ fi
+fi
+
+ fi
+ ;;
+esac
+
+if test -n "$ac_tool_prefix"; then
+ # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
+set dummy ${ac_tool_prefix}ranlib; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_RANLIB+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$RANLIB"; then
+ ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+fi
+fi
+RANLIB=$ac_cv_prog_RANLIB
+if test -n "$RANLIB"; then
+ echo "$as_me:$LINENO: result: $RANLIB" >&5
+echo "${ECHO_T}$RANLIB" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+fi
+if test -z "$ac_cv_prog_RANLIB"; then
+ ac_ct_RANLIB=$RANLIB
+ # Extract the first word of "ranlib", so it can be a program name with args.
+set dummy ranlib; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$ac_ct_RANLIB"; then
+ ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_ac_ct_RANLIB="ranlib"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+ test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":"
+fi
+fi
+ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
+if test -n "$ac_ct_RANLIB"; then
+ echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5
+echo "${ECHO_T}$ac_ct_RANLIB" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+ RANLIB=$ac_ct_RANLIB
+else
+ RANLIB="$ac_cv_prog_RANLIB"
+fi
+
+if test -n "$ac_tool_prefix"; then
+ # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
+set dummy ${ac_tool_prefix}strip; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_STRIP+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$STRIP"; then
+ ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_STRIP="${ac_tool_prefix}strip"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+fi
+fi
+STRIP=$ac_cv_prog_STRIP
+if test -n "$STRIP"; then
+ echo "$as_me:$LINENO: result: $STRIP" >&5
+echo "${ECHO_T}$STRIP" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+fi
+if test -z "$ac_cv_prog_STRIP"; then
+ ac_ct_STRIP=$STRIP
+ # Extract the first word of "strip", so it can be a program name with args.
+set dummy strip; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test -n "$ac_ct_STRIP"; then
+ ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
+else
+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_prog_ac_ct_STRIP="strip"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+ test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":"
+fi
+fi
+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
+if test -n "$ac_ct_STRIP"; then
+ echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
+echo "${ECHO_T}$ac_ct_STRIP" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+ STRIP=$ac_ct_STRIP
+else
+ STRIP="$ac_cv_prog_STRIP"
+fi
+
+
+enable_dlopen=no
+enable_win32_dll=no
+
+# Check whether --enable-libtool-lock or --disable-libtool-lock was given.
+if test "${enable_libtool_lock+set}" = set; then
+ enableval="$enable_libtool_lock"
+
+fi;
+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
+*-*-irix6*)
+ # Find out which ABI we are using.
+ echo '#line 4409 "configure"' > conftest.$ac_ext
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; then
+ 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
+ rm -rf conftest*
+ ;;
+
+*-*-sco3.2v5*)
+ # On SCO OpenServer 5, we need -belf to get full-featured binaries.
+ SAVE_CFLAGS="$CFLAGS"
+ CFLAGS="$CFLAGS -belf"
+ echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5
+echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6
+if test "${lt_cv_cc_needs_belf+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+
+
+ ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ lt_cv_cc_needs_belf=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+lt_cv_cc_needs_belf=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+ ac_ext=c
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
+ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
+ac_compiler_gnu=$ac_cv_c_compiler_gnu
+
+fi
+echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5
+echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6
+ 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
+ ;;
+
+
+esac
+
+# Sed substitution that helps us do robust quoting. It backslashifies
+# metacharacters that are still active within double-quoted strings.
+Xsed='sed -e s/^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'
+
+# Constants:
+rm="rm -f"
+
+# Global variables:
+default_ofile=libtool
+can_build_shared=yes
+
+# All known linkers require a `.a' archive for static linking (except M$VC,
+# which needs '.lib').
+libext=a
+ltmain="$ac_aux_dir/ltmain.sh"
+ofile="$default_ofile"
+with_gnu_ld="$lt_cv_prog_gnu_ld"
+need_locks="$enable_libtool_lock"
+
+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 "$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 "$OBJDUMP" && OBJDUMP=objdump
+test -z "$RANLIB" && RANLIB=:
+test -z "$STRIP" && STRIP=:
+test -z "$ac_objext" && ac_objext=o
+
+if test x"$host" != x"$build"; then
+ ac_tool_prefix=${host_alias}-
+else
+ ac_tool_prefix=
+fi
+
+# Transform linux* to *-*-linux-gnu*, to support old configure scripts.
+case $host_os in
+linux-gnu*) ;;
+linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'`
+esac
+
+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
+
+# 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
+
+# Allow CC to be a program name with arguments.
+set dummy $CC
+compiler="$2"
+
+echo "$as_me:$LINENO: checking for objdir" >&5
+echo $ECHO_N "checking for objdir... $ECHO_C" >&6
+rm -f .libs 2>/dev/null
+mkdir .libs 2>/dev/null
+if test -d .libs; then
+ objdir=.libs
+else
+ # MS-DOS does not allow filenames that begin with a dot.
+ objdir=_libs
+fi
+rmdir .libs 2>/dev/null
+echo "$as_me:$LINENO: result: $objdir" >&5
+echo "${ECHO_T}$objdir" >&6
+
+
+
+# Check whether --with-pic or --without-pic was given.
+if test "${with_pic+set}" = set; then
+ withval="$with_pic"
+ pic_mode="$withval"
+else
+ pic_mode=default
+fi;
+test -z "$pic_mode" && pic_mode=default
+
+# We assume here that the value for lt_cv_prog_cc_pic will not be cached
+# in isolation, and that seeing it set (from the cache) indicates that
+# the associated values are set (in the cache) correctly too.
+echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5
+echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6
+if test "${lt_cv_prog_cc_pic+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ lt_cv_prog_cc_pic=
+ lt_cv_prog_cc_shlib=
+ lt_cv_prog_cc_wl=
+ lt_cv_prog_cc_static=
+ lt_cv_prog_cc_no_builtin=
+ lt_cv_prog_cc_can_build_shared=$can_build_shared
+
+ if test "$GCC" = yes; then
+ lt_cv_prog_cc_wl='-Wl,'
+ lt_cv_prog_cc_static='-static'
+
+ case $host_os in
+ aix*)
+ # Below there is a dirty hack to force normal static linking with -ldl
+ # The problem is because libdl dynamically linked with both libc and
+ # libC (AIX C++ library), which obviously doesn't included in libraries
+ # list by gcc. This cause undefined symbols with -static flags.
+ # This hack allows C programs to be linked with "-static -ldl", but
+ # not sure about C++ programs.
+ lt_cv_prog_cc_static="$lt_cv_prog_cc_static ${lt_cv_prog_cc_wl}-lC"
+ ;;
+ 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_cv_prog_cc_pic='-m68020 -resident32 -malways-restore-a4'
+ ;;
+ beos* | irix5* | irix6* | osf3* | osf4* | osf5*)
+ # PIC is the default for these OSes.
+ ;;
+ darwin* | rhapsody*)
+ # PIC is the default on this platform
+ # Common symbols not allowed in MH_DYLIB files
+ lt_cv_prog_cc_pic='-fno-common'
+ ;;
+ cygwin* | 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_cv_prog_cc_pic='-DDLL_EXPORT'
+ ;;
+ sysv4*MP*)
+ if test -d /usr/nec; then
+ lt_cv_prog_cc_pic=-Kconform_pic
+ fi
+ ;;
+ *)
+ lt_cv_prog_cc_pic='-fPIC'
+ ;;
+ esac
+ else
+ # PORTME Check for PIC flags for the system compiler.
+ case $host_os in
+ aix3* | aix4* | aix5*)
+ lt_cv_prog_cc_wl='-Wl,'
+ # All AIX code is PIC.
+ if test "$host_cpu" = ia64; then
+ # AIX 5 now supports IA64 processor
+ lt_cv_prog_cc_static='-Bstatic'
+ else
+ lt_cv_prog_cc_static='-bnso -bI:/lib/syscalls.exp'
+ fi
+ ;;
+
+ hpux9* | hpux10* | hpux11*)
+ # Is there a better lt_cv_prog_cc_static that works with the bundled CC?
+ lt_cv_prog_cc_wl='-Wl,'
+ lt_cv_prog_cc_static="${lt_cv_prog_cc_wl}-a ${lt_cv_prog_cc_wl}archive"
+ lt_cv_prog_cc_pic='+Z'
+ ;;
+
+ irix5* | irix6*)
+ lt_cv_prog_cc_wl='-Wl,'
+ lt_cv_prog_cc_static='-non_shared'
+ # PIC (with -KPIC) is the default.
+ ;;
+
+ cygwin* | 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_cv_prog_cc_pic='-DDLL_EXPORT'
+ ;;
+
+ newsos6)
+ lt_cv_prog_cc_pic='-KPIC'
+ lt_cv_prog_cc_static='-Bstatic'
+ ;;
+
+ osf3* | osf4* | osf5*)
+ # All OSF/1 code is PIC.
+ lt_cv_prog_cc_wl='-Wl,'
+ lt_cv_prog_cc_static='-non_shared'
+ ;;
+
+ sco3.2v5*)
+ lt_cv_prog_cc_pic='-Kpic'
+ lt_cv_prog_cc_static='-dn'
+ lt_cv_prog_cc_shlib='-belf'
+ ;;
+
+ solaris*)
+ lt_cv_prog_cc_pic='-KPIC'
+ lt_cv_prog_cc_static='-Bstatic'
+ lt_cv_prog_cc_wl='-Wl,'
+ ;;
+
+ sunos4*)
+ lt_cv_prog_cc_pic='-PIC'
+ lt_cv_prog_cc_static='-Bstatic'
+ lt_cv_prog_cc_wl='-Qoption ld '
+ ;;
+
+ sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
+ lt_cv_prog_cc_pic='-KPIC'
+ lt_cv_prog_cc_static='-Bstatic'
+ if test "x$host_vendor" = xsni; then
+ lt_cv_prog_cc_wl='-LD'
+ else
+ lt_cv_prog_cc_wl='-Wl,'
+ fi
+ ;;
+
+ uts4*)
+ lt_cv_prog_cc_pic='-pic'
+ lt_cv_prog_cc_static='-Bstatic'
+ ;;
+
+ sysv4*MP*)
+ if test -d /usr/nec ;then
+ lt_cv_prog_cc_pic='-Kconform_pic'
+ lt_cv_prog_cc_static='-Bstatic'
+ fi
+ ;;
+
+ *)
+ lt_cv_prog_cc_can_build_shared=no
+ ;;
+ esac
+ fi
+
+fi
+
+if test -z "$lt_cv_prog_cc_pic"; then
+ echo "$as_me:$LINENO: result: none" >&5
+echo "${ECHO_T}none" >&6
+else
+ echo "$as_me:$LINENO: result: $lt_cv_prog_cc_pic" >&5
+echo "${ECHO_T}$lt_cv_prog_cc_pic" >&6
+
+ # Check to make sure the pic_flag actually works.
+ echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_cv_prog_cc_pic works" >&5
+echo $ECHO_N "checking if $compiler PIC flag $lt_cv_prog_cc_pic works... $ECHO_C" >&6
+ if test "${lt_cv_prog_cc_pic_works+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ save_CFLAGS="$CFLAGS"
+ CFLAGS="$CFLAGS $lt_cv_prog_cc_pic -DPIC"
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ case $host_os in
+ hpux9* | hpux10* | hpux11*)
+ # On HP-UX, both CC and GCC only warn that PIC is supported... then
+ # they create non-PIC objects. So, if there were any warnings, we
+ # assume that PIC is not supported.
+ if test -s conftest.err; then
+ lt_cv_prog_cc_pic_works=no
+ else
+ lt_cv_prog_cc_pic_works=yes
+ fi
+ ;;
+ *)
+ lt_cv_prog_cc_pic_works=yes
+ ;;
+ esac
+
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ lt_cv_prog_cc_pic_works=no
+
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+ CFLAGS="$save_CFLAGS"
+
+fi
+
+
+ if test "X$lt_cv_prog_cc_pic_works" = Xno; then
+ lt_cv_prog_cc_pic=
+ lt_cv_prog_cc_can_build_shared=no
+ else
+ lt_cv_prog_cc_pic=" $lt_cv_prog_cc_pic"
+ fi
+
+ echo "$as_me:$LINENO: result: $lt_cv_prog_cc_pic_works" >&5
+echo "${ECHO_T}$lt_cv_prog_cc_pic_works" >&6
+fi
+
+# Check for any special shared library compilation flags.
+if test -n "$lt_cv_prog_cc_shlib"; then
+ { echo "$as_me:$LINENO: WARNING: \`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries" >&5
+echo "$as_me: WARNING: \`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries" >&2;}
+ if echo "$old_CC $old_CFLAGS " | egrep -e "[ ]$lt_cv_prog_cc_shlib[ ]" >/dev/null; then :
+ else
+ { echo "$as_me:$LINENO: WARNING: add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" >&5
+echo "$as_me: WARNING: add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" >&2;}
+ lt_cv_prog_cc_can_build_shared=no
+ fi
+fi
+
+echo "$as_me:$LINENO: checking if $compiler static flag $lt_cv_prog_cc_static works" >&5
+echo $ECHO_N "checking if $compiler static flag $lt_cv_prog_cc_static works... $ECHO_C" >&6
+if test "${lt_cv_prog_cc_static_works+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ lt_cv_prog_cc_static_works=no
+ save_LDFLAGS="$LDFLAGS"
+ LDFLAGS="$LDFLAGS $lt_cv_prog_cc_static"
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ lt_cv_prog_cc_static_works=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+ LDFLAGS="$save_LDFLAGS"
+
+fi
+
+
+# Belt *and* braces to stop my trousers falling down:
+test "X$lt_cv_prog_cc_static_works" = Xno && lt_cv_prog_cc_static=
+echo "$as_me:$LINENO: result: $lt_cv_prog_cc_static_works" >&5
+echo "${ECHO_T}$lt_cv_prog_cc_static_works" >&6
+
+pic_flag="$lt_cv_prog_cc_pic"
+special_shlib_compile_flags="$lt_cv_prog_cc_shlib"
+wl="$lt_cv_prog_cc_wl"
+link_static_flag="$lt_cv_prog_cc_static"
+no_builtin_flag="$lt_cv_prog_cc_no_builtin"
+can_build_shared="$lt_cv_prog_cc_can_build_shared"
+
+
+# Check to see if options -o and -c are simultaneously supported by compiler
+echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5
+echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6
+if test "${lt_cv_compiler_c_o+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+
+$rm -r conftest 2>/dev/null
+mkdir conftest
+cd conftest
+echo "int some_variable = 0;" > conftest.$ac_ext
+mkdir out
+# According to Tom Tromey, Ian Lance Taylor reported there are C compilers
+# that will create temporary files in the current directory regardless of
+# the output directory. Thus, making CWD read-only will cause this test
+# to fail, enabling locking or at least warning the user not to do parallel
+# builds.
+chmod -w .
+save_CFLAGS="$CFLAGS"
+CFLAGS="$CFLAGS -o out/conftest2.$ac_objext"
+compiler_c_o=no
+if { (eval echo configure:4945: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && 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
+ if test -s out/conftest.err; then
+ lt_cv_compiler_c_o=no
+ else
+ lt_cv_compiler_c_o=yes
+ fi
+else
+ # Append any errors to the config.log.
+ cat out/conftest.err 1>&5
+ lt_cv_compiler_c_o=no
+fi
+CFLAGS="$save_CFLAGS"
+chmod u+w .
+$rm conftest* out/*
+rmdir out
+cd ..
+rmdir conftest
+$rm -r conftest 2>/dev/null
+
+fi
+
+compiler_c_o=$lt_cv_compiler_c_o
+echo "$as_me:$LINENO: result: $compiler_c_o" >&5
+echo "${ECHO_T}$compiler_c_o" >&6
+
+if test x"$compiler_c_o" = x"yes"; then
+ # Check to see if we can write to a .lo
+ echo "$as_me:$LINENO: checking if $compiler supports -c -o file.lo" >&5
+echo $ECHO_N "checking if $compiler supports -c -o file.lo... $ECHO_C" >&6
+ if test "${lt_cv_compiler_o_lo+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+
+ lt_cv_compiler_o_lo=no
+ save_CFLAGS="$CFLAGS"
+ CFLAGS="$CFLAGS -c -o conftest.lo"
+ save_objext="$ac_objext"
+ ac_objext=lo
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+int some_variable = 0;
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ # The compiler can only warn and ignore the option if not recognized
+ # So say no if there are warnings
+ if test -s conftest.err; then
+ lt_cv_compiler_o_lo=no
+ else
+ lt_cv_compiler_o_lo=yes
+ fi
+
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+ ac_objext="$save_objext"
+ CFLAGS="$save_CFLAGS"
+
+fi
+
+ compiler_o_lo=$lt_cv_compiler_o_lo
+ echo "$as_me:$LINENO: result: $compiler_o_lo" >&5
+echo "${ECHO_T}$compiler_o_lo" >&6
+else
+ compiler_o_lo=no
+fi
+
+# Check to see if we can do hard links to lock some files if needed
+hard_links="nottested"
+if test "$compiler_c_o" = no && test "$need_locks" != no; then
+ # do not overwrite the value of need_locks provided by the user
+ echo "$as_me:$LINENO: checking if we can lock with hard links" >&5
+echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6
+ 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
+ echo "$as_me:$LINENO: result: $hard_links" >&5
+echo "${ECHO_T}$hard_links" >&6
+ if test "$hard_links" = no; then
+ { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
+echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
+ need_locks=warn
+ fi
+else
+ need_locks=no
+fi
+
+if test "$GCC" = yes; then
+ # Check to see if options -fno-rtti -fno-exceptions are supported by compiler
+ echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
+echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6
+ echo "int some_variable = 0;" > conftest.$ac_ext
+ save_CFLAGS="$CFLAGS"
+ CFLAGS="$CFLAGS -fno-rtti -fno-exceptions -c conftest.$ac_ext"
+ compiler_rtti_exceptions=no
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+int some_variable = 0;
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ # The compiler can only warn and ignore the option if not recognized
+ # So say no if there are warnings
+ if test -s conftest.err; then
+ compiler_rtti_exceptions=no
+ else
+ compiler_rtti_exceptions=yes
+ fi
+
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+ CFLAGS="$save_CFLAGS"
+ echo "$as_me:$LINENO: result: $compiler_rtti_exceptions" >&5
+echo "${ECHO_T}$compiler_rtti_exceptions" >&6
+
+ if test "$compiler_rtti_exceptions" = "yes"; then
+ no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions'
+ else
+ no_builtin_flag=' -fno-builtin'
+ fi
+fi
+
+# See if the linker supports building shared libraries.
+echo "$as_me:$LINENO: checking whether the linker ($LD) supports shared libraries" >&5
+echo $ECHO_N "checking whether the linker ($LD) supports shared libraries... $ECHO_C" >&6
+
+allow_undefined_flag=
+no_undefined_flag=
+need_lib_prefix=unknown
+need_version=unknown
+# when you set need_version to no, make sure it does not cause -set_version
+# flags to be left without arguments
+archive_cmds=
+archive_expsym_cmds=
+old_archive_from_new_cmds=
+old_archive_from_expsyms_cmds=
+export_dynamic_flag_spec=
+whole_archive_flag_spec=
+thread_safe_flag_spec=
+hardcode_into_libs=no
+hardcode_libdir_flag_spec=
+hardcode_libdir_separator=
+hardcode_direct=no
+hardcode_minus_L=no
+hardcode_shlibpath_var=unsupported
+runpath_var=
+link_all_deplibs=unknown
+always_export_symbols=no
+export_symbols_cmds='$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
+include_expsyms=
+# exclude_expsyms can be an egrep regular expression 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'.
+exclude_expsyms="_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=
+
+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
+
+ld_shlibs=yes
+if test "$with_gnu_ld" = yes; then
+ # If archive_cmds runs LD, not CC, wlarc should be empty
+ wlarc='${wl}'
+
+ # See if GNU ld supports shared libraries.
+ case $host_os in
+ aix3* | aix4* | aix5*)
+ # On AIX, the GNU linker is very broken
+ # Note:Check GNU linker on AIX 5-IA64 when/if it becomes available.
+ ld_shlibs=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
+ ;;
+
+ amigaos*)
+ archive_cmds='$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)'
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_minus_L=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 use
+ # them.
+ ld_shlibs=no
+ ;;
+
+ beos*)
+ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
+ allow_undefined_flag=unsupported
+ # Joseph Beckenbach says some releases of gcc
+ # support --undefined. This deserves some investigation. FIXME
+ archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+ else
+ ld_shlibs=no
+ fi
+ ;;
+
+ cygwin* | mingw* | pw32*)
+ # hardcode_libdir_flag_spec is actually meaningless, as there is
+ # no search path for DLLs.
+ hardcode_libdir_flag_spec='-L$libdir'
+ allow_undefined_flag=unsupported
+ always_export_symbols=yes
+
+ extract_expsyms_cmds='test -f $output_objdir/impgen.c || \
+ sed -e "/^# \/\* impgen\.c starts here \*\//,/^# \/\* impgen.c ends here \*\// { s/^# //;s/^# *$//; p; }" -e d < $''0 > $output_objdir/impgen.c~
+ test -f $output_objdir/impgen.exe || (cd $output_objdir && \
+ if test "x$HOST_CC" != "x" ; then $HOST_CC -o impgen impgen.c ; \
+ else $CC -o impgen impgen.c ; fi)~
+ $output_objdir/impgen $dir/$soroot > $output_objdir/$soname-def'
+
+ old_archive_from_expsyms_cmds='$DLLTOOL --as=$AS --dllname $soname --def $output_objdir/$soname-def --output-lib $output_objdir/$newlib'
+
+ # cygwin and mingw dlls have different entry points and sets of symbols
+ # to exclude.
+ # FIXME: what about values for MSVC?
+ dll_entry=__cygwin_dll_entry@12
+ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12~
+ case $host_os in
+ mingw*)
+ # mingw values
+ dll_entry=_DllMainCRTStartup@12
+ dll_exclude_symbols=DllMain@12,DllMainCRTStartup@12,DllEntryPoint@12~
+ ;;
+ esac
+
+ # mingw and cygwin differ, and it's simplest to just exclude the union
+ # of the two symbol sets.
+ dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12,DllMainCRTStartup@12,DllEntryPoint@12
+
+ # recent cygwin and mingw systems supply a stub DllMain which the user
+ # can override, but on older systems we have to supply one (in ltdll.c)
+ if test "x$lt_cv_need_dllmain" = "xyes"; then
+ ltdll_obj='$output_objdir/$soname-ltdll.'"$ac_objext "
+ ltdll_cmds='test -f $output_objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $''0 > $output_objdir/$soname-ltdll.c~
+ test -f $output_objdir/$soname-ltdll.$ac_objext || (cd $output_objdir && $CC -c $soname-ltdll.c)~'
+ else
+ ltdll_obj=
+ ltdll_cmds=
+ fi
+
+ # Extract the symbol export list from an `--export-all' def file,
+ # then regenerate the def file from the symbol export list, so that
+ # the compiled dll only exports the symbol export list.
+ # Be careful not to strip the DATA tag left be newer dlltools.
+ export_symbols_cmds="$ltdll_cmds"'
+ $DLLTOOL --export-all --exclude-symbols '$dll_exclude_symbols' --output-def $output_objdir/$soname-def '$ltdll_obj'$libobjs $convenience~
+ sed -e "1,/EXPORTS/d" -e "s/ @ [0-9]*//" -e "s/ *;.*$//" < $output_objdir/$soname-def > $export_symbols'
+
+ # If the export-symbols file already is a .def file (1st line
+ # is EXPORTS), use it as is.
+ # If DATA tags from a recent dlltool are present, honour them!
+ archive_expsym_cmds='if test "x`head -1 $export_symbols`" = xEXPORTS; then
+ cp $export_symbols $output_objdir/$soname-def;
+ else
+ echo EXPORTS > $output_objdir/$soname-def;
+ _lt_hint=1;
+ cat $export_symbols | while read symbol; do
+ set dummy \$symbol;
+ case \$# in
+ 2) echo " \$2 @ \$_lt_hint ; " >> $output_objdir/$soname-def;;
+ *) echo " \$2 @ \$_lt_hint \$3 ; " >> $output_objdir/$soname-def;;
+ esac;
+ _lt_hint=`expr 1 + \$_lt_hint`;
+ done;
+ fi~
+ '"$ltdll_cmds"'
+ $CC -Wl,--base-file,$output_objdir/$soname-base '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~
+ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp~
+ $CC -Wl,--base-file,$output_objdir/$soname-base $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~
+ $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp --output-lib $output_objdir/$libname.dll.a~
+ $CC $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags'
+ ;;
+
+ netbsd*)
+ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
+ archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
+ wlarc=
+ else
+ archive_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+ archive_expsym_cmds='$CC -shared -nodefaultlibs $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 | egrep 'BFD 2\.8' > /dev/null; then
+ ld_shlibs=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 | egrep ': supported targets:.* elf' > /dev/null; then
+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+ else
+ ld_shlibs=no
+ fi
+ ;;
+
+ sunos4*)
+ archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
+ wlarc=
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ *)
+ if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
+ archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
+ archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
+ else
+ ld_shlibs=no
+ fi
+ ;;
+ esac
+
+ if test "$ld_shlibs" = yes; then
+ runpath_var=LD_RUN_PATH
+ hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir'
+ export_dynamic_flag_spec='${wl}--export-dynamic'
+ case $host_os in
+ cygwin* | mingw* | pw32*)
+ # dlltool doesn't understand --whole-archive et. al.
+ whole_archive_flag_spec=
+ ;;
+ *)
+ # ancient GNU ld didn't support --whole-archive et. al.
+ if $LD --help 2>&1 | egrep 'no-whole-archive' > /dev/null; then
+ whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
+ else
+ whole_archive_flag_spec=
+ fi
+ ;;
+ esac
+ fi
+else
+ # PORTME fill in a description of your system's linker (not GNU ld)
+ case $host_os in
+ aix3*)
+ allow_undefined_flag=unsupported
+ always_export_symbols=yes
+ archive_expsym_cmds='$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.
+ hardcode_minus_L=yes
+ if test "$GCC" = yes && test -z "$link_static_flag"; then
+ # Neither direct hardcoding nor static linking is supported with a
+ # broken collect2.
+ hardcode_direct=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
+ 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.
+
+ hardcode_direct=yes
+ archive_cmds=''
+ hardcode_libdir_separator=':'
+ if test "$GCC" = yes; then
+ case $host_os in aix4.[012]|aix4.[012].*)
+ collect2name=`${CC} -print-prog-name=collect2`
+ if test -f "$collect2name" && \
+ strings "$collect2name" | grep resolve_lib_name >/dev/null
+ then
+ # We have reworked collect2
+ hardcode_direct=yes
+ else
+ # We have old collect2
+ hardcode_direct=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
+ hardcode_minus_L=yes
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_libdir_separator=
+ fi
+ esac
+
+ shared_flag='-shared'
+ else
+ # not using gcc
+ if test "$host_cpu" = ia64; then
+ shared_flag='${wl}-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 can do strange things, so it is better to
+ # generate a list of symbols to export.
+ always_export_symbols=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.
+ allow_undefined_flag='-berok'
+ hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib'
+ archive_expsym_cmds="\$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
+ hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
+ allow_undefined_flag="-z nodefs"
+ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname ${wl}-h$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"
+ else
+ hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib'
+ # Warning - without using the other run time loading flags,
+ # -berok will link without error, but may produce a broken library.
+ allow_undefined_flag='${wl}-berok'
+ # This is a bit strange, but is similar to how AIX traditionally builds
+ # it's shared libraries.
+ archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"' ~$AR -crlo $objdir/$libname$release.a $objdir/$soname'
+ fi
+ fi
+ ;;
+
+ amigaos*)
+ archive_cmds='$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)'
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_minus_L=yes
+ # see comment about different semantics on the GNU ld section
+ ld_shlibs=no
+ ;;
+
+ 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.
+ hardcode_libdir_flag_spec=' '
+ allow_undefined_flag=unsupported
+ # Tell ltmain to make .lib files, not .a files.
+ libext=lib
+ # FIXME: Setting linknames here is a bad hack.
+ archive_cmds='$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.
+ old_archive_from_new_cmds='true'
+ # FIXME: Should let the user specify the lib program.
+ old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs'
+ fix_srcfile_path='`cygpath -w "$srcfile"`'
+ ;;
+
+ darwin* | rhapsody*)
+ case "$host_os" in
+ rhapsody* | darwin1.[012])
+ allow_undefined_flag='-undefined suppress'
+ ;;
+ *) # Darwin 1.3 on
+ allow_undefined_flag='-flat_namespace -undefined suppress'
+ ;;
+ esac
+ # FIXME: Relying on posixy $() will cause problems for
+ # cross-compilation, but unfortunately the echo tests do not
+ # yet detect zsh echo's removal of \ escapes.
+ archive_cmds='$nonopt $(test "x$module" = xyes && echo -bundle || echo -dynamiclib) $allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags -install_name $rpath/$soname $verstring'
+ # We need to add '_' to the symbols in $export_symbols first
+ #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ whole_archive_flag_spec='-all_load $convenience'
+ ;;
+
+ freebsd1*)
+ ld_shlibs=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*)
+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
+ hardcode_libdir_flag_spec='-R$libdir'
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ # Unfortunately, older versions of FreeBSD 2 do not have this feature.
+ freebsd2*)
+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_direct=yes
+ hardcode_minus_L=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
+ freebsd*)
+ archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
+ hardcode_libdir_flag_spec='-R$libdir'
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ hpux9* | hpux10* | hpux11*)
+ case $host_os in
+ hpux9*) archive_cmds='$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' ;;
+ *) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;;
+ esac
+ hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
+ hardcode_libdir_separator=:
+ hardcode_direct=yes
+ hardcode_minus_L=yes # Not in the search PATH, but as the default
+ # location of the library.
+ export_dynamic_flag_spec='${wl}-E'
+ ;;
+
+ irix5* | irix6*)
+ if test "$GCC" = yes; then
+ archive_cmds='$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
+ archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
+ fi
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_separator=:
+ link_all_deplibs=yes
+ ;;
+
+ netbsd*)
+ if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
+ else
+ archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF
+ fi
+ hardcode_libdir_flag_spec='-R$libdir'
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ newsos6)
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_direct=yes
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_separator=:
+ hardcode_shlibpath_var=no
+ ;;
+
+ openbsd*)
+ hardcode_direct=yes
+ hardcode_shlibpath_var=no
+ if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ export_dynamic_flag_spec='${wl}-E'
+ else
+ case "$host_os" in
+ openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_libdir_flag_spec='-R$libdir'
+ ;;
+ *)
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ ;;
+ esac
+ fi
+ ;;
+
+ os2*)
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_minus_L=yes
+ allow_undefined_flag=unsupported
+ archive_cmds='$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'
+ old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
+ ;;
+
+ osf3*)
+ if test "$GCC" = yes; then
+ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
+ archive_cmds='$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
+ allow_undefined_flag=' -expect_unresolved \*'
+ archive_cmds='$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
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ hardcode_libdir_separator=:
+ ;;
+
+ osf4* | osf5*) # as osf3* with the addition of -msym flag
+ if test "$GCC" = yes; then
+ allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
+ archive_cmds='$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'
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
+ else
+ allow_undefined_flag=' -expect_unresolved \*'
+ archive_cmds='$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'
+ archive_expsym_cmds='for i in `cat $export_symbols`; do printf "-exported_symbol " >> $lib.exp; echo "\$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 ${objdir}/so_locations -o $lib~$rm $lib.exp'
+
+ #Both c and cxx compiler support -rpath directly
+ hardcode_libdir_flag_spec='-rpath $libdir'
+ fi
+ hardcode_libdir_separator=:
+ ;;
+
+ sco3.2v5*)
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_shlibpath_var=no
+ runpath_var=LD_RUN_PATH
+ hardcode_runpath_var=yes
+ export_dynamic_flag_spec='${wl}-Bexport'
+ ;;
+
+ solaris*)
+ # gcc --version < 3.0 without binutils cannot create self contained
+ # shared libraries reliably, requiring libgcc.a to resolve some of
+ # the object symbols generated in some cases. Libraries that use
+ # assert need libgcc.a to resolve __eprintf, for example. Linking
+ # a copy of libgcc.a into every shared library to guarantee resolving
+ # such symbols causes other problems: According to Tim Van Holder
+ # , C++ libraries end up with a separate
+ # (to the application) exception stack for one thing.
+ no_undefined_flag=' -z defs'
+ if test "$GCC" = yes; then
+ case `$CC --version 2>/dev/null` in
+ [12].*)
+ cat <&2
+
+*** Warning: Releases of GCC earlier than version 3.0 cannot reliably
+*** create self contained shared libraries on Solaris systems, without
+*** introducing a dependency on libgcc.a. Therefore, libtool is disabling
+*** -no-undefined support, which will at least allow you to build shared
+*** libraries. However, you may find that when you link such libraries
+*** into an application without using GCC, you have to manually add
+*** \`gcc --print-libgcc-file-name\` to the link command. We urge you to
+*** upgrade to a newer version of GCC. Another option is to rebuild your
+*** current GCC to use the GNU linker from GNU binutils 2.9.1 or newer.
+
+EOF
+ no_undefined_flag=
+ ;;
+ esac
+ fi
+ # $CC -shared without GNU ld will not create a library from C++
+ # object files and a static libstdc++, better avoid it by now
+ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ archive_expsym_cmds='$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'
+ hardcode_libdir_flag_spec='-R$libdir'
+ hardcode_shlibpath_var=no
+ case $host_os in
+ solaris2.[0-5] | solaris2.[0-5].*) ;;
+ *) # Supported since Solaris 2.6 (maybe 2.5.1?)
+ whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;;
+ esac
+ link_all_deplibs=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.
+ archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
+ else
+ archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
+ fi
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_direct=yes
+ hardcode_minus_L=yes
+ hardcode_shlibpath_var=no
+ ;;
+
+ sysv4)
+ if test "x$host_vendor" = xsno; then
+ archive_cmds='$LD -G -Bsymbolic -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_direct=yes # is this really true???
+ else
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_direct=no #Motorola manual says yes, but my tests say they lie
+ fi
+ runpath_var='LD_RUN_PATH'
+ hardcode_shlibpath_var=no
+ ;;
+
+ sysv4.3*)
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_shlibpath_var=no
+ export_dynamic_flag_spec='-Bexport'
+ ;;
+
+ sysv5*)
+ no_undefined_flag=' -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
+ archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ archive_expsym_cmds='$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'
+ hardcode_libdir_flag_spec=
+ hardcode_shlibpath_var=no
+ runpath_var='LD_RUN_PATH'
+ ;;
+
+ uts4*)
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_shlibpath_var=no
+ ;;
+
+ dgux*)
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_libdir_flag_spec='-L$libdir'
+ hardcode_shlibpath_var=no
+ ;;
+
+ sysv4*MP*)
+ if test -d /usr/nec; then
+ archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_shlibpath_var=no
+ runpath_var=LD_RUN_PATH
+ hardcode_runpath_var=yes
+ ld_shlibs=yes
+ fi
+ ;;
+
+ sysv4.2uw2*)
+ archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags'
+ hardcode_direct=yes
+ hardcode_minus_L=no
+ hardcode_shlibpath_var=no
+ hardcode_runpath_var=yes
+ runpath_var=LD_RUN_PATH
+ ;;
+
+ sysv5uw7* | unixware7*)
+ no_undefined_flag='${wl}-z ${wl}text'
+ if test "$GCC" = yes; then
+ archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+ else
+ archive_cmds='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
+ fi
+ runpath_var='LD_RUN_PATH'
+ hardcode_shlibpath_var=no
+ ;;
+
+ *)
+ ld_shlibs=no
+ ;;
+ esac
+fi
+echo "$as_me:$LINENO: result: $ld_shlibs" >&5
+echo "${ECHO_T}$ld_shlibs" >&6
+test "$ld_shlibs" = no && can_build_shared=no
+
+# Check hardcoding attributes.
+echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5
+echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6
+hardcode_action=
+if test -n "$hardcode_libdir_flag_spec" || \
+ test -n "$runpath_var"; then
+
+ # We can hardcode non-existant directories.
+ if test "$hardcode_direct" != 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 "$hardcode_shlibpath_var" != no &&
+ test "$hardcode_minus_L" != no; then
+ # Linking always hardcodes the temporary library directory.
+ hardcode_action=relink
+ else
+ # We can link without hardcoding, and we can hardcode nonexisting dirs.
+ hardcode_action=immediate
+ fi
+else
+ # We cannot hardcode anything, or else we can only hardcode existing
+ # directories.
+ hardcode_action=unsupported
+fi
+echo "$as_me:$LINENO: result: $hardcode_action" >&5
+echo "${ECHO_T}$hardcode_action" >&6
+
+striplib=
+old_striplib=
+echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5
+echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6
+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"
+ echo "$as_me:$LINENO: result: yes" >&5
+echo "${ECHO_T}yes" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+reload_cmds='$LD$reload_flag -o $output$reload_objs'
+test -z "$deplibs_check_method" && deplibs_check_method=unknown
+
+# PORTME Fill in your ld.so characteristics
+echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5
+echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6
+library_names_spec=
+libname_spec='lib$name'
+soname_spec=
+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"
+sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
+
+case $host_os in
+aix3*)
+ version_type=linux
+ library_names_spec='${libname}${release}.so$versuffix $libname.a'
+ shlibpath_var=LIBPATH
+
+ # AIX has no versioning support, so we append a major version to the name.
+ soname_spec='${libname}${release}.so$major'
+ ;;
+
+aix4* | aix5*)
+ version_type=linux
+ if test "$host_cpu" = ia64; then
+ # AIX 5 supports IA64
+ library_names_spec='${libname}${release}.so$major ${libname}${release}.so$versuffix $libname.so'
+ 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}.so$versuffix ${libname}${release}.so$major $libname.so'
+ 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}.so$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}.so'
+ dynamic_linker="$host_os ld.so"
+ shlibpath_var=LIBRARY_PATH
+ ;;
+
+bsdi4*)
+ version_type=linux
+ need_version=no
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$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"
+ export_dynamic_flag_spec=-rdynamic
+ # 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
+ need_version=no
+ need_lib_prefix=no
+ case $GCC,$host_os in
+ yes,cygwin*)
+ library_names_spec='$libname.dll.a'
+ soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll'
+ postinstall_cmds='dlpath=`bash 2>&1 -c '\''. $dir/${file}i;echo \$dlname'\''`~
+ dldir=$destdir/`dirname \$dlpath`~
+ test -d \$dldir || mkdir -p \$dldir~
+ $install_prog .libs/$dlname \$dldir/$dlname'
+ postuninstall_cmds='dldll=`bash 2>&1 -c '\''. $file; echo \$dlname'\''`~
+ dlpath=$dir/\$dldll~
+ $rm \$dlpath'
+ ;;
+ yes,mingw*)
+ library_names_spec='${libname}`echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll'
+ sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g"`
+ ;;
+ yes,pw32*)
+ library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | sed -e 's/./-/g'`${versuffix}.dll'
+ ;;
+ *)
+ library_names_spec='${libname}`echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll $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
+ # FIXME: Relying on posixy $() will cause problems for
+ # cross-compilation, but unfortunately the echo tests do not
+ # yet detect zsh echo's removal of \ escapes.
+ library_names_spec='${libname}${release}${versuffix}.$(test .$module = .yes && echo so || echo dylib) ${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib) ${libname}.$(test .$module = .yes && echo so || echo dylib)'
+ soname_spec='${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib)'
+ shlibpath_overrides_runpath=yes
+ shlibpath_var=DYLD_LIBRARY_PATH
+ ;;
+
+freebsd1*)
+ dynamic_linker=no
+ ;;
+
+freebsd*)
+ objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
+ version_type=freebsd-$objformat
+ case $version_type in
+ freebsd-elf*)
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so'
+ need_version=no
+ need_lib_prefix=no
+ ;;
+ freebsd-*)
+ library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix'
+ need_version=yes
+ ;;
+ esac
+ shlibpath_var=LD_LIBRARY_PATH
+ case $host_os in
+ freebsd2*)
+ shlibpath_overrides_runpath=yes
+ ;;
+ *)
+ 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}.so$versuffix ${libname}${release}.so${major} ${libname}.so'
+ soname_spec='${libname}${release}.so$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.
+ dynamic_linker="$host_os dld.sl"
+ version_type=sunos
+ need_lib_prefix=no
+ need_version=no
+ shlibpath_var=SHLIB_PATH
+ shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
+ library_names_spec='${libname}${release}.sl$versuffix ${libname}${release}.sl$major $libname.sl'
+ soname_spec='${libname}${release}.sl$major'
+ # HP-UX runs *really* slowly unless shared libraries are mode 555.
+ postinstall_cmds='chmod 555 $lib'
+ ;;
+
+irix5* | irix6*)
+ version_type=irix
+ need_lib_prefix=no
+ need_version=no
+ soname_spec='${libname}${release}.so$major'
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so $libname.so'
+ case $host_os in
+ irix5*)
+ libsuff= shlibsuff=
+ ;;
+ *)
+ case $LD in # libtool.m4 will add one of these switches to LD
+ *-32|*"-32 ") libsuff= shlibsuff= libmagic=32-bit;;
+ *-n32|*"-n32 ") libsuff=32 shlibsuff=N32 libmagic=N32;;
+ *-64|*"-64 ") 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}"
+ ;;
+
+# No shared lib support for Linux oldld, aout, or coff.
+linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*)
+ dynamic_linker=no
+ ;;
+
+# This must be Linux ELF.
+linux-gnu*)
+ version_type=linux
+ need_lib_prefix=no
+ need_version=no
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$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
+
+ # 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'
+ ;;
+
+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}.so$versuffix ${libname}.so$versuffix'
+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
+ dynamic_linker='NetBSD (a.out) ld.so'
+ else
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so ${libname}.so'
+ soname_spec='${libname}${release}.so$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}.so$versuffix ${libname}${release}.so$major $libname.so'
+ shlibpath_var=LD_LIBRARY_PATH
+ shlibpath_overrides_runpath=yes
+ ;;
+
+openbsd*)
+ version_type=sunos
+ need_lib_prefix=no
+ need_version=no
+ 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
+ library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
+ shlibpath_var=LD_LIBRARY_PATH
+ ;;
+
+os2*)
+ libname_spec='$name'
+ need_lib_prefix=no
+ library_names_spec='$libname.dll $libname.a'
+ dynamic_linker='OS/2 ld.exe'
+ shlibpath_var=LIBPATH
+ ;;
+
+osf3* | osf4* | osf5*)
+ version_type=osf
+ need_version=no
+ soname_spec='${libname}${release}.so'
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so'
+ 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}.so$major'
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ shlibpath_var=LD_LIBRARY_PATH
+ ;;
+
+solaris*)
+ version_type=linux
+ need_lib_prefix=no
+ need_version=no
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$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}.so$versuffix ${libname}.so$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}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$major'
+ shlibpath_var=LD_LIBRARY_PATH
+ case $host_vendor in
+ sni)
+ shlibpath_overrides_runpath=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
+ ;;
+
+uts4*)
+ version_type=linux
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$major'
+ shlibpath_var=LD_LIBRARY_PATH
+ ;;
+
+dgux*)
+ version_type=linux
+ need_lib_prefix=no
+ need_version=no
+ library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
+ soname_spec='${libname}${release}.so$major'
+ shlibpath_var=LD_LIBRARY_PATH
+ ;;
+
+sysv4*MP*)
+ if test -d /usr/nec ;then
+ version_type=linux
+ library_names_spec='$libname.so.$versuffix $libname.so.$major $libname.so'
+ soname_spec='$libname.so.$major'
+ shlibpath_var=LD_LIBRARY_PATH
+ fi
+ ;;
+
+*)
+ dynamic_linker=no
+ ;;
+esac
+echo "$as_me:$LINENO: result: $dynamic_linker" >&5
+echo "${ECHO_T}$dynamic_linker" >&6
+test "$dynamic_linker" = no && can_build_shared=no
+
+# Report the final consequences.
+echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5
+echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6
+echo "$as_me:$LINENO: result: $can_build_shared" >&5
+echo "${ECHO_T}$can_build_shared" >&6
+
+echo "$as_me:$LINENO: checking whether to build shared libraries" >&5
+echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6
+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*)
+ if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
+ test "$enable_shared" = yes && enable_static=no
+ fi
+ ;;
+esac
+echo "$as_me:$LINENO: result: $enable_shared" >&5
+echo "${ECHO_T}$enable_shared" >&6
+
+echo "$as_me:$LINENO: checking whether to build static libraries" >&5
+echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6
+# Make sure either enable_shared or enable_static is yes.
+test "$enable_shared" = yes || enable_static=yes
+echo "$as_me:$LINENO: result: $enable_static" >&5
+echo "${ECHO_T}$enable_static" >&6
+
+if test "$hardcode_action" = 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
+
+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
+
+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
+ ;;
+
+ cygwin* | mingw* | pw32*)
+ lt_cv_dlopen="LoadLibrary"
+ lt_cv_dlopen_libs=
+ ;;
+
+ *)
+ echo "$as_me:$LINENO: checking for shl_load" >&5
+echo $ECHO_N "checking for shl_load... $ECHO_C" >&6
+if test "${ac_cv_func_shl_load+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char shl_load (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char shl_load ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_shl_load) || defined (__stub___shl_load)
+choke me
+#else
+f = shl_load;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_func_shl_load=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_func_shl_load=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5
+echo "${ECHO_T}$ac_cv_func_shl_load" >&6
+if test $ac_cv_func_shl_load = yes; then
+ lt_cv_dlopen="shl_load"
+else
+ echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5
+echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6
+if test "${ac_cv_lib_dld_shl_load+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-ldld $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char shl_load ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+shl_load ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_dld_shl_load=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_dld_shl_load=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5
+echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6
+if test $ac_cv_lib_dld_shl_load = yes; then
+ lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"
+else
+ echo "$as_me:$LINENO: checking for dlopen" >&5
+echo $ECHO_N "checking for dlopen... $ECHO_C" >&6
+if test "${ac_cv_func_dlopen+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char dlopen (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char dlopen ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_dlopen) || defined (__stub___dlopen)
+choke me
+#else
+f = dlopen;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_func_dlopen=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_func_dlopen=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5
+echo "${ECHO_T}$ac_cv_func_dlopen" >&6
+if test $ac_cv_func_dlopen = yes; then
+ lt_cv_dlopen="dlopen"
+else
+ echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5
+echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6
+if test "${ac_cv_lib_dl_dlopen+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-ldl $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char dlopen ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+dlopen ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_dl_dlopen=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_dl_dlopen=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5
+echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6
+if test $ac_cv_lib_dl_dlopen = yes; then
+ lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
+else
+ echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5
+echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6
+if test "${ac_cv_lib_svld_dlopen+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lsvld $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char dlopen ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+dlopen ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_svld_dlopen=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_svld_dlopen=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5
+echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6
+if test $ac_cv_lib_svld_dlopen = yes; then
+ lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
+else
+ echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5
+echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6
+if test "${ac_cv_lib_dld_dld_link+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-ldld $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char dld_link ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+dld_link ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_dld_dld_link=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_dld_dld_link=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5
+echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6
+if test $ac_cv_lib_dld_dld_link = yes; then
+ lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"
+fi
+
+
+fi
+
+
+fi
+
+
+fi
+
+
+fi
+
+
+fi
+
+ ;;
+ 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"
+
+ echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5
+echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6
+if test "${lt_cv_dlopen_self+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test "$cross_compiling" = yes; then :
+ lt_cv_dlopen_self=cross
+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 { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
+ (./conftest; exit; ) 2>/dev/null
+ lt_status=$?
+ case x$lt_status in
+ x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;;
+ x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;;
+ x$lt_unknown|x*) lt_cv_dlopen_self=no ;;
+ esac
+ else :
+ # compilation failed
+ lt_cv_dlopen_self=no
+ fi
+fi
+rm -fr conftest*
+
+
+fi
+echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5
+echo "${ECHO_T}$lt_cv_dlopen_self" >&6
+
+ if test "x$lt_cv_dlopen_self" = xyes; then
+ LDFLAGS="$LDFLAGS $link_static_flag"
+ echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5
+echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6
+if test "${lt_cv_dlopen_self_static+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ if test "$cross_compiling" = yes; then :
+ lt_cv_dlopen_self_static=cross
+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 { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } && test -s conftest${ac_exeext} 2>/dev/null; then
+ (./conftest; exit; ) 2>/dev/null
+ lt_status=$?
+ case x$lt_status in
+ x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;;
+ x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;;
+ x$lt_unknown|x*) lt_cv_dlopen_self_static=no ;;
+ esac
+ else :
+ # compilation failed
+ lt_cv_dlopen_self_static=no
+ fi
+fi
+rm -fr conftest*
+
+
+fi
+echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5
+echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6
+ 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
+
+
+if test "$enable_shared" = yes && test "$GCC" = yes; then
+ case $archive_cmds 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.
+ echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5
+echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6
+ if test "${lt_cv_archive_cmds_need_lc+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ $rm conftest*
+ echo 'static int dummy;' > conftest.$ac_ext
+
+ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; then
+ soname=conftest
+ lib=conftest
+ libobjs=conftest.$ac_objext
+ deplibs=
+ wl=$lt_cv_prog_cc_wl
+ compiler_flags=-v
+ linker_flags=-v
+ verstring=
+ output_objdir=.
+ libname=conftest
+ save_allow_undefined_flag=$allow_undefined_flag
+ allow_undefined_flag=
+ if { (eval echo "$as_me:$LINENO: \"$archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1\"") >&5
+ (eval $archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }
+ then
+ lt_cv_archive_cmds_need_lc=no
+ else
+ lt_cv_archive_cmds_need_lc=yes
+ fi
+ allow_undefined_flag=$save_allow_undefined_flag
+ else
+ cat conftest.err 1>&5
+ fi
+fi
+
+ echo "$as_me:$LINENO: result: $lt_cv_archive_cmds_need_lc" >&5
+echo "${ECHO_T}$lt_cv_archive_cmds_need_lc" >&6
+ ;;
+ esac
+fi
+need_lc=${lt_cv_archive_cmds_need_lc-yes}
+
+# The second clause should only fire when bootstrapping the
+# libtool distribution, otherwise you forgot to ship ltmain.sh
+# with your package, and you will get complaints that there are
+# no rules to generate ltmain.sh.
+if test -f "$ltmain"; then
+ :
+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.
+ test -f Makefile && make "$ltmain"
+fi
+
+if test -f "$ltmain"; then
+ trap "$rm \"${ofile}T\"; exit 1" 1 2 15
+ $rm -f "${ofile}T"
+
+ echo creating $ofile
+
+ # Now quote all the things that may contain metacharacters while being
+ # careful not to overquote the AC_SUBSTed values. We take copies of the
+ # variables and quote the copies for generation of the libtool script.
+ for var in echo old_CC old_CFLAGS \
+ AR AR_FLAGS CC LD LN_S NM SHELL \
+ reload_flag reload_cmds wl \
+ pic_flag link_static_flag no_builtin_flag export_dynamic_flag_spec \
+ thread_safe_flag_spec whole_archive_flag_spec libname_spec \
+ library_names_spec soname_spec \
+ RANLIB old_archive_cmds old_archive_from_new_cmds old_postinstall_cmds \
+ old_postuninstall_cmds archive_cmds archive_expsym_cmds postinstall_cmds \
+ postuninstall_cmds extract_expsyms_cmds old_archive_from_expsyms_cmds \
+ old_striplib striplib file_magic_cmd export_symbols_cmds \
+ deplibs_check_method allow_undefined_flag no_undefined_flag \
+ finish_cmds finish_eval global_symbol_pipe global_symbol_to_cdecl \
+ global_symbol_to_c_name_address \
+ hardcode_libdir_flag_spec hardcode_libdir_separator \
+ sys_lib_search_path_spec sys_lib_dlsearch_path_spec \
+ compiler_c_o compiler_o_lo need_locks exclude_expsyms include_expsyms; do
+
+ case $var in
+ reload_cmds | old_archive_cmds | old_archive_from_new_cmds | \
+ old_postinstall_cmds | old_postuninstall_cmds | \
+ export_symbols_cmds | archive_cmds | archive_expsym_cmds | \
+ extract_expsyms_cmds | old_archive_from_expsyms_cmds | \
+ postinstall_cmds | postuninstall_cmds | \
+ finish_cmds | sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
+ # Double-quote double-evaled strings.
+ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
+ ;;
+ *)
+ eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
+ ;;
+ esac
+ done
+
+ cat <<__EOF__ > "${ofile}T"
+#! $SHELL
+
+# `$echo "$ofile" | 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-2000 Free Software Foundation, Inc.
+# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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.
+
+# Sed that helps us avoid accidentally triggering echo(1) options like -n.
+Xsed="sed -e s/^X//"
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
+
+# ### BEGIN LIBTOOL CONFIG
+
+# 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=$need_lc
+
+# Whether or not to optimize for fast installation.
+fast_install=$enable_fast_install
+
+# The host system.
+host_alias=$host_alias
+host=$host
+
+# An echo program that does not interpret backslashes.
+echo=$lt_echo
+
+# The archiver.
+AR=$lt_AR
+AR_FLAGS=$lt_AR_FLAGS
+
+# The default C compiler.
+CC=$lt_CC
+
+# Is the compiler the GNU C compiler?
+with_gcc=$GCC
+
+# The linker used to build libraries.
+LD=$lt_LD
+
+# 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=$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_wl
+
+# Object file suffix (normally "o").
+objext="$ac_objext"
+
+# Old archive suffix (normally "a").
+libext="$libext"
+
+# Executable file suffix (normally "").
+exeext="$exeext"
+
+# Additional compiler flags for building library objects.
+pic_flag=$lt_pic_flag
+pic_mode=$pic_mode
+
+# Does compiler simultaneously support -c and -o options?
+compiler_c_o=$lt_compiler_c_o
+
+# Can we write directly to a .lo ?
+compiler_o_lo=$lt_compiler_o_lo
+
+# 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_link_static_flag
+
+# Compiler flag to turn off builtin functions.
+no_builtin_flag=$lt_no_builtin_flag
+
+# Compiler flag to allow reflexive dlopens.
+export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
+
+# Compiler flag to generate shared objects directly from archives.
+whole_archive_flag_spec=$lt_whole_archive_flag_spec
+
+# Compiler flag to generate thread-safe objects.
+thread_safe_flag_spec=$lt_thread_safe_flag_spec
+
+# 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_old_archive_cmds
+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_old_archive_from_new_cmds
+
+# Create a temporary old-style archive to link instead of a shared archive.
+old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
+
+# Commands used to build and install a shared archive.
+archive_cmds=$lt_archive_cmds
+archive_expsym_cmds=$lt_archive_expsym_cmds
+postinstall_cmds=$lt_postinstall_cmds
+postuninstall_cmds=$lt_postuninstall_cmds
+
+# Commands to strip libraries.
+old_striplib=$lt_old_striplib
+striplib=$lt_striplib
+
+# 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_allow_undefined_flag
+
+# Flag that forces no undefined symbols.
+no_undefined_flag=$lt_no_undefined_flag
+
+# 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_global_symbol_pipe
+
+# Transform the output of nm in a proper C declaration
+global_symbol_to_cdecl=$lt_global_symbol_to_cdecl
+
+# Transform the output of nm in a C name address pair
+global_symbol_to_c_name_address=$lt_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=$hardcode_action
+
+# 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_hardcode_libdir_flag_spec
+
+# Whether we need a single -rpath flag with a separated argument.
+hardcode_libdir_separator=$lt_hardcode_libdir_separator
+
+# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
+# resulting binary.
+hardcode_direct=$hardcode_direct
+
+# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
+# resulting binary.
+hardcode_minus_L=$hardcode_minus_L
+
+# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
+# the resulting binary.
+hardcode_shlibpath_var=$hardcode_shlibpath_var
+
+# 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=$link_all_deplibs
+
+# 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="$fix_srcfile_path"
+
+# Set to yes if exported symbols are required.
+always_export_symbols=$always_export_symbols
+
+# The commands to list exported symbols.
+export_symbols_cmds=$lt_export_symbols_cmds
+
+# 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_exclude_expsyms
+
+# Symbols that must always be exported.
+include_expsyms=$lt_include_expsyms
+
+# ### END LIBTOOL CONFIG
+
+__EOF__
+
+ case $host_os in
+ aix3*)
+ cat <<\EOF >> "${ofile}T"
+
+# 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
+
+ case $host_os in
+ cygwin* | mingw* | pw32* | os2*)
+ cat <<'EOF' >> "${ofile}T"
+ # This is a source program that is used to create dlls on Windows
+ # Don't remove nor modify the starting and closing comments
+# /* 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 */
+ # This is a source program that is used to create import libraries
+ # on Windows for dlls which lack them. Don't remove nor modify the
+ # starting and closing comments
+# /* impgen.c starts here */
+# /* Copyright (C) 1999-2000 Free Software Foundation, Inc.
+#
+# This file is part of GNU libtool.
+#
+# 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.
+# */
+#
+# #include /* for printf() */
+# #include /* for open(), lseek(), read() */
+# #include /* for O_RDONLY, O_BINARY */
+# #include /* for strdup() */
+#
+# /* O_BINARY isn't required (or even defined sometimes) under Unix */
+# #ifndef O_BINARY
+# #define O_BINARY 0
+# #endif
+#
+# static unsigned int
+# pe_get16 (fd, offset)
+# int fd;
+# int offset;
+# {
+# unsigned char b[2];
+# lseek (fd, offset, SEEK_SET);
+# read (fd, b, 2);
+# return b[0] + (b[1]<<8);
+# }
+#
+# static unsigned int
+# pe_get32 (fd, offset)
+# int fd;
+# int offset;
+# {
+# unsigned char b[4];
+# lseek (fd, offset, SEEK_SET);
+# read (fd, b, 4);
+# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24);
+# }
+#
+# static unsigned int
+# pe_as32 (ptr)
+# void *ptr;
+# {
+# unsigned char *b = ptr;
+# return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24);
+# }
+#
+# int
+# main (argc, argv)
+# int argc;
+# char *argv[];
+# {
+# int dll;
+# unsigned long pe_header_offset, opthdr_ofs, num_entries, i;
+# unsigned long export_rva, export_size, nsections, secptr, expptr;
+# unsigned long name_rvas, nexp;
+# unsigned char *expdata, *erva;
+# char *filename, *dll_name;
+#
+# filename = argv[1];
+#
+# dll = open(filename, O_RDONLY|O_BINARY);
+# if (dll < 1)
+# return 1;
+#
+# dll_name = filename;
+#
+# for (i=0; filename[i]; i++)
+# if (filename[i] == '/' || filename[i] == '\\' || filename[i] == ':')
+# dll_name = filename + i +1;
+#
+# pe_header_offset = pe_get32 (dll, 0x3c);
+# opthdr_ofs = pe_header_offset + 4 + 20;
+# num_entries = pe_get32 (dll, opthdr_ofs + 92);
+#
+# if (num_entries < 1) /* no exports */
+# return 1;
+#
+# export_rva = pe_get32 (dll, opthdr_ofs + 96);
+# export_size = pe_get32 (dll, opthdr_ofs + 100);
+# nsections = pe_get16 (dll, pe_header_offset + 4 +2);
+# secptr = (pe_header_offset + 4 + 20 +
+# pe_get16 (dll, pe_header_offset + 4 + 16));
+#
+# expptr = 0;
+# for (i = 0; i < nsections; i++)
+# {
+# char sname[8];
+# unsigned long secptr1 = secptr + 40 * i;
+# unsigned long vaddr = pe_get32 (dll, secptr1 + 12);
+# unsigned long vsize = pe_get32 (dll, secptr1 + 16);
+# unsigned long fptr = pe_get32 (dll, secptr1 + 20);
+# lseek(dll, secptr1, SEEK_SET);
+# read(dll, sname, 8);
+# if (vaddr <= export_rva && vaddr+vsize > export_rva)
+# {
+# expptr = fptr + (export_rva - vaddr);
+# if (export_rva + export_size > vaddr + vsize)
+# export_size = vsize - (export_rva - vaddr);
+# break;
+# }
+# }
+#
+# expdata = (unsigned char*)malloc(export_size);
+# lseek (dll, expptr, SEEK_SET);
+# read (dll, expdata, export_size);
+# erva = expdata - export_rva;
+#
+# nexp = pe_as32 (expdata+24);
+# name_rvas = pe_as32 (expdata+32);
+#
+# printf ("EXPORTS\n");
+# for (i = 0; i> "${ofile}T" || (rm -f "${ofile}T"; exit 1)
+
+ mv -f "${ofile}T" "$ofile" || \
+ (rm -f "$ofile" && cp "${ofile}T" "$ofile" && rm -f "${ofile}T")
+ chmod +x "$ofile"
+fi
+
+
+
+
+
+# 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'
+
+# Prevent multiple expansion
+
+
+
+echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
+echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6
+ # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
+if test "${enable_maintainer_mode+set}" = set; then
+ enableval="$enable_maintainer_mode"
+ USE_MAINTAINER_MODE=$enableval
+else
+ USE_MAINTAINER_MODE=no
+fi;
+ echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
+echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6
+
+
+if test $USE_MAINTAINER_MODE = yes; then
+ MAINTAINER_MODE_TRUE=
+ MAINTAINER_MODE_FALSE='#'
+else
+ MAINTAINER_MODE_TRUE='#'
+ MAINTAINER_MODE_FALSE=
+fi
+ MAINT=$MAINTAINER_MODE_TRUE
+
+
+
+_cppflags="${CPPFLAGS}"
+_ldflags="${LDFLAGS}"
+
+
+
+# Check whether --with-zlib or --without-zlib was given.
+if test "${with_zlib+set}" = set; then
+ withval="$with_zlib"
+
+ if test "$withval" != "no" -a "$withval" != "yes"; then
+ Z_DIR=$withval
+ CPPFLAGS="${CPPFLAGS} -I$withval/include"
+ LDFLAGS="${LDFLAGS} -L$withval/lib"
+ fi
+
+fi;
+if test "$with_zlib" = "no"; then
+ echo "Disabling compression support"
+else
+
+for ac_header in zlib.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+ echo "$as_me:$LINENO: checking for gzread in -lz" >&5
+echo $ECHO_N "checking for gzread in -lz... $ECHO_C" >&6
+if test "${ac_cv_lib_z_gzread+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lz $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char gzread ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+gzread ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_z_gzread=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_z_gzread=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_z_gzread" >&5
+echo "${ECHO_T}$ac_cv_lib_z_gzread" >&6
+if test $ac_cv_lib_z_gzread = yes; then
+
+ cat >>confdefs.h <<\_ACEOF
+#define HAVE_LIBZ 1
+_ACEOF
+
+ if test "x${Z_DIR}" != "x"; then
+ Z_CFLAGS="-I${Z_DIR}/include"
+ Z_LIBS="-L${Z_DIR}/lib -lz"
+ case ${host} in
+ *-*-solaris*)
+ Z_LIBS="-L${Z_DIR}/lib -R${Z_DIR}/lib -lz"
+ ;;
+ esac
+ else
+ Z_LIBS="-lz"
+ fi
+fi
+
+fi
+
+done
+
+fi
+
+
+
+
+CPPFLAGS=${_cppflags}
+LDFLAGS=${_ldflags}
+
+
+
+
+
+
+ac_header_dirent=no
+for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
+ as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_hdr that defines DIR" >&5
+echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+#include <$ac_hdr>
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+if ((DIR *) 0)
+return 0;
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_Header=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_Header=no"
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_hdr" | $as_tr_cpp` 1
+_ACEOF
+
+ac_header_dirent=$ac_hdr; break
+fi
+
+done
+# Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
+if test $ac_header_dirent = dirent.h; then
+ echo "$as_me:$LINENO: checking for library containing opendir" >&5
+echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6
+if test "${ac_cv_search_opendir+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+ac_cv_search_opendir=no
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char opendir ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+opendir ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_search_opendir="none required"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+if test "$ac_cv_search_opendir" = no; then
+ for ac_lib in dir; do
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char opendir ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+opendir ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_search_opendir="-l$ac_lib"
+break
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+ done
+fi
+LIBS=$ac_func_search_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5
+echo "${ECHO_T}$ac_cv_search_opendir" >&6
+if test "$ac_cv_search_opendir" != no; then
+ test "$ac_cv_search_opendir" = "none required" || LIBS="$ac_cv_search_opendir $LIBS"
+
+fi
+
+else
+ echo "$as_me:$LINENO: checking for library containing opendir" >&5
+echo $ECHO_N "checking for library containing opendir... $ECHO_C" >&6
+if test "${ac_cv_search_opendir+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+ac_cv_search_opendir=no
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char opendir ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+opendir ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_search_opendir="none required"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+if test "$ac_cv_search_opendir" = no; then
+ for ac_lib in x; do
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char opendir ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+opendir ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_search_opendir="-l$ac_lib"
+break
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+ done
+fi
+LIBS=$ac_func_search_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_search_opendir" >&5
+echo "${ECHO_T}$ac_cv_search_opendir" >&6
+if test "$ac_cv_search_opendir" != no; then
+ test "$ac_cv_search_opendir" = "none required" || LIBS="$ac_cv_search_opendir $LIBS"
+
+fi
+
+fi
+
+echo "$as_me:$LINENO: checking for ANSI C header files" >&5
+echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
+if test "${ac_cv_header_stdc+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+#include
+#include
+#include
+
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_cv_header_stdc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_cv_header_stdc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+
+if test $ac_cv_header_stdc = yes; then
+ # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+
+_ACEOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "memchr" >/dev/null 2>&1; then
+ :
+else
+ ac_cv_header_stdc=no
+fi
+rm -f conftest*
+
+fi
+
+if test $ac_cv_header_stdc = yes; then
+ # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+
+_ACEOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "free" >/dev/null 2>&1; then
+ :
+else
+ ac_cv_header_stdc=no
+fi
+rm -f conftest*
+
+fi
+
+if test $ac_cv_header_stdc = yes; then
+ # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
+ if test "$cross_compiling" = yes; then
+ :
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "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);
+}
+_ACEOF
+rm -f conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ :
+else
+ echo "$as_me: program exited with status $ac_status" >&5
+echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+( exit $ac_status )
+ac_cv_header_stdc=no
+fi
+rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
+fi
+fi
+fi
+echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5
+echo "${ECHO_T}$ac_cv_header_stdc" >&6
+if test $ac_cv_header_stdc = yes; then
+
+cat >>confdefs.h <<\_ACEOF
+#define STDC_HEADERS 1
+_ACEOF
+
+fi
+
+
+for ac_header in fcntl.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in unistd.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in ctype.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in dirent.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in errno.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in malloc.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in stdarg.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in sys/stat.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in sys/types.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in time.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in ansidecl.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in ieeefp.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in nan.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in math.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in fp_class.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in float.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in stdlib.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in sys/socket.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#if HAVE_SYS_TYPES_H
+# include
+# endif
+
+
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_Header=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_Header=no"
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in netinet/in.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#if HAVE_SYS_TYPES_H
+# include
+# endif
+
+
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_Header=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_Header=no"
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in arpa/inet.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#if HAVE_SYS_TYPES_H
+# include
+# endif
+#if HAVE_ARPA_INET_H
+# include
+# endif
+
+
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_Header=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_Header=no"
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in netdb.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in sys/time.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in sys/select.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in sys/mman.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in sys/timeb.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in signal.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking $ac_header usability" >&5
+echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking $ac_header presence" >&5
+echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include <$ac_header>
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
+echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ eval "$as_ac_Header=$ac_header_preproc"
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+
+fi
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in arpa/nameser.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#if HAVE_SYS_TYPES_H
+# include
+# endif
+
+
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_Header=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_Header=no"
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+for ac_header in resolv.h
+do
+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_header" >&5
+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Header+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#if HAVE_SYS_TYPES_H
+# include
+# endif
+#if HAVE_NETINET_IN_H
+# include
+# endif
+#if HAVE_ARPA_NAMESER_H
+# include
+# endif
+
+
+#include <$ac_header>
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_Header=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_Header=no"
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
+if test `eval echo '${'$as_ac_Header'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+
+done
+
+
+if test "x$with_html_dir" = "x" ; then
+ HTML_DIR='$(prefix)/doc'
+else
+ HTML_DIR=$with_html_dir
+fi
+
+
+
+
+for ac_func in strftime
+do
+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_func" >&5
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+if eval "test \"\${$as_ac_var+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char $ac_func (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char $ac_func ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+choke me
+#else
+f = $ac_func;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_var=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_var=no"
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+if test `eval echo '${'$as_ac_var'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+_ACEOF
+
+else
+ # strftime is in -lintl on SCO UNIX.
+echo "$as_me:$LINENO: checking for strftime in -lintl" >&5
+echo $ECHO_N "checking for strftime in -lintl... $ECHO_C" >&6
+if test "${ac_cv_lib_intl_strftime+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lintl $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char strftime ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+strftime ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_intl_strftime=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_intl_strftime=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_intl_strftime" >&5
+echo "${ECHO_T}$ac_cv_lib_intl_strftime" >&6
+if test $ac_cv_lib_intl_strftime = yes; then
+ cat >>confdefs.h <<\_ACEOF
+#define HAVE_STRFTIME 1
+_ACEOF
+
+LIBS="-lintl $LIBS"
+fi
+
+fi
+done
+
+
+
+
+for ac_func in strdup strndup strerror
+do
+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_func" >&5
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+if eval "test \"\${$as_ac_var+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char $ac_func (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char $ac_func ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+choke me
+#else
+f = $ac_func;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_var=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_var=no"
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+if test `eval echo '${'$as_ac_var'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+done
+
+
+
+
+
+
+for ac_func in finite isnand fp_class class fpclass
+do
+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_func" >&5
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+if eval "test \"\${$as_ac_var+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char $ac_func (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char $ac_func ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+choke me
+#else
+f = $ac_func;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_var=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_var=no"
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+if test `eval echo '${'$as_ac_var'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+done
+
+
+
+
+
+for ac_func in strftime localtime gettimeofday ftime
+do
+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_func" >&5
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+if eval "test \"\${$as_ac_var+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char $ac_func (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char $ac_func ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+choke me
+#else
+f = $ac_func;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_var=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_var=no"
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+if test `eval echo '${'$as_ac_var'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+done
+
+
+
+
+for ac_func in stat _stat signal
+do
+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_func" >&5
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+if eval "test \"\${$as_ac_var+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char $ac_func (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char $ac_func ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+choke me
+#else
+f = $ac_func;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_var=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_var=no"
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+if test `eval echo '${'$as_ac_var'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+_ACEOF
+
+fi
+done
+
+
+
+
+
+
+
+
+
+
+for ac_func in printf sprintf fprintf snprintf vfprintf vsprintf vsnprintf sscanf
+do
+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for $ac_func" >&5
+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
+if eval "test \"\${$as_ac_var+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char $ac_func (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char $ac_func ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
+choke me
+#else
+f = $ac_func;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_var=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_var=no"
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
+if test `eval echo '${'$as_ac_var'}'` = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
+_ACEOF
+
+else
+ NEED_TRIO=1
+fi
+done
+
+
+echo "$as_me:$LINENO: checking for gethostent" >&5
+echo $ECHO_N "checking for gethostent... $ECHO_C" >&6
+if test "${ac_cv_func_gethostent+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char gethostent (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char gethostent ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_gethostent) || defined (__stub___gethostent)
+choke me
+#else
+f = gethostent;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_func_gethostent=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_func_gethostent=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_func_gethostent" >&5
+echo "${ECHO_T}$ac_cv_func_gethostent" >&6
+if test $ac_cv_func_gethostent = yes; then
+ :
+else
+
+echo "$as_me:$LINENO: checking for gethostent in -lnsl" >&5
+echo $ECHO_N "checking for gethostent in -lnsl... $ECHO_C" >&6
+if test "${ac_cv_lib_nsl_gethostent+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lnsl $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char gethostent ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+gethostent ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_nsl_gethostent=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_nsl_gethostent=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostent" >&5
+echo "${ECHO_T}$ac_cv_lib_nsl_gethostent" >&6
+if test $ac_cv_lib_nsl_gethostent = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LIBNSL 1
+_ACEOF
+
+ LIBS="-lnsl $LIBS"
+
+fi
+
+fi
+
+echo "$as_me:$LINENO: checking for setsockopt" >&5
+echo $ECHO_N "checking for setsockopt... $ECHO_C" >&6
+if test "${ac_cv_func_setsockopt+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char setsockopt (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char setsockopt ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_setsockopt) || defined (__stub___setsockopt)
+choke me
+#else
+f = setsockopt;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_func_setsockopt=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_func_setsockopt=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_func_setsockopt" >&5
+echo "${ECHO_T}$ac_cv_func_setsockopt" >&6
+if test $ac_cv_func_setsockopt = yes; then
+ :
+else
+
+echo "$as_me:$LINENO: checking for setsockopt in -lsocket" >&5
+echo $ECHO_N "checking for setsockopt in -lsocket... $ECHO_C" >&6
+if test "${ac_cv_lib_socket_setsockopt+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lsocket $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char setsockopt ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+setsockopt ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_socket_setsockopt=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_socket_setsockopt=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_socket_setsockopt" >&5
+echo "${ECHO_T}$ac_cv_lib_socket_setsockopt" >&6
+if test $ac_cv_lib_socket_setsockopt = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LIBSOCKET 1
+_ACEOF
+
+ LIBS="-lsocket $LIBS"
+
+fi
+
+fi
+
+echo "$as_me:$LINENO: checking for connect" >&5
+echo $ECHO_N "checking for connect... $ECHO_C" >&6
+if test "${ac_cv_func_connect+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char connect (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char connect ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_connect) || defined (__stub___connect)
+choke me
+#else
+f = connect;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_func_connect=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_func_connect=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_func_connect" >&5
+echo "${ECHO_T}$ac_cv_func_connect" >&6
+if test $ac_cv_func_connect = yes; then
+ :
+else
+
+echo "$as_me:$LINENO: checking for connect in -linet" >&5
+echo $ECHO_N "checking for connect in -linet... $ECHO_C" >&6
+if test "${ac_cv_lib_inet_connect+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-linet $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char connect ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+connect ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_inet_connect=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_inet_connect=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_inet_connect" >&5
+echo "${ECHO_T}$ac_cv_lib_inet_connect" >&6
+if test $ac_cv_lib_inet_connect = yes; then
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LIBINET 1
+_ACEOF
+
+ LIBS="-linet $LIBS"
+
+fi
+
+fi
+
+
+echo "$as_me:$LINENO: checking for type of socket length (socklen_t)" >&5
+echo $ECHO_N "checking for type of socket length (socklen_t)... $ECHO_C" >&6
+cat > conftest.$ac_ext <
+#include
+#include
+int main() {
+
+(void)getsockopt (1, 1, 1, NULL, (socklen_t *)NULL)
+; return 0; }
+EOF
+if { (eval echo configure:12074: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; _out=`eval $ac_compile 2>&1` && test "x$_out" = x; }; then
+ rm -rf conftest*
+
+ echo "$as_me:$LINENO: result: socklen_t *" >&5
+echo "${ECHO_T}socklen_t *" >&6
+ SOCKLEN_T=socklen_t
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+
+ cat > conftest.$ac_ext <
+#include
+#include
+int main() {
+
+(void)getsockopt (1, 1, 1, NULL, (size_t *)NULL)
+; return 0; }
+EOF
+if { (eval echo configure:12097: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; _out=`eval $ac_compile 2>&1` && test "x$_out" = x; }; then
+ rm -rf conftest*
+
+ echo "$as_me:$LINENO: result: size_t *" >&5
+echo "${ECHO_T}size_t *" >&6
+ SOCKLEN_T=size_t
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+
+ cat > conftest.$ac_ext <
+#include
+#include
+int main() {
+
+(void)getsockopt (1, 1, 1, NULL, (int *)NULL)
+; return 0; }
+EOF
+if { (eval echo configure:12120: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; _out=`eval $ac_compile 2>&1` && test "x$_out" = x; }; then
+ rm -rf conftest*
+
+ echo "$as_me:$LINENO: result: int *" >&5
+echo "${ECHO_T}int *" >&6
+ SOCKLEN_T=int
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+
+ { echo "$as_me:$LINENO: WARNING: could not determine" >&5
+echo "$as_me: WARNING: could not determine" >&2;}
+fi
+rm -f conftest*
+fi
+rm -f conftest*
+fi
+rm -f conftest*
+cat >>confdefs.h <<_ACEOF
+#define SOCKLEN_T $SOCKLEN_T
+_ACEOF
+
+
+echo "$as_me:$LINENO: checking for isnan" >&5
+echo $ECHO_N "checking for isnan... $ECHO_C" >&6
+if test "${ac_cv_func_isnan+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char isnan (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char isnan ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_isnan) || defined (__stub___isnan)
+choke me
+#else
+f = isnan;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_func_isnan=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_func_isnan=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_func_isnan" >&5
+echo "${ECHO_T}$ac_cv_func_isnan" >&6
+if test $ac_cv_func_isnan = yes; then
+ :
+else
+ echo "$as_me:$LINENO: checking for isnan in -lm" >&5
+echo $ECHO_N "checking for isnan in -lm... $ECHO_C" >&6
+if test "${ac_cv_lib_m_isnan+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lm $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char isnan ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+isnan ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_m_isnan=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_m_isnan=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_m_isnan" >&5
+echo "${ECHO_T}$ac_cv_lib_m_isnan" >&6
+if test $ac_cv_lib_m_isnan = yes; then
+ cat >>confdefs.h <<\_ACEOF
+#define HAVE_ISNAN 1
+_ACEOF
+
+fi
+
+fi
+
+
+echo "$as_me:$LINENO: checking for isinf" >&5
+echo $ECHO_N "checking for isinf... $ECHO_C" >&6
+if test "${ac_cv_func_isinf+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char isinf (); below. */
+#include
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char isinf ();
+char (*f) ();
+
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_isinf) || defined (__stub___isinf)
+choke me
+#else
+f = isinf;
+#endif
+
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_func_isinf=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_func_isinf=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_func_isinf" >&5
+echo "${ECHO_T}$ac_cv_func_isinf" >&6
+if test $ac_cv_func_isinf = yes; then
+ cat >>confdefs.h <<\_ACEOF
+#define HAVE_ISINF 1
+_ACEOF
+
+else
+ echo "$as_me:$LINENO: checking for isinf in -lm" >&5
+echo $ECHO_N "checking for isinf in -lm... $ECHO_C" >&6
+if test "${ac_cv_lib_m_isinf+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lm $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char isinf ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+isinf ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_m_isinf=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_m_isinf=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_m_isinf" >&5
+echo "${ECHO_T}$ac_cv_lib_m_isinf" >&6
+if test $ac_cv_lib_m_isinf = yes; then
+ cat >>confdefs.h <<\_ACEOF
+#define HAVE_ISINF 1
+_ACEOF
+
+fi
+
+fi
+
+
+XML_LIBDIR='-L${libdir}'
+XML_INCLUDEDIR='-I${includedir}/libxml2'
+
+XML_CFLAGS=""
+RDL_LIBS=""
+
+if test "${GCC}" != "yes" ; then
+ case "${host}" in
+ *-*-hpux* )
+ CFLAGS="${CFLAGS} -Wp,-H30000"
+ ;;
+ *-dec-osf* )
+ CFLAGS="${CFLAGS} -ieee"
+ ;;
+ esac
+else
+ CFLAGS="${CFLAGS} -Wall"
+ case "${host}" in
+ alpha*-*-linux* )
+ CFLAGS="${CFLAGS} -mieee"
+ ;;
+ alpha*-*-osf* )
+ CFLAGS="${CFLAGS} -mieee"
+ ;;
+ esac
+fi
+case ${host} in
+ *-*-solaris*)
+ XML_LIBDIR="${XML_LIBDIR} -R${libdir}"
+ ;;
+ hppa*-hp-mpeix)
+ NEED_TRIO=1
+ ;;
+esac
+
+
+
+PYTHON=
+PYTHON_VERSION=
+PYTHON_INCLUDES=
+PYTHON_SITE_PACKAGES=
+
+# Check whether --with-python or --without-python was given.
+if test "${with_python+set}" = set; then
+ withval="$with_python"
+
+fi;
+if test "$with_python" != "no" ; then
+ if test -x "$with_python/bin/python"
+ then
+ echo Found python in $with_python/bin/python
+ PYTHON="$with_python/bin/python"
+ else
+ if test -x "$with_python"
+ then
+ echo Found python in $with_python
+ PYTHON="$with_python"
+ else
+ # Extract the first word of "python python2.3 python2.2 python2.1 python2.0 python1.6 python1.5", so it can be a program name with args.
+set dummy python python2.3 python2.2 python2.1 python2.0 python1.6 python1.5; ac_word=$2
+echo "$as_me:$LINENO: checking for $ac_word" >&5
+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
+if test "${ac_cv_path_PYTHON+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ case $PYTHON in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext"
+ echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+done
+
+ ;;
+esac
+fi
+PYTHON=$ac_cv_path_PYTHON
+
+if test -n "$PYTHON"; then
+ echo "$as_me:$LINENO: result: $PYTHON" >&5
+echo "${ECHO_T}$PYTHON" >&6
+else
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+fi
+
+ fi
+ fi
+ if test "$PYTHON" != ""
+ then
+ PYTHON_VERSION=`$PYTHON -c "import sys; print sys.version[0:3]"`
+ echo Found Python version $PYTHON_VERSION
+ fi
+ if test "$PYTHON_VERSION" != ""
+ then
+ if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
+ -d $with_python/lib/python$PYTHON_VERSION/site-packages
+ then
+ PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION
+ PYTHON_SITE_PACKAGES=$with_python/lib/python$PYTHON_VERSION/site-packages
+ else
+ if test -r $prefix/include/python$PYTHON_VERSION/Python.h
+ then
+ PYTHON_INCLUDES='$(prefix)/include/python$(PYTHON_VERSION)'
+ PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
+ else
+ if test -r /usr/include/python$PYTHON_VERSION/Python.h
+ then
+ PYTHON_INCLUDES=/usr/include/python$PYTHON_VERSION
+ PYTHON_SITE_PACKAGES='$(libdir)/python$(PYTHON_VERSION)/site-packages'
+ else
+ echo could not find python$PYTHON_VERSION/Python.h
+ fi
+ fi
+ if ! test -d "$PYTHON_SITE_PACKAGES"
+ then
+ PYTHON_SITE_PACKAGES=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib()"`
+ fi
+ fi
+ fi
+fi
+
+
+if test "$PYTHON_INCLUDES" != ""; then
+ WITH_PYTHON_TRUE=
+ WITH_PYTHON_FALSE='#'
+else
+ WITH_PYTHON_TRUE='#'
+ WITH_PYTHON_FALSE=
+fi
+if test "$PYTHON_INCLUDES" != ""
+then
+ PYTHON_SUBDIR=python
+else
+ PYTHON_SUBDIR=
+fi
+
+
+_cppflags="${CPPFLAGS}"
+_ldflags="${LDFLAGS}"
+
+
+# Check whether --with-readline or --without-readline was given.
+if test "${with_readline+set}" = set; then
+ withval="$with_readline"
+
+ if test "$withval" != "no" -a "$withval" != "yes"; then
+ RDL_DIR=$withval
+ CPPFLAGS="${CPPFLAGS} -I$withval/include"
+ LDFLAGS="${LDFLAGS} -L$withval/lib"
+ fi
+
+fi;
+
+if test "${LOGNAME}" = "veillard" -a "`pwd`" = "/u/veillard/XML" ; then
+ if test "${with_mem_debug}" = "" ; then
+ with_mem_debug="yes"
+ fi
+ if test "${with_docbook}" = "" ; then
+ with_docbook="yes"
+ fi
+ if test "${with_xptr}" = "" ; then
+ with_xptr="yes"
+ fi
+ if test "${with_schemas}" = "" ; then
+ with_schemas="yes"
+ fi
+ CFLAGS="-g -O -pedantic -W -Wunused -Wimplicit -Wreturn-type -Wswitch -Wcomment -Wtrigraphs -Wformat -Wchar-subscripts -Wuninitialized -Wparentheses -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wredundant-decls "
+fi
+
+
+if test "${NEED_TRIO}" = "1" ; then
+ echo Adding trio library for string functions
+ WITH_TRIO=1
+else
+ WITH_TRIO=0
+fi
+
+
+if test "${NEED_TRIO}" = "1"; then
+ WITH_TRIO_SOURCES_TRUE=
+ WITH_TRIO_SOURCES_FALSE='#'
+else
+ WITH_TRIO_SOURCES_TRUE='#'
+ WITH_TRIO_SOURCES_FALSE=
+fi
+
+
+
+THREAD_LIBS=""
+WITH_THREADS=0
+THREAD_CFLAGS=""
+TEST_THREADS=""
+
+
+# Check whether --with-threads or --without-threads was given.
+if test "${with_threads+set}" = set; then
+ withval="$with_threads"
+
+fi;
+if test "$with_threads" = "yes" ; then
+ echo Enabling multithreaded support
+
+ if test "${ac_cv_header_pthread_h+set}" = set; then
+ echo "$as_me:$LINENO: checking for pthread.h" >&5
+echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6
+if test "${ac_cv_header_pthread_h+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: $ac_cv_header_pthread_h" >&5
+echo "${ECHO_T}$ac_cv_header_pthread_h" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking pthread.h usability" >&5
+echo $ECHO_N "checking pthread.h usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking pthread.h presence" >&5
+echo $ECHO_N "checking pthread.h presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: pthread.h: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: pthread.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: pthread.h: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: pthread.h: present but cannot be compiled" >&5
+echo "$as_me: WARNING: pthread.h: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: pthread.h: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: pthread.h: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: pthread.h: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for pthread.h" >&5
+echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6
+if test "${ac_cv_header_pthread_h+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_cv_header_pthread_h=$ac_header_preproc
+fi
+echo "$as_me:$LINENO: result: $ac_cv_header_pthread_h" >&5
+echo "${ECHO_T}$ac_cv_header_pthread_h" >&6
+
+fi
+if test $ac_cv_header_pthread_h = yes; then
+ echo "$as_me:$LINENO: checking for pthread_join in -lpthread" >&5
+echo $ECHO_N "checking for pthread_join in -lpthread... $ECHO_C" >&6
+if test "${ac_cv_lib_pthread_pthread_join+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lpthread $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char pthread_join ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+pthread_join ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_pthread_pthread_join=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_pthread_pthread_join=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_join" >&5
+echo "${ECHO_T}$ac_cv_lib_pthread_pthread_join" >&6
+if test $ac_cv_lib_pthread_pthread_join = yes; then
+
+ THREAD_LIBS="-lpthread"
+ cat >>confdefs.h <<\_ACEOF
+#define HAVE_LIBPTHREAD 1
+_ACEOF
+
+ cat >>confdefs.h <<\_ACEOF
+#define HAVE_PTHREAD_H 1
+_ACEOF
+
+ WITH_THREADS="1"
+fi
+
+fi
+
+
+
+ if test "$WITH_THREADS" = "1" ; then
+ THREAD_CFLAGS="$THREAD_CFLAGS -D_REENTRANT"
+ TEST_THREADS="Threadtests"
+ fi
+fi
+
+# Check whether --with-thread-alloc or --without-thread-alloc was given.
+if test "${with_thread_alloc+set}" = set; then
+ withval="$with_thread_alloc"
+
+fi;
+if test "$with_threads_alloc" = "yes" -a "$WITH_THREADS" = "1" ; then
+ THREAD_CFLAGS="$THREAD_CFLAGS -DLIBXML_THREAD_ALLOC_ENABLED"
+fi
+
+
+
+
+
+
+
+# Check whether --with-history or --without-history was given.
+if test "${with_history+set}" = set; then
+ withval="$with_history"
+
+fi;
+if test "$with_history" = "yes" ; then
+ echo Enabling xmllint shell history
+ unset tcap
+ for termlib in ncurses curses termcap terminfo termlib; do
+ as_ac_Lib=`echo "ac_cv_lib_${termlib}''_tputs" | $as_tr_sh`
+echo "$as_me:$LINENO: checking for tputs in -l${termlib}" >&5
+echo $ECHO_N "checking for tputs in -l${termlib}... $ECHO_C" >&6
+if eval "test \"\${$as_ac_Lib+set}\" = set"; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-l${termlib} $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char tputs ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+tputs ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ eval "$as_ac_Lib=yes"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+eval "$as_ac_Lib=no"
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Lib'}'`" >&5
+echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
+if test `eval echo '${'$as_ac_Lib'}'` = yes; then
+ tcap="-l$termlib"
+fi
+
+ test -n "$tcap" && break
+ done
+
+ if test "${ac_cv_header_readline_history_h+set}" = set; then
+ echo "$as_me:$LINENO: checking for readline/history.h" >&5
+echo $ECHO_N "checking for readline/history.h... $ECHO_C" >&6
+if test "${ac_cv_header_readline_history_h+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: $ac_cv_header_readline_history_h" >&5
+echo "${ECHO_T}$ac_cv_header_readline_history_h" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking readline/history.h usability" >&5
+echo $ECHO_N "checking readline/history.h usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking readline/history.h presence" >&5
+echo $ECHO_N "checking readline/history.h presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: readline/history.h: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: readline/history.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: readline/history.h: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: readline/history.h: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: readline/history.h: present but cannot be compiled" >&5
+echo "$as_me: WARNING: readline/history.h: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: readline/history.h: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: readline/history.h: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: readline/history.h: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: readline/history.h: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for readline/history.h" >&5
+echo $ECHO_N "checking for readline/history.h... $ECHO_C" >&6
+if test "${ac_cv_header_readline_history_h+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_cv_header_readline_history_h=$ac_header_preproc
+fi
+echo "$as_me:$LINENO: result: $ac_cv_header_readline_history_h" >&5
+echo "${ECHO_T}$ac_cv_header_readline_history_h" >&6
+
+fi
+if test $ac_cv_header_readline_history_h = yes; then
+ echo "$as_me:$LINENO: checking for append_history in -lhistory" >&5
+echo $ECHO_N "checking for append_history in -lhistory... $ECHO_C" >&6
+if test "${ac_cv_lib_history_append_history+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lhistory $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char append_history ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+append_history ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_history_append_history=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_history_append_history=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_history_append_history" >&5
+echo "${ECHO_T}$ac_cv_lib_history_append_history" >&6
+if test $ac_cv_lib_history_append_history = yes; then
+
+ RDL_LIBS="-lhistory"
+ cat >>confdefs.h <<\_ACEOF
+#define HAVE_LIBHISTORY 1
+_ACEOF
+
+fi
+
+fi
+
+
+ if test "${ac_cv_header_readline_readline_h+set}" = set; then
+ echo "$as_me:$LINENO: checking for readline/readline.h" >&5
+echo $ECHO_N "checking for readline/readline.h... $ECHO_C" >&6
+if test "${ac_cv_header_readline_readline_h+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: $ac_cv_header_readline_readline_h" >&5
+echo "${ECHO_T}$ac_cv_header_readline_readline_h" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking readline/readline.h usability" >&5
+echo $ECHO_N "checking readline/readline.h usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking readline/readline.h presence" >&5
+echo $ECHO_N "checking readline/readline.h presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: readline/readline.h: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: readline/readline.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: readline/readline.h: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: readline/readline.h: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: readline/readline.h: present but cannot be compiled" >&5
+echo "$as_me: WARNING: readline/readline.h: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: readline/readline.h: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: readline/readline.h: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: readline/readline.h: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: readline/readline.h: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for readline/readline.h" >&5
+echo $ECHO_N "checking for readline/readline.h... $ECHO_C" >&6
+if test "${ac_cv_header_readline_readline_h+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_cv_header_readline_readline_h=$ac_header_preproc
+fi
+echo "$as_me:$LINENO: result: $ac_cv_header_readline_readline_h" >&5
+echo "${ECHO_T}$ac_cv_header_readline_readline_h" >&6
+
+fi
+if test $ac_cv_header_readline_readline_h = yes; then
+ echo "$as_me:$LINENO: checking for readline in -lreadline" >&5
+echo $ECHO_N "checking for readline in -lreadline... $ECHO_C" >&6
+if test "${ac_cv_lib_readline_readline+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_check_lib_save_LIBS=$LIBS
+LIBS="-lreadline $tcap $LIBS"
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+
+/* Override any gcc2 internal prototype to avoid an error. */
+#ifdef __cplusplus
+extern "C"
+#endif
+/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char readline ();
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+readline ();
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_cv_lib_readline_readline=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_cv_lib_readline_readline=no
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+LIBS=$ac_check_lib_save_LIBS
+fi
+echo "$as_me:$LINENO: result: $ac_cv_lib_readline_readline" >&5
+echo "${ECHO_T}$ac_cv_lib_readline_readline" >&6
+if test $ac_cv_lib_readline_readline = yes; then
+
+ RDL_LIBS="-lreadline $RDL_LIBS $tcap"
+ cat >>confdefs.h <<\_ACEOF
+#define HAVE_LIBREADLINE 1
+_ACEOF
+
+fi
+
+fi
+
+
+ if test -n "$RDL_DIR" -a -n "$RDL_LIBS"; then
+ CPPFLAGS="$CPPFLAGS -I${RDL_DIR}/include"
+ RDL_LIBS="-L${RDL_DIR}/lib $RDL_LIBS"
+ else
+ CPPFLAGS=${_cppflags}
+ fi
+ LDFLAGS=${_ldflags}
+fi
+
+
+
+
+# Check whether --with-ftp or --without-ftp was given.
+if test "${with_ftp+set}" = set; then
+ withval="$with_ftp"
+
+fi;
+if test "$with_ftp" = "no" ; then
+ echo Disabling FTP support
+ WITH_FTP=0
+ FTP_OBJ=
+else
+ WITH_FTP=1
+ FTP_OBJ=nanoftp.o
+fi
+
+
+
+
+# Check whether --with-http or --without-http was given.
+if test "${with_http+set}" = set; then
+ withval="$with_http"
+
+fi;
+if test "$with_http" = "no" ; then
+ echo Disabling HTTP support
+ WITH_HTTP=0
+ HTTP_OBJ=
+else
+ WITH_HTTP=1
+ HTTP_OBJ=nanohttp.o
+fi
+
+
+
+
+# Check whether --with-html or --without-html was given.
+if test "${with_html+set}" = set; then
+ withval="$with_html"
+
+fi;
+if test "$with_html" = "no" ; then
+ echo Disabling HTML support
+ WITH_HTML=0
+ HTML_OBJ=
+else
+ WITH_HTML=1
+ HTML_OBJ="HTMLparser.o HTMLtree.o"
+fi
+
+
+
+
+# Check whether --with-catalog or --without-catalog was given.
+if test "${with_catalog+set}" = set; then
+ withval="$with_catalog"
+
+fi;
+if test "$with_catalog" = "no" ; then
+ echo Disabling Catalog support
+ WITH_CATALOG=0
+ CATALOG_OBJ=
+else
+ WITH_CATALOG=1
+ CATALOG_OBJ="catalog.o"
+fi
+
+
+
+
+# Check whether --with-docbook or --without-docbook was given.
+if test "${with_docbook+set}" = set; then
+ withval="$with_docbook"
+
+fi;
+if test "$with_docbook" = "no" ; then
+ echo Disabling Docbook support
+ WITH_DOCB=0
+ DOCB_OBJ=
+else
+ WITH_DOCB=1
+ DOCB_OBJ="DOCBparser.o"
+fi
+
+
+
+
+
+# Check whether --with-xpath or --without-xpath was given.
+if test "${with_xpath+set}" = set; then
+ withval="$with_xpath"
+
+fi;
+if test "$with_xpath" = "no" ; then
+ echo Disabling XPATH support
+ with_xptr="no"
+ with_c14n="no"
+ with_xinclude="no"
+ WITH_XPATH=0
+ XPATH_OBJ=
+else
+ WITH_XPATH=1
+ XPATH_OBJ=xpath.o
+fi
+
+
+
+
+# Check whether --with-xptr or --without-xptr was given.
+if test "${with_xptr+set}" = set; then
+ withval="$with_xptr"
+
+fi;
+if test "$with_xptr" = "no" ; then
+ echo Disabling XPointer support
+ WITH_XPTR=0
+ XPTR_OBJ=
+else
+ WITH_XPTR=1
+ XPTR_OBJ=xpointer.o
+fi
+
+
+
+
+# Check whether --with-c14n or --without-c14n was given.
+if test "${with_c14n+set}" = set; then
+ withval="$with_c14n"
+
+fi;
+if test "$with_c14n" = "no" ; then
+ echo Disabling C14N support
+ WITH_C14N=0
+ C14N_OBJ=
+else
+ WITH_C14N=1
+ C14N_OBJ="c14n.c"
+fi
+
+
+
+
+# Check whether --with-xinclude or --without-xinclude was given.
+if test "${with_xinclude+set}" = set; then
+ withval="$with_xinclude"
+
+fi;
+if test "$with_xinclude" = "no" ; then
+ echo Disabling XInclude support
+ WITH_XINCLUDE=0
+ XINCLUDE_OBJ=
+ with_xinclude="no"
+else
+ WITH_XINCLUDE=1
+ XINCLUDE_OBJ=xinclude.o
+fi
+
+
+
+WITH_ICONV=0
+
+# Check whether --with-iconv or --without-iconv was given.
+if test "${with_iconv+set}" = set; then
+ withval="$with_iconv"
+
+fi;
+if test "$with_iconv" = "no" ; then
+ echo Disabling ICONV support
+else
+ if test "$with_iconv" != "yes" -a "$with_iconv" != "" ; then
+ CPPFLAGS="${CPPFLAGS} -I$with_iconv/include"
+ # Export this since our headers include iconv.h
+ XML_INCLUDEDIR="${XML_INCLUDEDIR} -I$with_iconv/include"
+ ICONV_LIBS="-L$with_iconv/lib"
+ fi
+
+ if test "${ac_cv_header_iconv_h+set}" = set; then
+ echo "$as_me:$LINENO: checking for iconv.h" >&5
+echo $ECHO_N "checking for iconv.h... $ECHO_C" >&6
+if test "${ac_cv_header_iconv_h+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+fi
+echo "$as_me:$LINENO: result: $ac_cv_header_iconv_h" >&5
+echo "${ECHO_T}$ac_cv_header_iconv_h" >&6
+else
+ # Is the header compilable?
+echo "$as_me:$LINENO: checking iconv.h usability" >&5
+echo $ECHO_N "checking iconv.h usability... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+$ac_includes_default
+#include
+_ACEOF
+rm -f conftest.$ac_objext
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
+ (eval $ac_compile) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest.$ac_objext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+ ac_header_compiler=yes
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+ac_header_compiler=no
+fi
+rm -f conftest.$ac_objext conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_compiler" >&5
+echo "${ECHO_T}$ac_header_compiler" >&6
+
+# Is the header present?
+echo "$as_me:$LINENO: checking iconv.h presence" >&5
+echo $ECHO_N "checking iconv.h presence... $ECHO_C" >&6
+cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+_ACEOF
+if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
+ (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
+ ac_status=$?
+ egrep -v '^ *\+' conftest.er1 >conftest.err
+ rm -f conftest.er1
+ cat conftest.err >&5
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } >/dev/null; then
+ if test -s conftest.err; then
+ ac_cpp_err=$ac_c_preproc_warn_flag
+ else
+ ac_cpp_err=
+ fi
+else
+ ac_cpp_err=yes
+fi
+if test -z "$ac_cpp_err"; then
+ ac_header_preproc=yes
+else
+ echo "$as_me: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_header_preproc=no
+fi
+rm -f conftest.err conftest.$ac_ext
+echo "$as_me:$LINENO: result: $ac_header_preproc" >&5
+echo "${ECHO_T}$ac_header_preproc" >&6
+
+# So? What about this header?
+case $ac_header_compiler:$ac_header_preproc in
+ yes:no )
+ { echo "$as_me:$LINENO: WARNING: iconv.h: accepted by the compiler, rejected by the preprocessor!" >&5
+echo "$as_me: WARNING: iconv.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
+ { echo "$as_me:$LINENO: WARNING: iconv.h: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: iconv.h: proceeding with the preprocessor's result" >&2;};;
+ no:yes )
+ { echo "$as_me:$LINENO: WARNING: iconv.h: present but cannot be compiled" >&5
+echo "$as_me: WARNING: iconv.h: present but cannot be compiled" >&2;}
+ { echo "$as_me:$LINENO: WARNING: iconv.h: check for missing prerequisite headers?" >&5
+echo "$as_me: WARNING: iconv.h: check for missing prerequisite headers?" >&2;}
+ { echo "$as_me:$LINENO: WARNING: iconv.h: proceeding with the preprocessor's result" >&5
+echo "$as_me: WARNING: iconv.h: proceeding with the preprocessor's result" >&2;};;
+esac
+echo "$as_me:$LINENO: checking for iconv.h" >&5
+echo $ECHO_N "checking for iconv.h... $ECHO_C" >&6
+if test "${ac_cv_header_iconv_h+set}" = set; then
+ echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+ ac_cv_header_iconv_h=$ac_header_preproc
+fi
+echo "$as_me:$LINENO: result: $ac_cv_header_iconv_h" >&5
+echo "${ECHO_T}$ac_cv_header_iconv_h" >&6
+
+fi
+if test $ac_cv_header_iconv_h = yes; then
+ echo "$as_me:$LINENO: checking for iconv" >&5
+echo $ECHO_N "checking for iconv... $ECHO_C" >&6
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+#include
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+
+iconv_t cd = iconv_open ("","");
+iconv (cd, NULL, NULL, NULL, NULL);
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+
+ echo "$as_me:$LINENO: result: yes" >&5
+echo "${ECHO_T}yes" >&6
+ WITH_ICONV=1
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+ echo "$as_me:$LINENO: checking for iconv in -liconv" >&5
+echo $ECHO_N "checking for iconv in -liconv... $ECHO_C" >&6
+
+ _ldflags="${LDFLAGS}"
+ _libs="${LIBS}"
+ LDFLAGS="${LDFLAGS} ${ICONV_LIBS}"
+ LIBS="${LIBS} -liconv"
+
+ cat >conftest.$ac_ext <<_ACEOF
+#line $LINENO "configure"
+#include "confdefs.h"
+#include
+#include
+#ifdef F77_DUMMY_MAIN
+# ifdef __cplusplus
+ extern "C"
+# endif
+ int F77_DUMMY_MAIN() { return 1; }
+#endif
+int
+main ()
+{
+
+iconv_t cd = iconv_open ("","");
+iconv (cd, NULL, NULL, NULL, NULL);
+ ;
+ return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+ (eval $ac_link) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); } &&
+ { ac_try='test -s conftest$ac_exeext'
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+ (eval $ac_try) 2>&5
+ ac_status=$?
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
+ (exit $ac_status); }; }; then
+
+ echo "$as_me:$LINENO: result: yes" >&5
+echo "${ECHO_T}yes" >&6
+ WITH_ICONV=1
+ ICONV_LIBS="${ICONV_LIBS} -liconv"
+ LIBS="${_libs}"
+ LDFLAGS="${_ldflags}"
+else
+ echo "$as_me: failed program was:" >&5
+cat conftest.$ac_ext >&5
+
+ echo "$as_me:$LINENO: result: no" >&5
+echo "${ECHO_T}no" >&6
+ LIBS="${_libs}"
+ LDFLAGS="${_ldflags}"
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
+fi
+
+
+fi
+M_LIBS="-lm"
+XML_LIBS="-lxml2 $Z_LIBS $THREAD_LIBS $ICONV_LIBS $M_LIBS $LIBS"
+
+
+
+# Check whether --with-schemas or --without-schemas was given.
+if test "${with_schemas+set}" = set; then
+ withval="$with_schemas"
+
+fi;
+if test "$with_schemas" = "yes" ; then
+ echo Enabling Schemas support
+ WITH_SCHEMAS=1
+ TEST_SCHEMAS="Schemastests"
+ with_regexps=yes
+else
+ WITH_SCHEMAS=0
+ TEST_SCHEMAS=
+fi
+
+
+
+
+# Check whether --with-regexps or --without-regexps was given.
+if test "${with_regexps+set}" = set; then
+ withval="$with_regexps"
+
+fi;
+if test "$with_regexps" = "no" ; then
+ echo Disabling Regexps support
+ WITH_REGEXPS=0
+ TEST_REGEXPS=
+else
+ WITH_REGEXPS=1
+ TEST_REGEXPS="Regexptests Automatatests"
+fi
+
+
+
+
+# Check whether --with-debug or --without-debug was given.
+if test "${with_debug+set}" = set; then
+ withval="$with_debug"
+
+fi;
+if test "$with_debug" = "no" ; then
+ echo Disabling DEBUG support
+ WITH_DEBUG=0
+ DEBUG_OBJ=
+else
+ WITH_DEBUG=1
+ DEBUG_OBJ=debugXML.o
+fi
+
+
+
+
+# Check whether --with-mem_debug or --without-mem_debug was given.
+if test "${with_mem_debug+set}" = set; then
+ withval="$with_mem_debug"
+
+fi;
+if test "$with_mem_debug" = "yes" ; then
+ echo Enabling memory debug support
+ WITH_MEM_DEBUG=1
+else
+ WITH_MEM_DEBUG=0
+fi
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+rm -f rm COPYING.LIB COPYING
+ln -s Copyright COPYING
+
+ac_config_files="$ac_config_files libxml.spec Makefile include/Makefile include/libxml/Makefile doc/Makefile example/Makefile python/Makefile python/tests/Makefile include/libxml/xmlversion.h xml2-config libxml-2.0.pc xml2Conf.sh python/setup.py"
+cat >confcache <<\_ACEOF
+# This file is a shell script that caches the results of configure
+# tests run on this system so they can be shared between configure
+# scripts and configure runs, see configure's option --config-cache.
+# It is not useful on other systems. If it contains results you don't
+# want to keep, you may remove or edit it.
+#
+# config.status only pays attention to the cache file if you give it
+# the --recheck option to rerun configure.
+#
+# `ac_cv_env_foo' variables (set or unset) will be overriden when
+# loading this file, other *unset* `ac_cv_foo' will be assigned the
+# following values.
+
+_ACEOF
+
+# The following way of writing the cache mishandles newlines in values,
+# but we know of no workaround that is simple, portable, and efficient.
+# So, don't put newlines in cache variables' values.
+# Ultrix sh set writes to stderr and can't be redirected directly,
+# and sets the high bit in the cache file unless we assign to the vars.
+{
+ (set) 2>&1 |
+ case `(ac_space=' '; set | grep ac_space) 2>&1` in
+ *ac_space=\ *)
+ # `set' does not quote correctly, so add quotes (double-quote
+ # substitution turns \\\\ into \\, and sed turns \\ into \).
+ sed -n \
+ "s/'/'\\\\''/g;
+ s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
+ ;;
+ *)
+ # `set' quotes correctly as required by POSIX, so do not add quotes.
+ sed -n \
+ "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p"
+ ;;
+ esac;
+} |
+ sed '
+ t clear
+ : clear
+ s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
+ t end
+ /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
+ : end' >>confcache
+if cmp -s $cache_file confcache; then :; else
+ if test -w $cache_file; then
+ test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
+ cat confcache >$cache_file
+ else
+ echo "not updating unwritable cache $cache_file"
+ fi
+fi
+rm -f confcache
+
+test "x$prefix" = xNONE && prefix=$ac_default_prefix
+# Let make expand exec_prefix.
+test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
+
+# VPATH may cause trouble with some makes, so we remove $(srcdir),
+# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
+# trailing colons and then remove the whole line if VPATH becomes empty
+# (actually we leave an empty line to preserve line numbers).
+if test "x$srcdir" = x.; then
+ ac_vpsub='/^[ ]*VPATH[ ]*=/{
+s/:*\$(srcdir):*/:/;
+s/:*\${srcdir}:*/:/;
+s/:*@srcdir@:*/:/;
+s/^\([^=]*=[ ]*\):*/\1/;
+s/:*$//;
+s/^[^=]*=[ ]*$//;
+}'
+fi
+
+DEFS=-DHAVE_CONFIG_H
+
+
+: ${CONFIG_STATUS=./config.status}
+ac_clean_files_save=$ac_clean_files
+ac_clean_files="$ac_clean_files $CONFIG_STATUS"
+{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
+echo "$as_me: creating $CONFIG_STATUS" >&6;}
+cat >$CONFIG_STATUS <<_ACEOF
+#! $SHELL
+# Generated by $as_me.
+# Run this file to recreate the current configuration.
+# Compiler output produced by configure, useful for debugging
+# configure, is in config.log if it exists.
+
+debug=false
+SHELL=\${CONFIG_SHELL-$SHELL}
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF
+
+## --------------------- ##
+## M4sh Initialization. ##
+## --------------------- ##
+
+# Be Bourne compatible
+if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
+ emulate sh
+ NULLCMD=:
+elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
+ set -o posix
+fi
+
+# NLS nuisances.
+# Support unset when possible.
+if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
+ as_unset=unset
+else
+ as_unset=false
+fi
+
+(set +x; test -n "`(LANG=C; export LANG) 2>&1`") &&
+ { $as_unset LANG || test "${LANG+set}" != set; } ||
+ { LANG=C; export LANG; }
+(set +x; test -n "`(LC_ALL=C; export LC_ALL) 2>&1`") &&
+ { $as_unset LC_ALL || test "${LC_ALL+set}" != set; } ||
+ { LC_ALL=C; export LC_ALL; }
+(set +x; test -n "`(LC_TIME=C; export LC_TIME) 2>&1`") &&
+ { $as_unset LC_TIME || test "${LC_TIME+set}" != set; } ||
+ { LC_TIME=C; export LC_TIME; }
+(set +x; test -n "`(LC_CTYPE=C; export LC_CTYPE) 2>&1`") &&
+ { $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set; } ||
+ { LC_CTYPE=C; export LC_CTYPE; }
+(set +x; test -n "`(LANGUAGE=C; export LANGUAGE) 2>&1`") &&
+ { $as_unset LANGUAGE || test "${LANGUAGE+set}" != set; } ||
+ { LANGUAGE=C; export LANGUAGE; }
+(set +x; test -n "`(LC_COLLATE=C; export LC_COLLATE) 2>&1`") &&
+ { $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set; } ||
+ { LC_COLLATE=C; export LC_COLLATE; }
+(set +x; test -n "`(LC_NUMERIC=C; export LC_NUMERIC) 2>&1`") &&
+ { $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set; } ||
+ { LC_NUMERIC=C; export LC_NUMERIC; }
+(set +x; test -n "`(LC_MESSAGES=C; export LC_MESSAGES) 2>&1`") &&
+ { $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set; } ||
+ { LC_MESSAGES=C; export LC_MESSAGES; }
+
+
+# Name of the executable.
+as_me=`(basename "$0") 2>/dev/null ||
+$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
+ X"$0" : 'X\(//\)$' \| \
+ X"$0" : 'X\(/\)$' \| \
+ . : '\(.\)' 2>/dev/null ||
+echo X/"$0" |
+ sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
+ /^X\/\(\/\/\)$/{ s//\1/; q; }
+ /^X\/\(\/\).*/{ s//\1/; q; }
+ s/.*/./; q'`
+
+# PATH needs CR, and LINENO needs CR and PATH.
+# Avoid depending upon Character Ranges.
+as_cr_letters='abcdefghijklmnopqrstuvwxyz'
+as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
+as_cr_Letters=$as_cr_letters$as_cr_LETTERS
+as_cr_digits='0123456789'
+as_cr_alnum=$as_cr_Letters$as_cr_digits
+
+# The user is always right.
+if test "${PATH_SEPARATOR+set}" != set; then
+ echo "#! /bin/sh" >conftest.sh
+ echo "exit 0" >>conftest.sh
+ chmod +x conftest.sh
+ if (PATH=".;."; conftest.sh) >/dev/null 2>&1; then
+ PATH_SEPARATOR=';'
+ else
+ PATH_SEPARATOR=:
+ fi
+ rm -f conftest.sh
+fi
+
+
+ as_lineno_1=$LINENO
+ as_lineno_2=$LINENO
+ as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
+ test "x$as_lineno_1" != "x$as_lineno_2" &&
+ test "x$as_lineno_3" = "x$as_lineno_2" || {
+ # Find who we are. Look in the path if we contain no path at all
+ # relative or not.
+ case $0 in
+ *[\\/]* ) as_myself=$0 ;;
+ *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
+done
+
+ ;;
+ esac
+ # We did not find ourselves, most probably we were run as `sh COMMAND'
+ # in which case we are not to be found in the path.
+ if test "x$as_myself" = x; then
+ as_myself=$0
+ fi
+ if test ! -f "$as_myself"; then
+ { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5
+echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;}
+ { (exit 1); exit 1; }; }
+ fi
+ case $CONFIG_SHELL in
+ '')
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for as_base in sh bash ksh sh5; do
+ case $as_dir in
+ /*)
+ if ("$as_dir/$as_base" -c '
+ as_lineno_1=$LINENO
+ as_lineno_2=$LINENO
+ as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
+ test "x$as_lineno_1" != "x$as_lineno_2" &&
+ test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
+ CONFIG_SHELL=$as_dir/$as_base
+ export CONFIG_SHELL
+ exec "$CONFIG_SHELL" "$0" ${1+"$@"}
+ fi;;
+ esac
+ done
+done
+;;
+ esac
+
+ # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
+ # uniformly replaced by the line number. The first 'sed' inserts a
+ # line-number line before each line; the second 'sed' does the real
+ # work. The second script uses 'N' to pair each line-number line
+ # with the numbered line, and appends trailing '-' during
+ # substitution so that $LINENO is not a special case at line end.
+ # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
+ # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
+ sed '=' <$as_myself |
+ sed '
+ N
+ s,$,-,
+ : loop
+ s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
+ t loop
+ s,-$,,
+ s,^['$as_cr_digits']*\n,,
+ ' >$as_me.lineno &&
+ chmod +x $as_me.lineno ||
+ { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5
+echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;}
+ { (exit 1); exit 1; }; }
+
+ # Don't try to exec as it changes $[0], causing all sort of problems
+ # (the dirname of $[0] is not the place where we might find the
+ # original and so on. Autoconf is especially sensible to this).
+ . ./$as_me.lineno
+ # Exit status is that of the last command.
+ exit
+}
+
+
+case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
+ *c*,-n*) ECHO_N= ECHO_C='
+' ECHO_T=' ' ;;
+ *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
+ *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
+esac
+
+if expr a : '\(a\)' >/dev/null 2>&1; then
+ as_expr=expr
+else
+ as_expr=false
+fi
+
+rm -f conf$$ conf$$.exe conf$$.file
+echo >conf$$.file
+if ln -s conf$$.file conf$$ 2>/dev/null; then
+ # We could just check for DJGPP; but this test a) works b) is more generic
+ # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
+ if test -f conf$$.exe; then
+ # Don't use ln at all; we don't have any links
+ as_ln_s='cp -p'
+ else
+ as_ln_s='ln -s'
+ fi
+elif ln conf$$.file conf$$ 2>/dev/null; then
+ as_ln_s=ln
+else
+ as_ln_s='cp -p'
+fi
+rm -f conf$$ conf$$.exe conf$$.file
+
+as_executable_p="test -f"
+
+# Sed expression to map a string onto a valid CPP name.
+as_tr_cpp="sed y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g"
+
+# Sed expression to map a string onto a valid variable name.
+as_tr_sh="sed y%*+%pp%;s%[^_$as_cr_alnum]%_%g"
+
+
+# IFS
+# We need space, tab and new line, in precisely that order.
+as_nl='
+'
+IFS=" $as_nl"
+
+# CDPATH.
+$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=$PATH_SEPARATOR; export CDPATH; }
+
+exec 6>&1
+
+# Open the log real soon, to keep \$[0] and so on meaningful, and to
+# report actual input values of CONFIG_FILES etc. instead of their
+# values after options handling. Logging --version etc. is OK.
+exec 5>>config.log
+{
+ echo
+ sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
+## Running $as_me. ##
+_ASBOX
+} >&5
+cat >&5 <<_CSEOF
+
+This file was extended by $as_me, which was
+generated by GNU Autoconf 2.53. Invocation command line was
+
+ CONFIG_FILES = $CONFIG_FILES
+ CONFIG_HEADERS = $CONFIG_HEADERS
+ CONFIG_LINKS = $CONFIG_LINKS
+ CONFIG_COMMANDS = $CONFIG_COMMANDS
+ $ $0 $@
+
+_CSEOF
+echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5
+echo >&5
+_ACEOF
+
+# Files that config.status was made for.
+if test -n "$ac_config_files"; then
+ echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS
+fi
+
+if test -n "$ac_config_headers"; then
+ echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS
+fi
+
+if test -n "$ac_config_links"; then
+ echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS
+fi
+
+if test -n "$ac_config_commands"; then
+ echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS
+fi
+
+cat >>$CONFIG_STATUS <<\_ACEOF
+
+ac_cs_usage="\
+\`$as_me' instantiates files from templates according to the
+current configuration.
+
+Usage: $0 [OPTIONS] [FILE]...
+
+ -h, --help print this help, then exit
+ -V, --version print version number, then exit
+ -d, --debug don't remove temporary files
+ --recheck update $as_me by reconfiguring in the same conditions
+ --file=FILE[:TEMPLATE]
+ instantiate the configuration file FILE
+ --header=FILE[:TEMPLATE]
+ instantiate the configuration header FILE
+
+Configuration files:
+$config_files
+
+Configuration headers:
+$config_headers
+
+Configuration commands:
+$config_commands
+
+Report bugs to ."
+_ACEOF
+
+cat >>$CONFIG_STATUS <<_ACEOF
+ac_cs_version="\\
+config.status
+configured by $0, generated by GNU Autoconf 2.53,
+ with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
+
+Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
+Free Software Foundation, Inc.
+This config.status script is free software; the Free Software Foundation
+gives unlimited permission to copy, distribute and modify it."
+srcdir=$srcdir
+INSTALL="$INSTALL"
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF
+# If no file are specified by the user, then we need to provide default
+# value. By we need to know if files were specified by the user.
+ac_need_defaults=:
+while test $# != 0
+do
+ case $1 in
+ --*=*)
+ ac_option=`expr "x$1" : 'x\([^=]*\)='`
+ ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
+ shift
+ set dummy "$ac_option" "$ac_optarg" ${1+"$@"}
+ shift
+ ;;
+ -*);;
+ *) # This is not an option, so the user has probably given explicit
+ # arguments.
+ ac_need_defaults=false;;
+ esac
+
+ case $1 in
+ # Handling of the options.
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
+ echo "running $SHELL $0 " $ac_configure_args " --no-create --no-recursion"
+ exec $SHELL $0 $ac_configure_args --no-create --no-recursion ;;
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF
+ --version | --vers* | -V )
+ echo "$ac_cs_version"; exit 0 ;;
+ --he | --h)
+ # Conflict between --help and --header
+ { { echo "$as_me:$LINENO: error: ambiguous option: $1
+Try \`$0 --help' for more information." >&5
+echo "$as_me: error: ambiguous option: $1
+Try \`$0 --help' for more information." >&2;}
+ { (exit 1); exit 1; }; };;
+ --help | --hel | -h )
+ echo "$ac_cs_usage"; exit 0 ;;
+ --debug | --d* | -d )
+ debug=: ;;
+ --file | --fil | --fi | --f )
+ shift
+ CONFIG_FILES="$CONFIG_FILES $1"
+ ac_need_defaults=false;;
+ --header | --heade | --head | --hea )
+ shift
+ CONFIG_HEADERS="$CONFIG_HEADERS $1"
+ ac_need_defaults=false;;
+
+ # This is an error.
+ -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
+Try \`$0 --help' for more information." >&5
+echo "$as_me: error: unrecognized option: $1
+Try \`$0 --help' for more information." >&2;}
+ { (exit 1); exit 1; }; } ;;
+
+ *) ac_config_targets="$ac_config_targets $1" ;;
+
+ esac
+ shift
+done
+
+_ACEOF
+
+cat >>$CONFIG_STATUS <<_ACEOF
+#
+# INIT-COMMANDS section.
+#
+
+
+
+_ACEOF
+
+
+
+cat >>$CONFIG_STATUS <<\_ACEOF
+for ac_config_target in $ac_config_targets
+do
+ case "$ac_config_target" in
+ # Handling of arguments.
+ "libxml.spec" ) CONFIG_FILES="$CONFIG_FILES libxml.spec" ;;
+ "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
+ "include/Makefile" ) CONFIG_FILES="$CONFIG_FILES include/Makefile" ;;
+ "include/libxml/Makefile" ) CONFIG_FILES="$CONFIG_FILES include/libxml/Makefile" ;;
+ "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
+ "example/Makefile" ) CONFIG_FILES="$CONFIG_FILES example/Makefile" ;;
+ "python/Makefile" ) CONFIG_FILES="$CONFIG_FILES python/Makefile" ;;
+ "python/tests/Makefile" ) CONFIG_FILES="$CONFIG_FILES python/tests/Makefile" ;;
+ "include/libxml/xmlversion.h" ) CONFIG_FILES="$CONFIG_FILES include/libxml/xmlversion.h" ;;
+ "xml2-config" ) CONFIG_FILES="$CONFIG_FILES xml2-config" ;;
+ "libxml-2.0.pc" ) CONFIG_FILES="$CONFIG_FILES libxml-2.0.pc" ;;
+ "xml2Conf.sh" ) CONFIG_FILES="$CONFIG_FILES xml2Conf.sh" ;;
+ "python/setup.py" ) CONFIG_FILES="$CONFIG_FILES python/setup.py" ;;
+ "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
+ "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
+ *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
+echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
+ { (exit 1); exit 1; }; };;
+ esac
+done
+
+# If the user did not use the arguments to specify the items to instantiate,
+# then the envvar interface is used. Set only those that are not.
+# We use the long form for the default assignment because of an extremely
+# bizarre bug on SunOS 4.1.3.
+if $ac_need_defaults; then
+ test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
+ test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
+ test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
+fi
+
+# Create a temporary directory, and hook for its removal unless debugging.
+$debug ||
+{
+ trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0
+ trap '{ (exit 1); exit 1; }' 1 2 13 15
+}
+
+# Create a (secure) tmp directory for tmp files.
+: ${TMPDIR=/tmp}
+{
+ tmp=`(umask 077 && mktemp -d -q "$TMPDIR/csXXXXXX") 2>/dev/null` &&
+ test -n "$tmp" && test -d "$tmp"
+} ||
+{
+ tmp=$TMPDIR/cs$$-$RANDOM
+ (umask 077 && mkdir $tmp)
+} ||
+{
+ echo "$me: cannot create a temporary directory in $TMPDIR" >&2
+ { (exit 1); exit 1; }
+}
+
+_ACEOF
+
+cat >>$CONFIG_STATUS <<_ACEOF
+
+#
+# CONFIG_FILES section.
+#
+
+# No need to generate the scripts if there are no CONFIG_FILES.
+# This happens for instance when ./config.status config.h
+if test -n "\$CONFIG_FILES"; then
+ # Protect against being on the right side of a sed subst in config.status.
+ sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g;
+ s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF
+s,@SHELL@,$SHELL,;t t
+s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t
+s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t
+s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t
+s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t
+s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t
+s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t
+s,@exec_prefix@,$exec_prefix,;t t
+s,@prefix@,$prefix,;t t
+s,@program_transform_name@,$program_transform_name,;t t
+s,@bindir@,$bindir,;t t
+s,@sbindir@,$sbindir,;t t
+s,@libexecdir@,$libexecdir,;t t
+s,@datadir@,$datadir,;t t
+s,@sysconfdir@,$sysconfdir,;t t
+s,@sharedstatedir@,$sharedstatedir,;t t
+s,@localstatedir@,$localstatedir,;t t
+s,@libdir@,$libdir,;t t
+s,@includedir@,$includedir,;t t
+s,@oldincludedir@,$oldincludedir,;t t
+s,@infodir@,$infodir,;t t
+s,@mandir@,$mandir,;t t
+s,@build_alias@,$build_alias,;t t
+s,@host_alias@,$host_alias,;t t
+s,@target_alias@,$target_alias,;t t
+s,@DEFS@,$DEFS,;t t
+s,@ECHO_C@,$ECHO_C,;t t
+s,@ECHO_N@,$ECHO_N,;t t
+s,@ECHO_T@,$ECHO_T,;t t
+s,@LIBS@,$LIBS,;t t
+s,@build@,$build,;t t
+s,@build_cpu@,$build_cpu,;t t
+s,@build_vendor@,$build_vendor,;t t
+s,@build_os@,$build_os,;t t
+s,@host@,$host,;t t
+s,@host_cpu@,$host_cpu,;t t
+s,@host_vendor@,$host_vendor,;t t
+s,@host_os@,$host_os,;t t
+s,@LIBXML_MAJOR_VERSION@,$LIBXML_MAJOR_VERSION,;t t
+s,@LIBXML_MINOR_VERSION@,$LIBXML_MINOR_VERSION,;t t
+s,@LIBXML_MICRO_VERSION@,$LIBXML_MICRO_VERSION,;t t
+s,@LIBXML_VERSION@,$LIBXML_VERSION,;t t
+s,@LIBXML_VERSION_INFO@,$LIBXML_VERSION_INFO,;t t
+s,@LIBXML_VERSION_NUMBER@,$LIBXML_VERSION_NUMBER,;t t
+s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
+s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
+s,@INSTALL_DATA@,$INSTALL_DATA,;t t
+s,@PACKAGE@,$PACKAGE,;t t
+s,@VERSION@,$VERSION,;t t
+s,@ACLOCAL@,$ACLOCAL,;t t
+s,@AUTOCONF@,$AUTOCONF,;t t
+s,@AUTOMAKE@,$AUTOMAKE,;t t
+s,@AUTOHEADER@,$AUTOHEADER,;t t
+s,@MAKEINFO@,$MAKEINFO,;t t
+s,@SET_MAKE@,$SET_MAKE,;t t
+s,@CC@,$CC,;t t
+s,@CFLAGS@,$CFLAGS,;t t
+s,@LDFLAGS@,$LDFLAGS,;t t
+s,@CPPFLAGS@,$CPPFLAGS,;t t
+s,@ac_ct_CC@,$ac_ct_CC,;t t
+s,@EXEEXT@,$EXEEXT,;t t
+s,@OBJEXT@,$OBJEXT,;t t
+s,@CPP@,$CPP,;t t
+s,@RM@,$RM,;t t
+s,@MV@,$MV,;t t
+s,@TAR@,$TAR,;t t
+s,@U@,$U,;t t
+s,@ANSI2KNR@,$ANSI2KNR,;t t
+s,@LN_S@,$LN_S,;t t
+s,@ECHO@,$ECHO,;t t
+s,@RANLIB@,$RANLIB,;t t
+s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t
+s,@STRIP@,$STRIP,;t t
+s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t
+s,@LIBTOOL@,$LIBTOOL,;t t
+s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t
+s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MODE_FALSE,;t t
+s,@MAINT@,$MAINT,;t t
+s,@Z_CFLAGS@,$Z_CFLAGS,;t t
+s,@Z_LIBS@,$Z_LIBS,;t t
+s,@HTML_DIR@,$HTML_DIR,;t t
+s,@PYTHON@,$PYTHON,;t t
+s,@WITH_PYTHON_TRUE@,$WITH_PYTHON_TRUE,;t t
+s,@WITH_PYTHON_FALSE@,$WITH_PYTHON_FALSE,;t t
+s,@PYTHON_SUBDIR@,$PYTHON_SUBDIR,;t t
+s,@WITH_TRIO_SOURCES_TRUE@,$WITH_TRIO_SOURCES_TRUE,;t t
+s,@WITH_TRIO_SOURCES_FALSE@,$WITH_TRIO_SOURCES_FALSE,;t t
+s,@WITH_TRIO@,$WITH_TRIO,;t t
+s,@THREAD_LIBS@,$THREAD_LIBS,;t t
+s,@WITH_THREADS@,$WITH_THREADS,;t t
+s,@THREAD_CFLAGS@,$THREAD_CFLAGS,;t t
+s,@TEST_THREADS@,$TEST_THREADS,;t t
+s,@WITH_FTP@,$WITH_FTP,;t t
+s,@FTP_OBJ@,$FTP_OBJ,;t t
+s,@WITH_HTTP@,$WITH_HTTP,;t t
+s,@HTTP_OBJ@,$HTTP_OBJ,;t t
+s,@WITH_HTML@,$WITH_HTML,;t t
+s,@HTML_OBJ@,$HTML_OBJ,;t t
+s,@WITH_CATALOG@,$WITH_CATALOG,;t t
+s,@CATALOG_OBJ@,$CATALOG_OBJ,;t t
+s,@WITH_DOCB@,$WITH_DOCB,;t t
+s,@DOCB_OBJ@,$DOCB_OBJ,;t t
+s,@WITH_XPATH@,$WITH_XPATH,;t t
+s,@XPATH_OBJ@,$XPATH_OBJ,;t t
+s,@WITH_XPTR@,$WITH_XPTR,;t t
+s,@XPTR_OBJ@,$XPTR_OBJ,;t t
+s,@WITH_C14N@,$WITH_C14N,;t t
+s,@C14N_OBJ@,$C14N_OBJ,;t t
+s,@WITH_XINCLUDE@,$WITH_XINCLUDE,;t t
+s,@XINCLUDE_OBJ@,$XINCLUDE_OBJ,;t t
+s,@WITH_ICONV@,$WITH_ICONV,;t t
+s,@WITH_SCHEMAS@,$WITH_SCHEMAS,;t t
+s,@TEST_SCHEMAS@,$TEST_SCHEMAS,;t t
+s,@WITH_REGEXPS@,$WITH_REGEXPS,;t t
+s,@TEST_REGEXPS@,$TEST_REGEXPS,;t t
+s,@WITH_DEBUG@,$WITH_DEBUG,;t t
+s,@DEBUG_OBJ@,$DEBUG_OBJ,;t t
+s,@WITH_MEM_DEBUG@,$WITH_MEM_DEBUG,;t t
+s,@XML_CFLAGS@,$XML_CFLAGS,;t t
+s,@XML_LIBDIR@,$XML_LIBDIR,;t t
+s,@XML_LIBS@,$XML_LIBS,;t t
+s,@ICONV_LIBS@,$ICONV_LIBS,;t t
+s,@XML_INCLUDEDIR@,$XML_INCLUDEDIR,;t t
+s,@HAVE_ISNAN@,$HAVE_ISNAN,;t t
+s,@HAVE_ISINF@,$HAVE_ISINF,;t t
+s,@PYTHON_VERSION@,$PYTHON_VERSION,;t t
+s,@PYTHON_INCLUDES@,$PYTHON_INCLUDES,;t t
+s,@PYTHON_SITE_PACKAGES@,$PYTHON_SITE_PACKAGES,;t t
+s,@M_LIBS@,$M_LIBS,;t t
+s,@RDL_LIBS@,$RDL_LIBS,;t t
+CEOF
+
+_ACEOF
+
+ cat >>$CONFIG_STATUS <<\_ACEOF
+ # Split the substitutions into bite-sized pieces for seds with
+ # small command number limits, like on Digital OSF/1 and HP-UX.
+ ac_max_sed_lines=48
+ ac_sed_frag=1 # Number of current file.
+ ac_beg=1 # First line for current file.
+ ac_end=$ac_max_sed_lines # Line after last line for current file.
+ ac_more_lines=:
+ ac_sed_cmds=
+ while $ac_more_lines; do
+ if test $ac_beg -gt 1; then
+ sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+ else
+ sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag
+ fi
+ if test ! -s $tmp/subs.frag; then
+ ac_more_lines=false
+ else
+ # The purpose of the label and of the branching condition is to
+ # speed up the sed processing (if there are no `@' at all, there
+ # is no need to browse any of the substitutions).
+ # These are the two extra sed commands mentioned above.
+ (echo ':t
+ /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed
+ if test -z "$ac_sed_cmds"; then
+ ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed"
+ else
+ ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed"
+ fi
+ ac_sed_frag=`expr $ac_sed_frag + 1`
+ ac_beg=$ac_end
+ ac_end=`expr $ac_end + $ac_max_sed_lines`
+ fi
+ done
+ if test -z "$ac_sed_cmds"; then
+ ac_sed_cmds=cat
+ fi
+fi # test -n "$CONFIG_FILES"
+
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF
+for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue
+ # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
+ case $ac_file in
+ - | *:- | *:-:* ) # input from stdin
+ cat >$tmp/stdin
+ ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+ *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+ * ) ac_file_in=$ac_file.in ;;
+ esac
+
+ # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories.
+ ac_dir=`(dirname "$ac_file") 2>/dev/null ||
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$ac_file" : 'X\(//\)[^/]' \| \
+ X"$ac_file" : 'X\(//\)$' \| \
+ X"$ac_file" : 'X\(/\)' \| \
+ . : '\(.\)' 2>/dev/null ||
+echo X"$ac_file" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+ /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+ /^X\(\/\/\)$/{ s//\1/; q; }
+ /^X\(\/\).*/{ s//\1/; q; }
+ s/.*/./; q'`
+ { case "$ac_dir" in
+ [\\/]* | ?:[\\/]* ) as_incr_dir=;;
+ *) as_incr_dir=.;;
+esac
+as_dummy="$ac_dir"
+for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
+ case $as_mkdir_dir in
+ # Skip DOS drivespec
+ ?:) as_incr_dir=$as_mkdir_dir ;;
+ *)
+ as_incr_dir=$as_incr_dir/$as_mkdir_dir
+ test -d "$as_incr_dir" ||
+ mkdir "$as_incr_dir" ||
+ { { echo "$as_me:$LINENO: error: cannot create \"$ac_dir\"" >&5
+echo "$as_me: error: cannot create \"$ac_dir\"" >&2;}
+ { (exit 1); exit 1; }; }
+ ;;
+ esac
+done; }
+
+ ac_builddir=.
+
+if test "$ac_dir" != .; then
+ ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
+ # A "../" for each directory in $ac_dir_suffix.
+ ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+else
+ ac_dir_suffix= ac_top_builddir=
+fi
+
+case $srcdir in
+ .) # No --srcdir option. We are building in place.
+ ac_srcdir=.
+ if test -z "$ac_top_builddir"; then
+ ac_top_srcdir=.
+ else
+ ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+ fi ;;
+ [\\/]* | ?:[\\/]* ) # Absolute path.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir ;;
+ *) # Relative path.
+ ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_builddir$srcdir ;;
+esac
+# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
+# absolute.
+ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
+ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
+ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
+ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
+
+
+ case $INSTALL in
+ [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
+ *) ac_INSTALL=$ac_top_builddir$INSTALL ;;
+ esac
+
+ if test x"$ac_file" != x-; then
+ { echo "$as_me:$LINENO: creating $ac_file" >&5
+echo "$as_me: creating $ac_file" >&6;}
+ rm -f "$ac_file"
+ fi
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
+ # use $as_me), people would be surprised to read:
+ # /* config.h. Generated by config.status. */
+ if test x"$ac_file" = x-; then
+ configure_input=
+ else
+ configure_input="$ac_file. "
+ fi
+ configure_input=$configure_input"Generated from `echo $ac_file_in |
+ sed 's,.*/,,'` by configure."
+
+ # First look for the input files in the build tree, otherwise in the
+ # src tree.
+ ac_file_inputs=`IFS=:
+ for f in $ac_file_in; do
+ case $f in
+ -) echo $tmp/stdin ;;
+ [\\/$]*)
+ # Absolute (can't be DOS-style, as IFS=:)
+ test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+echo "$as_me: error: cannot find input file: $f" >&2;}
+ { (exit 1); exit 1; }; }
+ echo $f;;
+ *) # Relative
+ if test -f "$f"; then
+ # Build tree
+ echo $f
+ elif test -f "$srcdir/$f"; then
+ # Source tree
+ echo $srcdir/$f
+ else
+ # /dev/null tree
+ { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+echo "$as_me: error: cannot find input file: $f" >&2;}
+ { (exit 1); exit 1; }; }
+ fi;;
+ esac
+ done` || { (exit 1); exit 1; }
+_ACEOF
+cat >>$CONFIG_STATUS <<_ACEOF
+ sed "$ac_vpsub
+$extrasub
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF
+:t
+/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
+s,@configure_input@,$configure_input,;t t
+s,@srcdir@,$ac_srcdir,;t t
+s,@abs_srcdir@,$ac_abs_srcdir,;t t
+s,@top_srcdir@,$ac_top_srcdir,;t t
+s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t
+s,@builddir@,$ac_builddir,;t t
+s,@abs_builddir@,$ac_abs_builddir,;t t
+s,@top_builddir@,$ac_top_builddir,;t t
+s,@abs_top_builddir@,$ac_abs_top_builddir,;t t
+s,@INSTALL@,$ac_INSTALL,;t t
+" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out
+ rm -f $tmp/stdin
+ if test x"$ac_file" != x-; then
+ mv $tmp/out $ac_file
+ else
+ cat $tmp/out
+ rm -f $tmp/out
+ fi
+
+done
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF
+
+#
+# CONFIG_HEADER section.
+#
+
+# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
+# NAME is the cpp macro being defined and VALUE is the value it is being given.
+#
+# ac_d sets the value in "#define NAME VALUE" lines.
+ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
+ac_dB='[ ].*$,\1#\2'
+ac_dC=' '
+ac_dD=',;t'
+# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
+ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
+ac_uB='$,\1#\2define\3'
+ac_uC=' '
+ac_uD=',;t'
+
+for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
+ # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
+ case $ac_file in
+ - | *:- | *:-:* ) # input from stdin
+ cat >$tmp/stdin
+ ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+ *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
+ ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
+ * ) ac_file_in=$ac_file.in ;;
+ esac
+
+ test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
+echo "$as_me: creating $ac_file" >&6;}
+
+ # First look for the input files in the build tree, otherwise in the
+ # src tree.
+ ac_file_inputs=`IFS=:
+ for f in $ac_file_in; do
+ case $f in
+ -) echo $tmp/stdin ;;
+ [\\/$]*)
+ # Absolute (can't be DOS-style, as IFS=:)
+ test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+echo "$as_me: error: cannot find input file: $f" >&2;}
+ { (exit 1); exit 1; }; }
+ echo $f;;
+ *) # Relative
+ if test -f "$f"; then
+ # Build tree
+ echo $f
+ elif test -f "$srcdir/$f"; then
+ # Source tree
+ echo $srcdir/$f
+ else
+ # /dev/null tree
+ { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
+echo "$as_me: error: cannot find input file: $f" >&2;}
+ { (exit 1); exit 1; }; }
+ fi;;
+ esac
+ done` || { (exit 1); exit 1; }
+ # Remove the trailing spaces.
+ sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
+
+_ACEOF
+
+# Transform confdefs.h into two sed scripts, `conftest.defines' and
+# `conftest.undefs', that substitutes the proper values into
+# config.h.in to produce config.h. The first handles `#define'
+# templates, and the second `#undef' templates.
+# And first: Protect against being on the right side of a sed subst in
+# config.status. Protect against being in an unquoted here document
+# in config.status.
+rm -f conftest.defines conftest.undefs
+# Using a here document instead of a string reduces the quoting nightmare.
+# Putting comments in sed scripts is not portable.
+#
+# `end' is used to avoid that the second main sed command (meant for
+# 0-ary CPP macros) applies to n-ary macro definitions.
+# See the Autoconf documentation for `clear'.
+cat >confdef2sed.sed <<\_ACEOF
+s/[\\&,]/\\&/g
+s,[\\$`],\\&,g
+t clear
+: clear
+s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
+t end
+s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
+: end
+_ACEOF
+# If some macros were called several times there might be several times
+# the same #defines, which is useless. Nevertheless, we may not want to
+# sort them, since we want the *last* AC-DEFINE to be honored.
+uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
+sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
+rm -f confdef2sed.sed
+
+# This sed command replaces #undef with comments. This is necessary, for
+# example, in the case of _POSIX_SOURCE, which is predefined and required
+# on some systems where configure will not decide to define it.
+cat >>conftest.undefs <<\_ACEOF
+s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
+_ACEOF
+
+# Break up conftest.defines because some shells have a limit on the size
+# of here documents, and old seds have small limits too (100 cmds).
+echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
+echo ' if egrep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
+echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
+echo ' :' >>$CONFIG_STATUS
+rm -f conftest.tail
+while grep . conftest.defines >/dev/null
+do
+ # Write a limited-size here document to $tmp/defines.sed.
+ echo ' cat >$tmp/defines.sed <>$CONFIG_STATUS
+ # Speed up: don't consider the non `#define' lines.
+ echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS
+ # Work around the forget-to-reset-the-flag bug.
+ echo 't clr' >>$CONFIG_STATUS
+ echo ': clr' >>$CONFIG_STATUS
+ sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
+ echo 'CEOF
+ sed -f $tmp/defines.sed $tmp/in >$tmp/out
+ rm -f $tmp/in
+ mv $tmp/out $tmp/in
+' >>$CONFIG_STATUS
+ sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
+ rm -f conftest.defines
+ mv conftest.tail conftest.defines
+done
+rm -f conftest.defines
+echo ' fi # egrep' >>$CONFIG_STATUS
+echo >>$CONFIG_STATUS
+
+# Break up conftest.undefs because some shells have a limit on the size
+# of here documents, and old seds have small limits too (100 cmds).
+echo ' # Handle all the #undef templates' >>$CONFIG_STATUS
+rm -f conftest.tail
+while grep . conftest.undefs >/dev/null
+do
+ # Write a limited-size here document to $tmp/undefs.sed.
+ echo ' cat >$tmp/undefs.sed <>$CONFIG_STATUS
+ # Speed up: don't consider the non `#undef'
+ echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS
+ # Work around the forget-to-reset-the-flag bug.
+ echo 't clr' >>$CONFIG_STATUS
+ echo ': clr' >>$CONFIG_STATUS
+ sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
+ echo 'CEOF
+ sed -f $tmp/undefs.sed $tmp/in >$tmp/out
+ rm -f $tmp/in
+ mv $tmp/out $tmp/in
+' >>$CONFIG_STATUS
+ sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
+ rm -f conftest.undefs
+ mv conftest.tail conftest.undefs
+done
+rm -f conftest.undefs
+
+cat >>$CONFIG_STATUS <<\_ACEOF
+ # Let's still pretend it is `configure' which instantiates (i.e., don't
+ # use $as_me), people would be surprised to read:
+ # /* config.h. Generated by config.status. */
+ if test x"$ac_file" = x-; then
+ echo "/* Generated by configure. */" >$tmp/config.h
+ else
+ echo "/* $ac_file. Generated by configure. */" >$tmp/config.h
+ fi
+ cat $tmp/in >>$tmp/config.h
+ rm -f $tmp/in
+ if test x"$ac_file" != x-; then
+ if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
+ { echo "$as_me:$LINENO: $ac_file is unchanged" >&5
+echo "$as_me: $ac_file is unchanged" >&6;}
+ else
+ ac_dir=`(dirname "$ac_file") 2>/dev/null ||
+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$ac_file" : 'X\(//\)[^/]' \| \
+ X"$ac_file" : 'X\(//\)$' \| \
+ X"$ac_file" : 'X\(/\)' \| \
+ . : '\(.\)' 2>/dev/null ||
+echo X"$ac_file" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+ /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+ /^X\(\/\/\)$/{ s//\1/; q; }
+ /^X\(\/\).*/{ s//\1/; q; }
+ s/.*/./; q'`
+ { case "$ac_dir" in
+ [\\/]* | ?:[\\/]* ) as_incr_dir=;;
+ *) as_incr_dir=.;;
+esac
+as_dummy="$ac_dir"
+for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
+ case $as_mkdir_dir in
+ # Skip DOS drivespec
+ ?:) as_incr_dir=$as_mkdir_dir ;;
+ *)
+ as_incr_dir=$as_incr_dir/$as_mkdir_dir
+ test -d "$as_incr_dir" ||
+ mkdir "$as_incr_dir" ||
+ { { echo "$as_me:$LINENO: error: cannot create \"$ac_dir\"" >&5
+echo "$as_me: error: cannot create \"$ac_dir\"" >&2;}
+ { (exit 1); exit 1; }; }
+ ;;
+ esac
+done; }
+
+ rm -f $ac_file
+ mv $tmp/config.h $ac_file
+ fi
+ else
+ cat $tmp/config.h
+ rm -f $tmp/config.h
+ fi
+done
+_ACEOF
+cat >>$CONFIG_STATUS <<\_ACEOF
+
+#
+# CONFIG_COMMANDS section.
+#
+for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
+ ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
+ ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
+ ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
+$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
+ X"$ac_dest" : 'X\(//\)[^/]' \| \
+ X"$ac_dest" : 'X\(//\)$' \| \
+ X"$ac_dest" : 'X\(/\)' \| \
+ . : '\(.\)' 2>/dev/null ||
+echo X"$ac_dest" |
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
+ /^X\(\/\/\)[^/].*/{ s//\1/; q; }
+ /^X\(\/\/\)$/{ s//\1/; q; }
+ /^X\(\/\).*/{ s//\1/; q; }
+ s/.*/./; q'`
+ ac_builddir=.
+
+if test "$ac_dir" != .; then
+ ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
+ # A "../" for each directory in $ac_dir_suffix.
+ ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
+else
+ ac_dir_suffix= ac_top_builddir=
+fi
+
+case $srcdir in
+ .) # No --srcdir option. We are building in place.
+ ac_srcdir=.
+ if test -z "$ac_top_builddir"; then
+ ac_top_srcdir=.
+ else
+ ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
+ fi ;;
+ [\\/]* | ?:[\\/]* ) # Absolute path.
+ ac_srcdir=$srcdir$ac_dir_suffix;
+ ac_top_srcdir=$srcdir ;;
+ *) # Relative path.
+ ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix
+ ac_top_srcdir=$ac_top_builddir$srcdir ;;
+esac
+# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
+# absolute.
+ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
+ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
+ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
+ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
+
+
+ { echo "$as_me:$LINENO: executing $ac_dest commands" >&5
+echo "$as_me: executing $ac_dest commands" >&6;}
+ case $ac_dest in
+ default-1 ) test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h ;;
+ esac
+done
+_ACEOF
+
+cat >>$CONFIG_STATUS <<\_ACEOF
+
+{ (exit 0); exit 0; }
+_ACEOF
+chmod +x $CONFIG_STATUS
+ac_clean_files=$ac_clean_files_save
+
+
+# configure is writing to config.log, and then calls config.status.
+# config.status does its own redirection, appending to config.log.
+# Unfortunately, on DOS this fails, as config.log is still kept open
+# by configure, so config.status won't be able to write to it; its
+# output is simply discarded. So we exec the FD to /dev/null,
+# effectively closing config.log, so it can be properly (re)opened and
+# appended to by config.status. When coming back to configure, we
+# need to make the FD available again.
+if test "$no_create" != yes; then
+ ac_cs_success=:
+ exec 5>/dev/null
+ $SHELL $CONFIG_STATUS || ac_cs_success=false
+ exec 5>>config.log
+ # Use ||, not &&, to avoid exiting from the if with $? = 1, which
+ # would make configure fail if this is the last instruction.
+ $ac_cs_success || { (exit 1); exit 1; }
+fi
+
+
+chmod +x xml2-config xml2Conf.sh python/setup.py
diff --git a/src/external/3rd/library/libxml/debugXML.lo b/src/external/3rd/library/libxml/debugXML.lo
new file mode 100644
index 000000000..06f477cdd
Binary files /dev/null and b/src/external/3rd/library/libxml/debugXML.lo differ
diff --git a/src/external/3rd/library/libxml/encoding.lo b/src/external/3rd/library/libxml/encoding.lo
new file mode 100644
index 000000000..dc8a72948
Binary files /dev/null and b/src/external/3rd/library/libxml/encoding.lo differ
diff --git a/src/external/3rd/library/libxml/entities.lo b/src/external/3rd/library/libxml/entities.lo
new file mode 100644
index 000000000..d1829694a
Binary files /dev/null and b/src/external/3rd/library/libxml/entities.lo differ
diff --git a/src/external/3rd/library/libxml/error.lo b/src/external/3rd/library/libxml/error.lo
new file mode 100644
index 000000000..d9d44b4ee
Binary files /dev/null and b/src/external/3rd/library/libxml/error.lo differ
diff --git a/src/external/3rd/library/libxml/globals.lo b/src/external/3rd/library/libxml/globals.lo
new file mode 100644
index 000000000..d64bcf0b8
Binary files /dev/null and b/src/external/3rd/library/libxml/globals.lo differ
diff --git a/src/external/3rd/library/libxml/hash.lo b/src/external/3rd/library/libxml/hash.lo
new file mode 100644
index 000000000..bb06c74d2
Binary files /dev/null and b/src/external/3rd/library/libxml/hash.lo differ
diff --git a/src/external/3rd/library/libxml/include/Makefile b/src/external/3rd/library/libxml/include/Makefile
new file mode 100644
index 000000000..8b448555d
--- /dev/null
+++ b/src/external/3rd/library/libxml/include/Makefile
@@ -0,0 +1,346 @@
+# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
+
+# Copyright (C) 1994, 1995-8, 1999, 2001 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.
+
+
+SHELL = /bin/sh
+
+srcdir = .
+top_srcdir = ..
+
+prefix = /usr/local
+exec_prefix = ${prefix}
+
+bindir = ${exec_prefix}/bin
+sbindir = ${exec_prefix}/sbin
+libexecdir = ${exec_prefix}/libexec
+datadir = ${prefix}/share
+sysconfdir = ${prefix}/etc
+sharedstatedir = ${prefix}/com
+localstatedir = ${prefix}/var
+libdir = ${exec_prefix}/lib
+infodir = ${prefix}/info
+mandir = ${prefix}/man
+includedir = ${prefix}/include
+oldincludedir = /usr/include
+
+DESTDIR =
+
+pkgdatadir = $(datadir)/libxml2
+pkglibdir = $(libdir)/libxml2
+pkgincludedir = $(includedir)/libxml2
+
+top_builddir = ..
+
+ACLOCAL = aclocal-1.4
+AUTOCONF = autoconf
+AUTOMAKE = automake-1.4
+AUTOHEADER = autoheader
+
+INSTALL = /usr/bin/install -c
+INSTALL_PROGRAM = ${INSTALL} $(AM_INSTALL_PROGRAM_FLAGS)
+INSTALL_DATA = ${INSTALL} -m 644
+INSTALL_SCRIPT = ${INSTALL}
+transform = s,x,x,
+
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias =
+host_triplet = i686-pc-linux-gnu
+AS = @AS@
+C14N_OBJ = c14n.c
+CATALOG_OBJ = catalog.o
+CC = gcc
+CFLAGS = -g -O2 -Wall
+CPP = gcc -E
+DEBUG_OBJ = debugXML.o
+DLLTOOL = @DLLTOOL@
+DOCB_OBJ = DOCBparser.o
+ECHO = echo
+EXEEXT =
+FTP_OBJ = nanoftp.o
+HAVE_ISINF =
+HAVE_ISNAN =
+HTML_DIR = $(prefix)/doc
+HTML_OBJ = HTMLparser.o HTMLtree.o
+HTTP_OBJ = nanohttp.o
+ICONV_LIBS =
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
+LIBXML_MAJOR_VERSION = 2
+LIBXML_MICRO_VERSION = 28
+LIBXML_MINOR_VERSION = 4
+LIBXML_VERSION = 2.4.28
+LIBXML_VERSION_INFO = 6:28:4
+LIBXML_VERSION_NUMBER = 20428
+LN_S = ln -s
+MAINT = #
+MAKEINFO = makeinfo
+MV = /bin/mv
+M_LIBS = -lm
+OBJDUMP = @OBJDUMP@
+OBJEXT = o
+PACKAGE = libxml2
+PYTHON = /usr/bin/python
+PYTHON_INCLUDES = /usr/include/python1.5
+PYTHON_SITE_PACKAGES = /usr/lib/python1.5/site-packages
+PYTHON_SUBDIR = python
+PYTHON_VERSION = 1.5
+RANLIB = ranlib
+RDL_LIBS =
+RM = /bin/rm
+STRIP = strip
+TAR = /bin/tar
+TEST_REGEXPS = Regexptests Automatatests
+TEST_SCHEMAS =
+TEST_THREADS =
+THREAD_CFLAGS =
+THREAD_LIBS =
+U =
+VERSION = 2.4.28
+WITH_C14N = 1
+WITH_CATALOG = 1
+WITH_DEBUG = 1
+WITH_DOCB = 1
+WITH_FTP = 1
+WITH_HTML = 1
+WITH_HTTP = 1
+WITH_ICONV = 1
+WITH_MEM_DEBUG = 0
+WITH_REGEXPS = 1
+WITH_SCHEMAS = 0
+WITH_THREADS = 0
+WITH_TRIO = 0
+WITH_XINCLUDE = 1
+WITH_XPATH = 1
+WITH_XPTR = 1
+XINCLUDE_OBJ = xinclude.o
+XML_CFLAGS =
+XML_INCLUDEDIR = -I${includedir}/libxml2
+XML_LIBDIR = -L${libdir}
+XML_LIBS = -lxml2 -lz -lm
+XPATH_OBJ = xpath.o
+XPTR_OBJ = xpointer.o
+Z_CFLAGS =
+Z_LIBS = -lz
+
+SUBDIRS = libxml
+
+EXTRA_DIST = win32config.h wsockcompat.h
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_HEADER = ../config.h
+CONFIG_CLEAN_FILES =
+DIST_COMMON = Makefile.am Makefile.in
+
+
+DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
+
+GZIP_ENV = --best
+all: all-redirect
+.SUFFIXES:
+$(srcdir)/Makefile.in: # Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps include/Makefile
+
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) \
+ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+
+# 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.
+
+
+
+all-recursive install-data-recursive install-exec-recursive \
+installdirs-recursive install-recursive uninstall-recursive \
+check-recursive installcheck-recursive info-recursive dvi-recursive:
+ @set fnord $(MAKEFLAGS); amf=$$2; \
+ 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) \
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+ 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:
+ @set fnord $(MAKEFLAGS); amf=$$2; \
+ dot_seen=no; \
+ rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
+ rev="$$subdir $$rev"; \
+ test "$$subdir" != "." || dot_seen=yes; \
+ done; \
+ test "$$dot_seen" = "no" && 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) \
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+ done && test -z "$$fail"
+tags-recursive:
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+ done
+
+tags: TAGS
+
+ID: $(HEADERS) $(SOURCES) $(LISP)
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ here=`pwd` && cd $(srcdir) \
+ && mkid -f$$here/ID $$unique $(LISP)
+
+TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
+ tags=; \
+ here=`pwd`; \
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ if test "$$subdir" = .; then :; else \
+ test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
+ fi; \
+ done; \
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
+ || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)
+
+mostlyclean-tags:
+
+clean-tags:
+
+distclean-tags:
+ -rm -f TAGS ID
+
+maintainer-clean-tags:
+
+distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
+
+subdir = include
+
+distdir: $(DISTFILES)
+ @for file in $(DISTFILES); do \
+ d=$(srcdir); \
+ if test -d $$d/$$file; then \
+ cp -pr $$d/$$file $(distdir)/$$file; \
+ else \
+ test -f $(distdir)/$$file \
+ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
+ || cp -p $$d/$$file $(distdir)/$$file || :; \
+ fi; \
+ done
+ for subdir in $(SUBDIRS); do \
+ if test "$$subdir" = .; then :; else \
+ test -d $(distdir)/$$subdir \
+ || mkdir $(distdir)/$$subdir \
+ || exit 1; \
+ chmod 777 $(distdir)/$$subdir; \
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
+ || exit 1; \
+ fi; \
+ done
+info-am:
+info: info-recursive
+dvi-am:
+dvi: dvi-recursive
+check-am: all-am
+check: check-recursive
+installcheck-am:
+installcheck: installcheck-recursive
+install-exec-am:
+install-exec: install-exec-recursive
+
+install-data-am:
+install-data: install-data-recursive
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+install: install-recursive
+uninstall-am:
+uninstall: uninstall-recursive
+all-am: Makefile
+all-redirect: all-recursive
+install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
+installdirs: installdirs-recursive
+installdirs-am:
+
+
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f config.cache config.log stamp-h stamp-h[0-9]*
+
+maintainer-clean-generic:
+mostlyclean-am: mostlyclean-tags mostlyclean-generic
+
+mostlyclean: mostlyclean-recursive
+
+clean-am: clean-tags clean-generic mostlyclean-am
+
+clean: clean-recursive
+
+distclean-am: distclean-tags distclean-generic clean-am
+ -rm -f libtool
+
+distclean: distclean-recursive
+
+maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \
+ distclean-am
+ @echo "This command is intended for maintainers to use;"
+ @echo "it deletes files that may require special tools to rebuild."
+
+maintainer-clean: maintainer-clean-recursive
+
+.PHONY: install-data-recursive uninstall-data-recursive \
+install-exec-recursive uninstall-exec-recursive installdirs-recursive \
+uninstalldirs-recursive all-recursive check-recursive \
+installcheck-recursive info-recursive dvi-recursive \
+mostlyclean-recursive distclean-recursive clean-recursive \
+maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
+distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
+dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
+install-exec install-data-am install-data install-am install \
+uninstall-am uninstall all-redirect all-am all installdirs-am \
+installdirs mostlyclean-generic distclean-generic clean-generic \
+maintainer-clean-generic clean mostlyclean distclean maintainer-clean
+
+
+# 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/src/external/3rd/library/libxml/include/Makefile.in b/src/external/3rd/library/libxml/include/Makefile.in
new file mode 100644
index 000000000..ef3f2f880
--- /dev/null
+++ b/src/external/3rd/library/libxml/include/Makefile.in
@@ -0,0 +1,346 @@
+# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
+
+# Copyright (C) 1994, 1995-8, 1999, 2001 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.
+
+
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+includedir = @includedir@
+oldincludedir = /usr/include
+
+DESTDIR =
+
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+
+top_builddir = ..
+
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+transform = @program_transform_name@
+
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias = @host_alias@
+host_triplet = @host@
+AS = @AS@
+C14N_OBJ = @C14N_OBJ@
+CATALOG_OBJ = @CATALOG_OBJ@
+CC = @CC@
+CFLAGS = @CFLAGS@
+CPP = @CPP@
+DEBUG_OBJ = @DEBUG_OBJ@
+DLLTOOL = @DLLTOOL@
+DOCB_OBJ = @DOCB_OBJ@
+ECHO = @ECHO@
+EXEEXT = @EXEEXT@
+FTP_OBJ = @FTP_OBJ@
+HAVE_ISINF = @HAVE_ISINF@
+HAVE_ISNAN = @HAVE_ISNAN@
+HTML_DIR = @HTML_DIR@
+HTML_OBJ = @HTML_OBJ@
+HTTP_OBJ = @HTTP_OBJ@
+ICONV_LIBS = @ICONV_LIBS@
+LIBTOOL = @LIBTOOL@
+LIBXML_MAJOR_VERSION = @LIBXML_MAJOR_VERSION@
+LIBXML_MICRO_VERSION = @LIBXML_MICRO_VERSION@
+LIBXML_MINOR_VERSION = @LIBXML_MINOR_VERSION@
+LIBXML_VERSION = @LIBXML_VERSION@
+LIBXML_VERSION_INFO = @LIBXML_VERSION_INFO@
+LIBXML_VERSION_NUMBER = @LIBXML_VERSION_NUMBER@
+LN_S = @LN_S@
+MAINT = @MAINT@
+MAKEINFO = @MAKEINFO@
+MV = @MV@
+M_LIBS = @M_LIBS@
+OBJDUMP = @OBJDUMP@
+OBJEXT = @OBJEXT@
+PACKAGE = @PACKAGE@
+PYTHON = @PYTHON@
+PYTHON_INCLUDES = @PYTHON_INCLUDES@
+PYTHON_SITE_PACKAGES = @PYTHON_SITE_PACKAGES@
+PYTHON_SUBDIR = @PYTHON_SUBDIR@
+PYTHON_VERSION = @PYTHON_VERSION@
+RANLIB = @RANLIB@
+RDL_LIBS = @RDL_LIBS@
+RM = @RM@
+STRIP = @STRIP@
+TAR = @TAR@
+TEST_REGEXPS = @TEST_REGEXPS@
+TEST_SCHEMAS = @TEST_SCHEMAS@
+TEST_THREADS = @TEST_THREADS@
+THREAD_CFLAGS = @THREAD_CFLAGS@
+THREAD_LIBS = @THREAD_LIBS@
+U = @U@
+VERSION = @VERSION@
+WITH_C14N = @WITH_C14N@
+WITH_CATALOG = @WITH_CATALOG@
+WITH_DEBUG = @WITH_DEBUG@
+WITH_DOCB = @WITH_DOCB@
+WITH_FTP = @WITH_FTP@
+WITH_HTML = @WITH_HTML@
+WITH_HTTP = @WITH_HTTP@
+WITH_ICONV = @WITH_ICONV@
+WITH_MEM_DEBUG = @WITH_MEM_DEBUG@
+WITH_REGEXPS = @WITH_REGEXPS@
+WITH_SCHEMAS = @WITH_SCHEMAS@
+WITH_THREADS = @WITH_THREADS@
+WITH_TRIO = @WITH_TRIO@
+WITH_XINCLUDE = @WITH_XINCLUDE@
+WITH_XPATH = @WITH_XPATH@
+WITH_XPTR = @WITH_XPTR@
+XINCLUDE_OBJ = @XINCLUDE_OBJ@
+XML_CFLAGS = @XML_CFLAGS@
+XML_INCLUDEDIR = @XML_INCLUDEDIR@
+XML_LIBDIR = @XML_LIBDIR@
+XML_LIBS = @XML_LIBS@
+XPATH_OBJ = @XPATH_OBJ@
+XPTR_OBJ = @XPTR_OBJ@
+Z_CFLAGS = @Z_CFLAGS@
+Z_LIBS = @Z_LIBS@
+
+SUBDIRS = libxml
+
+EXTRA_DIST = win32config.h wsockcompat.h
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_HEADER = ../config.h
+CONFIG_CLEAN_FILES =
+DIST_COMMON = Makefile.am Makefile.in
+
+
+DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
+
+GZIP_ENV = --best
+all: all-redirect
+.SUFFIXES:
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps include/Makefile
+
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) \
+ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+
+# 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.
+
+@SET_MAKE@
+
+all-recursive install-data-recursive install-exec-recursive \
+installdirs-recursive install-recursive uninstall-recursive \
+check-recursive installcheck-recursive info-recursive dvi-recursive:
+ @set fnord $(MAKEFLAGS); amf=$$2; \
+ 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) \
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+ 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:
+ @set fnord $(MAKEFLAGS); amf=$$2; \
+ dot_seen=no; \
+ rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
+ rev="$$subdir $$rev"; \
+ test "$$subdir" != "." || dot_seen=yes; \
+ done; \
+ test "$$dot_seen" = "no" && 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) \
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+ done && test -z "$$fail"
+tags-recursive:
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
+ done
+
+tags: TAGS
+
+ID: $(HEADERS) $(SOURCES) $(LISP)
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ here=`pwd` && cd $(srcdir) \
+ && mkid -f$$here/ID $$unique $(LISP)
+
+TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
+ tags=; \
+ here=`pwd`; \
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ if test "$$subdir" = .; then :; else \
+ test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
+ fi; \
+ done; \
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
+ || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)
+
+mostlyclean-tags:
+
+clean-tags:
+
+distclean-tags:
+ -rm -f TAGS ID
+
+maintainer-clean-tags:
+
+distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
+
+subdir = include
+
+distdir: $(DISTFILES)
+ @for file in $(DISTFILES); do \
+ d=$(srcdir); \
+ if test -d $$d/$$file; then \
+ cp -pr $$d/$$file $(distdir)/$$file; \
+ else \
+ test -f $(distdir)/$$file \
+ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
+ || cp -p $$d/$$file $(distdir)/$$file || :; \
+ fi; \
+ done
+ for subdir in $(SUBDIRS); do \
+ if test "$$subdir" = .; then :; else \
+ test -d $(distdir)/$$subdir \
+ || mkdir $(distdir)/$$subdir \
+ || exit 1; \
+ chmod 777 $(distdir)/$$subdir; \
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \
+ || exit 1; \
+ fi; \
+ done
+info-am:
+info: info-recursive
+dvi-am:
+dvi: dvi-recursive
+check-am: all-am
+check: check-recursive
+installcheck-am:
+installcheck: installcheck-recursive
+install-exec-am:
+install-exec: install-exec-recursive
+
+install-data-am:
+install-data: install-data-recursive
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+install: install-recursive
+uninstall-am:
+uninstall: uninstall-recursive
+all-am: Makefile
+all-redirect: all-recursive
+install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
+installdirs: installdirs-recursive
+installdirs-am:
+
+
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f config.cache config.log stamp-h stamp-h[0-9]*
+
+maintainer-clean-generic:
+mostlyclean-am: mostlyclean-tags mostlyclean-generic
+
+mostlyclean: mostlyclean-recursive
+
+clean-am: clean-tags clean-generic mostlyclean-am
+
+clean: clean-recursive
+
+distclean-am: distclean-tags distclean-generic clean-am
+ -rm -f libtool
+
+distclean: distclean-recursive
+
+maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \
+ distclean-am
+ @echo "This command is intended for maintainers to use;"
+ @echo "it deletes files that may require special tools to rebuild."
+
+maintainer-clean: maintainer-clean-recursive
+
+.PHONY: install-data-recursive uninstall-data-recursive \
+install-exec-recursive uninstall-exec-recursive installdirs-recursive \
+uninstalldirs-recursive all-recursive check-recursive \
+installcheck-recursive info-recursive dvi-recursive \
+mostlyclean-recursive distclean-recursive clean-recursive \
+maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
+distclean-tags clean-tags maintainer-clean-tags distdir info-am info \
+dvi-am dvi check check-am installcheck-am installcheck install-exec-am \
+install-exec install-data-am install-data install-am install \
+uninstall-am uninstall all-redirect all-am all installdirs-am \
+installdirs mostlyclean-generic distclean-generic clean-generic \
+maintainer-clean-generic clean mostlyclean distclean maintainer-clean
+
+
+# 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/src/external/3rd/library/libxml/include/libxml/Makefile b/src/external/3rd/library/libxml/include/libxml/Makefile
new file mode 100644
index 000000000..8f5617597
--- /dev/null
+++ b/src/external/3rd/library/libxml/include/libxml/Makefile
@@ -0,0 +1,333 @@
+# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
+
+# Copyright (C) 1994, 1995-8, 1999, 2001 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.
+
+
+SHELL = /bin/sh
+
+srcdir = .
+top_srcdir = ../..
+
+prefix = /usr/local
+exec_prefix = ${prefix}
+
+bindir = ${exec_prefix}/bin
+sbindir = ${exec_prefix}/sbin
+libexecdir = ${exec_prefix}/libexec
+datadir = ${prefix}/share
+sysconfdir = ${prefix}/etc
+sharedstatedir = ${prefix}/com
+localstatedir = ${prefix}/var
+libdir = ${exec_prefix}/lib
+infodir = ${prefix}/info
+mandir = ${prefix}/man
+includedir = ${prefix}/include
+oldincludedir = /usr/include
+
+DESTDIR =
+
+pkgdatadir = $(datadir)/libxml2
+pkglibdir = $(libdir)/libxml2
+pkgincludedir = $(includedir)/libxml2
+
+top_builddir = ../..
+
+ACLOCAL = aclocal-1.4
+AUTOCONF = autoconf
+AUTOMAKE = automake-1.4
+AUTOHEADER = autoheader
+
+INSTALL = /usr/bin/install -c
+INSTALL_PROGRAM = ${INSTALL} $(AM_INSTALL_PROGRAM_FLAGS)
+INSTALL_DATA = ${INSTALL} -m 644
+INSTALL_SCRIPT = ${INSTALL}
+transform = s,x,x,
+
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias =
+host_triplet = i686-pc-linux-gnu
+AS = @AS@
+C14N_OBJ = c14n.c
+CATALOG_OBJ = catalog.o
+CC = gcc
+CFLAGS = -g -O2 -Wall
+CPP = gcc -E
+DEBUG_OBJ = debugXML.o
+DLLTOOL = @DLLTOOL@
+DOCB_OBJ = DOCBparser.o
+ECHO = echo
+EXEEXT =
+FTP_OBJ = nanoftp.o
+HAVE_ISINF =
+HAVE_ISNAN =
+HTML_DIR = $(prefix)/doc
+HTML_OBJ = HTMLparser.o HTMLtree.o
+HTTP_OBJ = nanohttp.o
+ICONV_LIBS =
+LIBTOOL = $(SHELL) $(top_builddir)/libtool
+LIBXML_MAJOR_VERSION = 2
+LIBXML_MICRO_VERSION = 28
+LIBXML_MINOR_VERSION = 4
+LIBXML_VERSION = 2.4.28
+LIBXML_VERSION_INFO = 6:28:4
+LIBXML_VERSION_NUMBER = 20428
+LN_S = ln -s
+MAINT = #
+MAKEINFO = makeinfo
+MV = /bin/mv
+M_LIBS = -lm
+OBJDUMP = @OBJDUMP@
+OBJEXT = o
+PACKAGE = libxml2
+PYTHON = /usr/bin/python
+PYTHON_INCLUDES = /usr/include/python1.5
+PYTHON_SITE_PACKAGES = /usr/lib/python1.5/site-packages
+PYTHON_SUBDIR = python
+PYTHON_VERSION = 1.5
+RANLIB = ranlib
+RDL_LIBS =
+RM = /bin/rm
+STRIP = strip
+TAR = /bin/tar
+TEST_REGEXPS = Regexptests Automatatests
+TEST_SCHEMAS =
+TEST_THREADS =
+THREAD_CFLAGS =
+THREAD_LIBS =
+U =
+VERSION = 2.4.28
+WITH_C14N = 1
+WITH_CATALOG = 1
+WITH_DEBUG = 1
+WITH_DOCB = 1
+WITH_FTP = 1
+WITH_HTML = 1
+WITH_HTTP = 1
+WITH_ICONV = 1
+WITH_MEM_DEBUG = 0
+WITH_REGEXPS = 1
+WITH_SCHEMAS = 0
+WITH_THREADS = 0
+WITH_TRIO = 0
+WITH_XINCLUDE = 1
+WITH_XPATH = 1
+WITH_XPTR = 1
+XINCLUDE_OBJ = xinclude.o
+XML_CFLAGS =
+XML_INCLUDEDIR = -I${includedir}/libxml2
+XML_LIBDIR = -L${libdir}
+XML_LIBS = -lxml2 -lz -lm
+XPATH_OBJ = xpath.o
+XPTR_OBJ = xpointer.o
+Z_CFLAGS =
+Z_LIBS = -lz
+
+xmlincdir = $(includedir)/libxml2/libxml
+
+xmlinc_HEADERS = \
+ SAX.h \
+ entities.h \
+ encoding.h \
+ parser.h \
+ parserInternals.h \
+ xmlerror.h \
+ HTMLparser.h \
+ HTMLtree.h \
+ debugXML.h \
+ tree.h \
+ list.h \
+ hash.h \
+ xpath.h \
+ xpathInternals.h \
+ xpointer.h \
+ xinclude.h \
+ xmlIO.h \
+ xmlmemory.h \
+ nanohttp.h \
+ nanoftp.h \
+ uri.h \
+ valid.h \
+ xlink.h \
+ xmlversion.h \
+ DOCBparser.h \
+ catalog.h \
+ threads.h \
+ globals.h \
+ c14n.h \
+ xmlautomata.h \
+ xmlregexp.h \
+ xmlschemas.h \
+ schemasInternals.h \
+ xmlschemastypes.h \
+ xmlunicode.h
+
+
+EXTRA_DIST = xmlversion.h.in
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_HEADER = ../../config.h
+CONFIG_CLEAN_FILES = xmlversion.h
+HEADERS = $(xmlinc_HEADERS)
+
+DIST_COMMON = Makefile.am Makefile.in xmlversion.h.in
+
+
+DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
+
+GZIP_ENV = --best
+all: all-redirect
+.SUFFIXES:
+$(srcdir)/Makefile.in: # Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps include/libxml/Makefile
+
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) \
+ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+xmlversion.h: $(top_builddir)/config.status xmlversion.h.in
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+install-xmlincHEADERS: $(xmlinc_HEADERS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(xmlincdir)
+ @list='$(xmlinc_HEADERS)'; for p in $$list; do \
+ if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
+ echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(xmlincdir)/$$p"; \
+ $(INSTALL_DATA) $$d$$p $(DESTDIR)$(xmlincdir)/$$p; \
+ done
+
+uninstall-xmlincHEADERS:
+ @$(NORMAL_UNINSTALL)
+ list='$(xmlinc_HEADERS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(xmlincdir)/$$p; \
+ done
+
+tags: TAGS
+
+ID: $(HEADERS) $(SOURCES) $(LISP)
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ here=`pwd` && cd $(srcdir) \
+ && mkid -f$$here/ID $$unique $(LISP)
+
+TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
+ tags=; \
+ here=`pwd`; \
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
+ || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)
+
+mostlyclean-tags:
+
+clean-tags:
+
+distclean-tags:
+ -rm -f TAGS ID
+
+maintainer-clean-tags:
+
+distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
+
+subdir = include/libxml
+
+distdir: $(DISTFILES)
+ @for file in $(DISTFILES); do \
+ d=$(srcdir); \
+ if test -d $$d/$$file; then \
+ cp -pr $$d/$$file $(distdir)/$$file; \
+ else \
+ test -f $(distdir)/$$file \
+ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
+ || cp -p $$d/$$file $(distdir)/$$file || :; \
+ fi; \
+ done
+info-am:
+info: info-am
+dvi-am:
+dvi: dvi-am
+check-am: all-am
+check: check-am
+installcheck-am:
+installcheck: installcheck-am
+install-exec-am:
+ @$(NORMAL_INSTALL)
+ $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
+install-exec: install-exec-am
+
+install-data-am: install-xmlincHEADERS
+install-data: install-data-am
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+install: install-am
+uninstall-am: uninstall-xmlincHEADERS
+uninstall: uninstall-am
+all-am: Makefile $(HEADERS)
+all-redirect: all-am
+install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
+installdirs:
+ $(mkinstalldirs) $(DESTDIR)$(xmlincdir)
+
+
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f config.cache config.log stamp-h stamp-h[0-9]*
+
+maintainer-clean-generic:
+mostlyclean-am: mostlyclean-tags mostlyclean-generic
+
+mostlyclean: mostlyclean-am
+
+clean-am: clean-tags clean-generic mostlyclean-am
+
+clean: clean-am
+
+distclean-am: distclean-tags distclean-generic clean-am
+ -rm -f libtool
+
+distclean: distclean-am
+
+maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \
+ distclean-am
+ @echo "This command is intended for maintainers to use;"
+ @echo "it deletes files that may require special tools to rebuild."
+
+maintainer-clean: maintainer-clean-am
+
+.PHONY: uninstall-xmlincHEADERS install-xmlincHEADERS tags \
+mostlyclean-tags distclean-tags clean-tags maintainer-clean-tags \
+distdir info-am info dvi-am dvi check check-am installcheck-am \
+installcheck install-exec-am install-exec install-data-am install-data \
+install-am install uninstall-am uninstall all-redirect all-am all \
+installdirs mostlyclean-generic distclean-generic clean-generic \
+maintainer-clean-generic clean mostlyclean distclean maintainer-clean
+
+
+install-exec-hook:
+ $(mkinstalldirs) $(DESTDIR)$(xmlincdir)
+
+# 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/src/external/3rd/library/libxml/include/libxml/Makefile.in b/src/external/3rd/library/libxml/include/libxml/Makefile.in
new file mode 100644
index 000000000..e9828fd3d
--- /dev/null
+++ b/src/external/3rd/library/libxml/include/libxml/Makefile.in
@@ -0,0 +1,333 @@
+# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am
+
+# Copyright (C) 1994, 1995-8, 1999, 2001 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.
+
+
+SHELL = @SHELL@
+
+srcdir = @srcdir@
+top_srcdir = @top_srcdir@
+VPATH = @srcdir@
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+
+bindir = @bindir@
+sbindir = @sbindir@
+libexecdir = @libexecdir@
+datadir = @datadir@
+sysconfdir = @sysconfdir@
+sharedstatedir = @sharedstatedir@
+localstatedir = @localstatedir@
+libdir = @libdir@
+infodir = @infodir@
+mandir = @mandir@
+includedir = @includedir@
+oldincludedir = /usr/include
+
+DESTDIR =
+
+pkgdatadir = $(datadir)/@PACKAGE@
+pkglibdir = $(libdir)/@PACKAGE@
+pkgincludedir = $(includedir)/@PACKAGE@
+
+top_builddir = ../..
+
+ACLOCAL = @ACLOCAL@
+AUTOCONF = @AUTOCONF@
+AUTOMAKE = @AUTOMAKE@
+AUTOHEADER = @AUTOHEADER@
+
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
+INSTALL_DATA = @INSTALL_DATA@
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
+transform = @program_transform_name@
+
+NORMAL_INSTALL = :
+PRE_INSTALL = :
+POST_INSTALL = :
+NORMAL_UNINSTALL = :
+PRE_UNINSTALL = :
+POST_UNINSTALL = :
+host_alias = @host_alias@
+host_triplet = @host@
+AS = @AS@
+C14N_OBJ = @C14N_OBJ@
+CATALOG_OBJ = @CATALOG_OBJ@
+CC = @CC@
+CFLAGS = @CFLAGS@
+CPP = @CPP@
+DEBUG_OBJ = @DEBUG_OBJ@
+DLLTOOL = @DLLTOOL@
+DOCB_OBJ = @DOCB_OBJ@
+ECHO = @ECHO@
+EXEEXT = @EXEEXT@
+FTP_OBJ = @FTP_OBJ@
+HAVE_ISINF = @HAVE_ISINF@
+HAVE_ISNAN = @HAVE_ISNAN@
+HTML_DIR = @HTML_DIR@
+HTML_OBJ = @HTML_OBJ@
+HTTP_OBJ = @HTTP_OBJ@
+ICONV_LIBS = @ICONV_LIBS@
+LIBTOOL = @LIBTOOL@
+LIBXML_MAJOR_VERSION = @LIBXML_MAJOR_VERSION@
+LIBXML_MICRO_VERSION = @LIBXML_MICRO_VERSION@
+LIBXML_MINOR_VERSION = @LIBXML_MINOR_VERSION@
+LIBXML_VERSION = @LIBXML_VERSION@
+LIBXML_VERSION_INFO = @LIBXML_VERSION_INFO@
+LIBXML_VERSION_NUMBER = @LIBXML_VERSION_NUMBER@
+LN_S = @LN_S@
+MAINT = @MAINT@
+MAKEINFO = @MAKEINFO@
+MV = @MV@
+M_LIBS = @M_LIBS@
+OBJDUMP = @OBJDUMP@
+OBJEXT = @OBJEXT@
+PACKAGE = @PACKAGE@
+PYTHON = @PYTHON@
+PYTHON_INCLUDES = @PYTHON_INCLUDES@
+PYTHON_SITE_PACKAGES = @PYTHON_SITE_PACKAGES@
+PYTHON_SUBDIR = @PYTHON_SUBDIR@
+PYTHON_VERSION = @PYTHON_VERSION@
+RANLIB = @RANLIB@
+RDL_LIBS = @RDL_LIBS@
+RM = @RM@
+STRIP = @STRIP@
+TAR = @TAR@
+TEST_REGEXPS = @TEST_REGEXPS@
+TEST_SCHEMAS = @TEST_SCHEMAS@
+TEST_THREADS = @TEST_THREADS@
+THREAD_CFLAGS = @THREAD_CFLAGS@
+THREAD_LIBS = @THREAD_LIBS@
+U = @U@
+VERSION = @VERSION@
+WITH_C14N = @WITH_C14N@
+WITH_CATALOG = @WITH_CATALOG@
+WITH_DEBUG = @WITH_DEBUG@
+WITH_DOCB = @WITH_DOCB@
+WITH_FTP = @WITH_FTP@
+WITH_HTML = @WITH_HTML@
+WITH_HTTP = @WITH_HTTP@
+WITH_ICONV = @WITH_ICONV@
+WITH_MEM_DEBUG = @WITH_MEM_DEBUG@
+WITH_REGEXPS = @WITH_REGEXPS@
+WITH_SCHEMAS = @WITH_SCHEMAS@
+WITH_THREADS = @WITH_THREADS@
+WITH_TRIO = @WITH_TRIO@
+WITH_XINCLUDE = @WITH_XINCLUDE@
+WITH_XPATH = @WITH_XPATH@
+WITH_XPTR = @WITH_XPTR@
+XINCLUDE_OBJ = @XINCLUDE_OBJ@
+XML_CFLAGS = @XML_CFLAGS@
+XML_INCLUDEDIR = @XML_INCLUDEDIR@
+XML_LIBDIR = @XML_LIBDIR@
+XML_LIBS = @XML_LIBS@
+XPATH_OBJ = @XPATH_OBJ@
+XPTR_OBJ = @XPTR_OBJ@
+Z_CFLAGS = @Z_CFLAGS@
+Z_LIBS = @Z_LIBS@
+
+xmlincdir = $(includedir)/libxml2/libxml
+
+xmlinc_HEADERS = \
+ SAX.h \
+ entities.h \
+ encoding.h \
+ parser.h \
+ parserInternals.h \
+ xmlerror.h \
+ HTMLparser.h \
+ HTMLtree.h \
+ debugXML.h \
+ tree.h \
+ list.h \
+ hash.h \
+ xpath.h \
+ xpathInternals.h \
+ xpointer.h \
+ xinclude.h \
+ xmlIO.h \
+ xmlmemory.h \
+ nanohttp.h \
+ nanoftp.h \
+ uri.h \
+ valid.h \
+ xlink.h \
+ xmlversion.h \
+ DOCBparser.h \
+ catalog.h \
+ threads.h \
+ globals.h \
+ c14n.h \
+ xmlautomata.h \
+ xmlregexp.h \
+ xmlschemas.h \
+ schemasInternals.h \
+ xmlschemastypes.h \
+ xmlunicode.h
+
+
+EXTRA_DIST = xmlversion.h.in
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_HEADER = ../../config.h
+CONFIG_CLEAN_FILES = xmlversion.h
+HEADERS = $(xmlinc_HEADERS)
+
+DIST_COMMON = Makefile.am Makefile.in xmlversion.h.in
+
+
+DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
+
+GZIP_ENV = --best
+all: all-redirect
+.SUFFIXES:
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
+ cd $(top_srcdir) && $(AUTOMAKE) --gnu --include-deps include/libxml/Makefile
+
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+ cd $(top_builddir) \
+ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+xmlversion.h: $(top_builddir)/config.status xmlversion.h.in
+ cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
+
+install-xmlincHEADERS: $(xmlinc_HEADERS)
+ @$(NORMAL_INSTALL)
+ $(mkinstalldirs) $(DESTDIR)$(xmlincdir)
+ @list='$(xmlinc_HEADERS)'; for p in $$list; do \
+ if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
+ echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(xmlincdir)/$$p"; \
+ $(INSTALL_DATA) $$d$$p $(DESTDIR)$(xmlincdir)/$$p; \
+ done
+
+uninstall-xmlincHEADERS:
+ @$(NORMAL_UNINSTALL)
+ list='$(xmlinc_HEADERS)'; for p in $$list; do \
+ rm -f $(DESTDIR)$(xmlincdir)/$$p; \
+ done
+
+tags: TAGS
+
+ID: $(HEADERS) $(SOURCES) $(LISP)
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ here=`pwd` && cd $(srcdir) \
+ && mkid -f$$here/ID $$unique $(LISP)
+
+TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) $(LISP)
+ tags=; \
+ here=`pwd`; \
+ list='$(SOURCES) $(HEADERS)'; \
+ unique=`for i in $$list; do echo $$i; done | \
+ awk ' { files[$$0] = 1; } \
+ END { for (i in files) print i; }'`; \
+ test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \
+ || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS)
+
+mostlyclean-tags:
+
+clean-tags:
+
+distclean-tags:
+ -rm -f TAGS ID
+
+maintainer-clean-tags:
+
+distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
+
+subdir = include/libxml
+
+distdir: $(DISTFILES)
+ @for file in $(DISTFILES); do \
+ d=$(srcdir); \
+ if test -d $$d/$$file; then \
+ cp -pr $$d/$$file $(distdir)/$$file; \
+ else \
+ test -f $(distdir)/$$file \
+ || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
+ || cp -p $$d/$$file $(distdir)/$$file || :; \
+ fi; \
+ done
+info-am:
+info: info-am
+dvi-am:
+dvi: dvi-am
+check-am: all-am
+check: check-am
+installcheck-am:
+installcheck: installcheck-am
+install-exec-am:
+ @$(NORMAL_INSTALL)
+ $(MAKE) $(AM_MAKEFLAGS) install-exec-hook
+install-exec: install-exec-am
+
+install-data-am: install-xmlincHEADERS
+install-data: install-data-am
+
+install-am: all-am
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
+install: install-am
+uninstall-am: uninstall-xmlincHEADERS
+uninstall: uninstall-am
+all-am: Makefile $(HEADERS)
+all-redirect: all-am
+install-strip:
+ $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
+installdirs:
+ $(mkinstalldirs) $(DESTDIR)$(xmlincdir)
+
+
+mostlyclean-generic:
+
+clean-generic:
+
+distclean-generic:
+ -rm -f Makefile $(CONFIG_CLEAN_FILES)
+ -rm -f config.cache config.log stamp-h stamp-h[0-9]*
+
+maintainer-clean-generic:
+mostlyclean-am: mostlyclean-tags mostlyclean-generic
+
+mostlyclean: mostlyclean-am
+
+clean-am: clean-tags clean-generic mostlyclean-am
+
+clean: clean-am
+
+distclean-am: distclean-tags distclean-generic clean-am
+ -rm -f libtool
+
+distclean: distclean-am
+
+maintainer-clean-am: maintainer-clean-tags maintainer-clean-generic \
+ distclean-am
+ @echo "This command is intended for maintainers to use;"
+ @echo "it deletes files that may require special tools to rebuild."
+
+maintainer-clean: maintainer-clean-am
+
+.PHONY: uninstall-xmlincHEADERS install-xmlincHEADERS tags \
+mostlyclean-tags distclean-tags clean-tags maintainer-clean-tags \
+distdir info-am info dvi-am dvi check check-am installcheck-am \
+installcheck install-exec-am install-exec install-data-am install-data \
+install-am install uninstall-am uninstall all-redirect all-am all \
+installdirs mostlyclean-generic distclean-generic clean-generic \
+maintainer-clean-generic clean mostlyclean distclean maintainer-clean
+
+
+install-exec-hook:
+ $(mkinstalldirs) $(DESTDIR)$(xmlincdir)
+
+# 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/src/external/3rd/library/libxml/install-sh b/src/external/3rd/library/libxml/install-sh
new file mode 100644
index 000000000..ebc66913e
--- /dev/null
+++ b/src/external/3rd/library/libxml/install-sh
@@ -0,0 +1,250 @@
+#! /bin/sh
+#
+# install - install a program, script, or datafile
+# This comes from X11R5 (mit/util/scripts/install.sh).
+#
+# Copyright 1991 by the Massachusetts Institute of Technology
+#
+# Permission to use, copy, modify, distribute, and sell this software and its
+# documentation for any purpose is hereby granted without fee, provided that
+# the above copyright notice appear in all copies and that both that
+# copyright notice and this permission notice appear in supporting
+# documentation, and that the name of M.I.T. not be used in advertising or
+# publicity pertaining to distribution of the software without specific,
+# written prior permission. M.I.T. makes no representations about the
+# suitability of this software for any purpose. It is provided "as is"
+# without express or implied warranty.
+#
+# Calling this script install-sh is preferred over install.sh, to prevent
+# `make' implicit rules from creating a file called install from it
+# when there is no Makefile.
+#
+# This script is compatible with the BSD install script, but was written
+# from scratch. It can only install one file at a time, a restriction
+# shared with many OS's install programs.
+
+
+# set DOITPROG to echo to test this script
+
+# Don't use :- since 4.3BSD and earlier shells don't like it.
+doit="${DOITPROG-}"
+
+
+# put in absolute paths if you don't have them in your path; or use env. vars.
+
+mvprog="${MVPROG-mv}"
+cpprog="${CPPROG-cp}"
+chmodprog="${CHMODPROG-chmod}"
+chownprog="${CHOWNPROG-chown}"
+chgrpprog="${CHGRPPROG-chgrp}"
+stripprog="${STRIPPROG-strip}"
+rmprog="${RMPROG-rm}"
+mkdirprog="${MKDIRPROG-mkdir}"
+
+transformbasename=""
+transform_arg=""
+instcmd="$mvprog"
+chmodcmd="$chmodprog 0755"
+chowncmd=""
+chgrpcmd=""
+stripcmd=""
+rmcmd="$rmprog -f"
+mvcmd="$mvprog"
+src=""
+dst=""
+dir_arg=""
+
+while [ x"$1" != x ]; do
+ case $1 in
+ -c) instcmd="$cpprog"
+ shift
+ continue;;
+
+ -d) dir_arg=true
+ shift
+ continue;;
+
+ -m) chmodcmd="$chmodprog $2"
+ shift
+ shift
+ continue;;
+
+ -o) chowncmd="$chownprog $2"
+ shift
+ shift
+ continue;;
+
+ -g) chgrpcmd="$chgrpprog $2"
+ shift
+ shift
+ continue;;
+
+ -s) stripcmd="$stripprog"
+ shift
+ continue;;
+
+ -t=*) transformarg=`echo $1 | sed 's/-t=//'`
+ shift
+ continue;;
+
+ -b=*) transformbasename=`echo $1 | sed 's/-b=//'`
+ shift
+ continue;;
+
+ *) if [ x"$src" = x ]
+ then
+ src=$1
+ else
+ # this colon is to work around a 386BSD /bin/sh bug
+ :
+ dst=$1
+ fi
+ shift
+ continue;;
+ esac
+done
+
+if [ x"$src" = x ]
+then
+ echo "install: no input file specified"
+ exit 1
+else
+ true
+fi
+
+if [ x"$dir_arg" != x ]; then
+ dst=$src
+ src=""
+
+ if [ -d $dst ]; then
+ instcmd=:
+ else
+ instcmd=mkdir
+ fi
+else
+
+# Waiting for this to be detected by the "$instcmd $src $dsttmp" command
+# might cause directories to be created, which would be especially bad
+# if $src (and thus $dsttmp) contains '*'.
+
+ if [ -f $src -o -d $src ]
+ then
+ true
+ else
+ echo "install: $src does not exist"
+ exit 1
+ fi
+
+ if [ x"$dst" = x ]
+ then
+ echo "install: no destination specified"
+ exit 1
+ else
+ true
+ fi
+
+# If destination is a directory, append the input filename; if your system
+# does not like double slashes in filenames, you may need to add some logic
+
+ if [ -d $dst ]
+ then
+ dst="$dst"/`basename $src`
+ else
+ true
+ fi
+fi
+
+## this sed command emulates the dirname command
+dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
+
+# Make sure that the destination directory exists.
+# this part is taken from Noah Friedman's mkinstalldirs script
+
+# Skip lots of stat calls in the usual case.
+if [ ! -d "$dstdir" ]; then
+defaultIFS='
+'
+IFS="${IFS-${defaultIFS}}"
+
+oIFS="${IFS}"
+# Some sh's can't handle IFS=/ for some reason.
+IFS='%'
+set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
+IFS="${oIFS}"
+
+pathcomp=''
+
+while [ $# -ne 0 ] ; do
+ pathcomp="${pathcomp}${1}"
+ shift
+
+ if [ ! -d "${pathcomp}" ] ;
+ then
+ $mkdirprog "${pathcomp}"
+ else
+ true
+ fi
+
+ pathcomp="${pathcomp}/"
+done
+fi
+
+if [ x"$dir_arg" != x ]
+then
+ $doit $instcmd $dst &&
+
+ if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi &&
+ if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi &&
+ if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi &&
+ if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi
+else
+
+# If we're going to rename the final executable, determine the name now.
+
+ if [ x"$transformarg" = x ]
+ then
+ dstfile=`basename $dst`
+ else
+ dstfile=`basename $dst $transformbasename |
+ sed $transformarg`$transformbasename
+ fi
+
+# don't allow the sed command to completely eliminate the filename
+
+ if [ x"$dstfile" = x ]
+ then
+ dstfile=`basename $dst`
+ else
+ true
+ fi
+
+# Make a temp file name in the proper directory.
+
+ dsttmp=$dstdir/#inst.$$#
+
+# Move or copy the file name to the temp name
+
+ $doit $instcmd $src $dsttmp &&
+
+ trap "rm -f ${dsttmp}" 0 &&
+
+# and set any options; do chmod last to preserve setuid bits
+
+# If any of these fail, we abort the whole thing. If we want to
+# ignore errors from any of these, just make sure not to ignore
+# errors from the above "$doit $instcmd $src $dsttmp" command.
+
+ if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi &&
+ if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi &&
+ if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi &&
+ if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi &&
+
+# Now rename the file to the real destination.
+
+ $doit $rmcmd -f $dstdir/$dstfile &&
+ $doit $mvcmd $dsttmp $dstdir/$dstfile
+
+fi &&
+
+
+exit 0
diff --git a/src/external/3rd/library/libxml/libtool b/src/external/3rd/library/libxml/libtool
new file mode 100644
index 000000000..f885d95ae
--- /dev/null
+++ b/src/external/3rd/library/libxml/libtool
@@ -0,0 +1,5350 @@
+#! /bin/sh
+
+# libtool - Provide generalized library-building support services.
+# Generated automatically by (GNU libxml2 2.4.28)
+# NOTE: Changes made to this file will be lost: look at ltmain.sh.
+#
+# Copyright (C) 1996-2000 Free Software Foundation, Inc.
+# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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.
+
+# Sed that helps us avoid accidentally triggering echo(1) options like -n.
+Xsed="sed -e s/^X//"
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
+
+# ### BEGIN LIBTOOL CONFIG
+
+# Libtool was configured on host lin-msivertson.station.sony.com:
+
+# Shell to use when invoking shell scripts.
+SHELL="/bin/sh"
+
+# Whether or not to build shared libraries.
+build_libtool_libs=yes
+
+# Whether or not to build static libraries.
+build_old_libs=yes
+
+# Whether or not to add -lc for building shared libraries.
+build_libtool_need_lc=no
+
+# Whether or not to optimize for fast installation.
+fast_install=yes
+
+# The host system.
+host_alias=
+host=i686-pc-linux-gnu
+
+# An echo program that does not interpret backslashes.
+echo="echo"
+
+# The archiver.
+AR="ar"
+AR_FLAGS="cru"
+
+# The default C compiler.
+CC="gcc"
+
+# Is the compiler the GNU C compiler?
+with_gcc=yes
+
+# The linker used to build libraries.
+LD="/usr/bin/ld"
+
+# Whether we need hard or soft links.
+LN_S="ln -s"
+
+# A BSD-compatible nm program.
+NM="/usr/bin/nm -B"
+
+# A symbol stripping program
+STRIP=strip
+
+# Used to examine libraries when file_magic_cmd begins "file"
+MAGIC_CMD=file
+
+# 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=.libs
+
+# How to create reloadable object files.
+reload_flag=" -r"
+reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs"
+
+# How to pass a linker flag through the compiler.
+wl="-Wl,"
+
+# Object file suffix (normally "o").
+objext="o"
+
+# Old archive suffix (normally "a").
+libext="a"
+
+# Executable file suffix (normally "").
+exeext=""
+
+# Additional compiler flags for building library objects.
+pic_flag=" -fPIC"
+pic_mode=default
+
+# Does compiler simultaneously support -c and -o options?
+compiler_c_o="yes"
+
+# Can we write directly to a .lo ?
+compiler_o_lo="yes"
+
+# Must we lock files when doing compilation ?
+need_locks="no"
+
+# Do we need the lib prefix for modules?
+need_lib_prefix=no
+
+# Do we need a version for libraries?
+need_version=no
+
+# Whether dlopen is supported.
+dlopen_support=unknown
+
+# Whether dlopen of programs is supported.
+dlopen_self=unknown
+
+# Whether dlopen of statically linked programs is supported.
+dlopen_self_static=unknown
+
+# Compiler flag to prevent dynamic linking.
+link_static_flag="-static"
+
+# Compiler flag to turn off builtin functions.
+no_builtin_flag=" -fno-builtin"
+
+# Compiler flag to allow reflexive dlopens.
+export_dynamic_flag_spec="\${wl}--export-dynamic"
+
+# Compiler flag to generate shared objects directly from archives.
+whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive"
+
+# Compiler flag to generate thread-safe objects.
+thread_safe_flag_spec=""
+
+# Library versioning type.
+version_type=linux
+
+# Format of library name prefix.
+libname_spec="lib\$name"
+
+# 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="\${libname}\${release}.so\$versuffix \${libname}\${release}.so\$major \$libname.so"
+
+# The coded name of the library, if different from the real name.
+soname_spec="\${libname}\${release}.so\$major"
+
+# Commands used to build and install an old-style archive.
+RANLIB="ranlib"
+old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs\$old_deplibs~\$RANLIB \$oldlib"
+old_postinstall_cmds="\$RANLIB \$oldlib~chmod 644 \$oldlib"
+old_postuninstall_cmds=""
+
+# Create an old-style archive from a shared archive.
+old_archive_from_new_cmds=""
+
+# Create a temporary old-style archive to link instead of a shared archive.
+old_archive_from_expsyms_cmds=""
+
+# Commands used to build and install a shared archive.
+archive_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib"
+archive_expsym_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-retain-symbols-file \$wl\$export_symbols -o \$lib"
+postinstall_cmds=""
+postuninstall_cmds=""
+
+# Commands to strip libraries.
+old_striplib="strip --strip-debug"
+striplib="strip --strip-unneeded"
+
+# Method to check whether dependent libraries are shared objects.
+deplibs_check_method="pass_all"
+
+# Command to use when deplibs_check_method == file_magic.
+file_magic_cmd="\$MAGIC_CMD"
+
+# Flag that allows shared libraries with undefined symbols to be built.
+allow_undefined_flag=""
+
+# Flag that forces no undefined symbols.
+no_undefined_flag=""
+
+# Commands used to finish a libtool library installation in a directory.
+finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir"
+
+# Same as above, but a single script fragment to be evaled but not shown.
+finish_eval=""
+
+# Take the output of nm and produce a listing of raw symbols and C names.
+global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGISTW][ABCDGISTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'"
+
+# Transform the output of nm in a proper C declaration
+global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern char \\1;/p'"
+
+# Transform the output of nm in a C name address pair
+global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p' -e 's/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'"
+
+# This is the shared library runtime path variable.
+runpath_var=LD_RUN_PATH
+
+# This is the shared library path variable.
+shlibpath_var=LD_LIBRARY_PATH
+
+# Is shlibpath searched before the hard-coded library search path?
+shlibpath_overrides_runpath=no
+
+# How to hardcode a shared library path into an executable.
+hardcode_action=immediate
+
+# Whether we should hardcode library paths into libraries.
+hardcode_into_libs=yes
+
+# Flag to hardcode $libdir into a binary during linking.
+# This must work even if $libdir does not exist.
+hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir"
+
+# Whether we need a single -rpath flag with a separated argument.
+hardcode_libdir_separator=""
+
+# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
+# resulting binary.
+hardcode_direct=no
+
+# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
+# resulting binary.
+hardcode_minus_L=no
+
+# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
+# the resulting binary.
+hardcode_shlibpath_var=unsupported
+
+# Variables whose values should be saved in libtool wrapper scripts and
+# restored at relink time.
+variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
+
+# Whether libtool must link a program against all its dependency libraries.
+link_all_deplibs=unknown
+
+# Compile-time system search path for libraries
+sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
+
+# Run-time system search path for libraries
+sys_lib_dlsearch_path_spec="/lib /usr/lib"
+
+# Fix the shell variable $srcfile for the compiler.
+fix_srcfile_path=""
+
+# Set to yes if exported symbols are required.
+always_export_symbols=no
+
+# The commands to list exported symbols.
+export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | sed 's/.* //' | sort | uniq > \$export_symbols"
+
+# The commands to extract the exported symbol list from a shared archive.
+extract_expsyms_cmds=""
+
+# Symbols that should not be listed in the preloaded symbols.
+exclude_expsyms="_GLOBAL_OFFSET_TABLE_"
+
+# Symbols that must always be exported.
+include_expsyms=""
+
+# ### END LIBTOOL CONFIG
+
+# ltmain.sh - Provide generalized library-building support services.
+# NOTE: Changing this file will not affect anything until you rerun configure.
+#
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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.
+
+# Check that we have a working $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, and then maybe $echo will work.
+ exec $SHELL "$0" --no-reexec ${1+"$@"}
+fi
+
+if test "X$1" = X--fallback-echo; then
+ # used as fallback echo
+ shift
+ cat <&2
+ echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
+ exit 1
+fi
+
+# Global variables.
+mode=$default_mode
+nonopt=
+prev=
+prevopt=
+run=
+show="$echo"
+show_help=
+execute_dlfiles=
+lo2o="s/\\.lo\$/.${objext}/"
+o2lo="s/\\.${objext}\$/.lo/"
+
+# Parse our command line options once, thoroughly.
+while test $# -gt 0
+do
+ arg="$1"
+ shift
+
+ case $arg in
+ -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
+ *) optarg= ;;
+ esac
+
+ # If the previous option needs an argument, assign it.
+ if test -n "$prev"; then
+ case $prev in
+ execute_dlfiles)
+ execute_dlfiles="$execute_dlfiles $arg"
+ ;;
+ *)
+ eval "$prev=\$arg"
+ ;;
+ esac
+
+ prev=
+ prevopt=
+ continue
+ fi
+
+ # Have we seen a non-optional argument yet?
+ case $arg in
+ --help)
+ show_help=yes
+ ;;
+
+ --version)
+ echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
+ exit 0
+ ;;
+
+ --config)
+ sed -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $0
+ exit 0
+ ;;
+
+ --debug)
+ echo "$progname: enabling shell trace mode"
+ set -x
+ ;;
+
+ --dry-run | -n)
+ run=:
+ ;;
+
+ --features)
+ echo "host: $host"
+ if test "$build_libtool_libs" = yes; then
+ echo "enable shared libraries"
+ else
+ echo "disable shared libraries"
+ fi
+ if test "$build_old_libs" = yes; then
+ echo "enable static libraries"
+ else
+ echo "disable static libraries"
+ fi
+ exit 0
+ ;;
+
+ --finish) mode="finish" ;;
+
+ --mode) prevopt="--mode" prev=mode ;;
+ --mode=*) mode="$optarg" ;;
+
+ --preserve-dup-deps) duplicate_deps="yes" ;;
+
+ --quiet | --silent)
+ show=:
+ ;;
+
+ -dlopen)
+ prevopt="-dlopen"
+ prev=execute_dlfiles
+ ;;
+
+ -*)
+ $echo "$modename: unrecognized option \`$arg'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ ;;
+
+ *)
+ nonopt="$arg"
+ break
+ ;;
+ esac
+done
+
+if test -n "$prevopt"; then
+ $echo "$modename: option \`$prevopt' requires an argument" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+fi
+
+# If this variable is set in any of the actions, the command in it
+# will be execed at the end. This prevents here-documents from being
+# left over by shells.
+exec_cmd=
+
+if test -z "$show_help"; then
+
+ # Infer the operation mode.
+ if test -z "$mode"; then
+ case $nonopt in
+ *cc | *++ | gcc* | *-gcc*)
+ mode=link
+ for arg
+ do
+ case $arg in
+ -c)
+ mode=compile
+ break
+ ;;
+ esac
+ done
+ ;;
+ *db | *dbx | *strace | *truss)
+ mode=execute
+ ;;
+ *install*|cp|mv)
+ mode=install
+ ;;
+ *rm)
+ mode=uninstall
+ ;;
+ *)
+ # If we have no mode, but dlfiles were specified, then do execute mode.
+ test -n "$execute_dlfiles" && mode=execute
+
+ # Just use the default operation mode.
+ if test -z "$mode"; then
+ if test -n "$nonopt"; then
+ $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
+ else
+ $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
+ fi
+ fi
+ ;;
+ esac
+ fi
+
+ # Only execute mode is allowed to have -dlopen flags.
+ if test -n "$execute_dlfiles" && test "$mode" != execute; then
+ $echo "$modename: unrecognized option \`-dlopen'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ # Change the help message to a mode-specific one.
+ generic_help="$help"
+ help="Try \`$modename --help --mode=$mode' for more information."
+
+ # These modes are in order of execution frequency so that they run quickly.
+ case $mode in
+ # libtool compile mode
+ compile)
+ modename="$modename: compile"
+ # Get the compilation command and the source file.
+ base_compile=
+ prev=
+ lastarg=
+ srcfile="$nonopt"
+ suppress_output=
+
+ user_target=no
+ for arg
+ do
+ case $prev in
+ "") ;;
+ xcompiler)
+ # Aesthetically quote the previous argument.
+ prev=
+ lastarg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+
+ case $arg in
+ # Double-quote args containing other shell metacharacters.
+ # Many Bourne shells cannot handle close brackets correctly
+ # in scan sets, so we specify it separately.
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ arg="\"$arg\""
+ ;;
+ esac
+
+ # Add the previous argument to base_compile.
+ if test -z "$base_compile"; then
+ base_compile="$lastarg"
+ else
+ base_compile="$base_compile $lastarg"
+ fi
+ continue
+ ;;
+ esac
+
+ # Accept any command-line options.
+ case $arg in
+ -o)
+ if test "$user_target" != "no"; then
+ $echo "$modename: you cannot specify \`-o' more than once" 1>&2
+ exit 1
+ fi
+ user_target=next
+ ;;
+
+ -static)
+ build_old_libs=yes
+ continue
+ ;;
+
+ -prefer-pic)
+ pic_mode=yes
+ continue
+ ;;
+
+ -prefer-non-pic)
+ pic_mode=no
+ continue
+ ;;
+
+ -Xcompiler)
+ prev=xcompiler
+ continue
+ ;;
+
+ -Wc,*)
+ args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
+ lastarg=
+ save_ifs="$IFS"; IFS=','
+ for arg in $args; do
+ IFS="$save_ifs"
+
+ # Double-quote args containing other shell metacharacters.
+ # Many Bourne shells cannot handle close brackets correctly
+ # in scan sets, so we specify it separately.
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ arg="\"$arg\""
+ ;;
+ esac
+ lastarg="$lastarg $arg"
+ done
+ IFS="$save_ifs"
+ lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
+
+ # Add the arguments to base_compile.
+ if test -z "$base_compile"; then
+ base_compile="$lastarg"
+ else
+ base_compile="$base_compile $lastarg"
+ fi
+ continue
+ ;;
+ esac
+
+ case $user_target in
+ next)
+ # The next one is the -o target name
+ user_target=yes
+ continue
+ ;;
+ yes)
+ # We got the output file
+ user_target=set
+ libobj="$arg"
+ continue
+ ;;
+ esac
+
+ # Accept the current argument as the source file.
+ lastarg="$srcfile"
+ srcfile="$arg"
+
+ # Aesthetically quote the previous argument.
+
+ # Backslashify any backslashes, double quotes, and dollar signs.
+ # These are the only characters that are still specially
+ # interpreted inside of double-quoted scrings.
+ lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
+
+ # Double-quote args containing other shell metacharacters.
+ # Many Bourne shells cannot handle close brackets correctly
+ # in scan sets, so we specify it separately.
+ case $lastarg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ lastarg="\"$lastarg\""
+ ;;
+ esac
+
+ # Add the previous argument to base_compile.
+ if test -z "$base_compile"; then
+ base_compile="$lastarg"
+ else
+ base_compile="$base_compile $lastarg"
+ fi
+ done
+
+ case $user_target in
+ set)
+ ;;
+ no)
+ # Get the name of the library object.
+ libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
+ ;;
+ *)
+ $echo "$modename: you must specify a target with \`-o'" 1>&2
+ exit 1
+ ;;
+ esac
+
+ # Recognize several different file suffixes.
+ # If the user specifies -o file.o, it is replaced with file.lo
+ xform='[cCFSfmso]'
+ case $libobj in
+ *.ada) xform=ada ;;
+ *.adb) xform=adb ;;
+ *.ads) xform=ads ;;
+ *.asm) xform=asm ;;
+ *.c++) xform=c++ ;;
+ *.cc) xform=cc ;;
+ *.cpp) xform=cpp ;;
+ *.cxx) xform=cxx ;;
+ *.f90) xform=f90 ;;
+ *.for) xform=for ;;
+ esac
+
+ libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
+
+ case $libobj in
+ *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
+ *)
+ $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2
+ exit 1
+ ;;
+ esac
+
+ if test -z "$base_compile"; then
+ $echo "$modename: you must specify a compilation command" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ # Delete any leftover library objects.
+ if test "$build_old_libs" = yes; then
+ removelist="$obj $libobj"
+ else
+ removelist="$libobj"
+ fi
+
+ $run $rm $removelist
+ trap "$run $rm $removelist; exit 1" 1 2 15
+
+ # On Cygwin there's no "real" PIC flag so we must build both object types
+ case $host_os in
+ cygwin* | mingw* | pw32* | os2*)
+ pic_mode=default
+ ;;
+ esac
+ if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
+ # non-PIC code in shared libraries is not supported
+ pic_mode=default
+ fi
+
+ # Calculate the filename of the output object if compiler does
+ # not support -o with -c
+ if test "$compiler_c_o" = no; then
+ output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
+ lockfile="$output_obj.lock"
+ removelist="$removelist $output_obj $lockfile"
+ trap "$run $rm $removelist; exit 1" 1 2 15
+ else
+ need_locks=no
+ lockfile=
+ fi
+
+ # Lock this critical section if it is needed
+ # We use this script file to make the link, it avoids creating a new file
+ if test "$need_locks" = yes; then
+ until $run ln "$0" "$lockfile" 2>/dev/null; do
+ $show "Waiting for $lockfile to be removed"
+ sleep 2
+ done
+ elif test "$need_locks" = warn; then
+ if test -f "$lockfile"; then
+ echo "\
+*** ERROR, $lockfile exists and contains:
+`cat $lockfile 2>/dev/null`
+
+This indicates that another process is trying to use the same
+temporary object file, and libtool could not work around it because
+your compiler does not support \`-c' and \`-o' together. If you
+repeat this compilation, it may succeed, by chance, but you had better
+avoid parallel builds (make -j) in this platform, or get a better
+compiler."
+
+ $run $rm $removelist
+ exit 1
+ fi
+ echo $srcfile > "$lockfile"
+ fi
+
+ if test -n "$fix_srcfile_path"; then
+ eval srcfile=\"$fix_srcfile_path\"
+ fi
+
+ # Only build a PIC object if we are building libtool libraries.
+ if test "$build_libtool_libs" = yes; then
+ # Without this assignment, base_compile gets emptied.
+ fbsd_hideous_sh_bug=$base_compile
+
+ if test "$pic_mode" != no; then
+ # All platforms use -DPIC, to notify preprocessed assembler code.
+ command="$base_compile $srcfile $pic_flag -DPIC"
+ else
+ # Don't build PIC code
+ command="$base_compile $srcfile"
+ fi
+ if test "$build_old_libs" = yes; then
+ lo_libobj="$libobj"
+ dir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$dir" = "X$libobj"; then
+ dir="$objdir"
+ else
+ dir="$dir/$objdir"
+ fi
+ libobj="$dir/"`$echo "X$libobj" | $Xsed -e 's%^.*/%%'`
+
+ if test -d "$dir"; then
+ $show "$rm $libobj"
+ $run $rm $libobj
+ else
+ $show "$mkdir $dir"
+ $run $mkdir $dir
+ status=$?
+ if test $status -ne 0 && test ! -d $dir; then
+ exit $status
+ fi
+ fi
+ fi
+ if test "$compiler_o_lo" = yes; then
+ output_obj="$libobj"
+ command="$command -o $output_obj"
+ elif test "$compiler_c_o" = yes; then
+ output_obj="$obj"
+ command="$command -o $output_obj"
+ fi
+
+ $run $rm "$output_obj"
+ $show "$command"
+ if $run eval "$command"; then :
+ else
+ test -n "$output_obj" && $run $rm $removelist
+ exit 1
+ fi
+
+ if test "$need_locks" = warn &&
+ test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
+ echo "\
+*** ERROR, $lockfile contains:
+`cat $lockfile 2>/dev/null`
+
+but it should contain:
+$srcfile
+
+This indicates that another process is trying to use the same
+temporary object file, and libtool could not work around it because
+your compiler does not support \`-c' and \`-o' together. If you
+repeat this compilation, it may succeed, by chance, but you had better
+avoid parallel builds (make -j) in this platform, or get a better
+compiler."
+
+ $run $rm $removelist
+ exit 1
+ fi
+
+ # Just move the object if needed, then go on to compile the next one
+ if test x"$output_obj" != x"$libobj"; then
+ $show "$mv $output_obj $libobj"
+ if $run $mv $output_obj $libobj; then :
+ else
+ error=$?
+ $run $rm $removelist
+ exit $error
+ fi
+ fi
+
+ # If we have no pic_flag, then copy the object into place and finish.
+ if (test -z "$pic_flag" || test "$pic_mode" != default) &&
+ test "$build_old_libs" = yes; then
+ # Rename the .lo from within objdir to obj
+ if test -f $obj; then
+ $show $rm $obj
+ $run $rm $obj
+ fi
+
+ $show "$mv $libobj $obj"
+ if $run $mv $libobj $obj; then :
+ else
+ error=$?
+ $run $rm $removelist
+ exit $error
+ fi
+
+ xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$xdir" = "X$obj"; then
+ xdir="."
+ else
+ xdir="$xdir"
+ fi
+ baseobj=`$echo "X$obj" | $Xsed -e "s%.*/%%"`
+ libobj=`$echo "X$baseobj" | $Xsed -e "$o2lo"`
+ # Now arrange that obj and lo_libobj become the same file
+ $show "(cd $xdir && $LN_S $baseobj $libobj)"
+ if $run eval '(cd $xdir && $LN_S $baseobj $libobj)'; then
+ # Unlock the critical section if it was locked
+ if test "$need_locks" != no; then
+ $run $rm "$lockfile"
+ fi
+ exit 0
+ else
+ error=$?
+ $run $rm $removelist
+ exit $error
+ fi
+ fi
+
+ # Allow error messages only from the first compilation.
+ suppress_output=' >/dev/null 2>&1'
+ fi
+
+ # Only build a position-dependent object if we build old libraries.
+ if test "$build_old_libs" = yes; then
+ if test "$pic_mode" != yes; then
+ # Don't build PIC code
+ command="$base_compile $srcfile"
+ else
+ # All platforms use -DPIC, to notify preprocessed assembler code.
+ command="$base_compile $srcfile $pic_flag -DPIC"
+ fi
+ if test "$compiler_c_o" = yes; then
+ command="$command -o $obj"
+ output_obj="$obj"
+ fi
+
+ # Suppress compiler output if we already did a PIC compilation.
+ command="$command$suppress_output"
+ $run $rm "$output_obj"
+ $show "$command"
+ if $run eval "$command"; then :
+ else
+ $run $rm $removelist
+ exit 1
+ fi
+
+ if test "$need_locks" = warn &&
+ test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
+ echo "\
+*** ERROR, $lockfile contains:
+`cat $lockfile 2>/dev/null`
+
+but it should contain:
+$srcfile
+
+This indicates that another process is trying to use the same
+temporary object file, and libtool could not work around it because
+your compiler does not support \`-c' and \`-o' together. If you
+repeat this compilation, it may succeed, by chance, but you had better
+avoid parallel builds (make -j) in this platform, or get a better
+compiler."
+
+ $run $rm $removelist
+ exit 1
+ fi
+
+ # Just move the object if needed
+ if test x"$output_obj" != x"$obj"; then
+ $show "$mv $output_obj $obj"
+ if $run $mv $output_obj $obj; then :
+ else
+ error=$?
+ $run $rm $removelist
+ exit $error
+ fi
+ fi
+
+ # Create an invalid libtool object if no PIC, so that we do not
+ # accidentally link it into a program.
+ if test "$build_libtool_libs" != yes; then
+ $show "echo timestamp > $libobj"
+ $run eval "echo timestamp > \$libobj" || exit $?
+ else
+ # Move the .lo from within objdir
+ $show "$mv $libobj $lo_libobj"
+ if $run $mv $libobj $lo_libobj; then :
+ else
+ error=$?
+ $run $rm $removelist
+ exit $error
+ fi
+ fi
+ fi
+
+ # Unlock the critical section if it was locked
+ if test "$need_locks" != no; then
+ $run $rm "$lockfile"
+ fi
+
+ exit 0
+ ;;
+
+ # libtool link mode
+ link | relink)
+ modename="$modename: link"
+ case $host in
+ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+ # It is impossible to link a dll without this setting, and
+ # we shouldn't force the makefile maintainer to figure out
+ # which system we are compiling for in order to pass an extra
+ # flag for every libtool invokation.
+ # allow_undefined=no
+
+ # FIXME: Unfortunately, there are problems with the above when trying
+ # to make a dll which has undefined symbols, in which case not
+ # even a static library is built. For now, we need to specify
+ # -no-undefined on the libtool link line when we can be certain
+ # that all symbols are satisfied, otherwise we get a static library.
+ allow_undefined=yes
+ ;;
+ *)
+ allow_undefined=yes
+ ;;
+ esac
+ libtool_args="$nonopt"
+ compile_command="$nonopt"
+ finalize_command="$nonopt"
+
+ compile_rpath=
+ finalize_rpath=
+ compile_shlibpath=
+ finalize_shlibpath=
+ convenience=
+ old_convenience=
+ deplibs=
+ old_deplibs=
+ compiler_flags=
+ linker_flags=
+ dllsearchpath=
+ lib_search_path=`pwd`
+ inst_prefix_dir=
+
+ avoid_version=no
+ dlfiles=
+ dlprefiles=
+ dlself=no
+ export_dynamic=no
+ export_symbols=
+ export_symbols_regex=
+ generated=
+ libobjs=
+ ltlibs=
+ module=no
+ no_install=no
+ objs=
+ prefer_static_libs=no
+ preload=no
+ prev=
+ prevarg=
+ release=
+ rpath=
+ xrpath=
+ perm_rpath=
+ temp_rpath=
+ thread_safe=no
+ vinfo=
+
+ # We need to know -static, to get the right output filenames.
+ for arg
+ do
+ case $arg in
+ -all-static | -static)
+ if test "X$arg" = "X-all-static"; then
+ if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
+ $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
+ fi
+ if test -n "$link_static_flag"; then
+ dlopen_self=$dlopen_self_static
+ fi
+ else
+ if test -z "$pic_flag" && test -n "$link_static_flag"; then
+ dlopen_self=$dlopen_self_static
+ fi
+ fi
+ build_libtool_libs=no
+ build_old_libs=yes
+ prefer_static_libs=yes
+ break
+ ;;
+ esac
+ done
+
+ # See if our shared archives depend on static archives.
+ test -n "$old_archive_from_new_cmds" && build_old_libs=yes
+
+ # Go through the arguments, transforming them on the way.
+ while test $# -gt 0; do
+ arg="$1"
+ shift
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
+ ;;
+ *) qarg=$arg ;;
+ esac
+ libtool_args="$libtool_args $qarg"
+
+ # If the previous option needs an argument, assign it.
+ if test -n "$prev"; then
+ case $prev in
+ output)
+ compile_command="$compile_command @OUTPUT@"
+ finalize_command="$finalize_command @OUTPUT@"
+ ;;
+ esac
+
+ case $prev in
+ dlfiles|dlprefiles)
+ if test "$preload" = no; then
+ # Add the symbol object into the linking commands.
+ compile_command="$compile_command @SYMFILE@"
+ finalize_command="$finalize_command @SYMFILE@"
+ preload=yes
+ fi
+ case $arg in
+ *.la | *.lo) ;; # We handle these cases below.
+ force)
+ if test "$dlself" = no; then
+ dlself=needless
+ export_dynamic=yes
+ fi
+ prev=
+ continue
+ ;;
+ self)
+ if test "$prev" = dlprefiles; then
+ dlself=yes
+ elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
+ dlself=yes
+ else
+ dlself=needless
+ export_dynamic=yes
+ fi
+ prev=
+ continue
+ ;;
+ *)
+ if test "$prev" = dlfiles; then
+ dlfiles="$dlfiles $arg"
+ else
+ dlprefiles="$dlprefiles $arg"
+ fi
+ prev=
+ continue
+ ;;
+ esac
+ ;;
+ expsyms)
+ export_symbols="$arg"
+ if test ! -f "$arg"; then
+ $echo "$modename: symbol file \`$arg' does not exist"
+ exit 1
+ fi
+ prev=
+ continue
+ ;;
+ expsyms_regex)
+ export_symbols_regex="$arg"
+ prev=
+ continue
+ ;;
+ inst_prefix)
+ inst_prefix_dir="$arg"
+ prev=
+ continue
+ ;;
+ release)
+ release="-$arg"
+ prev=
+ continue
+ ;;
+ rpath | xrpath)
+ # We need an absolute path.
+ case $arg in
+ [\\/]* | [A-Za-z]:[\\/]*) ;;
+ *)
+ $echo "$modename: only absolute run-paths are allowed" 1>&2
+ exit 1
+ ;;
+ esac
+ if test "$prev" = rpath; then
+ case "$rpath " in
+ *" $arg "*) ;;
+ *) rpath="$rpath $arg" ;;
+ esac
+ else
+ case "$xrpath " in
+ *" $arg "*) ;;
+ *) xrpath="$xrpath $arg" ;;
+ esac
+ fi
+ prev=
+ continue
+ ;;
+ xcompiler)
+ compiler_flags="$compiler_flags $qarg"
+ prev=
+ compile_command="$compile_command $qarg"
+ finalize_command="$finalize_command $qarg"
+ continue
+ ;;
+ xlinker)
+ linker_flags="$linker_flags $qarg"
+ compiler_flags="$compiler_flags $wl$qarg"
+ prev=
+ compile_command="$compile_command $wl$qarg"
+ finalize_command="$finalize_command $wl$qarg"
+ continue
+ ;;
+ *)
+ eval "$prev=\"\$arg\""
+ prev=
+ continue
+ ;;
+ esac
+ fi # test -n $prev
+
+ prevarg="$arg"
+
+ case $arg in
+ -all-static)
+ if test -n "$link_static_flag"; then
+ compile_command="$compile_command $link_static_flag"
+ finalize_command="$finalize_command $link_static_flag"
+ fi
+ continue
+ ;;
+
+ -allow-undefined)
+ # FIXME: remove this flag sometime in the future.
+ $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
+ continue
+ ;;
+
+ -avoid-version)
+ avoid_version=yes
+ continue
+ ;;
+
+ -dlopen)
+ prev=dlfiles
+ continue
+ ;;
+
+ -dlpreopen)
+ prev=dlprefiles
+ continue
+ ;;
+
+ -export-dynamic)
+ export_dynamic=yes
+ continue
+ ;;
+
+ -export-symbols | -export-symbols-regex)
+ if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
+ $echo "$modename: more than one -exported-symbols argument is not allowed"
+ exit 1
+ fi
+ if test "X$arg" = "X-export-symbols"; then
+ prev=expsyms
+ else
+ prev=expsyms_regex
+ fi
+ continue
+ ;;
+
+ -inst-prefix-dir)
+ prev=inst_prefix
+ continue
+ ;;
+
+ # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
+ # so, if we see these flags be careful not to treat them like -L
+ -L[A-Z][A-Z]*:*)
+ case $with_gcc/$host in
+ no/*-*-irix*)
+ compile_command="$compile_command $arg"
+ finalize_command="$finalize_command $arg"
+ ;;
+ esac
+ continue
+ ;;
+
+ -L*)
+ dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
+ # We need an absolute path.
+ case $dir in
+ [\\/]* | [A-Za-z]:[\\/]*) ;;
+ *)
+ absdir=`cd "$dir" && pwd`
+ if test -z "$absdir"; then
+ $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
+ exit 1
+ fi
+ dir="$absdir"
+ ;;
+ esac
+ case "$deplibs " in
+ *" -L$dir "*) ;;
+ *)
+ deplibs="$deplibs -L$dir"
+ lib_search_path="$lib_search_path $dir"
+ ;;
+ esac
+ case $host in
+ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+ case :$dllsearchpath: in
+ *":$dir:"*) ;;
+ *) dllsearchpath="$dllsearchpath:$dir";;
+ esac
+ ;;
+ esac
+ continue
+ ;;
+
+ -l*)
+ if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
+ case $host in
+ *-*-cygwin* | *-*-pw32* | *-*-beos*)
+ # These systems don't actually have a C or math library (as such)
+ continue
+ ;;
+ *-*-mingw* | *-*-os2*)
+ # These systems don't actually have a C library (as such)
+ test "X$arg" = "X-lc" && continue
+ ;;
+ *-*-openbsd*)
+ # Do not include libc due to us having libc/libc_r.
+ test "X$arg" = "X-lc" && continue
+ ;;
+ esac
+ elif test "X$arg" = "X-lc_r"; then
+ case $host in
+ *-*-openbsd*)
+ # Do not include libc_r directly, use -pthread flag.
+ continue
+ ;;
+ esac
+ fi
+ deplibs="$deplibs $arg"
+ continue
+ ;;
+
+ -module)
+ module=yes
+ continue
+ ;;
+
+ -no-fast-install)
+ fast_install=no
+ continue
+ ;;
+
+ -no-install)
+ case $host in
+ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+ # The PATH hackery in wrapper scripts is required on Windows
+ # in order for the loader to find any dlls it needs.
+ $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2
+ $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2
+ fast_install=no
+ ;;
+ *) no_install=yes ;;
+ esac
+ continue
+ ;;
+
+ -no-undefined)
+ allow_undefined=no
+ continue
+ ;;
+
+ -o) prev=output ;;
+
+ -release)
+ prev=release
+ continue
+ ;;
+
+ -rpath)
+ prev=rpath
+ continue
+ ;;
+
+ -R)
+ prev=xrpath
+ continue
+ ;;
+
+ -R*)
+ dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
+ # We need an absolute path.
+ case $dir in
+ [\\/]* | [A-Za-z]:[\\/]*) ;;
+ *)
+ $echo "$modename: only absolute run-paths are allowed" 1>&2
+ exit 1
+ ;;
+ esac
+ case "$xrpath " in
+ *" $dir "*) ;;
+ *) xrpath="$xrpath $dir" ;;
+ esac
+ continue
+ ;;
+
+ -static)
+ # The effects of -static are defined in a previous loop.
+ # We used to do the same as -all-static on platforms that
+ # didn't have a PIC flag, but the assumption that the effects
+ # would be equivalent was wrong. It would break on at least
+ # Digital Unix and AIX.
+ continue
+ ;;
+
+ -thread-safe)
+ thread_safe=yes
+ continue
+ ;;
+
+ -version-info)
+ prev=vinfo
+ continue
+ ;;
+
+ -Wc,*)
+ args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
+ arg=
+ save_ifs="$IFS"; IFS=','
+ for flag in $args; do
+ IFS="$save_ifs"
+ case $flag in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ flag="\"$flag\""
+ ;;
+ esac
+ arg="$arg $wl$flag"
+ compiler_flags="$compiler_flags $flag"
+ done
+ IFS="$save_ifs"
+ arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
+ ;;
+
+ -Wl,*)
+ args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
+ arg=
+ save_ifs="$IFS"; IFS=','
+ for flag in $args; do
+ IFS="$save_ifs"
+ case $flag in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ flag="\"$flag\""
+ ;;
+ esac
+ arg="$arg $wl$flag"
+ compiler_flags="$compiler_flags $wl$flag"
+ linker_flags="$linker_flags $flag"
+ done
+ IFS="$save_ifs"
+ arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
+ ;;
+
+ -Xcompiler)
+ prev=xcompiler
+ continue
+ ;;
+
+ -Xlinker)
+ prev=xlinker
+ continue
+ ;;
+
+ # Some other compiler flag.
+ -* | +*)
+ # Unknown arguments in both finalize_command and compile_command need
+ # to be aesthetically quoted because they are evaled later.
+ arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ arg="\"$arg\""
+ ;;
+ esac
+ ;;
+
+ *.lo | *.$objext)
+ # A library or standard object.
+ if test "$prev" = dlfiles; then
+ # This file was specified with -dlopen.
+ if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
+ dlfiles="$dlfiles $arg"
+ prev=
+ continue
+ else
+ # If libtool objects are unsupported, then we need to preload.
+ prev=dlprefiles
+ fi
+ fi
+
+ if test "$prev" = dlprefiles; then
+ # Preload the old-style object.
+ dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"`
+ prev=
+ else
+ case $arg in
+ *.lo) libobjs="$libobjs $arg" ;;
+ *) objs="$objs $arg" ;;
+ esac
+ fi
+ ;;
+
+ *.$libext)
+ # An archive.
+ deplibs="$deplibs $arg"
+ old_deplibs="$old_deplibs $arg"
+ continue
+ ;;
+
+ *.la)
+ # A libtool-controlled library.
+
+ if test "$prev" = dlfiles; then
+ # This library was specified with -dlopen.
+ dlfiles="$dlfiles $arg"
+ prev=
+ elif test "$prev" = dlprefiles; then
+ # The library was specified with -dlpreopen.
+ dlprefiles="$dlprefiles $arg"
+ prev=
+ else
+ deplibs="$deplibs $arg"
+ fi
+ continue
+ ;;
+
+ # Some other compiler argument.
+ *)
+ # Unknown arguments in both finalize_command and compile_command need
+ # to be aesthetically quoted because they are evaled later.
+ arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ arg="\"$arg\""
+ ;;
+ esac
+ ;;
+ esac # arg
+
+ # Now actually substitute the argument into the commands.
+ if test -n "$arg"; then
+ compile_command="$compile_command $arg"
+ finalize_command="$finalize_command $arg"
+ fi
+ done # argument parsing loop
+
+ if test -n "$prev"; then
+ $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
+ eval arg=\"$export_dynamic_flag_spec\"
+ compile_command="$compile_command $arg"
+ finalize_command="$finalize_command $arg"
+ fi
+
+ # calculate the name of the file, without its directory
+ outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
+ libobjs_save="$libobjs"
+
+ if test -n "$shlibpath_var"; then
+ # get the directories listed in $shlibpath_var
+ eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
+ else
+ shlib_search_path=
+ fi
+ eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
+ eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
+
+ output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$output_objdir" = "X$output"; then
+ output_objdir="$objdir"
+ else
+ output_objdir="$output_objdir/$objdir"
+ fi
+ # Create the object directory.
+ if test ! -d "$output_objdir"; then
+ $show "$mkdir $output_objdir"
+ $run $mkdir $output_objdir
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$output_objdir"; then
+ exit $status
+ fi
+ fi
+
+ # Determine the type of output
+ case $output in
+ "")
+ $echo "$modename: you must specify an output file" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ ;;
+ *.$libext) linkmode=oldlib ;;
+ *.lo | *.$objext) linkmode=obj ;;
+ *.la) linkmode=lib ;;
+ *) linkmode=prog ;; # Anything else should be a program.
+ esac
+
+ specialdeplibs=
+ libs=
+ # Find all interdependent deplibs by searching for libraries
+ # that are linked more than once (e.g. -la -lb -la)
+ for deplib in $deplibs; do
+ if test "X$duplicate_deps" = "Xyes" ; then
+ case "$libs " in
+ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+ esac
+ fi
+ libs="$libs $deplib"
+ done
+
+ if test "$linkmode" = lib; then
+ libs="$predeps $libs $compiler_lib_search_path $postdeps"
+
+ # Compute libraries that are listed more than once in $predeps
+ # $postdeps and mark them as special (i.e., whose duplicates are
+ # not to be eliminated).
+ pre_post_deps=
+ if test "X$duplicate_deps" = "Xyes" ; then
+ for pre_post_dep in $predeps $postdeps; do
+ case "$pre_post_deps " in
+ *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;
+ esac
+ pre_post_deps="$pre_post_deps $pre_post_dep"
+ done
+ fi
+ pre_post_deps=
+ fi
+
+ deplibs=
+ newdependency_libs=
+ newlib_search_path=
+ need_relink=no # whether we're linking any uninstalled libtool libraries
+ notinst_deplibs= # not-installed libtool libraries
+ notinst_path= # paths that contain not-installed libtool libraries
+ case $linkmode in
+ lib)
+ passes="conv link"
+ for file in $dlfiles $dlprefiles; do
+ case $file in
+ *.la) ;;
+ *)
+ $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+ ;;
+ prog)
+ compile_deplibs=
+ finalize_deplibs=
+ alldeplibs=no
+ newdlfiles=
+ newdlprefiles=
+ passes="conv scan dlopen dlpreopen link"
+ ;;
+ *) passes="conv"
+ ;;
+ esac
+ for pass in $passes; do
+ if test "$linkmode" = prog; then
+ # Determine which files to process
+ case $pass in
+ dlopen)
+ libs="$dlfiles"
+ save_deplibs="$deplibs" # Collect dlpreopened libraries
+ deplibs=
+ ;;
+ dlpreopen) libs="$dlprefiles" ;;
+ link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
+ esac
+ fi
+ for deplib in $libs; do
+ lib=
+ found=no
+ case $deplib in
+ -l*)
+ if test "$linkmode" = oldlib && test "$linkmode" = obj; then
+ $echo "$modename: warning: \`-l' is ignored for archives/objects: $deplib" 1>&2
+ continue
+ fi
+ if test "$pass" = conv; then
+ deplibs="$deplib $deplibs"
+ continue
+ fi
+ name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
+ for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
+ # Search the libtool library
+ lib="$searchdir/lib${name}.la"
+ if test -f "$lib"; then
+ found=yes
+ break
+ fi
+ done
+ if test "$found" != yes; then
+ # deplib doesn't seem to be a libtool library
+ if test "$linkmode,$pass" = "prog,link"; then
+ compile_deplibs="$deplib $compile_deplibs"
+ finalize_deplibs="$deplib $finalize_deplibs"
+ else
+ deplibs="$deplib $deplibs"
+ test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
+ fi
+ continue
+ fi
+ ;; # -l
+ -L*)
+ case $linkmode in
+ lib)
+ deplibs="$deplib $deplibs"
+ test "$pass" = conv && continue
+ newdependency_libs="$deplib $newdependency_libs"
+ newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
+ ;;
+ prog)
+ if test "$pass" = conv; then
+ deplibs="$deplib $deplibs"
+ continue
+ fi
+ if test "$pass" = scan; then
+ deplibs="$deplib $deplibs"
+ newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
+ else
+ compile_deplibs="$deplib $compile_deplibs"
+ finalize_deplibs="$deplib $finalize_deplibs"
+ fi
+ ;;
+ *)
+ $echo "$modename: warning: \`-L' is ignored for archives/objects: $deplib" 1>&2
+ ;;
+ esac # linkmode
+ continue
+ ;; # -L
+ -R*)
+ if test "$pass" = link; then
+ dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
+ # Make sure the xrpath contains only unique directories.
+ case "$xrpath " in
+ *" $dir "*) ;;
+ *) xrpath="$xrpath $dir" ;;
+ esac
+ fi
+ deplibs="$deplib $deplibs"
+ continue
+ ;;
+ *.la) lib="$deplib" ;;
+ *.$libext)
+ if test "$pass" = conv; then
+ deplibs="$deplib $deplibs"
+ continue
+ fi
+ case $linkmode in
+ lib)
+ if test "$deplibs_check_method" != pass_all; then
+ echo
+ echo "*** Warning: This library needs some functionality provided by $deplib."
+ echo "*** I have the capability to make that library automatically link in when"
+ echo "*** you link to this library. But I can only do this if you have a"
+ echo "*** shared version of the library, which you do not appear to have."
+ else
+ echo
+ echo "*** Warning: Linking the shared library $output against the"
+ echo "*** static library $deplib is not portable!"
+ deplibs="$deplib $deplibs"
+ fi
+ continue
+ ;;
+ prog)
+ if test "$pass" != link; then
+ deplibs="$deplib $deplibs"
+ else
+ compile_deplibs="$deplib $compile_deplibs"
+ finalize_deplibs="$deplib $finalize_deplibs"
+ fi
+ continue
+ ;;
+ esac # linkmode
+ ;; # *.$libext
+ *.lo | *.$objext)
+ if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
+ # If there is no dlopen support or we're linking statically,
+ # we need to preload.
+ newdlprefiles="$newdlprefiles $deplib"
+ compile_deplibs="$deplib $compile_deplibs"
+ finalize_deplibs="$deplib $finalize_deplibs"
+ else
+ newdlfiles="$newdlfiles $deplib"
+ fi
+ continue
+ ;;
+ %DEPLIBS%)
+ alldeplibs=yes
+ continue
+ ;;
+ esac # case $deplib
+ if test "$found" = yes || test -f "$lib"; then :
+ else
+ $echo "$modename: cannot find the library \`$lib'" 1>&2
+ exit 1
+ fi
+
+ # Check to see that this really is a libtool archive.
+ if (sed -e '2q' $lib | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
+ else
+ $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+ exit 1
+ fi
+
+ ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
+ test "X$ladir" = "X$lib" && ladir="."
+
+ dlname=
+ dlopen=
+ dlpreopen=
+ libdir=
+ library_names=
+ old_library=
+ # If the library was installed with an old release of libtool,
+ # it will not redefine variable installed.
+ installed=yes
+
+ # Read the .la file
+ case $lib in
+ */* | *\\*) . $lib ;;
+ *) . ./$lib ;;
+ esac
+
+ if test "$linkmode,$pass" = "lib,link" ||
+ test "$linkmode,$pass" = "prog,scan" ||
+ { test "$linkmode" = oldlib && test "$linkmode" = obj; }; then
+ # Add dl[pre]opened files of deplib
+ test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
+ test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
+ fi
+
+ if test "$pass" = conv; then
+ # Only check for convenience libraries
+ deplibs="$lib $deplibs"
+ if test -z "$libdir"; then
+ if test -z "$old_library"; then
+ $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
+ exit 1
+ fi
+ # It is a libtool convenience library, so add in its objects.
+ convenience="$convenience $ladir/$objdir/$old_library"
+ old_convenience="$old_convenience $ladir/$objdir/$old_library"
+ tmp_libs=
+ for deplib in $dependency_libs; do
+ deplibs="$deplib $deplibs"
+ if test "X$duplicate_deps" = "Xyes" ; then
+ case "$tmp_libs " in
+ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+ esac
+ fi
+ tmp_libs="$tmp_libs $deplib"
+ done
+ elif test "$linkmode" != prog && test "$linkmode" != lib; then
+ $echo "$modename: \`$lib' is not a convenience library" 1>&2
+ exit 1
+ fi
+ continue
+ fi # $pass = conv
+
+ # Get the name of the library we link against.
+ linklib=
+ for l in $old_library $library_names; do
+ linklib="$l"
+ done
+ if test -z "$linklib"; then
+ $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
+ exit 1
+ fi
+
+ # This library was specified with -dlopen.
+ if test "$pass" = dlopen; then
+ if test -z "$libdir"; then
+ $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2
+ exit 1
+ fi
+ if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
+ # If there is no dlname, no dlopen support or we're linking
+ # statically, we need to preload.
+ dlprefiles="$dlprefiles $lib"
+ else
+ newdlfiles="$newdlfiles $lib"
+ fi
+ continue
+ fi # $pass = dlopen
+
+ # We need an absolute path.
+ case $ladir in
+ [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
+ *)
+ abs_ladir=`cd "$ladir" && pwd`
+ if test -z "$abs_ladir"; then
+ $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2
+ $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
+ abs_ladir="$ladir"
+ fi
+ ;;
+ esac
+ laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
+
+ # Find the relevant object directory and library name.
+ if test "X$installed" = Xyes; then
+ if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
+ $echo "$modename: warning: library \`$lib' was moved." 1>&2
+ dir="$ladir"
+ absdir="$abs_ladir"
+ libdir="$abs_ladir"
+ else
+ dir="$libdir"
+ absdir="$libdir"
+ fi
+ else
+ dir="$ladir/$objdir"
+ absdir="$abs_ladir/$objdir"
+ # Remove this search path later
+ notinst_path="$notinst_path $abs_ladir"
+ fi # $installed = yes
+ name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
+
+ # This library was specified with -dlpreopen.
+ if test "$pass" = dlpreopen; then
+ if test -z "$libdir"; then
+ $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2
+ exit 1
+ fi
+ # Prefer using a static library (so that no silly _DYNAMIC symbols
+ # are required to link).
+ if test -n "$old_library"; then
+ newdlprefiles="$newdlprefiles $dir/$old_library"
+ # Otherwise, use the dlname, so that lt_dlopen finds it.
+ elif test -n "$dlname"; then
+ newdlprefiles="$newdlprefiles $dir/$dlname"
+ else
+ newdlprefiles="$newdlprefiles $dir/$linklib"
+ fi
+ fi # $pass = dlpreopen
+
+ if test -z "$libdir"; then
+ # Link the convenience library
+ if test "$linkmode" = lib; then
+ deplibs="$dir/$old_library $deplibs"
+ elif test "$linkmode,$pass" = "prog,link"; then
+ compile_deplibs="$dir/$old_library $compile_deplibs"
+ finalize_deplibs="$dir/$old_library $finalize_deplibs"
+ else
+ deplibs="$lib $deplibs"
+ fi
+ continue
+ fi
+
+ if test "$linkmode" = prog && test "$pass" != link; then
+ newlib_search_path="$newlib_search_path $ladir"
+ deplibs="$lib $deplibs"
+
+ linkalldeplibs=no
+ if test "$link_all_deplibs" != no || test -z "$library_names" ||
+ test "$build_libtool_libs" = no; then
+ linkalldeplibs=yes
+ fi
+
+ tmp_libs=
+ for deplib in $dependency_libs; do
+ case $deplib in
+ -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
+ esac
+ # Need to link against all dependency_libs?
+ if test "$linkalldeplibs" = yes; then
+ deplibs="$deplib $deplibs"
+ else
+ # Need to hardcode shared library paths
+ # or/and link against static libraries
+ newdependency_libs="$deplib $newdependency_libs"
+ fi
+ if test "X$duplicate_deps" = "Xyes" ; then
+ case "$tmp_libs " in
+ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+ esac
+ fi
+ tmp_libs="$tmp_libs $deplib"
+ done # for deplib
+ continue
+ fi # $linkmode = prog...
+
+ link_static=no # Whether the deplib will be linked statically
+ if test -n "$library_names" &&
+ { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
+ # Link against this shared library
+
+ if test "$linkmode,$pass" = "prog,link" ||
+ { test "$linkmode" = lib && test "$hardcode_into_libs" = yes; }; then
+ # Hardcode the library path.
+ # Skip directories that are in the system default run-time
+ # search path.
+ case " $sys_lib_dlsearch_path " in
+ *" $absdir "*) ;;
+ *)
+ case "$compile_rpath " in
+ *" $absdir "*) ;;
+ *) compile_rpath="$compile_rpath $absdir"
+ esac
+ ;;
+ esac
+ case " $sys_lib_dlsearch_path " in
+ *" $libdir "*) ;;
+ *)
+ case "$finalize_rpath " in
+ *" $libdir "*) ;;
+ *) finalize_rpath="$finalize_rpath $libdir"
+ esac
+ ;;
+ esac
+ if test "$linkmode" = prog; then
+ # We need to hardcode the library path
+ if test -n "$shlibpath_var"; then
+ # Make sure the rpath contains only unique directories.
+ case "$temp_rpath " in
+ *" $dir "*) ;;
+ *" $absdir "*) ;;
+ *) temp_rpath="$temp_rpath $dir" ;;
+ esac
+ fi
+ fi
+ fi # $linkmode,$pass = prog,link...
+
+ if test "$alldeplibs" = yes &&
+ { test "$deplibs_check_method" = pass_all ||
+ { test "$build_libtool_libs" = yes &&
+ test -n "$library_names"; }; }; then
+ # We only need to search for static libraries
+ continue
+ fi
+
+ if test "$installed" = no; then
+ notinst_deplibs="$notinst_deplibs $lib"
+ need_relink=yes
+ fi
+
+ if test -n "$old_archive_from_expsyms_cmds"; then
+ # figure out the soname
+ set dummy $library_names
+ realname="$2"
+ shift; shift
+ libname=`eval \\$echo \"$libname_spec\"`
+ # use dlname if we got it. it's perfectly good, no?
+ if test -n "$dlname"; then
+ soname="$dlname"
+ elif test -n "$soname_spec"; then
+ # bleh windows
+ case $host in
+ *cygwin*)
+ major=`expr $current - $age`
+ versuffix="-$major"
+ ;;
+ esac
+ eval soname=\"$soname_spec\"
+ else
+ soname="$realname"
+ fi
+
+ # Make a new name for the extract_expsyms_cmds to use
+ soroot="$soname"
+ soname=`echo $soroot | sed -e 's/^.*\///'`
+ newlib="libimp-`echo $soname | sed 's/^lib//;s/\.dll$//'`.a"
+
+ # If the library has no export list, then create one now
+ if test -f "$output_objdir/$soname-def"; then :
+ else
+ $show "extracting exported symbol list from \`$soname'"
+ save_ifs="$IFS"; IFS='~'
+ eval cmds=\"$extract_expsyms_cmds\"
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ fi
+
+ # Create $newlib
+ if test -f "$output_objdir/$newlib"; then :; else
+ $show "generating import library for \`$soname'"
+ save_ifs="$IFS"; IFS='~'
+ eval cmds=\"$old_archive_from_expsyms_cmds\"
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ fi
+ # make sure the library variables are pointing to the new library
+ dir=$output_objdir
+ linklib=$newlib
+ fi # test -n "$old_archive_from_expsyms_cmds"
+
+ if test "$linkmode" = prog || test "$mode" != relink; then
+ add_shlibpath=
+ add_dir=
+ add=
+ lib_linked=yes
+ case $hardcode_action in
+ immediate | unsupported)
+ if test "$hardcode_direct" = no; then
+ add="$dir/$linklib"
+ elif test "$hardcode_minus_L" = no; then
+ case $host in
+ *-*-sunos*) add_shlibpath="$dir" ;;
+ esac
+ add_dir="-L$dir"
+ add="-l$name"
+ elif test "$hardcode_shlibpath_var" = no; then
+ add_shlibpath="$dir"
+ add="-l$name"
+ else
+ lib_linked=no
+ fi
+ ;;
+ relink)
+ if test "$hardcode_direct" = yes; then
+ add="$dir/$linklib"
+ elif test "$hardcode_minus_L" = yes; then
+ add_dir="-L$dir"
+ add="-l$name"
+ elif test "$hardcode_shlibpath_var" = yes; then
+ add_shlibpath="$dir"
+ add="-l$name"
+ else
+ lib_linked=no
+ fi
+ ;;
+ *) lib_linked=no ;;
+ esac
+
+ if test "$lib_linked" != yes; then
+ $echo "$modename: configuration error: unsupported hardcode properties"
+ exit 1
+ fi
+
+ if test -n "$add_shlibpath"; then
+ case :$compile_shlibpath: in
+ *":$add_shlibpath:"*) ;;
+ *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
+ esac
+ fi
+ if test "$linkmode" = prog; then
+ test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
+ test -n "$add" && compile_deplibs="$add $compile_deplibs"
+ else
+ test -n "$add_dir" && deplibs="$add_dir $deplibs"
+ test -n "$add" && deplibs="$add $deplibs"
+ if test "$hardcode_direct" != yes && \
+ test "$hardcode_minus_L" != yes && \
+ test "$hardcode_shlibpath_var" = yes; then
+ case :$finalize_shlibpath: in
+ *":$libdir:"*) ;;
+ *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
+ esac
+ fi
+ fi
+ fi
+
+ if test "$linkmode" = prog || test "$mode" = relink; then
+ add_shlibpath=
+ add_dir=
+ add=
+ # Finalize command for both is simple: just hardcode it.
+ if test "$hardcode_direct" = yes; then
+ add="$libdir/$linklib"
+ elif test "$hardcode_minus_L" = yes; then
+ # Try looking first in the location we're being installed to.
+ add_dir=
+ if test -n "$inst_prefix_dir"; then
+ case "$libdir" in
+ [\\/]*)
+ add_dir="-L$inst_prefix_dir$libdir"
+ ;;
+ esac
+ fi
+ add_dir="$add_dir -L$libdir"
+ add="-l$name"
+ elif test "$hardcode_shlibpath_var" = yes; then
+ case :$finalize_shlibpath: in
+ *":$libdir:"*) ;;
+ *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
+ esac
+ add="-l$name"
+ else
+ # We cannot seem to hardcode it, guess we'll fake it.
+ # Try looking first in the location we're being installed to.
+ add_dir=
+ if test -n "$inst_prefix_dir"; then
+ case "$libdir" in
+ [\\/]*)
+ add_dir="-L$inst_prefix_dir$libdir"
+ ;;
+ esac
+ fi
+ add_dir="$add_dir -L$libdir"
+ add="-l$name"
+ fi
+
+ if test "$linkmode" = prog; then
+ test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
+ test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
+ else
+ test -n "$add_dir" && deplibs="$add_dir $deplibs"
+ test -n "$add" && deplibs="$add $deplibs"
+ fi
+ fi
+ elif test "$linkmode" = prog; then
+ if test "$alldeplibs" = yes &&
+ { test "$deplibs_check_method" = pass_all ||
+ { test "$build_libtool_libs" = yes &&
+ test -n "$library_names"; }; }; then
+ # We only need to search for static libraries
+ continue
+ fi
+
+ # Try to link the static library
+ # Here we assume that one of hardcode_direct or hardcode_minus_L
+ # is not unsupported. This is valid on all known static and
+ # shared platforms.
+ if test "$hardcode_direct" != unsupported; then
+ test -n "$old_library" && linklib="$old_library"
+ compile_deplibs="$dir/$linklib $compile_deplibs"
+ finalize_deplibs="$dir/$linklib $finalize_deplibs"
+ else
+ compile_deplibs="-l$name -L$dir $compile_deplibs"
+ finalize_deplibs="-l$name -L$dir $finalize_deplibs"
+ fi
+ elif test "$build_libtool_libs" = yes; then
+ # Not a shared library
+ if test "$deplibs_check_method" != pass_all; then
+ # We're trying link a shared library against a static one
+ # but the system doesn't support it.
+
+ # Just print a warning and add the library to dependency_libs so
+ # that the program can be linked against the static library.
+ echo
+ echo "*** Warning: This library needs some functionality provided by $lib."
+ echo "*** I have the capability to make that library automatically link in when"
+ echo "*** you link to this library. But I can only do this if you have a"
+ echo "*** shared version of the library, which you do not appear to have."
+ if test "$module" = yes; then
+ echo "*** Therefore, libtool will create a static module, that should work "
+ echo "*** as long as the dlopening application is linked with the -dlopen flag."
+ if test -z "$global_symbol_pipe"; then
+ echo
+ echo "*** However, this would only work if libtool was able to extract symbol"
+ echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
+ echo "*** not find such a program. So, this module is probably useless."
+ echo "*** \`nm' from GNU binutils and a full rebuild may help."
+ fi
+ if test "$build_old_libs" = no; then
+ build_libtool_libs=module
+ build_old_libs=yes
+ else
+ build_libtool_libs=no
+ fi
+ fi
+ else
+ convenience="$convenience $dir/$old_library"
+ old_convenience="$old_convenience $dir/$old_library"
+ deplibs="$dir/$old_library $deplibs"
+ link_static=yes
+ fi
+ fi # link shared/static library?
+
+ if test "$linkmode" = lib; then
+ if test -n "$dependency_libs" &&
+ { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes ||
+ test "$link_static" = yes; }; then
+ # Extract -R from dependency_libs
+ temp_deplibs=
+ for libdir in $dependency_libs; do
+ case $libdir in
+ -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
+ case " $xrpath " in
+ *" $temp_xrpath "*) ;;
+ *) xrpath="$xrpath $temp_xrpath";;
+ esac;;
+ *) temp_deplibs="$temp_deplibs $libdir";;
+ esac
+ done
+ dependency_libs="$temp_deplibs"
+ fi
+
+ newlib_search_path="$newlib_search_path $absdir"
+ # Link against this library
+ test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
+ # ... and its dependency_libs
+ tmp_libs=
+ for deplib in $dependency_libs; do
+ newdependency_libs="$deplib $newdependency_libs"
+ if test "X$duplicate_deps" = "Xyes" ; then
+ case "$tmp_libs " in
+ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+ esac
+ fi
+ tmp_libs="$tmp_libs $deplib"
+ done
+
+ if test "$link_all_deplibs" != no; then
+ # Add the search paths of all dependency libraries
+ for deplib in $dependency_libs; do
+ case $deplib in
+ -L*) path="$deplib" ;;
+ *.la)
+ dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
+ test "X$dir" = "X$deplib" && dir="."
+ # We need an absolute path.
+ case $dir in
+ [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
+ *)
+ absdir=`cd "$dir" && pwd`
+ if test -z "$absdir"; then
+ $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
+ absdir="$dir"
+ fi
+ ;;
+ esac
+ if grep "^installed=no" $deplib > /dev/null; then
+ path="-L$absdir/$objdir"
+ else
+ eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
+ if test -z "$libdir"; then
+ $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
+ exit 1
+ fi
+ if test "$absdir" != "$libdir"; then
+ $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
+ fi
+ path="-L$absdir"
+ fi
+ ;;
+ *) continue ;;
+ esac
+ case " $deplibs " in
+ *" $path "*) ;;
+ *) deplibs="$deplibs $path" ;;
+ esac
+ done
+ fi # link_all_deplibs != no
+ fi # linkmode = lib
+ done # for deplib in $libs
+ if test "$pass" = dlpreopen; then
+ # Link the dlpreopened libraries before other libraries
+ for deplib in $save_deplibs; do
+ deplibs="$deplib $deplibs"
+ done
+ fi
+ if test "$pass" != dlopen; then
+ test "$pass" != scan && dependency_libs="$newdependency_libs"
+ if test "$pass" != conv; then
+ # Make sure lib_search_path contains only unique directories.
+ lib_search_path=
+ for dir in $newlib_search_path; do
+ case "$lib_search_path " in
+ *" $dir "*) ;;
+ *) lib_search_path="$lib_search_path $dir" ;;
+ esac
+ done
+ newlib_search_path=
+ fi
+
+ if test "$linkmode,$pass" != "prog,link"; then
+ vars="deplibs"
+ else
+ vars="compile_deplibs finalize_deplibs"
+ fi
+ for var in $vars dependency_libs; do
+ # Add libraries to $var in reverse order
+ eval tmp_libs=\"\$$var\"
+ new_libs=
+ for deplib in $tmp_libs; do
+ case $deplib in
+ -L*) new_libs="$deplib $new_libs" ;;
+ *)
+ case " $specialdeplibs " in
+ *" $deplib "*) new_libs="$deplib $new_libs" ;;
+ *)
+ case " $new_libs " in
+ *" $deplib "*) ;;
+ *) new_libs="$deplib $new_libs" ;;
+ esac
+ ;;
+ esac
+ ;;
+ esac
+ done
+ tmp_libs=
+ for deplib in $new_libs; do
+ case $deplib in
+ -L*)
+ case " $tmp_libs " in
+ *" $deplib "*) ;;
+ *) tmp_libs="$tmp_libs $deplib" ;;
+ esac
+ ;;
+ *) tmp_libs="$tmp_libs $deplib" ;;
+ esac
+ done
+ eval $var=\"$tmp_libs\"
+ done # for var
+ fi
+ if test "$pass" = "conv" &&
+ { test "$linkmode" = "lib" || test "$linkmode" = "prog"; }; then
+ libs="$deplibs" # reset libs
+ deplibs=
+ fi
+ done # for pass
+ if test "$linkmode" = prog; then
+ dlfiles="$newdlfiles"
+ dlprefiles="$newdlprefiles"
+ fi
+
+ case $linkmode in
+ oldlib)
+ if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
+ $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
+ fi
+
+ if test -n "$rpath"; then
+ $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
+ fi
+
+ if test -n "$xrpath"; then
+ $echo "$modename: warning: \`-R' is ignored for archives" 1>&2
+ fi
+
+ if test -n "$vinfo"; then
+ $echo "$modename: warning: \`-version-info' is ignored for archives" 1>&2
+ fi
+
+ if test -n "$release"; then
+ $echo "$modename: warning: \`-release' is ignored for archives" 1>&2
+ fi
+
+ if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
+ $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
+ fi
+
+ # Now set the variables for building old libraries.
+ build_libtool_libs=no
+ oldlibs="$output"
+ objs="$objs$old_deplibs"
+ ;;
+
+ lib)
+ # Make sure we only generate libraries of the form `libNAME.la'.
+ case $outputname in
+ lib*)
+ name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
+ eval libname=\"$libname_spec\"
+ ;;
+ *)
+ if test "$module" = no; then
+ $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+ if test "$need_lib_prefix" != no; then
+ # Add the "lib" prefix for modules if required
+ name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
+ eval libname=\"$libname_spec\"
+ else
+ libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
+ fi
+ ;;
+ esac
+
+ if test -n "$objs"; then
+ if test "$deplibs_check_method" != pass_all; then
+ $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
+ exit 1
+ else
+ echo
+ echo "*** Warning: Linking the shared library $output against the non-libtool"
+ echo "*** objects $objs is not portable!"
+ libobjs="$libobjs $objs"
+ fi
+ fi
+
+ if test "$dlself" != no; then
+ $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
+ fi
+
+ set dummy $rpath
+ if test "$#" -gt 2; then
+ $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
+ fi
+ install_libdir="$2"
+
+ oldlibs=
+ if test -z "$rpath"; then
+ if test "$build_libtool_libs" = yes; then
+ # Building a libtool convenience library.
+ libext=al
+ oldlibs="$output_objdir/$libname.$libext $oldlibs"
+ build_libtool_libs=convenience
+ build_old_libs=yes
+ fi
+
+ if test -n "$vinfo"; then
+ $echo "$modename: warning: \`-version-info' is ignored for convenience libraries" 1>&2
+ fi
+
+ if test -n "$release"; then
+ $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
+ fi
+ else
+
+ # Parse the version information argument.
+ save_ifs="$IFS"; IFS=':'
+ set dummy $vinfo 0 0 0
+ IFS="$save_ifs"
+
+ if test -n "$8"; then
+ $echo "$modename: too many parameters to \`-version-info'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ current="$2"
+ revision="$3"
+ age="$4"
+
+ # Check that each of the things are valid numbers.
+ case $current in
+ [0-9]*) ;;
+ *)
+ $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+ exit 1
+ ;;
+ esac
+
+ case $revision in
+ [0-9]*) ;;
+ *)
+ $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+ exit 1
+ ;;
+ esac
+
+ case $age in
+ [0-9]*) ;;
+ *)
+ $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+ exit 1
+ ;;
+ esac
+
+ if test "$age" -gt "$current"; then
+ $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+ exit 1
+ fi
+
+ # Calculate the version variables.
+ major=
+ versuffix=
+ verstring=
+ case $version_type in
+ none) ;;
+
+ darwin)
+ # Like Linux, but with the current version available in
+ # verstring for coding it into the library header
+ major=.`expr $current - $age`
+ versuffix="$major.$age.$revision"
+ # Darwin ld doesn't like 0 for these options...
+ minor_current=`expr $current + 1`
+ verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
+ ;;
+
+ freebsd-aout)
+ major=".$current"
+ versuffix=".$current.$revision";
+ ;;
+
+ freebsd-elf)
+ major=".$current"
+ versuffix=".$current";
+ ;;
+
+ irix)
+ major=`expr $current - $age + 1`
+ verstring="sgi$major.$revision"
+
+ # Add in all the interfaces that we are compatible with.
+ loop=$revision
+ while test "$loop" -ne 0; do
+ iface=`expr $revision - $loop`
+ loop=`expr $loop - 1`
+ verstring="sgi$major.$iface:$verstring"
+ done
+
+ # Before this point, $major must not contain `.'.
+ major=.$major
+ versuffix="$major.$revision"
+ ;;
+
+ linux)
+ major=.`expr $current - $age`
+ versuffix="$major.$age.$revision"
+ ;;
+
+ osf)
+ major=`expr $current - $age`
+ versuffix=".$current.$age.$revision"
+ verstring="$current.$age.$revision"
+
+ # Add in all the interfaces that we are compatible with.
+ loop=$age
+ while test "$loop" -ne 0; do
+ iface=`expr $current - $loop`
+ loop=`expr $loop - 1`
+ verstring="$verstring:${iface}.0"
+ done
+
+ # Make executables depend on our current version.
+ verstring="$verstring:${current}.0"
+ ;;
+
+ sunos)
+ major=".$current"
+ versuffix=".$current.$revision"
+ ;;
+
+ windows)
+ # Use '-' rather than '.', since we only want one
+ # extension on DOS 8.3 filesystems.
+ major=`expr $current - $age`
+ versuffix="-$major"
+ ;;
+
+ *)
+ $echo "$modename: unknown library version type \`$version_type'" 1>&2
+ echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
+ exit 1
+ ;;
+ esac
+
+ # Clear the version info if we defaulted, and they specified a release.
+ if test -z "$vinfo" && test -n "$release"; then
+ major=
+ verstring="0.0"
+ case $version_type in
+ darwin)
+ # we can't check for "0.0" in archive_cmds due to quoting
+ # problems, so we reset it completely
+ verstring=""
+ ;;
+ *)
+ verstring="0.0"
+ ;;
+ esac
+ if test "$need_version" = no; then
+ versuffix=
+ else
+ versuffix=".0.0"
+ fi
+ fi
+
+ # Remove version info from name if versioning should be avoided
+ if test "$avoid_version" = yes && test "$need_version" = no; then
+ major=
+ versuffix=
+ verstring=""
+ fi
+
+ # Check to see if the archive will have undefined symbols.
+ if test "$allow_undefined" = yes; then
+ if test "$allow_undefined_flag" = unsupported; then
+ $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
+ build_libtool_libs=no
+ build_old_libs=yes
+ fi
+ else
+ # Don't allow undefined symbols.
+ allow_undefined_flag="$no_undefined_flag"
+ fi
+ fi
+
+ if test "$mode" != relink; then
+ # Remove our outputs.
+ $show "${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*"
+ $run ${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*
+ fi
+
+ # Now set the variables for building old libraries.
+ if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
+ oldlibs="$oldlibs $output_objdir/$libname.$libext"
+
+ # Transform .lo files to .o files.
+ oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
+ fi
+
+ # Eliminate all temporary directories.
+ for path in $notinst_path; do
+ lib_search_path=`echo "$lib_search_path " | sed -e 's% $path % %g'`
+ deplibs=`echo "$deplibs " | sed -e 's% -L$path % %g'`
+ dependency_libs=`echo "$dependency_libs " | sed -e 's% -L$path % %g'`
+ done
+
+ if test -n "$xrpath"; then
+ # If the user specified any rpath flags, then add them.
+ temp_xrpath=
+ for libdir in $xrpath; do
+ temp_xrpath="$temp_xrpath -R$libdir"
+ case "$finalize_rpath " in
+ *" $libdir "*) ;;
+ *) finalize_rpath="$finalize_rpath $libdir" ;;
+ esac
+ done
+ if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
+ dependency_libs="$temp_xrpath $dependency_libs"
+ fi
+ fi
+
+ # Make sure dlfiles contains only unique files that won't be dlpreopened
+ old_dlfiles="$dlfiles"
+ dlfiles=
+ for lib in $old_dlfiles; do
+ case " $dlprefiles $dlfiles " in
+ *" $lib "*) ;;
+ *) dlfiles="$dlfiles $lib" ;;
+ esac
+ done
+
+ # Make sure dlprefiles contains only unique files
+ old_dlprefiles="$dlprefiles"
+ dlprefiles=
+ for lib in $old_dlprefiles; do
+ case "$dlprefiles " in
+ *" $lib "*) ;;
+ *) dlprefiles="$dlprefiles $lib" ;;
+ esac
+ done
+
+ if test "$build_libtool_libs" = yes; then
+ if test -n "$rpath"; then
+ case $host in
+ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
+ # these systems don't actually have a c library (as such)!
+ ;;
+ *-*-rhapsody* | *-*-darwin1.[012])
+ # Rhapsody C library is in the System framework
+ deplibs="$deplibs -framework System"
+ ;;
+ *-*-netbsd*)
+ # Don't link with libc until the a.out ld.so is fixed.
+ ;;
+ *-*-openbsd*)
+ # Do not include libc due to us having libc/libc_r.
+ ;;
+ *)
+ # Add libc to deplibs on all other systems if necessary.
+ if test "$build_libtool_need_lc" = "yes"; then
+ deplibs="$deplibs -lc"
+ fi
+ ;;
+ esac
+ fi
+
+ # Transform deplibs into only deplibs that can be linked in shared.
+ name_save=$name
+ libname_save=$libname
+ release_save=$release
+ versuffix_save=$versuffix
+ major_save=$major
+ # I'm not sure if I'm treating the release correctly. I think
+ # release should show up in the -l (ie -lgmp5) so we don't want to
+ # add it in twice. Is that correct?
+ release=""
+ versuffix=""
+ major=""
+ newdeplibs=
+ droppeddeps=no
+ case $deplibs_check_method in
+ pass_all)
+ # Don't check for shared/static. Everything works.
+ # This might be a little naive. We might want to check
+ # whether the library exists or not. But this is on
+ # osf3 & osf4 and I'm not really sure... Just
+ # implementing what was already the behaviour.
+ newdeplibs=$deplibs
+ ;;
+ test_compile)
+ # This code stresses the "libraries are programs" paradigm to its
+ # limits. Maybe even breaks it. We compile a program, linking it
+ # against the deplibs as a proxy for the library. Then we can check
+ # whether they linked in statically or dynamically with ldd.
+ $rm conftest.c
+ cat > conftest.c </dev/null`
+ for potent_lib in $potential_libs; do
+ # Follow soft links.
+ if ls -lLd "$potent_lib" 2>/dev/null \
+ | grep " -> " >/dev/null; then
+ continue
+ fi
+ # The statement above tries to avoid entering an
+ # endless loop below, in case of cyclic links.
+ # We might still enter an endless loop, since a link
+ # loop can be closed while we follow links,
+ # but so what?
+ potlib="$potent_lib"
+ while test -h "$potlib" 2>/dev/null; do
+ potliblink=`ls -ld $potlib | sed 's/.* -> //'`
+ case $potliblink in
+ [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
+ *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
+ esac
+ done
+ if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \
+ | sed 10q \
+ | egrep "$file_magic_regex" > /dev/null; then
+ newdeplibs="$newdeplibs $a_deplib"
+ a_deplib=""
+ break 2
+ fi
+ done
+ done
+ if test -n "$a_deplib" ; then
+ droppeddeps=yes
+ echo
+ echo "*** Warning: This library needs some functionality provided by $a_deplib."
+ echo "*** I have the capability to make that library automatically link in when"
+ echo "*** you link to this library. But I can only do this if you have a"
+ echo "*** shared version of the library, which you do not appear to have."
+ fi
+ else
+ # Add a -L argument.
+ newdeplibs="$newdeplibs $a_deplib"
+ fi
+ done # Gone through all deplibs.
+ ;;
+ match_pattern*)
+ set dummy $deplibs_check_method
+ match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
+ for a_deplib in $deplibs; do
+ name="`expr $a_deplib : '-l\(.*\)'`"
+ # If $name is empty we are operating on a -L argument.
+ if test -n "$name" && test "$name" != "0"; then
+ libname=`eval \\$echo \"$libname_spec\"`
+ for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
+ potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
+ for potent_lib in $potential_libs; do
+ if eval echo \"$potent_lib\" 2>/dev/null \
+ | sed 10q \
+ | egrep "$match_pattern_regex" > /dev/null; then
+ newdeplibs="$newdeplibs $a_deplib"
+ a_deplib=""
+ break 2
+ fi
+ done
+ done
+ if test -n "$a_deplib" ; then
+ droppeddeps=yes
+ echo
+ echo "*** Warning: This library needs some functionality provided by $a_deplib."
+ echo "*** I have the capability to make that library automatically link in when"
+ echo "*** you link to this library. But I can only do this if you have a"
+ echo "*** shared version of the library, which you do not appear to have."
+ fi
+ else
+ # Add a -L argument.
+ newdeplibs="$newdeplibs $a_deplib"
+ fi
+ done # Gone through all deplibs.
+ ;;
+ none | unknown | *)
+ newdeplibs=""
+ if $echo "X $deplibs" | $Xsed -e 's/ -lc$//' \
+ -e 's/ -[LR][^ ]*//g' -e 's/[ ]//g' |
+ grep . >/dev/null; then
+ echo
+ if test "X$deplibs_check_method" = "Xnone"; then
+ echo "*** Warning: inter-library dependencies are not supported in this platform."
+ else
+ echo "*** Warning: inter-library dependencies are not known to be supported."
+ fi
+ echo "*** All declared inter-library dependencies are being dropped."
+ droppeddeps=yes
+ fi
+ ;;
+ esac
+ versuffix=$versuffix_save
+ major=$major_save
+ release=$release_save
+ libname=$libname_save
+ name=$name_save
+
+ case $host in
+ *-*-rhapsody* | *-*-darwin1.[012])
+ # On Rhapsody replace the C library is the System framework
+ newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
+ ;;
+ esac
+
+ if test "$droppeddeps" = yes; then
+ if test "$module" = yes; then
+ echo
+ echo "*** Warning: libtool could not satisfy all declared inter-library"
+ echo "*** dependencies of module $libname. Therefore, libtool will create"
+ echo "*** a static module, that should work as long as the dlopening"
+ echo "*** application is linked with the -dlopen flag."
+ if test -z "$global_symbol_pipe"; then
+ echo
+ echo "*** However, this would only work if libtool was able to extract symbol"
+ echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
+ echo "*** not find such a program. So, this module is probably useless."
+ echo "*** \`nm' from GNU binutils and a full rebuild may help."
+ fi
+ if test "$build_old_libs" = no; then
+ oldlibs="$output_objdir/$libname.$libext"
+ build_libtool_libs=module
+ build_old_libs=yes
+ else
+ build_libtool_libs=no
+ fi
+ else
+ echo "*** The inter-library dependencies that have been dropped here will be"
+ echo "*** automatically added whenever a program is linked with this library"
+ echo "*** or is declared to -dlopen it."
+
+ if test "$allow_undefined" = no; then
+ echo
+ echo "*** Since this library must not contain undefined symbols,"
+ echo "*** because either the platform does not support them or"
+ echo "*** it was explicitly requested with -no-undefined,"
+ echo "*** libtool will only create a static version of it."
+ if test "$build_old_libs" = no; then
+ oldlibs="$output_objdir/$libname.$libext"
+ build_libtool_libs=module
+ build_old_libs=yes
+ else
+ build_libtool_libs=no
+ fi
+ fi
+ fi
+ fi
+ # Done checking deplibs!
+ deplibs=$newdeplibs
+ fi
+
+ # All the library-specific variables (install_libdir is set above).
+ library_names=
+ old_library=
+ dlname=
+
+ # Test again, we may have decided not to build it any more
+ if test "$build_libtool_libs" = yes; then
+ if test "$hardcode_into_libs" = yes; then
+ # Hardcode the library paths
+ hardcode_libdirs=
+ dep_rpath=
+ rpath="$finalize_rpath"
+ test "$mode" != relink && rpath="$compile_rpath$rpath"
+ for libdir in $rpath; do
+ if test -n "$hardcode_libdir_flag_spec"; then
+ if test -n "$hardcode_libdir_separator"; then
+ if test -z "$hardcode_libdirs"; then
+ hardcode_libdirs="$libdir"
+ else
+ # Just accumulate the unique libdirs.
+ case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
+ *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
+ ;;
+ *)
+ hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
+ ;;
+ esac
+ fi
+ else
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ dep_rpath="$dep_rpath $flag"
+ fi
+ elif test -n "$runpath_var"; then
+ case "$perm_rpath " in
+ *" $libdir "*) ;;
+ *) perm_rpath="$perm_rpath $libdir" ;;
+ esac
+ fi
+ done
+ # Substitute the hardcoded libdirs into the rpath.
+ if test -n "$hardcode_libdir_separator" &&
+ test -n "$hardcode_libdirs"; then
+ libdir="$hardcode_libdirs"
+ eval dep_rpath=\"$hardcode_libdir_flag_spec\"
+ fi
+ if test -n "$runpath_var" && test -n "$perm_rpath"; then
+ # We should set the runpath_var.
+ rpath=
+ for dir in $perm_rpath; do
+ rpath="$rpath$dir:"
+ done
+ eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
+ fi
+ test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
+ fi
+
+ shlibpath="$finalize_shlibpath"
+ test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
+ if test -n "$shlibpath"; then
+ eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
+ fi
+
+ # Get the real and link names of the library.
+ eval library_names=\"$library_names_spec\"
+ set dummy $library_names
+ realname="$2"
+ shift; shift
+
+ if test -n "$soname_spec"; then
+ eval soname=\"$soname_spec\"
+ else
+ soname="$realname"
+ fi
+ test -z "$dlname" && dlname=$soname
+
+ lib="$output_objdir/$realname"
+ for link
+ do
+ linknames="$linknames $link"
+ done
+
+ # Ensure that we have .o objects for linkers which dislike .lo
+ # (e.g. aix) in case we are running --disable-static
+ for obj in $libobjs; do
+ xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$xdir" = "X$obj"; then
+ xdir="."
+ else
+ xdir="$xdir"
+ fi
+ baseobj=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
+ oldobj=`$echo "X$baseobj" | $Xsed -e "$lo2o"`
+ if test ! -f $xdir/$oldobj; then
+ $show "(cd $xdir && ${LN_S} $baseobj $oldobj)"
+ $run eval '(cd $xdir && ${LN_S} $baseobj $oldobj)' || exit $?
+ fi
+ done
+
+ # Use standard objects if they are pic
+ test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+
+ # Prepare the list of exported symbols
+ if test -z "$export_symbols"; then
+ if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
+ $show "generating symbol list for \`$libname.la'"
+ export_symbols="$output_objdir/$libname.exp"
+ $run $rm $export_symbols
+ eval cmds=\"$export_symbols_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ if test -n "$export_symbols_regex"; then
+ $show "egrep -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\""
+ $run eval 'egrep -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
+ $show "$mv \"${export_symbols}T\" \"$export_symbols\""
+ $run eval '$mv "${export_symbols}T" "$export_symbols"'
+ fi
+ fi
+ fi
+
+ if test -n "$export_symbols" && test -n "$include_expsyms"; then
+ $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
+ fi
+
+ if test -n "$convenience"; then
+ if test -n "$whole_archive_flag_spec"; then
+ eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
+ else
+ gentop="$output_objdir/${outputname}x"
+ $show "${rm}r $gentop"
+ $run ${rm}r "$gentop"
+ $show "mkdir $gentop"
+ $run mkdir "$gentop"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$gentop"; then
+ exit $status
+ fi
+ generated="$generated $gentop"
+
+ for xlib in $convenience; do
+ # Extract the objects.
+ case $xlib in
+ [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
+ *) xabs=`pwd`"/$xlib" ;;
+ esac
+ xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
+ xdir="$gentop/$xlib"
+
+ $show "${rm}r $xdir"
+ $run ${rm}r "$xdir"
+ $show "mkdir $xdir"
+ $run mkdir "$xdir"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$xdir"; then
+ exit $status
+ fi
+ $show "(cd $xdir && $AR x $xabs)"
+ $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
+
+ libobjs="$libobjs "`find $xdir -name \*.o -print -o -name \*.lo -print | $NL2SP`
+ done
+ fi
+ fi
+
+ if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
+ eval flag=\"$thread_safe_flag_spec\"
+ linker_flags="$linker_flags $flag"
+ fi
+
+ # Make a backup of the uninstalled library when relinking
+ if test "$mode" = relink; then
+ $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $?
+ fi
+
+ # Do each of the archive commands.
+ if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
+ eval cmds=\"$archive_expsym_cmds\"
+ else
+ eval cmds=\"$archive_cmds\"
+ fi
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+
+ # Restore the uninstalled library and exit
+ if test "$mode" = relink; then
+ $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $?
+ exit 0
+ fi
+
+ # Create links to the real library.
+ for linkname in $linknames; do
+ if test "$realname" != "$linkname"; then
+ $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
+ $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
+ fi
+ done
+
+ # If -module or -export-dynamic was specified, set the dlname.
+ if test "$module" = yes || test "$export_dynamic" = yes; then
+ # On all known operating systems, these are identical.
+ dlname="$soname"
+ fi
+ fi
+ ;;
+
+ obj)
+ if test -n "$deplibs"; then
+ $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
+ fi
+
+ if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
+ $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
+ fi
+
+ if test -n "$rpath"; then
+ $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
+ fi
+
+ if test -n "$xrpath"; then
+ $echo "$modename: warning: \`-R' is ignored for objects" 1>&2
+ fi
+
+ if test -n "$vinfo"; then
+ $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
+ fi
+
+ if test -n "$release"; then
+ $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
+ fi
+
+ case $output in
+ *.lo)
+ if test -n "$objs$old_deplibs"; then
+ $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
+ exit 1
+ fi
+ libobj="$output"
+ obj=`$echo "X$output" | $Xsed -e "$lo2o"`
+ ;;
+ *)
+ libobj=
+ obj="$output"
+ ;;
+ esac
+
+ # Delete the old objects.
+ $run $rm $obj $libobj
+
+ # Objects from convenience libraries. This assumes
+ # single-version convenience libraries. Whenever we create
+ # different ones for PIC/non-PIC, this we'll have to duplicate
+ # the extraction.
+ reload_conv_objs=
+ gentop=
+ # reload_cmds runs $LD directly, so let us get rid of
+ # -Wl from whole_archive_flag_spec
+ wl=
+
+ if test -n "$convenience"; then
+ if test -n "$whole_archive_flag_spec"; then
+ eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\"
+ else
+ gentop="$output_objdir/${obj}x"
+ $show "${rm}r $gentop"
+ $run ${rm}r "$gentop"
+ $show "mkdir $gentop"
+ $run mkdir "$gentop"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$gentop"; then
+ exit $status
+ fi
+ generated="$generated $gentop"
+
+ for xlib in $convenience; do
+ # Extract the objects.
+ case $xlib in
+ [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
+ *) xabs=`pwd`"/$xlib" ;;
+ esac
+ xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
+ xdir="$gentop/$xlib"
+
+ $show "${rm}r $xdir"
+ $run ${rm}r "$xdir"
+ $show "mkdir $xdir"
+ $run mkdir "$xdir"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$xdir"; then
+ exit $status
+ fi
+ $show "(cd $xdir && $AR x $xabs)"
+ $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
+
+ reload_conv_objs="$reload_objs "`find $xdir -name \*.o -print -o -name \*.lo -print | $NL2SP`
+ done
+ fi
+ fi
+
+ # Create the old-style object.
+ reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
+
+ output="$obj"
+ eval cmds=\"$reload_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+
+ # Exit if we aren't doing a library object file.
+ if test -z "$libobj"; then
+ if test -n "$gentop"; then
+ $show "${rm}r $gentop"
+ $run ${rm}r $gentop
+ fi
+
+ exit 0
+ fi
+
+ if test "$build_libtool_libs" != yes; then
+ if test -n "$gentop"; then
+ $show "${rm}r $gentop"
+ $run ${rm}r $gentop
+ fi
+
+ # Create an invalid libtool object if no PIC, so that we don't
+ # accidentally link it into a program.
+ $show "echo timestamp > $libobj"
+ $run eval "echo timestamp > $libobj" || exit $?
+ exit 0
+ fi
+
+ if test -n "$pic_flag" || test "$pic_mode" != default; then
+ # Only do commands if we really have different PIC objects.
+ reload_objs="$libobjs $reload_conv_objs"
+ output="$libobj"
+ eval cmds=\"$reload_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ else
+ # Just create a symlink.
+ $show $rm $libobj
+ $run $rm $libobj
+ xdir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$xdir" = "X$libobj"; then
+ xdir="."
+ else
+ xdir="$xdir"
+ fi
+ baseobj=`$echo "X$libobj" | $Xsed -e 's%^.*/%%'`
+ oldobj=`$echo "X$baseobj" | $Xsed -e "$lo2o"`
+ $show "(cd $xdir && $LN_S $oldobj $baseobj)"
+ $run eval '(cd $xdir && $LN_S $oldobj $baseobj)' || exit $?
+ fi
+
+ if test -n "$gentop"; then
+ $show "${rm}r $gentop"
+ $run ${rm}r $gentop
+ fi
+
+ exit 0
+ ;;
+
+ prog)
+ case $host in
+ *cygwin*) output=`echo $output | sed -e 's,.exe$,,;s,$,.exe,'` ;;
+ esac
+ if test -n "$vinfo"; then
+ $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
+ fi
+
+ if test -n "$release"; then
+ $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
+ fi
+
+ if test "$preload" = yes; then
+ if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown &&
+ test "$dlopen_self_static" = unknown; then
+ $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
+ fi
+ fi
+
+ case $host in
+ *-*-rhapsody* | *-*-darwin1.[012])
+ # On Rhapsody replace the C library is the System framework
+ compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
+ finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
+ ;;
+ esac
+
+ compile_command="$compile_command $compile_deplibs"
+ finalize_command="$finalize_command $finalize_deplibs"
+
+ if test -n "$rpath$xrpath"; then
+ # If the user specified any rpath flags, then add them.
+ for libdir in $rpath $xrpath; do
+ # This is the magic to use -rpath.
+ case "$finalize_rpath " in
+ *" $libdir "*) ;;
+ *) finalize_rpath="$finalize_rpath $libdir" ;;
+ esac
+ done
+ fi
+
+ # Now hardcode the library paths
+ rpath=
+ hardcode_libdirs=
+ for libdir in $compile_rpath $finalize_rpath; do
+ if test -n "$hardcode_libdir_flag_spec"; then
+ if test -n "$hardcode_libdir_separator"; then
+ if test -z "$hardcode_libdirs"; then
+ hardcode_libdirs="$libdir"
+ else
+ # Just accumulate the unique libdirs.
+ case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
+ *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
+ ;;
+ *)
+ hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
+ ;;
+ esac
+ fi
+ else
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ rpath="$rpath $flag"
+ fi
+ elif test -n "$runpath_var"; then
+ case "$perm_rpath " in
+ *" $libdir "*) ;;
+ *) perm_rpath="$perm_rpath $libdir" ;;
+ esac
+ fi
+ case $host in
+ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+ case :$dllsearchpath: in
+ *":$libdir:"*) ;;
+ *) dllsearchpath="$dllsearchpath:$libdir";;
+ esac
+ ;;
+ esac
+ done
+ # Substitute the hardcoded libdirs into the rpath.
+ if test -n "$hardcode_libdir_separator" &&
+ test -n "$hardcode_libdirs"; then
+ libdir="$hardcode_libdirs"
+ eval rpath=\" $hardcode_libdir_flag_spec\"
+ fi
+ compile_rpath="$rpath"
+
+ rpath=
+ hardcode_libdirs=
+ for libdir in $finalize_rpath; do
+ if test -n "$hardcode_libdir_flag_spec"; then
+ if test -n "$hardcode_libdir_separator"; then
+ if test -z "$hardcode_libdirs"; then
+ hardcode_libdirs="$libdir"
+ else
+ # Just accumulate the unique libdirs.
+ case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
+ *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
+ ;;
+ *)
+ hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
+ ;;
+ esac
+ fi
+ else
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ rpath="$rpath $flag"
+ fi
+ elif test -n "$runpath_var"; then
+ case "$finalize_perm_rpath " in
+ *" $libdir "*) ;;
+ *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;;
+ esac
+ fi
+ done
+ # Substitute the hardcoded libdirs into the rpath.
+ if test -n "$hardcode_libdir_separator" &&
+ test -n "$hardcode_libdirs"; then
+ libdir="$hardcode_libdirs"
+ eval rpath=\" $hardcode_libdir_flag_spec\"
+ fi
+ finalize_rpath="$rpath"
+
+ if test -n "$libobjs" && test "$build_old_libs" = yes; then
+ # Transform all the library objects into standard objects.
+ compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+ finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+ fi
+
+ dlsyms=
+ if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
+ if test -n "$NM" && test -n "$global_symbol_pipe"; then
+ dlsyms="${outputname}S.c"
+ else
+ $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
+ fi
+ fi
+
+ if test -n "$dlsyms"; then
+ case $dlsyms in
+ "") ;;
+ *.c)
+ # Discover the nlist of each of the dlfiles.
+ nlist="$output_objdir/${outputname}.nm"
+
+ $show "$rm $nlist ${nlist}S ${nlist}T"
+ $run $rm "$nlist" "${nlist}S" "${nlist}T"
+
+ # Parse the name list into a source file.
+ $show "creating $output_objdir/$dlsyms"
+
+ test -z "$run" && $echo > "$output_objdir/$dlsyms" "\
+/* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */
+/* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
+
+#ifdef __cplusplus
+extern \"C\" {
+#endif
+
+/* Prevent the only kind of declaration conflicts we can make. */
+#define lt_preloaded_symbols some_other_symbol
+
+/* External symbol declarations for the compiler. */\
+"
+
+ if test "$dlself" = yes; then
+ $show "generating symbol list for \`$output'"
+
+ test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
+
+ # Add our own program objects to the symbol list.
+ progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+ for arg in $progfiles; do
+ $show "extracting global C symbols from \`$arg'"
+ $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
+ done
+
+ if test -n "$exclude_expsyms"; then
+ $run eval 'egrep -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
+ $run eval '$mv "$nlist"T "$nlist"'
+ fi
+
+ if test -n "$export_symbols_regex"; then
+ $run eval 'egrep -e "$export_symbols_regex" "$nlist" > "$nlist"T'
+ $run eval '$mv "$nlist"T "$nlist"'
+ fi
+
+ # Prepare the list of exported symbols
+ if test -z "$export_symbols"; then
+ export_symbols="$output_objdir/$output.exp"
+ $run $rm $export_symbols
+ $run eval "sed -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
+ else
+ $run eval "sed -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"'
+ $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > "$nlist"T'
+ $run eval 'mv "$nlist"T "$nlist"'
+ fi
+ fi
+
+ for arg in $dlprefiles; do
+ $show "extracting global C symbols from \`$arg'"
+ name=`echo "$arg" | sed -e 's%^.*/%%'`
+ $run eval 'echo ": $name " >> "$nlist"'
+ $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
+ done
+
+ if test -z "$run"; then
+ # Make sure we have at least an empty file.
+ test -f "$nlist" || : > "$nlist"
+
+ if test -n "$exclude_expsyms"; then
+ egrep -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
+ $mv "$nlist"T "$nlist"
+ fi
+
+ # Try sorting and uniquifying the output.
+ if grep -v "^: " < "$nlist" | sort +2 | uniq > "$nlist"S; then
+ :
+ else
+ grep -v "^: " < "$nlist" > "$nlist"S
+ fi
+
+ if test -f "$nlist"S; then
+ eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
+ else
+ echo '/* NONE */' >> "$output_objdir/$dlsyms"
+ fi
+
+ $echo >> "$output_objdir/$dlsyms" "\
+
+#undef lt_preloaded_symbols
+
+#if defined (__STDC__) && __STDC__
+# define lt_ptr void *
+#else
+# define lt_ptr char *
+# define const
+#endif
+
+/* The mapping between symbol names and symbols. */
+const struct {
+ const char *name;
+ lt_ptr address;
+}
+lt_preloaded_symbols[] =
+{\
+"
+
+ eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms"
+
+ $echo >> "$output_objdir/$dlsyms" "\
+ {0, (lt_ptr) 0}
+};
+
+/* This works around a problem in FreeBSD linker */
+#ifdef FREEBSD_WORKAROUND
+static const void *lt_preloaded_setup() {
+ return lt_preloaded_symbols;
+}
+#endif
+
+#ifdef __cplusplus
+}
+#endif\
+"
+ fi
+
+ pic_flag_for_symtable=
+ case $host in
+ # compiling the symbol table file with pic_flag works around
+ # a FreeBSD bug that causes programs to crash when -lm is
+ # linked before any other PIC object. But we must not use
+ # pic_flag when linking with -static. The problem exists in
+ # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
+ *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
+ case "$compile_command " in
+ *" -static "*) ;;
+ *) pic_flag_for_symtable=" $pic_flag -DPIC -DFREEBSD_WORKAROUND";;
+ esac;;
+ *-*-hpux*)
+ case "$compile_command " in
+ *" -static "*) ;;
+ *) pic_flag_for_symtable=" $pic_flag -DPIC";;
+ esac
+ esac
+
+ # Now compile the dynamic symbol file.
+ $show "(cd $output_objdir && $CC -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
+ $run eval '(cd $output_objdir && $CC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
+
+ # Clean up the generated files.
+ $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
+ $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
+
+ # Transform the symbol file into the correct name.
+ compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
+ finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
+ ;;
+ *)
+ $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
+ exit 1
+ ;;
+ esac
+ else
+ # We keep going just in case the user didn't refer to
+ # lt_preloaded_symbols. The linker will fail if global_symbol_pipe
+ # really was required.
+
+ # Nullify the symbol file.
+ compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
+ finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
+ fi
+
+ if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
+ # Replace the output file specification.
+ compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
+ link_command="$compile_command$compile_rpath"
+
+ # We have no uninstalled library dependencies, so finalize right now.
+ $show "$link_command"
+ $run eval "$link_command"
+ status=$?
+
+ # Delete the generated files.
+ if test -n "$dlsyms"; then
+ $show "$rm $output_objdir/${outputname}S.${objext}"
+ $run $rm "$output_objdir/${outputname}S.${objext}"
+ fi
+
+ exit $status
+ fi
+
+ if test -n "$shlibpath_var"; then
+ # We should set the shlibpath_var
+ rpath=
+ for dir in $temp_rpath; do
+ case $dir in
+ [\\/]* | [A-Za-z]:[\\/]*)
+ # Absolute path.
+ rpath="$rpath$dir:"
+ ;;
+ *)
+ # Relative path: add a thisdir entry.
+ rpath="$rpath\$thisdir/$dir:"
+ ;;
+ esac
+ done
+ temp_rpath="$rpath"
+ fi
+
+ if test -n "$compile_shlibpath$finalize_shlibpath"; then
+ compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
+ fi
+ if test -n "$finalize_shlibpath"; then
+ finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
+ fi
+
+ compile_var=
+ finalize_var=
+ if test -n "$runpath_var"; then
+ if test -n "$perm_rpath"; then
+ # We should set the runpath_var.
+ rpath=
+ for dir in $perm_rpath; do
+ rpath="$rpath$dir:"
+ done
+ compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
+ fi
+ if test -n "$finalize_perm_rpath"; then
+ # We should set the runpath_var.
+ rpath=
+ for dir in $finalize_perm_rpath; do
+ rpath="$rpath$dir:"
+ done
+ finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
+ fi
+ fi
+
+ if test "$no_install" = yes; then
+ # We don't need to create a wrapper script.
+ link_command="$compile_var$compile_command$compile_rpath"
+ # Replace the output file specification.
+ link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
+ # Delete the old output file.
+ $run $rm $output
+ # Link the executable and exit
+ $show "$link_command"
+ $run eval "$link_command" || exit $?
+ exit 0
+ fi
+
+ if test "$hardcode_action" = relink; then
+ # Fast installation is not supported
+ link_command="$compile_var$compile_command$compile_rpath"
+ relink_command="$finalize_var$finalize_command$finalize_rpath"
+
+ $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2
+ $echo "$modename: \`$output' will be relinked during installation" 1>&2
+ else
+ if test "$fast_install" != no; then
+ link_command="$finalize_var$compile_command$finalize_rpath"
+ if test "$fast_install" = yes; then
+ relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
+ else
+ # fast_install is set to needless
+ relink_command=
+ fi
+ else
+ link_command="$compile_var$compile_command$compile_rpath"
+ relink_command="$finalize_var$finalize_command$finalize_rpath"
+ fi
+ fi
+
+ # Replace the output file specification.
+ link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
+
+ # Delete the old output files.
+ $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname
+
+ $show "$link_command"
+ $run eval "$link_command" || exit $?
+
+ # Now create the wrapper script.
+ $show "creating $output"
+
+ # Quote the relink command for shipping.
+ if test -n "$relink_command"; then
+ # Preserve any variables that may affect compiler behavior
+ for var in $variables_saved_for_relink; do
+ if eval test -z \"\${$var+set}\"; then
+ relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
+ elif eval var_value=\$$var; test -z "$var_value"; then
+ relink_command="$var=; export $var; $relink_command"
+ else
+ var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
+ relink_command="$var=\"$var_value\"; export $var; $relink_command"
+ fi
+ done
+ relink_command="(cd `pwd`; $relink_command)"
+ relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
+ fi
+
+ # Quote $echo for shipping.
+ if test "X$echo" = "X$SHELL $0 --fallback-echo"; then
+ case $0 in
+ [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $0 --fallback-echo";;
+ *) qecho="$SHELL `pwd`/$0 --fallback-echo";;
+ esac
+ qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
+ else
+ qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
+ fi
+
+ # Only actually do things if our run command is non-null.
+ if test -z "$run"; then
+ # win32 will think the script is a binary if it has
+ # a .exe suffix, so we strip it off here.
+ case $output in
+ *.exe) output=`echo $output|sed 's,.exe$,,'` ;;
+ esac
+ # test for cygwin because mv fails w/o .exe extensions
+ case $host in
+ *cygwin*) exeext=.exe ;;
+ *) exeext= ;;
+ esac
+ $rm $output
+ trap "$rm $output; exit 1" 1 2 15
+
+ $echo > $output "\
+#! $SHELL
+
+# $output - temporary wrapper script for $objdir/$outputname
+# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
+#
+# The $output program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# 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='$sed_quote_subst'
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+if test \"\${CDPATH+set}\" = set; then CDPATH=:; export CDPATH; fi
+
+relink_command=\"$relink_command\"
+
+# This environment variable determines our operation mode.
+if test \"\$libtool_install_magic\" = \"$magic\"; then
+ # install mode needs the following variable:
+ notinst_deplibs='$notinst_deplibs'
+else
+ # When we are sourced in execute mode, \$file and \$echo are already set.
+ if test \"\$libtool_execute_magic\" != \"$magic\"; then
+ echo=\"$qecho\"
+ file=\"\$0\"
+ # Make sure echo works.
+ if test \"X\$1\" = X--no-reexec; then
+ # Discard the --no-reexec flag, and continue.
+ shift
+ elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
+ # Yippee, \$echo works!
+ :
+ else
+ # Restart under the correct shell, and then maybe \$echo will work.
+ exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
+ fi
+ fi\
+"
+ $echo >> $output "\
+
+ # Find the directory that this script lives in.
+ thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
+ test \"x\$thisdir\" = \"x\$file\" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=\`ls -ld \"\$file\" | sed -n 's/.*-> //p'\`
+ while test -n \"\$file\"; do
+ destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
+
+ # If there was a directory component, then change thisdir.
+ if test \"x\$destdir\" != \"x\$file\"; then
+ case \"\$destdir\" in
+ [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
+ *) thisdir=\"\$thisdir/\$destdir\" ;;
+ esac
+ fi
+
+ file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
+ file=\`ls -ld \"\$thisdir/\$file\" | sed -n 's/.*-> //p'\`
+ done
+
+ # Try to get the absolute directory name.
+ absdir=\`cd \"\$thisdir\" && pwd\`
+ test -n \"\$absdir\" && thisdir=\"\$absdir\"
+"
+
+ if test "$fast_install" = yes; then
+ echo >> $output "\
+ program=lt-'$outputname'$exeext
+ progdir=\"\$thisdir/$objdir\"
+
+ if test ! -f \"\$progdir/\$program\" || \\
+ { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | sed 1q\`; \\
+ test \"X\$file\" != \"X\$progdir/\$program\"; }; then
+
+ file=\"\$\$-\$program\"
+
+ if test ! -d \"\$progdir\"; then
+ $mkdir \"\$progdir\"
+ else
+ $rm \"\$progdir/\$file\"
+ fi"
+
+ echo >> $output "\
+
+ # relink executable if necessary
+ if test -n \"\$relink_command\"; then
+ if relink_command_output=\`eval \$relink_command 2>&1\`; then :
+ else
+ $echo \"\$relink_command_output\" >&2
+ $rm \"\$progdir/\$file\"
+ exit 1
+ fi
+ fi
+
+ $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
+ { $rm \"\$progdir/\$program\";
+ $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; }
+ $rm \"\$progdir/\$file\"
+ fi"
+ else
+ echo >> $output "\
+ program='$outputname'
+ progdir=\"\$thisdir/$objdir\"
+"
+ fi
+
+ echo >> $output "\
+
+ if test -f \"\$progdir/\$program\"; then"
+
+ # Export our shlibpath_var if we have one.
+ if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
+ $echo >> $output "\
+ # Add our own library path to $shlibpath_var
+ $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
+
+ # Some systems cannot cope with colon-terminated $shlibpath_var
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
+
+ export $shlibpath_var
+"
+ fi
+
+ # fixup the dll searchpath if we need to.
+ if test -n "$dllsearchpath"; then
+ $echo >> $output "\
+ # Add the dll search path components to the executable PATH
+ PATH=$dllsearchpath:\$PATH
+"
+ fi
+
+ $echo >> $output "\
+ if test \"\$libtool_execute_magic\" != \"$magic\"; then
+ # Run the actual program with our arguments.
+"
+ case $host in
+ # win32 systems need to use the prog path for dll
+ # lookup to work
+ *-*-cygwin* | *-*-pw32*)
+ $echo >> $output "\
+ exec \$progdir/\$program \${1+\"\$@\"}
+"
+ ;;
+
+ # Backslashes separate directories on plain windows
+ *-*-mingw | *-*-os2*)
+ $echo >> $output "\
+ exec \$progdir\\\\\$program \${1+\"\$@\"}
+"
+ ;;
+
+ *)
+ $echo >> $output "\
+ # Export the path to the program.
+ PATH=\"\$progdir:\$PATH\"
+ export PATH
+
+ exec \$program \${1+\"\$@\"}
+"
+ ;;
+ esac
+ $echo >> $output "\
+ \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
+ exit 1
+ fi
+ else
+ # The program doesn't exist.
+ \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
+ \$echo \"This script is just a wrapper for \$program.\" 1>&2
+ echo \"See the $PACKAGE documentation for more information.\" 1>&2
+ exit 1
+ fi
+fi\
+"
+ chmod +x $output
+ fi
+ exit 0
+ ;;
+ esac
+
+ # See if we need to build an old-fashioned archive.
+ for oldlib in $oldlibs; do
+
+ if test "$build_libtool_libs" = convenience; then
+ oldobjs="$libobjs_save"
+ addlibs="$convenience"
+ build_libtool_libs=no
+ else
+ if test "$build_libtool_libs" = module; then
+ oldobjs="$libobjs_save"
+ build_libtool_libs=no
+ else
+ oldobjs="$objs$old_deplibs "`$echo "X$libobjs_save" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`
+ fi
+ addlibs="$old_convenience"
+ fi
+
+ if test -n "$addlibs"; then
+ gentop="$output_objdir/${outputname}x"
+ $show "${rm}r $gentop"
+ $run ${rm}r "$gentop"
+ $show "mkdir $gentop"
+ $run mkdir "$gentop"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$gentop"; then
+ exit $status
+ fi
+ generated="$generated $gentop"
+
+ # Add in members from convenience archives.
+ for xlib in $addlibs; do
+ # Extract the objects.
+ case $xlib in
+ [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
+ *) xabs=`pwd`"/$xlib" ;;
+ esac
+ xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
+ xdir="$gentop/$xlib"
+
+ $show "${rm}r $xdir"
+ $run ${rm}r "$xdir"
+ $show "mkdir $xdir"
+ $run mkdir "$xdir"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$xdir"; then
+ exit $status
+ fi
+ $show "(cd $xdir && $AR x $xabs)"
+ $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
+
+ oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print -o -name \*.lo -print | $NL2SP`
+ done
+ fi
+
+ # Do each command in the archive commands.
+ if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
+ eval cmds=\"$old_archive_from_new_cmds\"
+ else
+ # Ensure that we have .o objects in place in case we decided
+ # not to build a shared library, and have fallen back to building
+ # static libs even though --disable-static was passed!
+ for oldobj in $oldobjs; do
+ if test ! -f $oldobj; then
+ xdir=`$echo "X$oldobj" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$xdir" = "X$oldobj"; then
+ xdir="."
+ else
+ xdir="$xdir"
+ fi
+ baseobj=`$echo "X$oldobj" | $Xsed -e 's%^.*/%%'`
+ obj=`$echo "X$baseobj" | $Xsed -e "$o2lo"`
+ $show "(cd $xdir && ${LN_S} $obj $baseobj)"
+ $run eval '(cd $xdir && ${LN_S} $obj $baseobj)' || exit $?
+ fi
+ done
+
+ eval cmds=\"$old_archive_cmds\"
+ fi
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ done
+
+ if test -n "$generated"; then
+ $show "${rm}r$generated"
+ $run ${rm}r$generated
+ fi
+
+ # Now create the libtool archive.
+ case $output in
+ *.la)
+ old_library=
+ test "$build_old_libs" = yes && old_library="$libname.$libext"
+ $show "creating $output"
+
+ # Preserve any variables that may affect compiler behavior
+ for var in $variables_saved_for_relink; do
+ if eval test -z \"\${$var+set}\"; then
+ relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
+ elif eval var_value=\$$var; test -z "$var_value"; then
+ relink_command="$var=; export $var; $relink_command"
+ else
+ var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
+ relink_command="$var=\"$var_value\"; export $var; $relink_command"
+ fi
+ done
+ # Quote the link command for shipping.
+ relink_command="(cd `pwd`; $SHELL $0 --mode=relink $libtool_args @inst_prefix_dir@)"
+ relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
+
+ # Only create the output if not a dry run.
+ if test -z "$run"; then
+ for installed in no yes; do
+ if test "$installed" = yes; then
+ if test -z "$install_libdir"; then
+ break
+ fi
+ output="$output_objdir/$outputname"i
+ # Replace all uninstalled libtool libraries with the installed ones
+ newdependency_libs=
+ for deplib in $dependency_libs; do
+ case $deplib in
+ *.la)
+ name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
+ eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
+ if test -z "$libdir"; then
+ $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
+ exit 1
+ fi
+ newdependency_libs="$newdependency_libs $libdir/$name"
+ ;;
+ *) newdependency_libs="$newdependency_libs $deplib" ;;
+ esac
+ done
+ dependency_libs="$newdependency_libs"
+ newdlfiles=
+ for lib in $dlfiles; do
+ name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
+ eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
+ if test -z "$libdir"; then
+ $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+ exit 1
+ fi
+ newdlfiles="$newdlfiles $libdir/$name"
+ done
+ dlfiles="$newdlfiles"
+ newdlprefiles=
+ for lib in $dlprefiles; do
+ name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
+ eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
+ if test -z "$libdir"; then
+ $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+ exit 1
+ fi
+ newdlprefiles="$newdlprefiles $libdir/$name"
+ done
+ dlprefiles="$newdlprefiles"
+ fi
+ $rm $output
+ # place dlname in correct position for cygwin
+ tdlname=$dlname
+ case $host,$output,$installed,$module,$dlname in
+ *cygwin*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
+ esac
+ $echo > $output "\
+# $outputname - a libtool library file
+# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
+#
+# Please DO NOT delete this file!
+# It is necessary for linking the library.
+
+# The name that we can dlopen(3).
+dlname='$tdlname'
+
+# Names of this library.
+library_names='$library_names'
+
+# The name of the static archive.
+old_library='$old_library'
+
+# Libraries that this one depends upon.
+dependency_libs='$dependency_libs'
+
+# Version information for $libname.
+current=$current
+age=$age
+revision=$revision
+
+# Is this an already installed library?
+installed=$installed
+
+# Files to dlopen/dlpreopen
+dlopen='$dlfiles'
+dlpreopen='$dlprefiles'
+
+# Directory that this library needs to be installed in:
+libdir='$install_libdir'"
+ if test "$installed" = no && test "$need_relink" = yes; then
+ $echo >> $output "\
+relink_command=\"$relink_command\""
+ fi
+ done
+ fi
+
+ # Do a symbolic link so that the libtool archive can be found in
+ # LD_LIBRARY_PATH before the program is installed.
+ $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
+ $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $?
+ ;;
+ esac
+ exit 0
+ ;;
+
+ # libtool install mode
+ install)
+ modename="$modename: install"
+
+ # There may be an optional sh(1) argument at the beginning of
+ # install_prog (especially on Windows NT).
+ if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
+ # Allow the use of GNU shtool's install command.
+ $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then
+ # Aesthetically quote it.
+ arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
+ arg="\"$arg\""
+ ;;
+ esac
+ install_prog="$arg "
+ arg="$1"
+ shift
+ else
+ install_prog=
+ arg="$nonopt"
+ fi
+
+ # The real first argument should be the name of the installation program.
+ # Aesthetically quote it.
+ arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
+ arg="\"$arg\""
+ ;;
+ esac
+ install_prog="$install_prog$arg"
+
+ # We need to accept at least all the BSD install flags.
+ dest=
+ files=
+ opts=
+ prev=
+ install_type=
+ isdir=no
+ stripme=
+ for arg
+ do
+ if test -n "$dest"; then
+ files="$files $dest"
+ dest="$arg"
+ continue
+ fi
+
+ case $arg in
+ -d) isdir=yes ;;
+ -f) prev="-f" ;;
+ -g) prev="-g" ;;
+ -m) prev="-m" ;;
+ -o) prev="-o" ;;
+ -s)
+ stripme=" -s"
+ continue
+ ;;
+ -*) ;;
+
+ *)
+ # If the previous option needed an argument, then skip it.
+ if test -n "$prev"; then
+ prev=
+ else
+ dest="$arg"
+ continue
+ fi
+ ;;
+ esac
+
+ # Aesthetically quote the argument.
+ arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
+ arg="\"$arg\""
+ ;;
+ esac
+ install_prog="$install_prog $arg"
+ done
+
+ if test -z "$install_prog"; then
+ $echo "$modename: you must specify an install program" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ if test -n "$prev"; then
+ $echo "$modename: the \`$prev' option requires an argument" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ if test -z "$files"; then
+ if test -z "$dest"; then
+ $echo "$modename: no file or destination specified" 1>&2
+ else
+ $echo "$modename: you must specify a destination" 1>&2
+ fi
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ # Strip any trailing slash from the destination.
+ dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
+
+ # Check to see that the destination is a directory.
+ test -d "$dest" && isdir=yes
+ if test "$isdir" = yes; then
+ destdir="$dest"
+ destname=
+ else
+ destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
+ test "X$destdir" = "X$dest" && destdir=.
+ destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
+
+ # Not a directory, so check to see that there is only one file specified.
+ set dummy $files
+ if test "$#" -gt 2; then
+ $echo "$modename: \`$dest' is not a directory" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+ fi
+ case $destdir in
+ [\\/]* | [A-Za-z]:[\\/]*) ;;
+ *)
+ for file in $files; do
+ case $file in
+ *.lo) ;;
+ *)
+ $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+ ;;
+ esac
+
+ # This variable tells wrapper scripts just to set variables rather
+ # than running their programs.
+ libtool_install_magic="$magic"
+
+ staticlibs=
+ future_libdirs=
+ current_libdirs=
+ for file in $files; do
+
+ # Do each installation.
+ case $file in
+ *.$libext)
+ # Do the static libraries later.
+ staticlibs="$staticlibs $file"
+ ;;
+
+ *.la)
+ # Check to see that this really is a libtool archive.
+ if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
+ else
+ $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ library_names=
+ old_library=
+ relink_command=
+ # If there is no directory component, then add one.
+ case $file in
+ */* | *\\*) . $file ;;
+ *) . ./$file ;;
+ esac
+
+ # Add the libdir to current_libdirs if it is the destination.
+ if test "X$destdir" = "X$libdir"; then
+ case "$current_libdirs " in
+ *" $libdir "*) ;;
+ *) current_libdirs="$current_libdirs $libdir" ;;
+ esac
+ else
+ # Note the libdir as a future libdir.
+ case "$future_libdirs " in
+ *" $libdir "*) ;;
+ *) future_libdirs="$future_libdirs $libdir" ;;
+ esac
+ fi
+
+ dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
+ test "X$dir" = "X$file/" && dir=
+ dir="$dir$objdir"
+
+ if test -n "$relink_command"; then
+ # Determine the prefix the user has applied to our future dir.
+ inst_prefix_dir=`$echo "$destdir" | sed "s%$libdir\$%%"`
+
+ # Don't allow the user to place us outside of our expected
+ # location b/c this prevents finding dependent libraries that
+ # are installed to the same prefix.
+ if test "$inst_prefix_dir" = "$destdir"; then
+ $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
+ exit 1
+ fi
+
+ if test -n "$inst_prefix_dir"; then
+ # Stick the inst_prefix_dir data into the link command.
+ relink_command=`$echo "$relink_command" | sed "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
+ else
+ relink_command=`$echo "$relink_command" | sed "s%@inst_prefix_dir@%%"`
+ fi
+
+ $echo "$modename: warning: relinking \`$file'" 1>&2
+ $show "$relink_command"
+ if $run eval "$relink_command"; then :
+ else
+ $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
+ exit 1
+ fi
+ fi
+
+ # See the names of the shared library.
+ set dummy $library_names
+ if test -n "$2"; then
+ realname="$2"
+ shift
+ shift
+
+ srcname="$realname"
+ test -n "$relink_command" && srcname="$realname"T
+
+ # Install the shared library and build the symlinks.
+ $show "$install_prog $dir/$srcname $destdir/$realname"
+ $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $?
+ if test -n "$stripme" && test -n "$striplib"; then
+ $show "$striplib $destdir/$realname"
+ $run eval "$striplib $destdir/$realname" || exit $?
+ fi
+
+ if test "$#" -gt 0; then
+ # Delete the old symlinks, and create new ones.
+ for linkname
+ do
+ if test "$linkname" != "$realname"; then
+ $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
+ $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
+ fi
+ done
+ fi
+
+ # Do each command in the postinstall commands.
+ lib="$destdir/$realname"
+ eval cmds=\"$postinstall_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ fi
+
+ # Install the pseudo-library for information purposes.
+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ instname="$dir/$name"i
+ $show "$install_prog $instname $destdir/$name"
+ $run eval "$install_prog $instname $destdir/$name" || exit $?
+
+ # Maybe install the static library, too.
+ test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
+ ;;
+
+ *.lo)
+ # Install (i.e. copy) a libtool object.
+
+ # Figure out destination file name, if it wasn't already specified.
+ if test -n "$destname"; then
+ destfile="$destdir/$destname"
+ else
+ destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ destfile="$destdir/$destfile"
+ fi
+
+ # Deduce the name of the destination old-style object file.
+ case $destfile in
+ *.lo)
+ staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
+ ;;
+ *.$objext)
+ staticdest="$destfile"
+ destfile=
+ ;;
+ *)
+ $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ ;;
+ esac
+
+ # Install the libtool object if requested.
+ if test -n "$destfile"; then
+ $show "$install_prog $file $destfile"
+ $run eval "$install_prog $file $destfile" || exit $?
+ fi
+
+ # Install the old object if enabled.
+ if test "$build_old_libs" = yes; then
+ # Deduce the name of the old-style object file.
+ staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
+
+ $show "$install_prog $staticobj $staticdest"
+ $run eval "$install_prog \$staticobj \$staticdest" || exit $?
+ fi
+ exit 0
+ ;;
+
+ *)
+ # Figure out destination file name, if it wasn't already specified.
+ if test -n "$destname"; then
+ destfile="$destdir/$destname"
+ else
+ destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ destfile="$destdir/$destfile"
+ fi
+
+ # Do a test to see if this is really a libtool program.
+ if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+ notinst_deplibs=
+ relink_command=
+
+ # If there is no directory component, then add one.
+ case $file in
+ */* | *\\*) . $file ;;
+ *) . ./$file ;;
+ esac
+
+ # Check the variables that should have been set.
+ if test -z "$notinst_deplibs"; then
+ $echo "$modename: invalid libtool wrapper script \`$file'" 1>&2
+ exit 1
+ fi
+
+ finalize=yes
+ for lib in $notinst_deplibs; do
+ # Check to see that each library is installed.
+ libdir=
+ if test -f "$lib"; then
+ # If there is no directory component, then add one.
+ case $lib in
+ */* | *\\*) . $lib ;;
+ *) . ./$lib ;;
+ esac
+ fi
+ libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
+ if test -n "$libdir" && test ! -f "$libfile"; then
+ $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
+ finalize=no
+ fi
+ done
+
+ relink_command=
+ # If there is no directory component, then add one.
+ case $file in
+ */* | *\\*) . $file ;;
+ *) . ./$file ;;
+ esac
+
+ outputname=
+ if test "$fast_install" = no && test -n "$relink_command"; then
+ if test "$finalize" = yes && test -z "$run"; then
+ tmpdir="/tmp"
+ test -n "$TMPDIR" && tmpdir="$TMPDIR"
+ tmpdir=`mktemp -d $tmpdir/libtool-XXXXXX 2> /dev/null`
+ if test $? = 0 ; then :
+ else
+ tmpdir="$tmpdir/libtool-$$"
+ fi
+ if $mkdir -p "$tmpdir" && chmod 700 "$tmpdir"; then :
+ else
+ $echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
+ continue
+ fi
+ file=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ outputname="$tmpdir/$file"
+ # Replace the output file specification.
+ relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
+
+ $show "$relink_command"
+ if $run eval "$relink_command"; then :
+ else
+ $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
+ ${rm}r "$tmpdir"
+ continue
+ fi
+ file="$outputname"
+ else
+ $echo "$modename: warning: cannot relink \`$file'" 1>&2
+ fi
+ else
+ # Install the binary that we compiled earlier.
+ file=`$echo "X$file" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
+ fi
+ fi
+
+ # remove .exe since cygwin /usr/bin/install will append another
+ # one anyways
+ case $install_prog,$host in
+ /usr/bin/install*,*cygwin*)
+ case $file:$destfile in
+ *.exe:*.exe)
+ # this is ok
+ ;;
+ *.exe:*)
+ destfile=$destfile.exe
+ ;;
+ *:*.exe)
+ destfile=`echo $destfile | sed -e 's,.exe$,,'`
+ ;;
+ esac
+ ;;
+ esac
+ $show "$install_prog$stripme $file $destfile"
+ $run eval "$install_prog\$stripme \$file \$destfile" || exit $?
+ test -n "$outputname" && ${rm}r "$tmpdir"
+ ;;
+ esac
+ done
+
+ for file in $staticlibs; do
+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+
+ # Set up the ranlib parameters.
+ oldlib="$destdir/$name"
+
+ $show "$install_prog $file $oldlib"
+ $run eval "$install_prog \$file \$oldlib" || exit $?
+
+ if test -n "$stripme" && test -n "$striplib"; then
+ $show "$old_striplib $oldlib"
+ $run eval "$old_striplib $oldlib" || exit $?
+ fi
+
+ # Do each command in the postinstall commands.
+ eval cmds=\"$old_postinstall_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ done
+
+ if test -n "$future_libdirs"; then
+ $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
+ fi
+
+ if test -n "$current_libdirs"; then
+ # Maybe just do a dry run.
+ test -n "$run" && current_libdirs=" -n$current_libdirs"
+ exec_cmd='$SHELL $0 --finish$current_libdirs'
+ else
+ exit 0
+ fi
+ ;;
+
+ # libtool finish mode
+ finish)
+ modename="$modename: finish"
+ libdirs="$nonopt"
+ admincmds=
+
+ if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
+ for dir
+ do
+ libdirs="$libdirs $dir"
+ done
+
+ for libdir in $libdirs; do
+ if test -n "$finish_cmds"; then
+ # Do each command in the finish commands.
+ eval cmds=\"$finish_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || admincmds="$admincmds
+ $cmd"
+ done
+ IFS="$save_ifs"
+ fi
+ if test -n "$finish_eval"; then
+ # Do the single finish_eval.
+ eval cmds=\"$finish_eval\"
+ $run eval "$cmds" || admincmds="$admincmds
+ $cmds"
+ fi
+ done
+ fi
+
+ # Exit here if they wanted silent mode.
+ test "$show" = : && exit 0
+
+ echo "----------------------------------------------------------------------"
+ echo "Libraries have been installed in:"
+ for libdir in $libdirs; do
+ echo " $libdir"
+ done
+ echo
+ echo "If you ever happen to want to link against installed libraries"
+ echo "in a given directory, LIBDIR, you must either use libtool, and"
+ echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
+ echo "flag during linking and do at least one of the following:"
+ if test -n "$shlibpath_var"; then
+ echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
+ echo " during execution"
+ fi
+ if test -n "$runpath_var"; then
+ echo " - add LIBDIR to the \`$runpath_var' environment variable"
+ echo " during linking"
+ fi
+ if test -n "$hardcode_libdir_flag_spec"; then
+ libdir=LIBDIR
+ eval flag=\"$hardcode_libdir_flag_spec\"
+
+ echo " - use the \`$flag' linker flag"
+ fi
+ if test -n "$admincmds"; then
+ echo " - have your system administrator run these commands:$admincmds"
+ fi
+ if test -f /etc/ld.so.conf; then
+ echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
+ fi
+ echo
+ echo "See any operating system documentation about shared libraries for"
+ echo "more information, such as the ld(1) and ld.so(8) manual pages."
+ echo "----------------------------------------------------------------------"
+ exit 0
+ ;;
+
+ # libtool execute mode
+ execute)
+ modename="$modename: execute"
+
+ # The first argument is the command name.
+ cmd="$nonopt"
+ if test -z "$cmd"; then
+ $echo "$modename: you must specify a COMMAND" 1>&2
+ $echo "$help"
+ exit 1
+ fi
+
+ # Handle -dlopen flags immediately.
+ for file in $execute_dlfiles; do
+ if test ! -f "$file"; then
+ $echo "$modename: \`$file' is not a file" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ dir=
+ case $file in
+ *.la)
+ # Check to see that this really is a libtool archive.
+ if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
+ else
+ $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ # Read the libtool library.
+ dlname=
+ library_names=
+
+ # If there is no directory component, then add one.
+ case $file in
+ */* | *\\*) . $file ;;
+ *) . ./$file ;;
+ esac
+
+ # Skip this library if it cannot be dlopened.
+ if test -z "$dlname"; then
+ # Warn if it was a shared library.
+ test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
+ continue
+ fi
+
+ dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
+ test "X$dir" = "X$file" && dir=.
+
+ if test -f "$dir/$objdir/$dlname"; then
+ dir="$dir/$objdir"
+ else
+ $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
+ exit 1
+ fi
+ ;;
+
+ *.lo)
+ # Just add the directory containing the .lo file.
+ dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
+ test "X$dir" = "X$file" && dir=.
+ ;;
+
+ *)
+ $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
+ continue
+ ;;
+ esac
+
+ # Get the absolute pathname.
+ absdir=`cd "$dir" && pwd`
+ test -n "$absdir" && dir="$absdir"
+
+ # Now add the directory to shlibpath_var.
+ if eval "test -z \"\$$shlibpath_var\""; then
+ eval "$shlibpath_var=\"\$dir\""
+ else
+ eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
+ fi
+ done
+
+ # This variable tells wrapper scripts just to set shlibpath_var
+ # rather than running their programs.
+ libtool_execute_magic="$magic"
+
+ # Check if any of the arguments is a wrapper script.
+ args=
+ for file
+ do
+ case $file in
+ -*) ;;
+ *)
+ # Do a test to see if this is really a libtool program.
+ if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+ # If there is no directory component, then add one.
+ case $file in
+ */* | *\\*) . $file ;;
+ *) . ./$file ;;
+ esac
+
+ # Transform arg to wrapped name.
+ file="$progdir/$program"
+ fi
+ ;;
+ esac
+ # Quote arguments (to preserve shell metacharacters).
+ file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
+ args="$args \"$file\""
+ done
+
+ if test -z "$run"; then
+ if test -n "$shlibpath_var"; then
+ # Export the shlibpath_var.
+ eval "export $shlibpath_var"
+ fi
+
+ # Restore saved enviroment variables
+ if test "${save_LC_ALL+set}" = set; then
+ LC_ALL="$save_LC_ALL"; export LC_ALL
+ fi
+ if test "${save_LANG+set}" = set; then
+ LANG="$save_LANG"; export LANG
+ fi
+
+ # Now prepare to actually exec the command.
+ exec_cmd="\$cmd$args"
+ else
+ # Display what would be done.
+ if test -n "$shlibpath_var"; then
+ eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
+ $echo "export $shlibpath_var"
+ fi
+ $echo "$cmd$args"
+ exit 0
+ fi
+ ;;
+
+ # libtool clean and uninstall mode
+ clean | uninstall)
+ modename="$modename: $mode"
+ rm="$nonopt"
+ files=
+ rmforce=
+ exit_status=0
+
+ # This variable tells wrapper scripts just to set variables rather
+ # than running their programs.
+ libtool_install_magic="$magic"
+
+ for arg
+ do
+ case $arg in
+ -f) rm="$rm $arg"; rmforce=yes ;;
+ -*) rm="$rm $arg" ;;
+ *) files="$files $arg" ;;
+ esac
+ done
+
+ if test -z "$rm"; then
+ $echo "$modename: you must specify an RM program" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ rmdirs=
+
+ for file in $files; do
+ dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$dir" = "X$file"; then
+ dir=.
+ objdir="$objdir"
+ else
+ objdir="$dir/$objdir"
+ fi
+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ test "$mode" = uninstall && objdir="$dir"
+
+ # Remember objdir for removal later, being careful to avoid duplicates
+ if test "$mode" = clean; then
+ case " $rmdirs " in
+ *" $objdir "*) ;;
+ *) rmdirs="$rmdirs $objdir" ;;
+ esac
+ fi
+
+ # Don't error if the file doesn't exist and rm -f was used.
+ if (test -L "$file") >/dev/null 2>&1 \
+ || (test -h "$file") >/dev/null 2>&1 \
+ || test -f "$file"; then
+ :
+ elif test -d "$file"; then
+ exit_status=1
+ continue
+ elif test "$rmforce" = yes; then
+ continue
+ fi
+
+ rmfiles="$file"
+
+ case $name in
+ *.la)
+ # Possibly a libtool archive, so verify it.
+ if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+ . $dir/$name
+
+ # Delete the libtool libraries and symlinks.
+ for n in $library_names; do
+ rmfiles="$rmfiles $objdir/$n"
+ done
+ test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library"
+ test "$mode" = clean && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"
+
+ if test "$mode" = uninstall; then
+ if test -n "$library_names"; then
+ # Do each command in the postuninstall commands.
+ eval cmds=\"$postuninstall_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd"
+ if test "$?" -ne 0 && test "$rmforce" != yes; then
+ exit_status=1
+ fi
+ done
+ IFS="$save_ifs"
+ fi
+
+ if test -n "$old_library"; then
+ # Do each command in the old_postuninstall commands.
+ eval cmds=\"$old_postuninstall_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd"
+ if test "$?" -ne 0 && test "$rmforce" != yes; then
+ exit_status=1
+ fi
+ done
+ IFS="$save_ifs"
+ fi
+ # FIXME: should reinstall the best remaining shared library.
+ fi
+ fi
+ ;;
+
+ *.lo)
+ if test "$build_old_libs" = yes; then
+ oldobj=`$echo "X$name" | $Xsed -e "$lo2o"`
+ rmfiles="$rmfiles $dir/$oldobj"
+ fi
+ ;;
+
+ *)
+ # Do a test to see if this is a libtool program.
+ if test "$mode" = clean &&
+ (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+ relink_command=
+ . $dir/$file
+
+ rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}"
+ if test "$fast_install" = yes && test -n "$relink_command"; then
+ rmfiles="$rmfiles $objdir/lt-$name"
+ fi
+ fi
+ ;;
+ esac
+ $show "$rm $rmfiles"
+ $run $rm $rmfiles || exit_status=1
+ done
+
+ # Try to remove the ${objdir}s in the directories where we deleted files
+ for dir in $rmdirs; do
+ if test -d "$dir"; then
+ $show "rmdir $dir"
+ $run rmdir $dir >/dev/null 2>&1
+ fi
+ done
+
+ exit $exit_status
+ ;;
+
+ "")
+ $echo "$modename: you must specify a MODE" 1>&2
+ $echo "$generic_help" 1>&2
+ exit 1
+ ;;
+ esac
+
+ if test -z "$exec_cmd"; then
+ $echo "$modename: invalid operation mode \`$mode'" 1>&2
+ $echo "$generic_help" 1>&2
+ exit 1
+ fi
+fi # test -z "$show_help"
+
+if test -n "$exec_cmd"; then
+ eval exec $exec_cmd
+ exit 1
+fi
+
+# We need to display help for each of the modes.
+case $mode in
+"") $echo \
+"Usage: $modename [OPTION]... [MODE-ARG]...
+
+Provide generalized library-building support services.
+
+ --config show all configuration variables
+ --debug enable verbose shell tracing
+-n, --dry-run display commands without modifying any files
+ --features display basic configuration information and exit
+ --finish same as \`--mode=finish'
+ --help display this help message and exit
+ --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS]
+ --quiet same as \`--silent'
+ --silent don't print informational messages
+ --version print version information
+
+MODE must be one of the following:
+
+ clean remove files from the build directory
+ compile compile a source file into a libtool object
+ execute automatically set library path, then run a program
+ finish complete the installation of libtool libraries
+ install install libraries or executables
+ link create a library or an executable
+ uninstall remove libraries from an installed directory
+
+MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for
+a more detailed description of MODE."
+ exit 0
+ ;;
+
+clean)
+ $echo \
+"Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
+
+Remove files from the build directory.
+
+RM is the name of the program to use to delete files associated with each FILE
+(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
+to RM.
+
+If FILE is a libtool library, object or program, all the files associated
+with it are deleted. Otherwise, only FILE itself is deleted using RM."
+ ;;
+
+compile)
+ $echo \
+"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
+
+Compile a source file into a libtool library object.
+
+This mode accepts the following additional options:
+
+ -o OUTPUT-FILE set the output file name to OUTPUT-FILE
+ -prefer-pic try to building PIC objects only
+ -prefer-non-pic try to building non-PIC objects only
+ -static always build a \`.o' file suitable for static linking
+
+COMPILE-COMMAND is a command to be used in creating a \`standard' object file
+from the given SOURCEFILE.
+
+The output file name is determined by removing the directory component from
+SOURCEFILE, then substituting the C source code suffix \`.c' with the
+library object suffix, \`.lo'."
+ ;;
+
+execute)
+ $echo \
+"Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...
+
+Automatically set library path, then run a program.
+
+This mode accepts the following additional options:
+
+ -dlopen FILE add the directory containing FILE to the library path
+
+This mode sets the library path environment variable according to \`-dlopen'
+flags.
+
+If any of the ARGS are libtool executable wrappers, then they are translated
+into their corresponding uninstalled binary, and any of their required library
+directories are added to the library path.
+
+Then, COMMAND is executed, with ARGS as arguments."
+ ;;
+
+finish)
+ $echo \
+"Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
+
+Complete the installation of libtool libraries.
+
+Each LIBDIR is a directory that contains libtool libraries.
+
+The commands that this mode executes may require superuser privileges. Use
+the \`--dry-run' option if you just want to see what would be executed."
+ ;;
+
+install)
+ $echo \
+"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
+
+Install executables or libraries.
+
+INSTALL-COMMAND is the installation command. The first component should be
+either the \`install' or \`cp' program.
+
+The rest of the components are interpreted as arguments to that command (only
+BSD-compatible install options are recognized)."
+ ;;
+
+link)
+ $echo \
+"Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
+
+Link object files or libraries together to form another library, or to
+create an executable program.
+
+LINK-COMMAND is a command using the C compiler that you would use to create
+a program from several object files.
+
+The following components of LINK-COMMAND are treated specially:
+
+ -all-static do not do any dynamic linking at all
+ -avoid-version do not add a version suffix if possible
+ -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
+ -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols
+ -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
+ -export-symbols SYMFILE
+ try to export only the symbols listed in SYMFILE
+ -export-symbols-regex REGEX
+ try to export only the symbols matching REGEX
+ -LLIBDIR search LIBDIR for required installed libraries
+ -lNAME OUTPUT-FILE requires the installed library libNAME
+ -module build a library that can dlopened
+ -no-fast-install disable the fast-install mode
+ -no-install link a not-installable executable
+ -no-undefined declare that a library does not refer to external symbols
+ -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
+ -release RELEASE specify package release information
+ -rpath LIBDIR the created library will eventually be installed in LIBDIR
+ -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries
+ -static do not do any dynamic linking of libtool libraries
+ -version-info CURRENT[:REVISION[:AGE]]
+ specify library version info [each variable defaults to 0]
+
+All other options (arguments beginning with \`-') are ignored.
+
+Every other argument is treated as a filename. Files ending in \`.la' are
+treated as uninstalled libtool libraries, other files are standard or library
+object files.
+
+If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
+only library objects (\`.lo' files) may be specified, and \`-rpath' is
+required, except when creating a convenience library.
+
+If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
+using \`ar' and \`ranlib', or on Windows using \`lib'.
+
+If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
+is created, otherwise an executable program is created."
+ ;;
+
+uninstall)
+ $echo \
+"Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
+
+Remove libraries from an installation directory.
+
+RM is the name of the program to use to delete files associated with each FILE
+(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
+to RM.
+
+If FILE is a libtool library, all the files associated with it are deleted.
+Otherwise, only FILE itself is deleted using RM."
+ ;;
+
+*)
+ $echo "$modename: invalid operation mode \`$mode'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ ;;
+esac
+
+echo
+$echo "Try \`$modename --help' for more information about other modes."
+
+exit 0
+
+# Local Variables:
+# mode:shell-script
+# sh-indentation:2
+# End:
diff --git a/src/external/3rd/library/libxml/libxml2.la b/src/external/3rd/library/libxml/libxml2.la
new file mode 100644
index 000000000..52e2acfd4
--- /dev/null
+++ b/src/external/3rd/library/libxml/libxml2.la
@@ -0,0 +1,32 @@
+# libxml2.la - a libtool library file
+# Generated by ltmain.sh - GNU libtool 1.4.2 (1.922.2.54 2001/09/11 03:33:37)
+#
+# Please DO NOT delete this file!
+# It is necessary for linking the library.
+
+# The name that we can dlopen(3).
+dlname='libxml2.so.2'
+
+# Names of this library.
+library_names='libxml2.so.2.4.28 libxml2.so.2 libxml2.so'
+
+# The name of the static archive.
+old_library='libxml2.a'
+
+# Libraries that this one depends upon.
+dependency_libs=' -lz -lm'
+
+# Version information for libxml2.
+current=6
+age=4
+revision=28
+
+# Is this an already installed library?
+installed=no
+
+# Files to dlopen/dlpreopen
+dlopen=''
+dlpreopen=''
+
+# Directory that this library needs to be installed in:
+libdir='/usr/local/lib'
diff --git a/src/external/3rd/library/libxml/list.lo b/src/external/3rd/library/libxml/list.lo
new file mode 100644
index 000000000..e60448b80
Binary files /dev/null and b/src/external/3rd/library/libxml/list.lo differ
diff --git a/src/external/3rd/library/libxml/ltmain.sh b/src/external/3rd/library/libxml/ltmain.sh
new file mode 100644
index 000000000..c8c38c2c1
--- /dev/null
+++ b/src/external/3rd/library/libxml/ltmain.sh
@@ -0,0 +1,5064 @@
+# ltmain.sh - Provide generalized library-building support services.
+# NOTE: Changing this file will not affect anything until you rerun configure.
+#
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
+# Free Software Foundation, Inc.
+# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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.
+
+# Check that we have a working $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, and then maybe $echo will work.
+ exec $SHELL "$0" --no-reexec ${1+"$@"}
+fi
+
+if test "X$1" = X--fallback-echo; then
+ # used as fallback echo
+ shift
+ cat <&2
+ echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
+ exit 1
+fi
+
+# Global variables.
+mode=$default_mode
+nonopt=
+prev=
+prevopt=
+run=
+show="$echo"
+show_help=
+execute_dlfiles=
+lo2o="s/\\.lo\$/.${objext}/"
+o2lo="s/\\.${objext}\$/.lo/"
+
+# Parse our command line options once, thoroughly.
+while test $# -gt 0
+do
+ arg="$1"
+ shift
+
+ case $arg in
+ -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
+ *) optarg= ;;
+ esac
+
+ # If the previous option needs an argument, assign it.
+ if test -n "$prev"; then
+ case $prev in
+ execute_dlfiles)
+ execute_dlfiles="$execute_dlfiles $arg"
+ ;;
+ *)
+ eval "$prev=\$arg"
+ ;;
+ esac
+
+ prev=
+ prevopt=
+ continue
+ fi
+
+ # Have we seen a non-optional argument yet?
+ case $arg in
+ --help)
+ show_help=yes
+ ;;
+
+ --version)
+ echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
+ exit 0
+ ;;
+
+ --config)
+ sed -e '1,/^# ### BEGIN LIBTOOL CONFIG/d' -e '/^# ### END LIBTOOL CONFIG/,$d' $0
+ exit 0
+ ;;
+
+ --debug)
+ echo "$progname: enabling shell trace mode"
+ set -x
+ ;;
+
+ --dry-run | -n)
+ run=:
+ ;;
+
+ --features)
+ echo "host: $host"
+ if test "$build_libtool_libs" = yes; then
+ echo "enable shared libraries"
+ else
+ echo "disable shared libraries"
+ fi
+ if test "$build_old_libs" = yes; then
+ echo "enable static libraries"
+ else
+ echo "disable static libraries"
+ fi
+ exit 0
+ ;;
+
+ --finish) mode="finish" ;;
+
+ --mode) prevopt="--mode" prev=mode ;;
+ --mode=*) mode="$optarg" ;;
+
+ --preserve-dup-deps) duplicate_deps="yes" ;;
+
+ --quiet | --silent)
+ show=:
+ ;;
+
+ -dlopen)
+ prevopt="-dlopen"
+ prev=execute_dlfiles
+ ;;
+
+ -*)
+ $echo "$modename: unrecognized option \`$arg'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ ;;
+
+ *)
+ nonopt="$arg"
+ break
+ ;;
+ esac
+done
+
+if test -n "$prevopt"; then
+ $echo "$modename: option \`$prevopt' requires an argument" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+fi
+
+# If this variable is set in any of the actions, the command in it
+# will be execed at the end. This prevents here-documents from being
+# left over by shells.
+exec_cmd=
+
+if test -z "$show_help"; then
+
+ # Infer the operation mode.
+ if test -z "$mode"; then
+ case $nonopt in
+ *cc | *++ | gcc* | *-gcc*)
+ mode=link
+ for arg
+ do
+ case $arg in
+ -c)
+ mode=compile
+ break
+ ;;
+ esac
+ done
+ ;;
+ *db | *dbx | *strace | *truss)
+ mode=execute
+ ;;
+ *install*|cp|mv)
+ mode=install
+ ;;
+ *rm)
+ mode=uninstall
+ ;;
+ *)
+ # If we have no mode, but dlfiles were specified, then do execute mode.
+ test -n "$execute_dlfiles" && mode=execute
+
+ # Just use the default operation mode.
+ if test -z "$mode"; then
+ if test -n "$nonopt"; then
+ $echo "$modename: warning: cannot infer operation mode from \`$nonopt'" 1>&2
+ else
+ $echo "$modename: warning: cannot infer operation mode without MODE-ARGS" 1>&2
+ fi
+ fi
+ ;;
+ esac
+ fi
+
+ # Only execute mode is allowed to have -dlopen flags.
+ if test -n "$execute_dlfiles" && test "$mode" != execute; then
+ $echo "$modename: unrecognized option \`-dlopen'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ # Change the help message to a mode-specific one.
+ generic_help="$help"
+ help="Try \`$modename --help --mode=$mode' for more information."
+
+ # These modes are in order of execution frequency so that they run quickly.
+ case $mode in
+ # libtool compile mode
+ compile)
+ modename="$modename: compile"
+ # Get the compilation command and the source file.
+ base_compile=
+ prev=
+ lastarg=
+ srcfile="$nonopt"
+ suppress_output=
+
+ user_target=no
+ for arg
+ do
+ case $prev in
+ "") ;;
+ xcompiler)
+ # Aesthetically quote the previous argument.
+ prev=
+ lastarg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+
+ case $arg in
+ # Double-quote args containing other shell metacharacters.
+ # Many Bourne shells cannot handle close brackets correctly
+ # in scan sets, so we specify it separately.
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ arg="\"$arg\""
+ ;;
+ esac
+
+ # Add the previous argument to base_compile.
+ if test -z "$base_compile"; then
+ base_compile="$lastarg"
+ else
+ base_compile="$base_compile $lastarg"
+ fi
+ continue
+ ;;
+ esac
+
+ # Accept any command-line options.
+ case $arg in
+ -o)
+ if test "$user_target" != "no"; then
+ $echo "$modename: you cannot specify \`-o' more than once" 1>&2
+ exit 1
+ fi
+ user_target=next
+ ;;
+
+ -static)
+ build_old_libs=yes
+ continue
+ ;;
+
+ -prefer-pic)
+ pic_mode=yes
+ continue
+ ;;
+
+ -prefer-non-pic)
+ pic_mode=no
+ continue
+ ;;
+
+ -Xcompiler)
+ prev=xcompiler
+ continue
+ ;;
+
+ -Wc,*)
+ args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
+ lastarg=
+ save_ifs="$IFS"; IFS=','
+ for arg in $args; do
+ IFS="$save_ifs"
+
+ # Double-quote args containing other shell metacharacters.
+ # Many Bourne shells cannot handle close brackets correctly
+ # in scan sets, so we specify it separately.
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ arg="\"$arg\""
+ ;;
+ esac
+ lastarg="$lastarg $arg"
+ done
+ IFS="$save_ifs"
+ lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
+
+ # Add the arguments to base_compile.
+ if test -z "$base_compile"; then
+ base_compile="$lastarg"
+ else
+ base_compile="$base_compile $lastarg"
+ fi
+ continue
+ ;;
+ esac
+
+ case $user_target in
+ next)
+ # The next one is the -o target name
+ user_target=yes
+ continue
+ ;;
+ yes)
+ # We got the output file
+ user_target=set
+ libobj="$arg"
+ continue
+ ;;
+ esac
+
+ # Accept the current argument as the source file.
+ lastarg="$srcfile"
+ srcfile="$arg"
+
+ # Aesthetically quote the previous argument.
+
+ # Backslashify any backslashes, double quotes, and dollar signs.
+ # These are the only characters that are still specially
+ # interpreted inside of double-quoted scrings.
+ lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
+
+ # Double-quote args containing other shell metacharacters.
+ # Many Bourne shells cannot handle close brackets correctly
+ # in scan sets, so we specify it separately.
+ case $lastarg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ lastarg="\"$lastarg\""
+ ;;
+ esac
+
+ # Add the previous argument to base_compile.
+ if test -z "$base_compile"; then
+ base_compile="$lastarg"
+ else
+ base_compile="$base_compile $lastarg"
+ fi
+ done
+
+ case $user_target in
+ set)
+ ;;
+ no)
+ # Get the name of the library object.
+ libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
+ ;;
+ *)
+ $echo "$modename: you must specify a target with \`-o'" 1>&2
+ exit 1
+ ;;
+ esac
+
+ # Recognize several different file suffixes.
+ # If the user specifies -o file.o, it is replaced with file.lo
+ xform='[cCFSfmso]'
+ case $libobj in
+ *.ada) xform=ada ;;
+ *.adb) xform=adb ;;
+ *.ads) xform=ads ;;
+ *.asm) xform=asm ;;
+ *.c++) xform=c++ ;;
+ *.cc) xform=cc ;;
+ *.cpp) xform=cpp ;;
+ *.cxx) xform=cxx ;;
+ *.f90) xform=f90 ;;
+ *.for) xform=for ;;
+ esac
+
+ libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
+
+ case $libobj in
+ *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
+ *)
+ $echo "$modename: cannot determine name of library object from \`$libobj'" 1>&2
+ exit 1
+ ;;
+ esac
+
+ if test -z "$base_compile"; then
+ $echo "$modename: you must specify a compilation command" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ # Delete any leftover library objects.
+ if test "$build_old_libs" = yes; then
+ removelist="$obj $libobj"
+ else
+ removelist="$libobj"
+ fi
+
+ $run $rm $removelist
+ trap "$run $rm $removelist; exit 1" 1 2 15
+
+ # On Cygwin there's no "real" PIC flag so we must build both object types
+ case $host_os in
+ cygwin* | mingw* | pw32* | os2*)
+ pic_mode=default
+ ;;
+ esac
+ if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then
+ # non-PIC code in shared libraries is not supported
+ pic_mode=default
+ fi
+
+ # Calculate the filename of the output object if compiler does
+ # not support -o with -c
+ if test "$compiler_c_o" = no; then
+ output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
+ lockfile="$output_obj.lock"
+ removelist="$removelist $output_obj $lockfile"
+ trap "$run $rm $removelist; exit 1" 1 2 15
+ else
+ need_locks=no
+ lockfile=
+ fi
+
+ # Lock this critical section if it is needed
+ # We use this script file to make the link, it avoids creating a new file
+ if test "$need_locks" = yes; then
+ until $run ln "$0" "$lockfile" 2>/dev/null; do
+ $show "Waiting for $lockfile to be removed"
+ sleep 2
+ done
+ elif test "$need_locks" = warn; then
+ if test -f "$lockfile"; then
+ echo "\
+*** ERROR, $lockfile exists and contains:
+`cat $lockfile 2>/dev/null`
+
+This indicates that another process is trying to use the same
+temporary object file, and libtool could not work around it because
+your compiler does not support \`-c' and \`-o' together. If you
+repeat this compilation, it may succeed, by chance, but you had better
+avoid parallel builds (make -j) in this platform, or get a better
+compiler."
+
+ $run $rm $removelist
+ exit 1
+ fi
+ echo $srcfile > "$lockfile"
+ fi
+
+ if test -n "$fix_srcfile_path"; then
+ eval srcfile=\"$fix_srcfile_path\"
+ fi
+
+ # Only build a PIC object if we are building libtool libraries.
+ if test "$build_libtool_libs" = yes; then
+ # Without this assignment, base_compile gets emptied.
+ fbsd_hideous_sh_bug=$base_compile
+
+ if test "$pic_mode" != no; then
+ # All platforms use -DPIC, to notify preprocessed assembler code.
+ command="$base_compile $srcfile $pic_flag -DPIC"
+ else
+ # Don't build PIC code
+ command="$base_compile $srcfile"
+ fi
+ if test "$build_old_libs" = yes; then
+ lo_libobj="$libobj"
+ dir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$dir" = "X$libobj"; then
+ dir="$objdir"
+ else
+ dir="$dir/$objdir"
+ fi
+ libobj="$dir/"`$echo "X$libobj" | $Xsed -e 's%^.*/%%'`
+
+ if test -d "$dir"; then
+ $show "$rm $libobj"
+ $run $rm $libobj
+ else
+ $show "$mkdir $dir"
+ $run $mkdir $dir
+ status=$?
+ if test $status -ne 0 && test ! -d $dir; then
+ exit $status
+ fi
+ fi
+ fi
+ if test "$compiler_o_lo" = yes; then
+ output_obj="$libobj"
+ command="$command -o $output_obj"
+ elif test "$compiler_c_o" = yes; then
+ output_obj="$obj"
+ command="$command -o $output_obj"
+ fi
+
+ $run $rm "$output_obj"
+ $show "$command"
+ if $run eval "$command"; then :
+ else
+ test -n "$output_obj" && $run $rm $removelist
+ exit 1
+ fi
+
+ if test "$need_locks" = warn &&
+ test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
+ echo "\
+*** ERROR, $lockfile contains:
+`cat $lockfile 2>/dev/null`
+
+but it should contain:
+$srcfile
+
+This indicates that another process is trying to use the same
+temporary object file, and libtool could not work around it because
+your compiler does not support \`-c' and \`-o' together. If you
+repeat this compilation, it may succeed, by chance, but you had better
+avoid parallel builds (make -j) in this platform, or get a better
+compiler."
+
+ $run $rm $removelist
+ exit 1
+ fi
+
+ # Just move the object if needed, then go on to compile the next one
+ if test x"$output_obj" != x"$libobj"; then
+ $show "$mv $output_obj $libobj"
+ if $run $mv $output_obj $libobj; then :
+ else
+ error=$?
+ $run $rm $removelist
+ exit $error
+ fi
+ fi
+
+ # If we have no pic_flag, then copy the object into place and finish.
+ if (test -z "$pic_flag" || test "$pic_mode" != default) &&
+ test "$build_old_libs" = yes; then
+ # Rename the .lo from within objdir to obj
+ if test -f $obj; then
+ $show $rm $obj
+ $run $rm $obj
+ fi
+
+ $show "$mv $libobj $obj"
+ if $run $mv $libobj $obj; then :
+ else
+ error=$?
+ $run $rm $removelist
+ exit $error
+ fi
+
+ xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$xdir" = "X$obj"; then
+ xdir="."
+ else
+ xdir="$xdir"
+ fi
+ baseobj=`$echo "X$obj" | $Xsed -e "s%.*/%%"`
+ libobj=`$echo "X$baseobj" | $Xsed -e "$o2lo"`
+ # Now arrange that obj and lo_libobj become the same file
+ $show "(cd $xdir && $LN_S $baseobj $libobj)"
+ if $run eval '(cd $xdir && $LN_S $baseobj $libobj)'; then
+ # Unlock the critical section if it was locked
+ if test "$need_locks" != no; then
+ $run $rm "$lockfile"
+ fi
+ exit 0
+ else
+ error=$?
+ $run $rm $removelist
+ exit $error
+ fi
+ fi
+
+ # Allow error messages only from the first compilation.
+ suppress_output=' >/dev/null 2>&1'
+ fi
+
+ # Only build a position-dependent object if we build old libraries.
+ if test "$build_old_libs" = yes; then
+ if test "$pic_mode" != yes; then
+ # Don't build PIC code
+ command="$base_compile $srcfile"
+ else
+ # All platforms use -DPIC, to notify preprocessed assembler code.
+ command="$base_compile $srcfile $pic_flag -DPIC"
+ fi
+ if test "$compiler_c_o" = yes; then
+ command="$command -o $obj"
+ output_obj="$obj"
+ fi
+
+ # Suppress compiler output if we already did a PIC compilation.
+ command="$command$suppress_output"
+ $run $rm "$output_obj"
+ $show "$command"
+ if $run eval "$command"; then :
+ else
+ $run $rm $removelist
+ exit 1
+ fi
+
+ if test "$need_locks" = warn &&
+ test x"`cat $lockfile 2>/dev/null`" != x"$srcfile"; then
+ echo "\
+*** ERROR, $lockfile contains:
+`cat $lockfile 2>/dev/null`
+
+but it should contain:
+$srcfile
+
+This indicates that another process is trying to use the same
+temporary object file, and libtool could not work around it because
+your compiler does not support \`-c' and \`-o' together. If you
+repeat this compilation, it may succeed, by chance, but you had better
+avoid parallel builds (make -j) in this platform, or get a better
+compiler."
+
+ $run $rm $removelist
+ exit 1
+ fi
+
+ # Just move the object if needed
+ if test x"$output_obj" != x"$obj"; then
+ $show "$mv $output_obj $obj"
+ if $run $mv $output_obj $obj; then :
+ else
+ error=$?
+ $run $rm $removelist
+ exit $error
+ fi
+ fi
+
+ # Create an invalid libtool object if no PIC, so that we do not
+ # accidentally link it into a program.
+ if test "$build_libtool_libs" != yes; then
+ $show "echo timestamp > $libobj"
+ $run eval "echo timestamp > \$libobj" || exit $?
+ else
+ # Move the .lo from within objdir
+ $show "$mv $libobj $lo_libobj"
+ if $run $mv $libobj $lo_libobj; then :
+ else
+ error=$?
+ $run $rm $removelist
+ exit $error
+ fi
+ fi
+ fi
+
+ # Unlock the critical section if it was locked
+ if test "$need_locks" != no; then
+ $run $rm "$lockfile"
+ fi
+
+ exit 0
+ ;;
+
+ # libtool link mode
+ link | relink)
+ modename="$modename: link"
+ case $host in
+ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+ # It is impossible to link a dll without this setting, and
+ # we shouldn't force the makefile maintainer to figure out
+ # which system we are compiling for in order to pass an extra
+ # flag for every libtool invokation.
+ # allow_undefined=no
+
+ # FIXME: Unfortunately, there are problems with the above when trying
+ # to make a dll which has undefined symbols, in which case not
+ # even a static library is built. For now, we need to specify
+ # -no-undefined on the libtool link line when we can be certain
+ # that all symbols are satisfied, otherwise we get a static library.
+ allow_undefined=yes
+ ;;
+ *)
+ allow_undefined=yes
+ ;;
+ esac
+ libtool_args="$nonopt"
+ compile_command="$nonopt"
+ finalize_command="$nonopt"
+
+ compile_rpath=
+ finalize_rpath=
+ compile_shlibpath=
+ finalize_shlibpath=
+ convenience=
+ old_convenience=
+ deplibs=
+ old_deplibs=
+ compiler_flags=
+ linker_flags=
+ dllsearchpath=
+ lib_search_path=`pwd`
+ inst_prefix_dir=
+
+ avoid_version=no
+ dlfiles=
+ dlprefiles=
+ dlself=no
+ export_dynamic=no
+ export_symbols=
+ export_symbols_regex=
+ generated=
+ libobjs=
+ ltlibs=
+ module=no
+ no_install=no
+ objs=
+ prefer_static_libs=no
+ preload=no
+ prev=
+ prevarg=
+ release=
+ rpath=
+ xrpath=
+ perm_rpath=
+ temp_rpath=
+ thread_safe=no
+ vinfo=
+
+ # We need to know -static, to get the right output filenames.
+ for arg
+ do
+ case $arg in
+ -all-static | -static)
+ if test "X$arg" = "X-all-static"; then
+ if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then
+ $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2
+ fi
+ if test -n "$link_static_flag"; then
+ dlopen_self=$dlopen_self_static
+ fi
+ else
+ if test -z "$pic_flag" && test -n "$link_static_flag"; then
+ dlopen_self=$dlopen_self_static
+ fi
+ fi
+ build_libtool_libs=no
+ build_old_libs=yes
+ prefer_static_libs=yes
+ break
+ ;;
+ esac
+ done
+
+ # See if our shared archives depend on static archives.
+ test -n "$old_archive_from_new_cmds" && build_old_libs=yes
+
+ # Go through the arguments, transforming them on the way.
+ while test $# -gt 0; do
+ arg="$1"
+ shift
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
+ ;;
+ *) qarg=$arg ;;
+ esac
+ libtool_args="$libtool_args $qarg"
+
+ # If the previous option needs an argument, assign it.
+ if test -n "$prev"; then
+ case $prev in
+ output)
+ compile_command="$compile_command @OUTPUT@"
+ finalize_command="$finalize_command @OUTPUT@"
+ ;;
+ esac
+
+ case $prev in
+ dlfiles|dlprefiles)
+ if test "$preload" = no; then
+ # Add the symbol object into the linking commands.
+ compile_command="$compile_command @SYMFILE@"
+ finalize_command="$finalize_command @SYMFILE@"
+ preload=yes
+ fi
+ case $arg in
+ *.la | *.lo) ;; # We handle these cases below.
+ force)
+ if test "$dlself" = no; then
+ dlself=needless
+ export_dynamic=yes
+ fi
+ prev=
+ continue
+ ;;
+ self)
+ if test "$prev" = dlprefiles; then
+ dlself=yes
+ elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then
+ dlself=yes
+ else
+ dlself=needless
+ export_dynamic=yes
+ fi
+ prev=
+ continue
+ ;;
+ *)
+ if test "$prev" = dlfiles; then
+ dlfiles="$dlfiles $arg"
+ else
+ dlprefiles="$dlprefiles $arg"
+ fi
+ prev=
+ continue
+ ;;
+ esac
+ ;;
+ expsyms)
+ export_symbols="$arg"
+ if test ! -f "$arg"; then
+ $echo "$modename: symbol file \`$arg' does not exist"
+ exit 1
+ fi
+ prev=
+ continue
+ ;;
+ expsyms_regex)
+ export_symbols_regex="$arg"
+ prev=
+ continue
+ ;;
+ inst_prefix)
+ inst_prefix_dir="$arg"
+ prev=
+ continue
+ ;;
+ release)
+ release="-$arg"
+ prev=
+ continue
+ ;;
+ rpath | xrpath)
+ # We need an absolute path.
+ case $arg in
+ [\\/]* | [A-Za-z]:[\\/]*) ;;
+ *)
+ $echo "$modename: only absolute run-paths are allowed" 1>&2
+ exit 1
+ ;;
+ esac
+ if test "$prev" = rpath; then
+ case "$rpath " in
+ *" $arg "*) ;;
+ *) rpath="$rpath $arg" ;;
+ esac
+ else
+ case "$xrpath " in
+ *" $arg "*) ;;
+ *) xrpath="$xrpath $arg" ;;
+ esac
+ fi
+ prev=
+ continue
+ ;;
+ xcompiler)
+ compiler_flags="$compiler_flags $qarg"
+ prev=
+ compile_command="$compile_command $qarg"
+ finalize_command="$finalize_command $qarg"
+ continue
+ ;;
+ xlinker)
+ linker_flags="$linker_flags $qarg"
+ compiler_flags="$compiler_flags $wl$qarg"
+ prev=
+ compile_command="$compile_command $wl$qarg"
+ finalize_command="$finalize_command $wl$qarg"
+ continue
+ ;;
+ *)
+ eval "$prev=\"\$arg\""
+ prev=
+ continue
+ ;;
+ esac
+ fi # test -n $prev
+
+ prevarg="$arg"
+
+ case $arg in
+ -all-static)
+ if test -n "$link_static_flag"; then
+ compile_command="$compile_command $link_static_flag"
+ finalize_command="$finalize_command $link_static_flag"
+ fi
+ continue
+ ;;
+
+ -allow-undefined)
+ # FIXME: remove this flag sometime in the future.
+ $echo "$modename: \`-allow-undefined' is deprecated because it is the default" 1>&2
+ continue
+ ;;
+
+ -avoid-version)
+ avoid_version=yes
+ continue
+ ;;
+
+ -dlopen)
+ prev=dlfiles
+ continue
+ ;;
+
+ -dlpreopen)
+ prev=dlprefiles
+ continue
+ ;;
+
+ -export-dynamic)
+ export_dynamic=yes
+ continue
+ ;;
+
+ -export-symbols | -export-symbols-regex)
+ if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
+ $echo "$modename: more than one -exported-symbols argument is not allowed"
+ exit 1
+ fi
+ if test "X$arg" = "X-export-symbols"; then
+ prev=expsyms
+ else
+ prev=expsyms_regex
+ fi
+ continue
+ ;;
+
+ -inst-prefix-dir)
+ prev=inst_prefix
+ continue
+ ;;
+
+ # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:*
+ # so, if we see these flags be careful not to treat them like -L
+ -L[A-Z][A-Z]*:*)
+ case $with_gcc/$host in
+ no/*-*-irix*)
+ compile_command="$compile_command $arg"
+ finalize_command="$finalize_command $arg"
+ ;;
+ esac
+ continue
+ ;;
+
+ -L*)
+ dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
+ # We need an absolute path.
+ case $dir in
+ [\\/]* | [A-Za-z]:[\\/]*) ;;
+ *)
+ absdir=`cd "$dir" && pwd`
+ if test -z "$absdir"; then
+ $echo "$modename: cannot determine absolute directory name of \`$dir'" 1>&2
+ exit 1
+ fi
+ dir="$absdir"
+ ;;
+ esac
+ case "$deplibs " in
+ *" -L$dir "*) ;;
+ *)
+ deplibs="$deplibs -L$dir"
+ lib_search_path="$lib_search_path $dir"
+ ;;
+ esac
+ case $host in
+ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+ case :$dllsearchpath: in
+ *":$dir:"*) ;;
+ *) dllsearchpath="$dllsearchpath:$dir";;
+ esac
+ ;;
+ esac
+ continue
+ ;;
+
+ -l*)
+ if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
+ case $host in
+ *-*-cygwin* | *-*-pw32* | *-*-beos*)
+ # These systems don't actually have a C or math library (as such)
+ continue
+ ;;
+ *-*-mingw* | *-*-os2*)
+ # These systems don't actually have a C library (as such)
+ test "X$arg" = "X-lc" && continue
+ ;;
+ *-*-openbsd*)
+ # Do not include libc due to us having libc/libc_r.
+ test "X$arg" = "X-lc" && continue
+ ;;
+ esac
+ elif test "X$arg" = "X-lc_r"; then
+ case $host in
+ *-*-openbsd*)
+ # Do not include libc_r directly, use -pthread flag.
+ continue
+ ;;
+ esac
+ fi
+ deplibs="$deplibs $arg"
+ continue
+ ;;
+
+ -module)
+ module=yes
+ continue
+ ;;
+
+ -no-fast-install)
+ fast_install=no
+ continue
+ ;;
+
+ -no-install)
+ case $host in
+ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+ # The PATH hackery in wrapper scripts is required on Windows
+ # in order for the loader to find any dlls it needs.
+ $echo "$modename: warning: \`-no-install' is ignored for $host" 1>&2
+ $echo "$modename: warning: assuming \`-no-fast-install' instead" 1>&2
+ fast_install=no
+ ;;
+ *) no_install=yes ;;
+ esac
+ continue
+ ;;
+
+ -no-undefined)
+ allow_undefined=no
+ continue
+ ;;
+
+ -o) prev=output ;;
+
+ -release)
+ prev=release
+ continue
+ ;;
+
+ -rpath)
+ prev=rpath
+ continue
+ ;;
+
+ -R)
+ prev=xrpath
+ continue
+ ;;
+
+ -R*)
+ dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
+ # We need an absolute path.
+ case $dir in
+ [\\/]* | [A-Za-z]:[\\/]*) ;;
+ *)
+ $echo "$modename: only absolute run-paths are allowed" 1>&2
+ exit 1
+ ;;
+ esac
+ case "$xrpath " in
+ *" $dir "*) ;;
+ *) xrpath="$xrpath $dir" ;;
+ esac
+ continue
+ ;;
+
+ -static)
+ # The effects of -static are defined in a previous loop.
+ # We used to do the same as -all-static on platforms that
+ # didn't have a PIC flag, but the assumption that the effects
+ # would be equivalent was wrong. It would break on at least
+ # Digital Unix and AIX.
+ continue
+ ;;
+
+ -thread-safe)
+ thread_safe=yes
+ continue
+ ;;
+
+ -version-info)
+ prev=vinfo
+ continue
+ ;;
+
+ -Wc,*)
+ args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
+ arg=
+ save_ifs="$IFS"; IFS=','
+ for flag in $args; do
+ IFS="$save_ifs"
+ case $flag in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ flag="\"$flag\""
+ ;;
+ esac
+ arg="$arg $wl$flag"
+ compiler_flags="$compiler_flags $flag"
+ done
+ IFS="$save_ifs"
+ arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
+ ;;
+
+ -Wl,*)
+ args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
+ arg=
+ save_ifs="$IFS"; IFS=','
+ for flag in $args; do
+ IFS="$save_ifs"
+ case $flag in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ flag="\"$flag\""
+ ;;
+ esac
+ arg="$arg $wl$flag"
+ compiler_flags="$compiler_flags $wl$flag"
+ linker_flags="$linker_flags $flag"
+ done
+ IFS="$save_ifs"
+ arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
+ ;;
+
+ -Xcompiler)
+ prev=xcompiler
+ continue
+ ;;
+
+ -Xlinker)
+ prev=xlinker
+ continue
+ ;;
+
+ # Some other compiler flag.
+ -* | +*)
+ # Unknown arguments in both finalize_command and compile_command need
+ # to be aesthetically quoted because they are evaled later.
+ arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ arg="\"$arg\""
+ ;;
+ esac
+ ;;
+
+ *.lo | *.$objext)
+ # A library or standard object.
+ if test "$prev" = dlfiles; then
+ # This file was specified with -dlopen.
+ if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then
+ dlfiles="$dlfiles $arg"
+ prev=
+ continue
+ else
+ # If libtool objects are unsupported, then we need to preload.
+ prev=dlprefiles
+ fi
+ fi
+
+ if test "$prev" = dlprefiles; then
+ # Preload the old-style object.
+ dlprefiles="$dlprefiles "`$echo "X$arg" | $Xsed -e "$lo2o"`
+ prev=
+ else
+ case $arg in
+ *.lo) libobjs="$libobjs $arg" ;;
+ *) objs="$objs $arg" ;;
+ esac
+ fi
+ ;;
+
+ *.$libext)
+ # An archive.
+ deplibs="$deplibs $arg"
+ old_deplibs="$old_deplibs $arg"
+ continue
+ ;;
+
+ *.la)
+ # A libtool-controlled library.
+
+ if test "$prev" = dlfiles; then
+ # This library was specified with -dlopen.
+ dlfiles="$dlfiles $arg"
+ prev=
+ elif test "$prev" = dlprefiles; then
+ # The library was specified with -dlpreopen.
+ dlprefiles="$dlprefiles $arg"
+ prev=
+ else
+ deplibs="$deplibs $arg"
+ fi
+ continue
+ ;;
+
+ # Some other compiler argument.
+ *)
+ # Unknown arguments in both finalize_command and compile_command need
+ # to be aesthetically quoted because they are evaled later.
+ arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"")
+ arg="\"$arg\""
+ ;;
+ esac
+ ;;
+ esac # arg
+
+ # Now actually substitute the argument into the commands.
+ if test -n "$arg"; then
+ compile_command="$compile_command $arg"
+ finalize_command="$finalize_command $arg"
+ fi
+ done # argument parsing loop
+
+ if test -n "$prev"; then
+ $echo "$modename: the \`$prevarg' option requires an argument" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then
+ eval arg=\"$export_dynamic_flag_spec\"
+ compile_command="$compile_command $arg"
+ finalize_command="$finalize_command $arg"
+ fi
+
+ # calculate the name of the file, without its directory
+ outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
+ libobjs_save="$libobjs"
+
+ if test -n "$shlibpath_var"; then
+ # get the directories listed in $shlibpath_var
+ eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
+ else
+ shlib_search_path=
+ fi
+ eval sys_lib_search_path=\"$sys_lib_search_path_spec\"
+ eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\"
+
+ output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$output_objdir" = "X$output"; then
+ output_objdir="$objdir"
+ else
+ output_objdir="$output_objdir/$objdir"
+ fi
+ # Create the object directory.
+ if test ! -d "$output_objdir"; then
+ $show "$mkdir $output_objdir"
+ $run $mkdir $output_objdir
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$output_objdir"; then
+ exit $status
+ fi
+ fi
+
+ # Determine the type of output
+ case $output in
+ "")
+ $echo "$modename: you must specify an output file" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ ;;
+ *.$libext) linkmode=oldlib ;;
+ *.lo | *.$objext) linkmode=obj ;;
+ *.la) linkmode=lib ;;
+ *) linkmode=prog ;; # Anything else should be a program.
+ esac
+
+ specialdeplibs=
+ libs=
+ # Find all interdependent deplibs by searching for libraries
+ # that are linked more than once (e.g. -la -lb -la)
+ for deplib in $deplibs; do
+ if test "X$duplicate_deps" = "Xyes" ; then
+ case "$libs " in
+ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+ esac
+ fi
+ libs="$libs $deplib"
+ done
+
+ if test "$linkmode" = lib; then
+ libs="$predeps $libs $compiler_lib_search_path $postdeps"
+
+ # Compute libraries that are listed more than once in $predeps
+ # $postdeps and mark them as special (i.e., whose duplicates are
+ # not to be eliminated).
+ pre_post_deps=
+ if test "X$duplicate_deps" = "Xyes" ; then
+ for pre_post_dep in $predeps $postdeps; do
+ case "$pre_post_deps " in
+ *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;;
+ esac
+ pre_post_deps="$pre_post_deps $pre_post_dep"
+ done
+ fi
+ pre_post_deps=
+ fi
+
+ deplibs=
+ newdependency_libs=
+ newlib_search_path=
+ need_relink=no # whether we're linking any uninstalled libtool libraries
+ notinst_deplibs= # not-installed libtool libraries
+ notinst_path= # paths that contain not-installed libtool libraries
+ case $linkmode in
+ lib)
+ passes="conv link"
+ for file in $dlfiles $dlprefiles; do
+ case $file in
+ *.la) ;;
+ *)
+ $echo "$modename: libraries can \`-dlopen' only libtool libraries: $file" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+ ;;
+ prog)
+ compile_deplibs=
+ finalize_deplibs=
+ alldeplibs=no
+ newdlfiles=
+ newdlprefiles=
+ passes="conv scan dlopen dlpreopen link"
+ ;;
+ *) passes="conv"
+ ;;
+ esac
+ for pass in $passes; do
+ if test "$linkmode" = prog; then
+ # Determine which files to process
+ case $pass in
+ dlopen)
+ libs="$dlfiles"
+ save_deplibs="$deplibs" # Collect dlpreopened libraries
+ deplibs=
+ ;;
+ dlpreopen) libs="$dlprefiles" ;;
+ link) libs="$deplibs %DEPLIBS% $dependency_libs" ;;
+ esac
+ fi
+ for deplib in $libs; do
+ lib=
+ found=no
+ case $deplib in
+ -l*)
+ if test "$linkmode" = oldlib && test "$linkmode" = obj; then
+ $echo "$modename: warning: \`-l' is ignored for archives/objects: $deplib" 1>&2
+ continue
+ fi
+ if test "$pass" = conv; then
+ deplibs="$deplib $deplibs"
+ continue
+ fi
+ name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
+ for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
+ # Search the libtool library
+ lib="$searchdir/lib${name}.la"
+ if test -f "$lib"; then
+ found=yes
+ break
+ fi
+ done
+ if test "$found" != yes; then
+ # deplib doesn't seem to be a libtool library
+ if test "$linkmode,$pass" = "prog,link"; then
+ compile_deplibs="$deplib $compile_deplibs"
+ finalize_deplibs="$deplib $finalize_deplibs"
+ else
+ deplibs="$deplib $deplibs"
+ test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs"
+ fi
+ continue
+ fi
+ ;; # -l
+ -L*)
+ case $linkmode in
+ lib)
+ deplibs="$deplib $deplibs"
+ test "$pass" = conv && continue
+ newdependency_libs="$deplib $newdependency_libs"
+ newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
+ ;;
+ prog)
+ if test "$pass" = conv; then
+ deplibs="$deplib $deplibs"
+ continue
+ fi
+ if test "$pass" = scan; then
+ deplibs="$deplib $deplibs"
+ newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
+ else
+ compile_deplibs="$deplib $compile_deplibs"
+ finalize_deplibs="$deplib $finalize_deplibs"
+ fi
+ ;;
+ *)
+ $echo "$modename: warning: \`-L' is ignored for archives/objects: $deplib" 1>&2
+ ;;
+ esac # linkmode
+ continue
+ ;; # -L
+ -R*)
+ if test "$pass" = link; then
+ dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
+ # Make sure the xrpath contains only unique directories.
+ case "$xrpath " in
+ *" $dir "*) ;;
+ *) xrpath="$xrpath $dir" ;;
+ esac
+ fi
+ deplibs="$deplib $deplibs"
+ continue
+ ;;
+ *.la) lib="$deplib" ;;
+ *.$libext)
+ if test "$pass" = conv; then
+ deplibs="$deplib $deplibs"
+ continue
+ fi
+ case $linkmode in
+ lib)
+ if test "$deplibs_check_method" != pass_all; then
+ echo
+ echo "*** Warning: This library needs some functionality provided by $deplib."
+ echo "*** I have the capability to make that library automatically link in when"
+ echo "*** you link to this library. But I can only do this if you have a"
+ echo "*** shared version of the library, which you do not appear to have."
+ else
+ echo
+ echo "*** Warning: Linking the shared library $output against the"
+ echo "*** static library $deplib is not portable!"
+ deplibs="$deplib $deplibs"
+ fi
+ continue
+ ;;
+ prog)
+ if test "$pass" != link; then
+ deplibs="$deplib $deplibs"
+ else
+ compile_deplibs="$deplib $compile_deplibs"
+ finalize_deplibs="$deplib $finalize_deplibs"
+ fi
+ continue
+ ;;
+ esac # linkmode
+ ;; # *.$libext
+ *.lo | *.$objext)
+ if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
+ # If there is no dlopen support or we're linking statically,
+ # we need to preload.
+ newdlprefiles="$newdlprefiles $deplib"
+ compile_deplibs="$deplib $compile_deplibs"
+ finalize_deplibs="$deplib $finalize_deplibs"
+ else
+ newdlfiles="$newdlfiles $deplib"
+ fi
+ continue
+ ;;
+ %DEPLIBS%)
+ alldeplibs=yes
+ continue
+ ;;
+ esac # case $deplib
+ if test "$found" = yes || test -f "$lib"; then :
+ else
+ $echo "$modename: cannot find the library \`$lib'" 1>&2
+ exit 1
+ fi
+
+ # Check to see that this really is a libtool archive.
+ if (sed -e '2q' $lib | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
+ else
+ $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+ exit 1
+ fi
+
+ ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
+ test "X$ladir" = "X$lib" && ladir="."
+
+ dlname=
+ dlopen=
+ dlpreopen=
+ libdir=
+ library_names=
+ old_library=
+ # If the library was installed with an old release of libtool,
+ # it will not redefine variable installed.
+ installed=yes
+
+ # Read the .la file
+ case $lib in
+ */* | *\\*) . $lib ;;
+ *) . ./$lib ;;
+ esac
+
+ if test "$linkmode,$pass" = "lib,link" ||
+ test "$linkmode,$pass" = "prog,scan" ||
+ { test "$linkmode" = oldlib && test "$linkmode" = obj; }; then
+ # Add dl[pre]opened files of deplib
+ test -n "$dlopen" && dlfiles="$dlfiles $dlopen"
+ test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen"
+ fi
+
+ if test "$pass" = conv; then
+ # Only check for convenience libraries
+ deplibs="$lib $deplibs"
+ if test -z "$libdir"; then
+ if test -z "$old_library"; then
+ $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
+ exit 1
+ fi
+ # It is a libtool convenience library, so add in its objects.
+ convenience="$convenience $ladir/$objdir/$old_library"
+ old_convenience="$old_convenience $ladir/$objdir/$old_library"
+ tmp_libs=
+ for deplib in $dependency_libs; do
+ deplibs="$deplib $deplibs"
+ if test "X$duplicate_deps" = "Xyes" ; then
+ case "$tmp_libs " in
+ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+ esac
+ fi
+ tmp_libs="$tmp_libs $deplib"
+ done
+ elif test "$linkmode" != prog && test "$linkmode" != lib; then
+ $echo "$modename: \`$lib' is not a convenience library" 1>&2
+ exit 1
+ fi
+ continue
+ fi # $pass = conv
+
+ # Get the name of the library we link against.
+ linklib=
+ for l in $old_library $library_names; do
+ linklib="$l"
+ done
+ if test -z "$linklib"; then
+ $echo "$modename: cannot find name of link library for \`$lib'" 1>&2
+ exit 1
+ fi
+
+ # This library was specified with -dlopen.
+ if test "$pass" = dlopen; then
+ if test -z "$libdir"; then
+ $echo "$modename: cannot -dlopen a convenience library: \`$lib'" 1>&2
+ exit 1
+ fi
+ if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then
+ # If there is no dlname, no dlopen support or we're linking
+ # statically, we need to preload.
+ dlprefiles="$dlprefiles $lib"
+ else
+ newdlfiles="$newdlfiles $lib"
+ fi
+ continue
+ fi # $pass = dlopen
+
+ # We need an absolute path.
+ case $ladir in
+ [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;;
+ *)
+ abs_ladir=`cd "$ladir" && pwd`
+ if test -z "$abs_ladir"; then
+ $echo "$modename: warning: cannot determine absolute directory name of \`$ladir'" 1>&2
+ $echo "$modename: passing it literally to the linker, although it might fail" 1>&2
+ abs_ladir="$ladir"
+ fi
+ ;;
+ esac
+ laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
+
+ # Find the relevant object directory and library name.
+ if test "X$installed" = Xyes; then
+ if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then
+ $echo "$modename: warning: library \`$lib' was moved." 1>&2
+ dir="$ladir"
+ absdir="$abs_ladir"
+ libdir="$abs_ladir"
+ else
+ dir="$libdir"
+ absdir="$libdir"
+ fi
+ else
+ dir="$ladir/$objdir"
+ absdir="$abs_ladir/$objdir"
+ # Remove this search path later
+ notinst_path="$notinst_path $abs_ladir"
+ fi # $installed = yes
+ name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
+
+ # This library was specified with -dlpreopen.
+ if test "$pass" = dlpreopen; then
+ if test -z "$libdir"; then
+ $echo "$modename: cannot -dlpreopen a convenience library: \`$lib'" 1>&2
+ exit 1
+ fi
+ # Prefer using a static library (so that no silly _DYNAMIC symbols
+ # are required to link).
+ if test -n "$old_library"; then
+ newdlprefiles="$newdlprefiles $dir/$old_library"
+ # Otherwise, use the dlname, so that lt_dlopen finds it.
+ elif test -n "$dlname"; then
+ newdlprefiles="$newdlprefiles $dir/$dlname"
+ else
+ newdlprefiles="$newdlprefiles $dir/$linklib"
+ fi
+ fi # $pass = dlpreopen
+
+ if test -z "$libdir"; then
+ # Link the convenience library
+ if test "$linkmode" = lib; then
+ deplibs="$dir/$old_library $deplibs"
+ elif test "$linkmode,$pass" = "prog,link"; then
+ compile_deplibs="$dir/$old_library $compile_deplibs"
+ finalize_deplibs="$dir/$old_library $finalize_deplibs"
+ else
+ deplibs="$lib $deplibs"
+ fi
+ continue
+ fi
+
+ if test "$linkmode" = prog && test "$pass" != link; then
+ newlib_search_path="$newlib_search_path $ladir"
+ deplibs="$lib $deplibs"
+
+ linkalldeplibs=no
+ if test "$link_all_deplibs" != no || test -z "$library_names" ||
+ test "$build_libtool_libs" = no; then
+ linkalldeplibs=yes
+ fi
+
+ tmp_libs=
+ for deplib in $dependency_libs; do
+ case $deplib in
+ -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
+ esac
+ # Need to link against all dependency_libs?
+ if test "$linkalldeplibs" = yes; then
+ deplibs="$deplib $deplibs"
+ else
+ # Need to hardcode shared library paths
+ # or/and link against static libraries
+ newdependency_libs="$deplib $newdependency_libs"
+ fi
+ if test "X$duplicate_deps" = "Xyes" ; then
+ case "$tmp_libs " in
+ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+ esac
+ fi
+ tmp_libs="$tmp_libs $deplib"
+ done # for deplib
+ continue
+ fi # $linkmode = prog...
+
+ link_static=no # Whether the deplib will be linked statically
+ if test -n "$library_names" &&
+ { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
+ # Link against this shared library
+
+ if test "$linkmode,$pass" = "prog,link" ||
+ { test "$linkmode" = lib && test "$hardcode_into_libs" = yes; }; then
+ # Hardcode the library path.
+ # Skip directories that are in the system default run-time
+ # search path.
+ case " $sys_lib_dlsearch_path " in
+ *" $absdir "*) ;;
+ *)
+ case "$compile_rpath " in
+ *" $absdir "*) ;;
+ *) compile_rpath="$compile_rpath $absdir"
+ esac
+ ;;
+ esac
+ case " $sys_lib_dlsearch_path " in
+ *" $libdir "*) ;;
+ *)
+ case "$finalize_rpath " in
+ *" $libdir "*) ;;
+ *) finalize_rpath="$finalize_rpath $libdir"
+ esac
+ ;;
+ esac
+ if test "$linkmode" = prog; then
+ # We need to hardcode the library path
+ if test -n "$shlibpath_var"; then
+ # Make sure the rpath contains only unique directories.
+ case "$temp_rpath " in
+ *" $dir "*) ;;
+ *" $absdir "*) ;;
+ *) temp_rpath="$temp_rpath $dir" ;;
+ esac
+ fi
+ fi
+ fi # $linkmode,$pass = prog,link...
+
+ if test "$alldeplibs" = yes &&
+ { test "$deplibs_check_method" = pass_all ||
+ { test "$build_libtool_libs" = yes &&
+ test -n "$library_names"; }; }; then
+ # We only need to search for static libraries
+ continue
+ fi
+
+ if test "$installed" = no; then
+ notinst_deplibs="$notinst_deplibs $lib"
+ need_relink=yes
+ fi
+
+ if test -n "$old_archive_from_expsyms_cmds"; then
+ # figure out the soname
+ set dummy $library_names
+ realname="$2"
+ shift; shift
+ libname=`eval \\$echo \"$libname_spec\"`
+ # use dlname if we got it. it's perfectly good, no?
+ if test -n "$dlname"; then
+ soname="$dlname"
+ elif test -n "$soname_spec"; then
+ # bleh windows
+ case $host in
+ *cygwin*)
+ major=`expr $current - $age`
+ versuffix="-$major"
+ ;;
+ esac
+ eval soname=\"$soname_spec\"
+ else
+ soname="$realname"
+ fi
+
+ # Make a new name for the extract_expsyms_cmds to use
+ soroot="$soname"
+ soname=`echo $soroot | sed -e 's/^.*\///'`
+ newlib="libimp-`echo $soname | sed 's/^lib//;s/\.dll$//'`.a"
+
+ # If the library has no export list, then create one now
+ if test -f "$output_objdir/$soname-def"; then :
+ else
+ $show "extracting exported symbol list from \`$soname'"
+ save_ifs="$IFS"; IFS='~'
+ eval cmds=\"$extract_expsyms_cmds\"
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ fi
+
+ # Create $newlib
+ if test -f "$output_objdir/$newlib"; then :; else
+ $show "generating import library for \`$soname'"
+ save_ifs="$IFS"; IFS='~'
+ eval cmds=\"$old_archive_from_expsyms_cmds\"
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ fi
+ # make sure the library variables are pointing to the new library
+ dir=$output_objdir
+ linklib=$newlib
+ fi # test -n "$old_archive_from_expsyms_cmds"
+
+ if test "$linkmode" = prog || test "$mode" != relink; then
+ add_shlibpath=
+ add_dir=
+ add=
+ lib_linked=yes
+ case $hardcode_action in
+ immediate | unsupported)
+ if test "$hardcode_direct" = no; then
+ add="$dir/$linklib"
+ elif test "$hardcode_minus_L" = no; then
+ case $host in
+ *-*-sunos*) add_shlibpath="$dir" ;;
+ esac
+ add_dir="-L$dir"
+ add="-l$name"
+ elif test "$hardcode_shlibpath_var" = no; then
+ add_shlibpath="$dir"
+ add="-l$name"
+ else
+ lib_linked=no
+ fi
+ ;;
+ relink)
+ if test "$hardcode_direct" = yes; then
+ add="$dir/$linklib"
+ elif test "$hardcode_minus_L" = yes; then
+ add_dir="-L$dir"
+ add="-l$name"
+ elif test "$hardcode_shlibpath_var" = yes; then
+ add_shlibpath="$dir"
+ add="-l$name"
+ else
+ lib_linked=no
+ fi
+ ;;
+ *) lib_linked=no ;;
+ esac
+
+ if test "$lib_linked" != yes; then
+ $echo "$modename: configuration error: unsupported hardcode properties"
+ exit 1
+ fi
+
+ if test -n "$add_shlibpath"; then
+ case :$compile_shlibpath: in
+ *":$add_shlibpath:"*) ;;
+ *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;;
+ esac
+ fi
+ if test "$linkmode" = prog; then
+ test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs"
+ test -n "$add" && compile_deplibs="$add $compile_deplibs"
+ else
+ test -n "$add_dir" && deplibs="$add_dir $deplibs"
+ test -n "$add" && deplibs="$add $deplibs"
+ if test "$hardcode_direct" != yes && \
+ test "$hardcode_minus_L" != yes && \
+ test "$hardcode_shlibpath_var" = yes; then
+ case :$finalize_shlibpath: in
+ *":$libdir:"*) ;;
+ *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
+ esac
+ fi
+ fi
+ fi
+
+ if test "$linkmode" = prog || test "$mode" = relink; then
+ add_shlibpath=
+ add_dir=
+ add=
+ # Finalize command for both is simple: just hardcode it.
+ if test "$hardcode_direct" = yes; then
+ add="$libdir/$linklib"
+ elif test "$hardcode_minus_L" = yes; then
+ # Try looking first in the location we're being installed to.
+ add_dir=
+ if test -n "$inst_prefix_dir"; then
+ case "$libdir" in
+ [\\/]*)
+ add_dir="-L$inst_prefix_dir$libdir"
+ ;;
+ esac
+ fi
+ add_dir="$add_dir -L$libdir"
+ add="-l$name"
+ elif test "$hardcode_shlibpath_var" = yes; then
+ case :$finalize_shlibpath: in
+ *":$libdir:"*) ;;
+ *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;;
+ esac
+ add="-l$name"
+ else
+ # We cannot seem to hardcode it, guess we'll fake it.
+ # Try looking first in the location we're being installed to.
+ add_dir=
+ if test -n "$inst_prefix_dir"; then
+ case "$libdir" in
+ [\\/]*)
+ add_dir="-L$inst_prefix_dir$libdir"
+ ;;
+ esac
+ fi
+ add_dir="$add_dir -L$libdir"
+ add="-l$name"
+ fi
+
+ if test "$linkmode" = prog; then
+ test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs"
+ test -n "$add" && finalize_deplibs="$add $finalize_deplibs"
+ else
+ test -n "$add_dir" && deplibs="$add_dir $deplibs"
+ test -n "$add" && deplibs="$add $deplibs"
+ fi
+ fi
+ elif test "$linkmode" = prog; then
+ if test "$alldeplibs" = yes &&
+ { test "$deplibs_check_method" = pass_all ||
+ { test "$build_libtool_libs" = yes &&
+ test -n "$library_names"; }; }; then
+ # We only need to search for static libraries
+ continue
+ fi
+
+ # Try to link the static library
+ # Here we assume that one of hardcode_direct or hardcode_minus_L
+ # is not unsupported. This is valid on all known static and
+ # shared platforms.
+ if test "$hardcode_direct" != unsupported; then
+ test -n "$old_library" && linklib="$old_library"
+ compile_deplibs="$dir/$linklib $compile_deplibs"
+ finalize_deplibs="$dir/$linklib $finalize_deplibs"
+ else
+ compile_deplibs="-l$name -L$dir $compile_deplibs"
+ finalize_deplibs="-l$name -L$dir $finalize_deplibs"
+ fi
+ elif test "$build_libtool_libs" = yes; then
+ # Not a shared library
+ if test "$deplibs_check_method" != pass_all; then
+ # We're trying link a shared library against a static one
+ # but the system doesn't support it.
+
+ # Just print a warning and add the library to dependency_libs so
+ # that the program can be linked against the static library.
+ echo
+ echo "*** Warning: This library needs some functionality provided by $lib."
+ echo "*** I have the capability to make that library automatically link in when"
+ echo "*** you link to this library. But I can only do this if you have a"
+ echo "*** shared version of the library, which you do not appear to have."
+ if test "$module" = yes; then
+ echo "*** Therefore, libtool will create a static module, that should work "
+ echo "*** as long as the dlopening application is linked with the -dlopen flag."
+ if test -z "$global_symbol_pipe"; then
+ echo
+ echo "*** However, this would only work if libtool was able to extract symbol"
+ echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
+ echo "*** not find such a program. So, this module is probably useless."
+ echo "*** \`nm' from GNU binutils and a full rebuild may help."
+ fi
+ if test "$build_old_libs" = no; then
+ build_libtool_libs=module
+ build_old_libs=yes
+ else
+ build_libtool_libs=no
+ fi
+ fi
+ else
+ convenience="$convenience $dir/$old_library"
+ old_convenience="$old_convenience $dir/$old_library"
+ deplibs="$dir/$old_library $deplibs"
+ link_static=yes
+ fi
+ fi # link shared/static library?
+
+ if test "$linkmode" = lib; then
+ if test -n "$dependency_libs" &&
+ { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes ||
+ test "$link_static" = yes; }; then
+ # Extract -R from dependency_libs
+ temp_deplibs=
+ for libdir in $dependency_libs; do
+ case $libdir in
+ -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
+ case " $xrpath " in
+ *" $temp_xrpath "*) ;;
+ *) xrpath="$xrpath $temp_xrpath";;
+ esac;;
+ *) temp_deplibs="$temp_deplibs $libdir";;
+ esac
+ done
+ dependency_libs="$temp_deplibs"
+ fi
+
+ newlib_search_path="$newlib_search_path $absdir"
+ # Link against this library
+ test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs"
+ # ... and its dependency_libs
+ tmp_libs=
+ for deplib in $dependency_libs; do
+ newdependency_libs="$deplib $newdependency_libs"
+ if test "X$duplicate_deps" = "Xyes" ; then
+ case "$tmp_libs " in
+ *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;;
+ esac
+ fi
+ tmp_libs="$tmp_libs $deplib"
+ done
+
+ if test "$link_all_deplibs" != no; then
+ # Add the search paths of all dependency libraries
+ for deplib in $dependency_libs; do
+ case $deplib in
+ -L*) path="$deplib" ;;
+ *.la)
+ dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
+ test "X$dir" = "X$deplib" && dir="."
+ # We need an absolute path.
+ case $dir in
+ [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;;
+ *)
+ absdir=`cd "$dir" && pwd`
+ if test -z "$absdir"; then
+ $echo "$modename: warning: cannot determine absolute directory name of \`$dir'" 1>&2
+ absdir="$dir"
+ fi
+ ;;
+ esac
+ if grep "^installed=no" $deplib > /dev/null; then
+ path="-L$absdir/$objdir"
+ else
+ eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
+ if test -z "$libdir"; then
+ $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
+ exit 1
+ fi
+ if test "$absdir" != "$libdir"; then
+ $echo "$modename: warning: \`$deplib' seems to be moved" 1>&2
+ fi
+ path="-L$absdir"
+ fi
+ ;;
+ *) continue ;;
+ esac
+ case " $deplibs " in
+ *" $path "*) ;;
+ *) deplibs="$deplibs $path" ;;
+ esac
+ done
+ fi # link_all_deplibs != no
+ fi # linkmode = lib
+ done # for deplib in $libs
+ if test "$pass" = dlpreopen; then
+ # Link the dlpreopened libraries before other libraries
+ for deplib in $save_deplibs; do
+ deplibs="$deplib $deplibs"
+ done
+ fi
+ if test "$pass" != dlopen; then
+ test "$pass" != scan && dependency_libs="$newdependency_libs"
+ if test "$pass" != conv; then
+ # Make sure lib_search_path contains only unique directories.
+ lib_search_path=
+ for dir in $newlib_search_path; do
+ case "$lib_search_path " in
+ *" $dir "*) ;;
+ *) lib_search_path="$lib_search_path $dir" ;;
+ esac
+ done
+ newlib_search_path=
+ fi
+
+ if test "$linkmode,$pass" != "prog,link"; then
+ vars="deplibs"
+ else
+ vars="compile_deplibs finalize_deplibs"
+ fi
+ for var in $vars dependency_libs; do
+ # Add libraries to $var in reverse order
+ eval tmp_libs=\"\$$var\"
+ new_libs=
+ for deplib in $tmp_libs; do
+ case $deplib in
+ -L*) new_libs="$deplib $new_libs" ;;
+ *)
+ case " $specialdeplibs " in
+ *" $deplib "*) new_libs="$deplib $new_libs" ;;
+ *)
+ case " $new_libs " in
+ *" $deplib "*) ;;
+ *) new_libs="$deplib $new_libs" ;;
+ esac
+ ;;
+ esac
+ ;;
+ esac
+ done
+ tmp_libs=
+ for deplib in $new_libs; do
+ case $deplib in
+ -L*)
+ case " $tmp_libs " in
+ *" $deplib "*) ;;
+ *) tmp_libs="$tmp_libs $deplib" ;;
+ esac
+ ;;
+ *) tmp_libs="$tmp_libs $deplib" ;;
+ esac
+ done
+ eval $var=\"$tmp_libs\"
+ done # for var
+ fi
+ if test "$pass" = "conv" &&
+ { test "$linkmode" = "lib" || test "$linkmode" = "prog"; }; then
+ libs="$deplibs" # reset libs
+ deplibs=
+ fi
+ done # for pass
+ if test "$linkmode" = prog; then
+ dlfiles="$newdlfiles"
+ dlprefiles="$newdlprefiles"
+ fi
+
+ case $linkmode in
+ oldlib)
+ if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
+ $echo "$modename: warning: \`-dlopen' is ignored for archives" 1>&2
+ fi
+
+ if test -n "$rpath"; then
+ $echo "$modename: warning: \`-rpath' is ignored for archives" 1>&2
+ fi
+
+ if test -n "$xrpath"; then
+ $echo "$modename: warning: \`-R' is ignored for archives" 1>&2
+ fi
+
+ if test -n "$vinfo"; then
+ $echo "$modename: warning: \`-version-info' is ignored for archives" 1>&2
+ fi
+
+ if test -n "$release"; then
+ $echo "$modename: warning: \`-release' is ignored for archives" 1>&2
+ fi
+
+ if test -n "$export_symbols" || test -n "$export_symbols_regex"; then
+ $echo "$modename: warning: \`-export-symbols' is ignored for archives" 1>&2
+ fi
+
+ # Now set the variables for building old libraries.
+ build_libtool_libs=no
+ oldlibs="$output"
+ objs="$objs$old_deplibs"
+ ;;
+
+ lib)
+ # Make sure we only generate libraries of the form `libNAME.la'.
+ case $outputname in
+ lib*)
+ name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
+ eval libname=\"$libname_spec\"
+ ;;
+ *)
+ if test "$module" = no; then
+ $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+ if test "$need_lib_prefix" != no; then
+ # Add the "lib" prefix for modules if required
+ name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
+ eval libname=\"$libname_spec\"
+ else
+ libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
+ fi
+ ;;
+ esac
+
+ if test -n "$objs"; then
+ if test "$deplibs_check_method" != pass_all; then
+ $echo "$modename: cannot build libtool library \`$output' from non-libtool objects on this host:$objs" 2>&1
+ exit 1
+ else
+ echo
+ echo "*** Warning: Linking the shared library $output against the non-libtool"
+ echo "*** objects $objs is not portable!"
+ libobjs="$libobjs $objs"
+ fi
+ fi
+
+ if test "$dlself" != no; then
+ $echo "$modename: warning: \`-dlopen self' is ignored for libtool libraries" 1>&2
+ fi
+
+ set dummy $rpath
+ if test "$#" -gt 2; then
+ $echo "$modename: warning: ignoring multiple \`-rpath's for a libtool library" 1>&2
+ fi
+ install_libdir="$2"
+
+ oldlibs=
+ if test -z "$rpath"; then
+ if test "$build_libtool_libs" = yes; then
+ # Building a libtool convenience library.
+ libext=al
+ oldlibs="$output_objdir/$libname.$libext $oldlibs"
+ build_libtool_libs=convenience
+ build_old_libs=yes
+ fi
+
+ if test -n "$vinfo"; then
+ $echo "$modename: warning: \`-version-info' is ignored for convenience libraries" 1>&2
+ fi
+
+ if test -n "$release"; then
+ $echo "$modename: warning: \`-release' is ignored for convenience libraries" 1>&2
+ fi
+ else
+
+ # Parse the version information argument.
+ save_ifs="$IFS"; IFS=':'
+ set dummy $vinfo 0 0 0
+ IFS="$save_ifs"
+
+ if test -n "$8"; then
+ $echo "$modename: too many parameters to \`-version-info'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ current="$2"
+ revision="$3"
+ age="$4"
+
+ # Check that each of the things are valid numbers.
+ case $current in
+ [0-9]*) ;;
+ *)
+ $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 1>&2
+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+ exit 1
+ ;;
+ esac
+
+ case $revision in
+ [0-9]*) ;;
+ *)
+ $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 1>&2
+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+ exit 1
+ ;;
+ esac
+
+ case $age in
+ [0-9]*) ;;
+ *)
+ $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+ exit 1
+ ;;
+ esac
+
+ if test "$age" -gt "$current"; then
+ $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
+ $echo "$modename: \`$vinfo' is not valid version information" 1>&2
+ exit 1
+ fi
+
+ # Calculate the version variables.
+ major=
+ versuffix=
+ verstring=
+ case $version_type in
+ none) ;;
+
+ darwin)
+ # Like Linux, but with the current version available in
+ # verstring for coding it into the library header
+ major=.`expr $current - $age`
+ versuffix="$major.$age.$revision"
+ # Darwin ld doesn't like 0 for these options...
+ minor_current=`expr $current + 1`
+ verstring="-compatibility_version $minor_current -current_version $minor_current.$revision"
+ ;;
+
+ freebsd-aout)
+ major=".$current"
+ versuffix=".$current.$revision";
+ ;;
+
+ freebsd-elf)
+ major=".$current"
+ versuffix=".$current";
+ ;;
+
+ irix)
+ major=`expr $current - $age + 1`
+ verstring="sgi$major.$revision"
+
+ # Add in all the interfaces that we are compatible with.
+ loop=$revision
+ while test "$loop" -ne 0; do
+ iface=`expr $revision - $loop`
+ loop=`expr $loop - 1`
+ verstring="sgi$major.$iface:$verstring"
+ done
+
+ # Before this point, $major must not contain `.'.
+ major=.$major
+ versuffix="$major.$revision"
+ ;;
+
+ linux)
+ major=.`expr $current - $age`
+ versuffix="$major.$age.$revision"
+ ;;
+
+ osf)
+ major=`expr $current - $age`
+ versuffix=".$current.$age.$revision"
+ verstring="$current.$age.$revision"
+
+ # Add in all the interfaces that we are compatible with.
+ loop=$age
+ while test "$loop" -ne 0; do
+ iface=`expr $current - $loop`
+ loop=`expr $loop - 1`
+ verstring="$verstring:${iface}.0"
+ done
+
+ # Make executables depend on our current version.
+ verstring="$verstring:${current}.0"
+ ;;
+
+ sunos)
+ major=".$current"
+ versuffix=".$current.$revision"
+ ;;
+
+ windows)
+ # Use '-' rather than '.', since we only want one
+ # extension on DOS 8.3 filesystems.
+ major=`expr $current - $age`
+ versuffix="-$major"
+ ;;
+
+ *)
+ $echo "$modename: unknown library version type \`$version_type'" 1>&2
+ echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2
+ exit 1
+ ;;
+ esac
+
+ # Clear the version info if we defaulted, and they specified a release.
+ if test -z "$vinfo" && test -n "$release"; then
+ major=
+ verstring="0.0"
+ case $version_type in
+ darwin)
+ # we can't check for "0.0" in archive_cmds due to quoting
+ # problems, so we reset it completely
+ verstring=""
+ ;;
+ *)
+ verstring="0.0"
+ ;;
+ esac
+ if test "$need_version" = no; then
+ versuffix=
+ else
+ versuffix=".0.0"
+ fi
+ fi
+
+ # Remove version info from name if versioning should be avoided
+ if test "$avoid_version" = yes && test "$need_version" = no; then
+ major=
+ versuffix=
+ verstring=""
+ fi
+
+ # Check to see if the archive will have undefined symbols.
+ if test "$allow_undefined" = yes; then
+ if test "$allow_undefined_flag" = unsupported; then
+ $echo "$modename: warning: undefined symbols not allowed in $host shared libraries" 1>&2
+ build_libtool_libs=no
+ build_old_libs=yes
+ fi
+ else
+ # Don't allow undefined symbols.
+ allow_undefined_flag="$no_undefined_flag"
+ fi
+ fi
+
+ if test "$mode" != relink; then
+ # Remove our outputs.
+ $show "${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*"
+ $run ${rm}r $output_objdir/$outputname $output_objdir/$libname.* $output_objdir/${libname}${release}.*
+ fi
+
+ # Now set the variables for building old libraries.
+ if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then
+ oldlibs="$oldlibs $output_objdir/$libname.$libext"
+
+ # Transform .lo files to .o files.
+ oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
+ fi
+
+ # Eliminate all temporary directories.
+ for path in $notinst_path; do
+ lib_search_path=`echo "$lib_search_path " | sed -e 's% $path % %g'`
+ deplibs=`echo "$deplibs " | sed -e 's% -L$path % %g'`
+ dependency_libs=`echo "$dependency_libs " | sed -e 's% -L$path % %g'`
+ done
+
+ if test -n "$xrpath"; then
+ # If the user specified any rpath flags, then add them.
+ temp_xrpath=
+ for libdir in $xrpath; do
+ temp_xrpath="$temp_xrpath -R$libdir"
+ case "$finalize_rpath " in
+ *" $libdir "*) ;;
+ *) finalize_rpath="$finalize_rpath $libdir" ;;
+ esac
+ done
+ if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then
+ dependency_libs="$temp_xrpath $dependency_libs"
+ fi
+ fi
+
+ # Make sure dlfiles contains only unique files that won't be dlpreopened
+ old_dlfiles="$dlfiles"
+ dlfiles=
+ for lib in $old_dlfiles; do
+ case " $dlprefiles $dlfiles " in
+ *" $lib "*) ;;
+ *) dlfiles="$dlfiles $lib" ;;
+ esac
+ done
+
+ # Make sure dlprefiles contains only unique files
+ old_dlprefiles="$dlprefiles"
+ dlprefiles=
+ for lib in $old_dlprefiles; do
+ case "$dlprefiles " in
+ *" $lib "*) ;;
+ *) dlprefiles="$dlprefiles $lib" ;;
+ esac
+ done
+
+ if test "$build_libtool_libs" = yes; then
+ if test -n "$rpath"; then
+ case $host in
+ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos*)
+ # these systems don't actually have a c library (as such)!
+ ;;
+ *-*-rhapsody* | *-*-darwin1.[012])
+ # Rhapsody C library is in the System framework
+ deplibs="$deplibs -framework System"
+ ;;
+ *-*-netbsd*)
+ # Don't link with libc until the a.out ld.so is fixed.
+ ;;
+ *-*-openbsd*)
+ # Do not include libc due to us having libc/libc_r.
+ ;;
+ *)
+ # Add libc to deplibs on all other systems if necessary.
+ if test "$build_libtool_need_lc" = "yes"; then
+ deplibs="$deplibs -lc"
+ fi
+ ;;
+ esac
+ fi
+
+ # Transform deplibs into only deplibs that can be linked in shared.
+ name_save=$name
+ libname_save=$libname
+ release_save=$release
+ versuffix_save=$versuffix
+ major_save=$major
+ # I'm not sure if I'm treating the release correctly. I think
+ # release should show up in the -l (ie -lgmp5) so we don't want to
+ # add it in twice. Is that correct?
+ release=""
+ versuffix=""
+ major=""
+ newdeplibs=
+ droppeddeps=no
+ case $deplibs_check_method in
+ pass_all)
+ # Don't check for shared/static. Everything works.
+ # This might be a little naive. We might want to check
+ # whether the library exists or not. But this is on
+ # osf3 & osf4 and I'm not really sure... Just
+ # implementing what was already the behaviour.
+ newdeplibs=$deplibs
+ ;;
+ test_compile)
+ # This code stresses the "libraries are programs" paradigm to its
+ # limits. Maybe even breaks it. We compile a program, linking it
+ # against the deplibs as a proxy for the library. Then we can check
+ # whether they linked in statically or dynamically with ldd.
+ $rm conftest.c
+ cat > conftest.c </dev/null`
+ for potent_lib in $potential_libs; do
+ # Follow soft links.
+ if ls -lLd "$potent_lib" 2>/dev/null \
+ | grep " -> " >/dev/null; then
+ continue
+ fi
+ # The statement above tries to avoid entering an
+ # endless loop below, in case of cyclic links.
+ # We might still enter an endless loop, since a link
+ # loop can be closed while we follow links,
+ # but so what?
+ potlib="$potent_lib"
+ while test -h "$potlib" 2>/dev/null; do
+ potliblink=`ls -ld $potlib | sed 's/.* -> //'`
+ case $potliblink in
+ [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
+ *) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
+ esac
+ done
+ if eval $file_magic_cmd \"\$potlib\" 2>/dev/null \
+ | sed 10q \
+ | egrep "$file_magic_regex" > /dev/null; then
+ newdeplibs="$newdeplibs $a_deplib"
+ a_deplib=""
+ break 2
+ fi
+ done
+ done
+ if test -n "$a_deplib" ; then
+ droppeddeps=yes
+ echo
+ echo "*** Warning: This library needs some functionality provided by $a_deplib."
+ echo "*** I have the capability to make that library automatically link in when"
+ echo "*** you link to this library. But I can only do this if you have a"
+ echo "*** shared version of the library, which you do not appear to have."
+ fi
+ else
+ # Add a -L argument.
+ newdeplibs="$newdeplibs $a_deplib"
+ fi
+ done # Gone through all deplibs.
+ ;;
+ match_pattern*)
+ set dummy $deplibs_check_method
+ match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
+ for a_deplib in $deplibs; do
+ name="`expr $a_deplib : '-l\(.*\)'`"
+ # If $name is empty we are operating on a -L argument.
+ if test -n "$name" && test "$name" != "0"; then
+ libname=`eval \\$echo \"$libname_spec\"`
+ for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
+ potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
+ for potent_lib in $potential_libs; do
+ if eval echo \"$potent_lib\" 2>/dev/null \
+ | sed 10q \
+ | egrep "$match_pattern_regex" > /dev/null; then
+ newdeplibs="$newdeplibs $a_deplib"
+ a_deplib=""
+ break 2
+ fi
+ done
+ done
+ if test -n "$a_deplib" ; then
+ droppeddeps=yes
+ echo
+ echo "*** Warning: This library needs some functionality provided by $a_deplib."
+ echo "*** I have the capability to make that library automatically link in when"
+ echo "*** you link to this library. But I can only do this if you have a"
+ echo "*** shared version of the library, which you do not appear to have."
+ fi
+ else
+ # Add a -L argument.
+ newdeplibs="$newdeplibs $a_deplib"
+ fi
+ done # Gone through all deplibs.
+ ;;
+ none | unknown | *)
+ newdeplibs=""
+ if $echo "X $deplibs" | $Xsed -e 's/ -lc$//' \
+ -e 's/ -[LR][^ ]*//g' -e 's/[ ]//g' |
+ grep . >/dev/null; then
+ echo
+ if test "X$deplibs_check_method" = "Xnone"; then
+ echo "*** Warning: inter-library dependencies are not supported in this platform."
+ else
+ echo "*** Warning: inter-library dependencies are not known to be supported."
+ fi
+ echo "*** All declared inter-library dependencies are being dropped."
+ droppeddeps=yes
+ fi
+ ;;
+ esac
+ versuffix=$versuffix_save
+ major=$major_save
+ release=$release_save
+ libname=$libname_save
+ name=$name_save
+
+ case $host in
+ *-*-rhapsody* | *-*-darwin1.[012])
+ # On Rhapsody replace the C library is the System framework
+ newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
+ ;;
+ esac
+
+ if test "$droppeddeps" = yes; then
+ if test "$module" = yes; then
+ echo
+ echo "*** Warning: libtool could not satisfy all declared inter-library"
+ echo "*** dependencies of module $libname. Therefore, libtool will create"
+ echo "*** a static module, that should work as long as the dlopening"
+ echo "*** application is linked with the -dlopen flag."
+ if test -z "$global_symbol_pipe"; then
+ echo
+ echo "*** However, this would only work if libtool was able to extract symbol"
+ echo "*** lists from a program, using \`nm' or equivalent, but libtool could"
+ echo "*** not find such a program. So, this module is probably useless."
+ echo "*** \`nm' from GNU binutils and a full rebuild may help."
+ fi
+ if test "$build_old_libs" = no; then
+ oldlibs="$output_objdir/$libname.$libext"
+ build_libtool_libs=module
+ build_old_libs=yes
+ else
+ build_libtool_libs=no
+ fi
+ else
+ echo "*** The inter-library dependencies that have been dropped here will be"
+ echo "*** automatically added whenever a program is linked with this library"
+ echo "*** or is declared to -dlopen it."
+
+ if test "$allow_undefined" = no; then
+ echo
+ echo "*** Since this library must not contain undefined symbols,"
+ echo "*** because either the platform does not support them or"
+ echo "*** it was explicitly requested with -no-undefined,"
+ echo "*** libtool will only create a static version of it."
+ if test "$build_old_libs" = no; then
+ oldlibs="$output_objdir/$libname.$libext"
+ build_libtool_libs=module
+ build_old_libs=yes
+ else
+ build_libtool_libs=no
+ fi
+ fi
+ fi
+ fi
+ # Done checking deplibs!
+ deplibs=$newdeplibs
+ fi
+
+ # All the library-specific variables (install_libdir is set above).
+ library_names=
+ old_library=
+ dlname=
+
+ # Test again, we may have decided not to build it any more
+ if test "$build_libtool_libs" = yes; then
+ if test "$hardcode_into_libs" = yes; then
+ # Hardcode the library paths
+ hardcode_libdirs=
+ dep_rpath=
+ rpath="$finalize_rpath"
+ test "$mode" != relink && rpath="$compile_rpath$rpath"
+ for libdir in $rpath; do
+ if test -n "$hardcode_libdir_flag_spec"; then
+ if test -n "$hardcode_libdir_separator"; then
+ if test -z "$hardcode_libdirs"; then
+ hardcode_libdirs="$libdir"
+ else
+ # Just accumulate the unique libdirs.
+ case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
+ *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
+ ;;
+ *)
+ hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
+ ;;
+ esac
+ fi
+ else
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ dep_rpath="$dep_rpath $flag"
+ fi
+ elif test -n "$runpath_var"; then
+ case "$perm_rpath " in
+ *" $libdir "*) ;;
+ *) perm_rpath="$perm_rpath $libdir" ;;
+ esac
+ fi
+ done
+ # Substitute the hardcoded libdirs into the rpath.
+ if test -n "$hardcode_libdir_separator" &&
+ test -n "$hardcode_libdirs"; then
+ libdir="$hardcode_libdirs"
+ eval dep_rpath=\"$hardcode_libdir_flag_spec\"
+ fi
+ if test -n "$runpath_var" && test -n "$perm_rpath"; then
+ # We should set the runpath_var.
+ rpath=
+ for dir in $perm_rpath; do
+ rpath="$rpath$dir:"
+ done
+ eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var"
+ fi
+ test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs"
+ fi
+
+ shlibpath="$finalize_shlibpath"
+ test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath"
+ if test -n "$shlibpath"; then
+ eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var"
+ fi
+
+ # Get the real and link names of the library.
+ eval library_names=\"$library_names_spec\"
+ set dummy $library_names
+ realname="$2"
+ shift; shift
+
+ if test -n "$soname_spec"; then
+ eval soname=\"$soname_spec\"
+ else
+ soname="$realname"
+ fi
+ test -z "$dlname" && dlname=$soname
+
+ lib="$output_objdir/$realname"
+ for link
+ do
+ linknames="$linknames $link"
+ done
+
+ # Ensure that we have .o objects for linkers which dislike .lo
+ # (e.g. aix) in case we are running --disable-static
+ for obj in $libobjs; do
+ xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$xdir" = "X$obj"; then
+ xdir="."
+ else
+ xdir="$xdir"
+ fi
+ baseobj=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
+ oldobj=`$echo "X$baseobj" | $Xsed -e "$lo2o"`
+ if test ! -f $xdir/$oldobj; then
+ $show "(cd $xdir && ${LN_S} $baseobj $oldobj)"
+ $run eval '(cd $xdir && ${LN_S} $baseobj $oldobj)' || exit $?
+ fi
+ done
+
+ # Use standard objects if they are pic
+ test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+
+ # Prepare the list of exported symbols
+ if test -z "$export_symbols"; then
+ if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then
+ $show "generating symbol list for \`$libname.la'"
+ export_symbols="$output_objdir/$libname.exp"
+ $run $rm $export_symbols
+ eval cmds=\"$export_symbols_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ if test -n "$export_symbols_regex"; then
+ $show "egrep -e \"$export_symbols_regex\" \"$export_symbols\" > \"${export_symbols}T\""
+ $run eval 'egrep -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"'
+ $show "$mv \"${export_symbols}T\" \"$export_symbols\""
+ $run eval '$mv "${export_symbols}T" "$export_symbols"'
+ fi
+ fi
+ fi
+
+ if test -n "$export_symbols" && test -n "$include_expsyms"; then
+ $run eval '$echo "X$include_expsyms" | $SP2NL >> "$export_symbols"'
+ fi
+
+ if test -n "$convenience"; then
+ if test -n "$whole_archive_flag_spec"; then
+ eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
+ else
+ gentop="$output_objdir/${outputname}x"
+ $show "${rm}r $gentop"
+ $run ${rm}r "$gentop"
+ $show "mkdir $gentop"
+ $run mkdir "$gentop"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$gentop"; then
+ exit $status
+ fi
+ generated="$generated $gentop"
+
+ for xlib in $convenience; do
+ # Extract the objects.
+ case $xlib in
+ [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
+ *) xabs=`pwd`"/$xlib" ;;
+ esac
+ xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
+ xdir="$gentop/$xlib"
+
+ $show "${rm}r $xdir"
+ $run ${rm}r "$xdir"
+ $show "mkdir $xdir"
+ $run mkdir "$xdir"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$xdir"; then
+ exit $status
+ fi
+ $show "(cd $xdir && $AR x $xabs)"
+ $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
+
+ libobjs="$libobjs "`find $xdir -name \*.o -print -o -name \*.lo -print | $NL2SP`
+ done
+ fi
+ fi
+
+ if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
+ eval flag=\"$thread_safe_flag_spec\"
+ linker_flags="$linker_flags $flag"
+ fi
+
+ # Make a backup of the uninstalled library when relinking
+ if test "$mode" = relink; then
+ $run eval '(cd $output_objdir && $rm ${realname}U && $mv $realname ${realname}U)' || exit $?
+ fi
+
+ # Do each of the archive commands.
+ if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
+ eval cmds=\"$archive_expsym_cmds\"
+ else
+ eval cmds=\"$archive_cmds\"
+ fi
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+
+ # Restore the uninstalled library and exit
+ if test "$mode" = relink; then
+ $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname ${realname}T && $mv "$realname"U $realname)' || exit $?
+ exit 0
+ fi
+
+ # Create links to the real library.
+ for linkname in $linknames; do
+ if test "$realname" != "$linkname"; then
+ $show "(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)"
+ $run eval '(cd $output_objdir && $rm $linkname && $LN_S $realname $linkname)' || exit $?
+ fi
+ done
+
+ # If -module or -export-dynamic was specified, set the dlname.
+ if test "$module" = yes || test "$export_dynamic" = yes; then
+ # On all known operating systems, these are identical.
+ dlname="$soname"
+ fi
+ fi
+ ;;
+
+ obj)
+ if test -n "$deplibs"; then
+ $echo "$modename: warning: \`-l' and \`-L' are ignored for objects" 1>&2
+ fi
+
+ if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
+ $echo "$modename: warning: \`-dlopen' is ignored for objects" 1>&2
+ fi
+
+ if test -n "$rpath"; then
+ $echo "$modename: warning: \`-rpath' is ignored for objects" 1>&2
+ fi
+
+ if test -n "$xrpath"; then
+ $echo "$modename: warning: \`-R' is ignored for objects" 1>&2
+ fi
+
+ if test -n "$vinfo"; then
+ $echo "$modename: warning: \`-version-info' is ignored for objects" 1>&2
+ fi
+
+ if test -n "$release"; then
+ $echo "$modename: warning: \`-release' is ignored for objects" 1>&2
+ fi
+
+ case $output in
+ *.lo)
+ if test -n "$objs$old_deplibs"; then
+ $echo "$modename: cannot build library object \`$output' from non-libtool objects" 1>&2
+ exit 1
+ fi
+ libobj="$output"
+ obj=`$echo "X$output" | $Xsed -e "$lo2o"`
+ ;;
+ *)
+ libobj=
+ obj="$output"
+ ;;
+ esac
+
+ # Delete the old objects.
+ $run $rm $obj $libobj
+
+ # Objects from convenience libraries. This assumes
+ # single-version convenience libraries. Whenever we create
+ # different ones for PIC/non-PIC, this we'll have to duplicate
+ # the extraction.
+ reload_conv_objs=
+ gentop=
+ # reload_cmds runs $LD directly, so let us get rid of
+ # -Wl from whole_archive_flag_spec
+ wl=
+
+ if test -n "$convenience"; then
+ if test -n "$whole_archive_flag_spec"; then
+ eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\"
+ else
+ gentop="$output_objdir/${obj}x"
+ $show "${rm}r $gentop"
+ $run ${rm}r "$gentop"
+ $show "mkdir $gentop"
+ $run mkdir "$gentop"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$gentop"; then
+ exit $status
+ fi
+ generated="$generated $gentop"
+
+ for xlib in $convenience; do
+ # Extract the objects.
+ case $xlib in
+ [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
+ *) xabs=`pwd`"/$xlib" ;;
+ esac
+ xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
+ xdir="$gentop/$xlib"
+
+ $show "${rm}r $xdir"
+ $run ${rm}r "$xdir"
+ $show "mkdir $xdir"
+ $run mkdir "$xdir"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$xdir"; then
+ exit $status
+ fi
+ $show "(cd $xdir && $AR x $xabs)"
+ $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
+
+ reload_conv_objs="$reload_objs "`find $xdir -name \*.o -print -o -name \*.lo -print | $NL2SP`
+ done
+ fi
+ fi
+
+ # Create the old-style object.
+ reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
+
+ output="$obj"
+ eval cmds=\"$reload_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+
+ # Exit if we aren't doing a library object file.
+ if test -z "$libobj"; then
+ if test -n "$gentop"; then
+ $show "${rm}r $gentop"
+ $run ${rm}r $gentop
+ fi
+
+ exit 0
+ fi
+
+ if test "$build_libtool_libs" != yes; then
+ if test -n "$gentop"; then
+ $show "${rm}r $gentop"
+ $run ${rm}r $gentop
+ fi
+
+ # Create an invalid libtool object if no PIC, so that we don't
+ # accidentally link it into a program.
+ $show "echo timestamp > $libobj"
+ $run eval "echo timestamp > $libobj" || exit $?
+ exit 0
+ fi
+
+ if test -n "$pic_flag" || test "$pic_mode" != default; then
+ # Only do commands if we really have different PIC objects.
+ reload_objs="$libobjs $reload_conv_objs"
+ output="$libobj"
+ eval cmds=\"$reload_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ else
+ # Just create a symlink.
+ $show $rm $libobj
+ $run $rm $libobj
+ xdir=`$echo "X$libobj" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$xdir" = "X$libobj"; then
+ xdir="."
+ else
+ xdir="$xdir"
+ fi
+ baseobj=`$echo "X$libobj" | $Xsed -e 's%^.*/%%'`
+ oldobj=`$echo "X$baseobj" | $Xsed -e "$lo2o"`
+ $show "(cd $xdir && $LN_S $oldobj $baseobj)"
+ $run eval '(cd $xdir && $LN_S $oldobj $baseobj)' || exit $?
+ fi
+
+ if test -n "$gentop"; then
+ $show "${rm}r $gentop"
+ $run ${rm}r $gentop
+ fi
+
+ exit 0
+ ;;
+
+ prog)
+ case $host in
+ *cygwin*) output=`echo $output | sed -e 's,.exe$,,;s,$,.exe,'` ;;
+ esac
+ if test -n "$vinfo"; then
+ $echo "$modename: warning: \`-version-info' is ignored for programs" 1>&2
+ fi
+
+ if test -n "$release"; then
+ $echo "$modename: warning: \`-release' is ignored for programs" 1>&2
+ fi
+
+ if test "$preload" = yes; then
+ if test "$dlopen_support" = unknown && test "$dlopen_self" = unknown &&
+ test "$dlopen_self_static" = unknown; then
+ $echo "$modename: warning: \`AC_LIBTOOL_DLOPEN' not used. Assuming no dlopen support."
+ fi
+ fi
+
+ case $host in
+ *-*-rhapsody* | *-*-darwin1.[012])
+ # On Rhapsody replace the C library is the System framework
+ compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
+ finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
+ ;;
+ esac
+
+ compile_command="$compile_command $compile_deplibs"
+ finalize_command="$finalize_command $finalize_deplibs"
+
+ if test -n "$rpath$xrpath"; then
+ # If the user specified any rpath flags, then add them.
+ for libdir in $rpath $xrpath; do
+ # This is the magic to use -rpath.
+ case "$finalize_rpath " in
+ *" $libdir "*) ;;
+ *) finalize_rpath="$finalize_rpath $libdir" ;;
+ esac
+ done
+ fi
+
+ # Now hardcode the library paths
+ rpath=
+ hardcode_libdirs=
+ for libdir in $compile_rpath $finalize_rpath; do
+ if test -n "$hardcode_libdir_flag_spec"; then
+ if test -n "$hardcode_libdir_separator"; then
+ if test -z "$hardcode_libdirs"; then
+ hardcode_libdirs="$libdir"
+ else
+ # Just accumulate the unique libdirs.
+ case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
+ *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
+ ;;
+ *)
+ hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
+ ;;
+ esac
+ fi
+ else
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ rpath="$rpath $flag"
+ fi
+ elif test -n "$runpath_var"; then
+ case "$perm_rpath " in
+ *" $libdir "*) ;;
+ *) perm_rpath="$perm_rpath $libdir" ;;
+ esac
+ fi
+ case $host in
+ *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+ case :$dllsearchpath: in
+ *":$libdir:"*) ;;
+ *) dllsearchpath="$dllsearchpath:$libdir";;
+ esac
+ ;;
+ esac
+ done
+ # Substitute the hardcoded libdirs into the rpath.
+ if test -n "$hardcode_libdir_separator" &&
+ test -n "$hardcode_libdirs"; then
+ libdir="$hardcode_libdirs"
+ eval rpath=\" $hardcode_libdir_flag_spec\"
+ fi
+ compile_rpath="$rpath"
+
+ rpath=
+ hardcode_libdirs=
+ for libdir in $finalize_rpath; do
+ if test -n "$hardcode_libdir_flag_spec"; then
+ if test -n "$hardcode_libdir_separator"; then
+ if test -z "$hardcode_libdirs"; then
+ hardcode_libdirs="$libdir"
+ else
+ # Just accumulate the unique libdirs.
+ case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in
+ *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*)
+ ;;
+ *)
+ hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir"
+ ;;
+ esac
+ fi
+ else
+ eval flag=\"$hardcode_libdir_flag_spec\"
+ rpath="$rpath $flag"
+ fi
+ elif test -n "$runpath_var"; then
+ case "$finalize_perm_rpath " in
+ *" $libdir "*) ;;
+ *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;;
+ esac
+ fi
+ done
+ # Substitute the hardcoded libdirs into the rpath.
+ if test -n "$hardcode_libdir_separator" &&
+ test -n "$hardcode_libdirs"; then
+ libdir="$hardcode_libdirs"
+ eval rpath=\" $hardcode_libdir_flag_spec\"
+ fi
+ finalize_rpath="$rpath"
+
+ if test -n "$libobjs" && test "$build_old_libs" = yes; then
+ # Transform all the library objects into standard objects.
+ compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+ finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+ fi
+
+ dlsyms=
+ if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then
+ if test -n "$NM" && test -n "$global_symbol_pipe"; then
+ dlsyms="${outputname}S.c"
+ else
+ $echo "$modename: not configured to extract global symbols from dlpreopened files" 1>&2
+ fi
+ fi
+
+ if test -n "$dlsyms"; then
+ case $dlsyms in
+ "") ;;
+ *.c)
+ # Discover the nlist of each of the dlfiles.
+ nlist="$output_objdir/${outputname}.nm"
+
+ $show "$rm $nlist ${nlist}S ${nlist}T"
+ $run $rm "$nlist" "${nlist}S" "${nlist}T"
+
+ # Parse the name list into a source file.
+ $show "creating $output_objdir/$dlsyms"
+
+ test -z "$run" && $echo > "$output_objdir/$dlsyms" "\
+/* $dlsyms - symbol resolution table for \`$outputname' dlsym emulation. */
+/* Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP */
+
+#ifdef __cplusplus
+extern \"C\" {
+#endif
+
+/* Prevent the only kind of declaration conflicts we can make. */
+#define lt_preloaded_symbols some_other_symbol
+
+/* External symbol declarations for the compiler. */\
+"
+
+ if test "$dlself" = yes; then
+ $show "generating symbol list for \`$output'"
+
+ test -z "$run" && $echo ': @PROGRAM@ ' > "$nlist"
+
+ # Add our own program objects to the symbol list.
+ progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
+ for arg in $progfiles; do
+ $show "extracting global C symbols from \`$arg'"
+ $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
+ done
+
+ if test -n "$exclude_expsyms"; then
+ $run eval 'egrep -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T'
+ $run eval '$mv "$nlist"T "$nlist"'
+ fi
+
+ if test -n "$export_symbols_regex"; then
+ $run eval 'egrep -e "$export_symbols_regex" "$nlist" > "$nlist"T'
+ $run eval '$mv "$nlist"T "$nlist"'
+ fi
+
+ # Prepare the list of exported symbols
+ if test -z "$export_symbols"; then
+ export_symbols="$output_objdir/$output.exp"
+ $run $rm $export_symbols
+ $run eval "sed -n -e '/^: @PROGRAM@$/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
+ else
+ $run eval "sed -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"'
+ $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > "$nlist"T'
+ $run eval 'mv "$nlist"T "$nlist"'
+ fi
+ fi
+
+ for arg in $dlprefiles; do
+ $show "extracting global C symbols from \`$arg'"
+ name=`echo "$arg" | sed -e 's%^.*/%%'`
+ $run eval 'echo ": $name " >> "$nlist"'
+ $run eval "$NM $arg | $global_symbol_pipe >> '$nlist'"
+ done
+
+ if test -z "$run"; then
+ # Make sure we have at least an empty file.
+ test -f "$nlist" || : > "$nlist"
+
+ if test -n "$exclude_expsyms"; then
+ egrep -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T
+ $mv "$nlist"T "$nlist"
+ fi
+
+ # Try sorting and uniquifying the output.
+ if grep -v "^: " < "$nlist" | sort +2 | uniq > "$nlist"S; then
+ :
+ else
+ grep -v "^: " < "$nlist" > "$nlist"S
+ fi
+
+ if test -f "$nlist"S; then
+ eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$dlsyms"'
+ else
+ echo '/* NONE */' >> "$output_objdir/$dlsyms"
+ fi
+
+ $echo >> "$output_objdir/$dlsyms" "\
+
+#undef lt_preloaded_symbols
+
+#if defined (__STDC__) && __STDC__
+# define lt_ptr void *
+#else
+# define lt_ptr char *
+# define const
+#endif
+
+/* The mapping between symbol names and symbols. */
+const struct {
+ const char *name;
+ lt_ptr address;
+}
+lt_preloaded_symbols[] =
+{\
+"
+
+ eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$dlsyms"
+
+ $echo >> "$output_objdir/$dlsyms" "\
+ {0, (lt_ptr) 0}
+};
+
+/* This works around a problem in FreeBSD linker */
+#ifdef FREEBSD_WORKAROUND
+static const void *lt_preloaded_setup() {
+ return lt_preloaded_symbols;
+}
+#endif
+
+#ifdef __cplusplus
+}
+#endif\
+"
+ fi
+
+ pic_flag_for_symtable=
+ case $host in
+ # compiling the symbol table file with pic_flag works around
+ # a FreeBSD bug that causes programs to crash when -lm is
+ # linked before any other PIC object. But we must not use
+ # pic_flag when linking with -static. The problem exists in
+ # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
+ *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
+ case "$compile_command " in
+ *" -static "*) ;;
+ *) pic_flag_for_symtable=" $pic_flag -DPIC -DFREEBSD_WORKAROUND";;
+ esac;;
+ *-*-hpux*)
+ case "$compile_command " in
+ *" -static "*) ;;
+ *) pic_flag_for_symtable=" $pic_flag -DPIC";;
+ esac
+ esac
+
+ # Now compile the dynamic symbol file.
+ $show "(cd $output_objdir && $CC -c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
+ $run eval '(cd $output_objdir && $CC -c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
+
+ # Clean up the generated files.
+ $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
+ $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
+
+ # Transform the symbol file into the correct name.
+ compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
+ finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
+ ;;
+ *)
+ $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
+ exit 1
+ ;;
+ esac
+ else
+ # We keep going just in case the user didn't refer to
+ # lt_preloaded_symbols. The linker will fail if global_symbol_pipe
+ # really was required.
+
+ # Nullify the symbol file.
+ compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
+ finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
+ fi
+
+ if test "$need_relink" = no || test "$build_libtool_libs" != yes; then
+ # Replace the output file specification.
+ compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
+ link_command="$compile_command$compile_rpath"
+
+ # We have no uninstalled library dependencies, so finalize right now.
+ $show "$link_command"
+ $run eval "$link_command"
+ status=$?
+
+ # Delete the generated files.
+ if test -n "$dlsyms"; then
+ $show "$rm $output_objdir/${outputname}S.${objext}"
+ $run $rm "$output_objdir/${outputname}S.${objext}"
+ fi
+
+ exit $status
+ fi
+
+ if test -n "$shlibpath_var"; then
+ # We should set the shlibpath_var
+ rpath=
+ for dir in $temp_rpath; do
+ case $dir in
+ [\\/]* | [A-Za-z]:[\\/]*)
+ # Absolute path.
+ rpath="$rpath$dir:"
+ ;;
+ *)
+ # Relative path: add a thisdir entry.
+ rpath="$rpath\$thisdir/$dir:"
+ ;;
+ esac
+ done
+ temp_rpath="$rpath"
+ fi
+
+ if test -n "$compile_shlibpath$finalize_shlibpath"; then
+ compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command"
+ fi
+ if test -n "$finalize_shlibpath"; then
+ finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command"
+ fi
+
+ compile_var=
+ finalize_var=
+ if test -n "$runpath_var"; then
+ if test -n "$perm_rpath"; then
+ # We should set the runpath_var.
+ rpath=
+ for dir in $perm_rpath; do
+ rpath="$rpath$dir:"
+ done
+ compile_var="$runpath_var=\"$rpath\$$runpath_var\" "
+ fi
+ if test -n "$finalize_perm_rpath"; then
+ # We should set the runpath_var.
+ rpath=
+ for dir in $finalize_perm_rpath; do
+ rpath="$rpath$dir:"
+ done
+ finalize_var="$runpath_var=\"$rpath\$$runpath_var\" "
+ fi
+ fi
+
+ if test "$no_install" = yes; then
+ # We don't need to create a wrapper script.
+ link_command="$compile_var$compile_command$compile_rpath"
+ # Replace the output file specification.
+ link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
+ # Delete the old output file.
+ $run $rm $output
+ # Link the executable and exit
+ $show "$link_command"
+ $run eval "$link_command" || exit $?
+ exit 0
+ fi
+
+ if test "$hardcode_action" = relink; then
+ # Fast installation is not supported
+ link_command="$compile_var$compile_command$compile_rpath"
+ relink_command="$finalize_var$finalize_command$finalize_rpath"
+
+ $echo "$modename: warning: this platform does not like uninstalled shared libraries" 1>&2
+ $echo "$modename: \`$output' will be relinked during installation" 1>&2
+ else
+ if test "$fast_install" != no; then
+ link_command="$finalize_var$compile_command$finalize_rpath"
+ if test "$fast_install" = yes; then
+ relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
+ else
+ # fast_install is set to needless
+ relink_command=
+ fi
+ else
+ link_command="$compile_var$compile_command$compile_rpath"
+ relink_command="$finalize_var$finalize_command$finalize_rpath"
+ fi
+ fi
+
+ # Replace the output file specification.
+ link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
+
+ # Delete the old output files.
+ $run $rm $output $output_objdir/$outputname $output_objdir/lt-$outputname
+
+ $show "$link_command"
+ $run eval "$link_command" || exit $?
+
+ # Now create the wrapper script.
+ $show "creating $output"
+
+ # Quote the relink command for shipping.
+ if test -n "$relink_command"; then
+ # Preserve any variables that may affect compiler behavior
+ for var in $variables_saved_for_relink; do
+ if eval test -z \"\${$var+set}\"; then
+ relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
+ elif eval var_value=\$$var; test -z "$var_value"; then
+ relink_command="$var=; export $var; $relink_command"
+ else
+ var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
+ relink_command="$var=\"$var_value\"; export $var; $relink_command"
+ fi
+ done
+ relink_command="(cd `pwd`; $relink_command)"
+ relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
+ fi
+
+ # Quote $echo for shipping.
+ if test "X$echo" = "X$SHELL $0 --fallback-echo"; then
+ case $0 in
+ [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $0 --fallback-echo";;
+ *) qecho="$SHELL `pwd`/$0 --fallback-echo";;
+ esac
+ qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
+ else
+ qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
+ fi
+
+ # Only actually do things if our run command is non-null.
+ if test -z "$run"; then
+ # win32 will think the script is a binary if it has
+ # a .exe suffix, so we strip it off here.
+ case $output in
+ *.exe) output=`echo $output|sed 's,.exe$,,'` ;;
+ esac
+ # test for cygwin because mv fails w/o .exe extensions
+ case $host in
+ *cygwin*) exeext=.exe ;;
+ *) exeext= ;;
+ esac
+ $rm $output
+ trap "$rm $output; exit 1" 1 2 15
+
+ $echo > $output "\
+#! $SHELL
+
+# $output - temporary wrapper script for $objdir/$outputname
+# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
+#
+# The $output program cannot be directly executed until all the libtool
+# libraries that it depends on are installed.
+#
+# This wrapper script should never be moved out of the build directory.
+# If it is, it will not operate correctly.
+
+# 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='$sed_quote_subst'
+
+# The HP-UX ksh and POSIX shell print the target directory to stdout
+# if CDPATH is set.
+if test \"\${CDPATH+set}\" = set; then CDPATH=:; export CDPATH; fi
+
+relink_command=\"$relink_command\"
+
+# This environment variable determines our operation mode.
+if test \"\$libtool_install_magic\" = \"$magic\"; then
+ # install mode needs the following variable:
+ notinst_deplibs='$notinst_deplibs'
+else
+ # When we are sourced in execute mode, \$file and \$echo are already set.
+ if test \"\$libtool_execute_magic\" != \"$magic\"; then
+ echo=\"$qecho\"
+ file=\"\$0\"
+ # Make sure echo works.
+ if test \"X\$1\" = X--no-reexec; then
+ # Discard the --no-reexec flag, and continue.
+ shift
+ elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
+ # Yippee, \$echo works!
+ :
+ else
+ # Restart under the correct shell, and then maybe \$echo will work.
+ exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"}
+ fi
+ fi\
+"
+ $echo >> $output "\
+
+ # Find the directory that this script lives in.
+ thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
+ test \"x\$thisdir\" = \"x\$file\" && thisdir=.
+
+ # Follow symbolic links until we get to the real thisdir.
+ file=\`ls -ld \"\$file\" | sed -n 's/.*-> //p'\`
+ while test -n \"\$file\"; do
+ destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
+
+ # If there was a directory component, then change thisdir.
+ if test \"x\$destdir\" != \"x\$file\"; then
+ case \"\$destdir\" in
+ [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;;
+ *) thisdir=\"\$thisdir/\$destdir\" ;;
+ esac
+ fi
+
+ file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
+ file=\`ls -ld \"\$thisdir/\$file\" | sed -n 's/.*-> //p'\`
+ done
+
+ # Try to get the absolute directory name.
+ absdir=\`cd \"\$thisdir\" && pwd\`
+ test -n \"\$absdir\" && thisdir=\"\$absdir\"
+"
+
+ if test "$fast_install" = yes; then
+ echo >> $output "\
+ program=lt-'$outputname'$exeext
+ progdir=\"\$thisdir/$objdir\"
+
+ if test ! -f \"\$progdir/\$program\" || \\
+ { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | sed 1q\`; \\
+ test \"X\$file\" != \"X\$progdir/\$program\"; }; then
+
+ file=\"\$\$-\$program\"
+
+ if test ! -d \"\$progdir\"; then
+ $mkdir \"\$progdir\"
+ else
+ $rm \"\$progdir/\$file\"
+ fi"
+
+ echo >> $output "\
+
+ # relink executable if necessary
+ if test -n \"\$relink_command\"; then
+ if relink_command_output=\`eval \$relink_command 2>&1\`; then :
+ else
+ $echo \"\$relink_command_output\" >&2
+ $rm \"\$progdir/\$file\"
+ exit 1
+ fi
+ fi
+
+ $mv \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null ||
+ { $rm \"\$progdir/\$program\";
+ $mv \"\$progdir/\$file\" \"\$progdir/\$program\"; }
+ $rm \"\$progdir/\$file\"
+ fi"
+ else
+ echo >> $output "\
+ program='$outputname'
+ progdir=\"\$thisdir/$objdir\"
+"
+ fi
+
+ echo >> $output "\
+
+ if test -f \"\$progdir/\$program\"; then"
+
+ # Export our shlibpath_var if we have one.
+ if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then
+ $echo >> $output "\
+ # Add our own library path to $shlibpath_var
+ $shlibpath_var=\"$temp_rpath\$$shlibpath_var\"
+
+ # Some systems cannot cope with colon-terminated $shlibpath_var
+ # The second colon is a workaround for a bug in BeOS R4 sed
+ $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
+
+ export $shlibpath_var
+"
+ fi
+
+ # fixup the dll searchpath if we need to.
+ if test -n "$dllsearchpath"; then
+ $echo >> $output "\
+ # Add the dll search path components to the executable PATH
+ PATH=$dllsearchpath:\$PATH
+"
+ fi
+
+ $echo >> $output "\
+ if test \"\$libtool_execute_magic\" != \"$magic\"; then
+ # Run the actual program with our arguments.
+"
+ case $host in
+ # win32 systems need to use the prog path for dll
+ # lookup to work
+ *-*-cygwin* | *-*-pw32*)
+ $echo >> $output "\
+ exec \$progdir/\$program \${1+\"\$@\"}
+"
+ ;;
+
+ # Backslashes separate directories on plain windows
+ *-*-mingw | *-*-os2*)
+ $echo >> $output "\
+ exec \$progdir\\\\\$program \${1+\"\$@\"}
+"
+ ;;
+
+ *)
+ $echo >> $output "\
+ # Export the path to the program.
+ PATH=\"\$progdir:\$PATH\"
+ export PATH
+
+ exec \$program \${1+\"\$@\"}
+"
+ ;;
+ esac
+ $echo >> $output "\
+ \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\"
+ exit 1
+ fi
+ else
+ # The program doesn't exist.
+ \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
+ \$echo \"This script is just a wrapper for \$program.\" 1>&2
+ echo \"See the $PACKAGE documentation for more information.\" 1>&2
+ exit 1
+ fi
+fi\
+"
+ chmod +x $output
+ fi
+ exit 0
+ ;;
+ esac
+
+ # See if we need to build an old-fashioned archive.
+ for oldlib in $oldlibs; do
+
+ if test "$build_libtool_libs" = convenience; then
+ oldobjs="$libobjs_save"
+ addlibs="$convenience"
+ build_libtool_libs=no
+ else
+ if test "$build_libtool_libs" = module; then
+ oldobjs="$libobjs_save"
+ build_libtool_libs=no
+ else
+ oldobjs="$objs$old_deplibs "`$echo "X$libobjs_save" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`
+ fi
+ addlibs="$old_convenience"
+ fi
+
+ if test -n "$addlibs"; then
+ gentop="$output_objdir/${outputname}x"
+ $show "${rm}r $gentop"
+ $run ${rm}r "$gentop"
+ $show "mkdir $gentop"
+ $run mkdir "$gentop"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$gentop"; then
+ exit $status
+ fi
+ generated="$generated $gentop"
+
+ # Add in members from convenience archives.
+ for xlib in $addlibs; do
+ # Extract the objects.
+ case $xlib in
+ [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
+ *) xabs=`pwd`"/$xlib" ;;
+ esac
+ xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
+ xdir="$gentop/$xlib"
+
+ $show "${rm}r $xdir"
+ $run ${rm}r "$xdir"
+ $show "mkdir $xdir"
+ $run mkdir "$xdir"
+ status=$?
+ if test "$status" -ne 0 && test ! -d "$xdir"; then
+ exit $status
+ fi
+ $show "(cd $xdir && $AR x $xabs)"
+ $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
+
+ oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print -o -name \*.lo -print | $NL2SP`
+ done
+ fi
+
+ # Do each command in the archive commands.
+ if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then
+ eval cmds=\"$old_archive_from_new_cmds\"
+ else
+ # Ensure that we have .o objects in place in case we decided
+ # not to build a shared library, and have fallen back to building
+ # static libs even though --disable-static was passed!
+ for oldobj in $oldobjs; do
+ if test ! -f $oldobj; then
+ xdir=`$echo "X$oldobj" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$xdir" = "X$oldobj"; then
+ xdir="."
+ else
+ xdir="$xdir"
+ fi
+ baseobj=`$echo "X$oldobj" | $Xsed -e 's%^.*/%%'`
+ obj=`$echo "X$baseobj" | $Xsed -e "$o2lo"`
+ $show "(cd $xdir && ${LN_S} $obj $baseobj)"
+ $run eval '(cd $xdir && ${LN_S} $obj $baseobj)' || exit $?
+ fi
+ done
+
+ eval cmds=\"$old_archive_cmds\"
+ fi
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ done
+
+ if test -n "$generated"; then
+ $show "${rm}r$generated"
+ $run ${rm}r$generated
+ fi
+
+ # Now create the libtool archive.
+ case $output in
+ *.la)
+ old_library=
+ test "$build_old_libs" = yes && old_library="$libname.$libext"
+ $show "creating $output"
+
+ # Preserve any variables that may affect compiler behavior
+ for var in $variables_saved_for_relink; do
+ if eval test -z \"\${$var+set}\"; then
+ relink_command="{ test -z \"\${$var+set}\" || unset $var || { $var=; export $var; }; }; $relink_command"
+ elif eval var_value=\$$var; test -z "$var_value"; then
+ relink_command="$var=; export $var; $relink_command"
+ else
+ var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
+ relink_command="$var=\"$var_value\"; export $var; $relink_command"
+ fi
+ done
+ # Quote the link command for shipping.
+ relink_command="(cd `pwd`; $SHELL $0 --mode=relink $libtool_args @inst_prefix_dir@)"
+ relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
+
+ # Only create the output if not a dry run.
+ if test -z "$run"; then
+ for installed in no yes; do
+ if test "$installed" = yes; then
+ if test -z "$install_libdir"; then
+ break
+ fi
+ output="$output_objdir/$outputname"i
+ # Replace all uninstalled libtool libraries with the installed ones
+ newdependency_libs=
+ for deplib in $dependency_libs; do
+ case $deplib in
+ *.la)
+ name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
+ eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
+ if test -z "$libdir"; then
+ $echo "$modename: \`$deplib' is not a valid libtool archive" 1>&2
+ exit 1
+ fi
+ newdependency_libs="$newdependency_libs $libdir/$name"
+ ;;
+ *) newdependency_libs="$newdependency_libs $deplib" ;;
+ esac
+ done
+ dependency_libs="$newdependency_libs"
+ newdlfiles=
+ for lib in $dlfiles; do
+ name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
+ eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
+ if test -z "$libdir"; then
+ $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+ exit 1
+ fi
+ newdlfiles="$newdlfiles $libdir/$name"
+ done
+ dlfiles="$newdlfiles"
+ newdlprefiles=
+ for lib in $dlprefiles; do
+ name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
+ eval libdir=`sed -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
+ if test -z "$libdir"; then
+ $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+ exit 1
+ fi
+ newdlprefiles="$newdlprefiles $libdir/$name"
+ done
+ dlprefiles="$newdlprefiles"
+ fi
+ $rm $output
+ # place dlname in correct position for cygwin
+ tdlname=$dlname
+ case $host,$output,$installed,$module,$dlname in
+ *cygwin*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;;
+ esac
+ $echo > $output "\
+# $outputname - a libtool library file
+# Generated by $PROGRAM - GNU $PACKAGE $VERSION$TIMESTAMP
+#
+# Please DO NOT delete this file!
+# It is necessary for linking the library.
+
+# The name that we can dlopen(3).
+dlname='$tdlname'
+
+# Names of this library.
+library_names='$library_names'
+
+# The name of the static archive.
+old_library='$old_library'
+
+# Libraries that this one depends upon.
+dependency_libs='$dependency_libs'
+
+# Version information for $libname.
+current=$current
+age=$age
+revision=$revision
+
+# Is this an already installed library?
+installed=$installed
+
+# Files to dlopen/dlpreopen
+dlopen='$dlfiles'
+dlpreopen='$dlprefiles'
+
+# Directory that this library needs to be installed in:
+libdir='$install_libdir'"
+ if test "$installed" = no && test "$need_relink" = yes; then
+ $echo >> $output "\
+relink_command=\"$relink_command\""
+ fi
+ done
+ fi
+
+ # Do a symbolic link so that the libtool archive can be found in
+ # LD_LIBRARY_PATH before the program is installed.
+ $show "(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)"
+ $run eval '(cd $output_objdir && $rm $outputname && $LN_S ../$outputname $outputname)' || exit $?
+ ;;
+ esac
+ exit 0
+ ;;
+
+ # libtool install mode
+ install)
+ modename="$modename: install"
+
+ # There may be an optional sh(1) argument at the beginning of
+ # install_prog (especially on Windows NT).
+ if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
+ # Allow the use of GNU shtool's install command.
+ $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then
+ # Aesthetically quote it.
+ arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
+ arg="\"$arg\""
+ ;;
+ esac
+ install_prog="$arg "
+ arg="$1"
+ shift
+ else
+ install_prog=
+ arg="$nonopt"
+ fi
+
+ # The real first argument should be the name of the installation program.
+ # Aesthetically quote it.
+ arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
+ arg="\"$arg\""
+ ;;
+ esac
+ install_prog="$install_prog$arg"
+
+ # We need to accept at least all the BSD install flags.
+ dest=
+ files=
+ opts=
+ prev=
+ install_type=
+ isdir=no
+ stripme=
+ for arg
+ do
+ if test -n "$dest"; then
+ files="$files $dest"
+ dest="$arg"
+ continue
+ fi
+
+ case $arg in
+ -d) isdir=yes ;;
+ -f) prev="-f" ;;
+ -g) prev="-g" ;;
+ -m) prev="-m" ;;
+ -o) prev="-o" ;;
+ -s)
+ stripme=" -s"
+ continue
+ ;;
+ -*) ;;
+
+ *)
+ # If the previous option needed an argument, then skip it.
+ if test -n "$prev"; then
+ prev=
+ else
+ dest="$arg"
+ continue
+ fi
+ ;;
+ esac
+
+ # Aesthetically quote the argument.
+ arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
+ case $arg in
+ *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*)
+ arg="\"$arg\""
+ ;;
+ esac
+ install_prog="$install_prog $arg"
+ done
+
+ if test -z "$install_prog"; then
+ $echo "$modename: you must specify an install program" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ if test -n "$prev"; then
+ $echo "$modename: the \`$prev' option requires an argument" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ if test -z "$files"; then
+ if test -z "$dest"; then
+ $echo "$modename: no file or destination specified" 1>&2
+ else
+ $echo "$modename: you must specify a destination" 1>&2
+ fi
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ # Strip any trailing slash from the destination.
+ dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
+
+ # Check to see that the destination is a directory.
+ test -d "$dest" && isdir=yes
+ if test "$isdir" = yes; then
+ destdir="$dest"
+ destname=
+ else
+ destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
+ test "X$destdir" = "X$dest" && destdir=.
+ destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
+
+ # Not a directory, so check to see that there is only one file specified.
+ set dummy $files
+ if test "$#" -gt 2; then
+ $echo "$modename: \`$dest' is not a directory" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+ fi
+ case $destdir in
+ [\\/]* | [A-Za-z]:[\\/]*) ;;
+ *)
+ for file in $files; do
+ case $file in
+ *.lo) ;;
+ *)
+ $echo "$modename: \`$destdir' must be an absolute directory name" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ ;;
+ esac
+ done
+ ;;
+ esac
+
+ # This variable tells wrapper scripts just to set variables rather
+ # than running their programs.
+ libtool_install_magic="$magic"
+
+ staticlibs=
+ future_libdirs=
+ current_libdirs=
+ for file in $files; do
+
+ # Do each installation.
+ case $file in
+ *.$libext)
+ # Do the static libraries later.
+ staticlibs="$staticlibs $file"
+ ;;
+
+ *.la)
+ # Check to see that this really is a libtool archive.
+ if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
+ else
+ $echo "$modename: \`$file' is not a valid libtool archive" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ library_names=
+ old_library=
+ relink_command=
+ # If there is no directory component, then add one.
+ case $file in
+ */* | *\\*) . $file ;;
+ *) . ./$file ;;
+ esac
+
+ # Add the libdir to current_libdirs if it is the destination.
+ if test "X$destdir" = "X$libdir"; then
+ case "$current_libdirs " in
+ *" $libdir "*) ;;
+ *) current_libdirs="$current_libdirs $libdir" ;;
+ esac
+ else
+ # Note the libdir as a future libdir.
+ case "$future_libdirs " in
+ *" $libdir "*) ;;
+ *) future_libdirs="$future_libdirs $libdir" ;;
+ esac
+ fi
+
+ dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
+ test "X$dir" = "X$file/" && dir=
+ dir="$dir$objdir"
+
+ if test -n "$relink_command"; then
+ # Determine the prefix the user has applied to our future dir.
+ inst_prefix_dir=`$echo "$destdir" | sed "s%$libdir\$%%"`
+
+ # Don't allow the user to place us outside of our expected
+ # location b/c this prevents finding dependent libraries that
+ # are installed to the same prefix.
+ if test "$inst_prefix_dir" = "$destdir"; then
+ $echo "$modename: error: cannot install \`$file' to a directory not ending in $libdir" 1>&2
+ exit 1
+ fi
+
+ if test -n "$inst_prefix_dir"; then
+ # Stick the inst_prefix_dir data into the link command.
+ relink_command=`$echo "$relink_command" | sed "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
+ else
+ relink_command=`$echo "$relink_command" | sed "s%@inst_prefix_dir@%%"`
+ fi
+
+ $echo "$modename: warning: relinking \`$file'" 1>&2
+ $show "$relink_command"
+ if $run eval "$relink_command"; then :
+ else
+ $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
+ exit 1
+ fi
+ fi
+
+ # See the names of the shared library.
+ set dummy $library_names
+ if test -n "$2"; then
+ realname="$2"
+ shift
+ shift
+
+ srcname="$realname"
+ test -n "$relink_command" && srcname="$realname"T
+
+ # Install the shared library and build the symlinks.
+ $show "$install_prog $dir/$srcname $destdir/$realname"
+ $run eval "$install_prog $dir/$srcname $destdir/$realname" || exit $?
+ if test -n "$stripme" && test -n "$striplib"; then
+ $show "$striplib $destdir/$realname"
+ $run eval "$striplib $destdir/$realname" || exit $?
+ fi
+
+ if test "$#" -gt 0; then
+ # Delete the old symlinks, and create new ones.
+ for linkname
+ do
+ if test "$linkname" != "$realname"; then
+ $show "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
+ $run eval "(cd $destdir && $rm $linkname && $LN_S $realname $linkname)"
+ fi
+ done
+ fi
+
+ # Do each command in the postinstall commands.
+ lib="$destdir/$realname"
+ eval cmds=\"$postinstall_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ fi
+
+ # Install the pseudo-library for information purposes.
+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ instname="$dir/$name"i
+ $show "$install_prog $instname $destdir/$name"
+ $run eval "$install_prog $instname $destdir/$name" || exit $?
+
+ # Maybe install the static library, too.
+ test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library"
+ ;;
+
+ *.lo)
+ # Install (i.e. copy) a libtool object.
+
+ # Figure out destination file name, if it wasn't already specified.
+ if test -n "$destname"; then
+ destfile="$destdir/$destname"
+ else
+ destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ destfile="$destdir/$destfile"
+ fi
+
+ # Deduce the name of the destination old-style object file.
+ case $destfile in
+ *.lo)
+ staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
+ ;;
+ *.$objext)
+ staticdest="$destfile"
+ destfile=
+ ;;
+ *)
+ $echo "$modename: cannot copy a libtool object to \`$destfile'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ ;;
+ esac
+
+ # Install the libtool object if requested.
+ if test -n "$destfile"; then
+ $show "$install_prog $file $destfile"
+ $run eval "$install_prog $file $destfile" || exit $?
+ fi
+
+ # Install the old object if enabled.
+ if test "$build_old_libs" = yes; then
+ # Deduce the name of the old-style object file.
+ staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
+
+ $show "$install_prog $staticobj $staticdest"
+ $run eval "$install_prog \$staticobj \$staticdest" || exit $?
+ fi
+ exit 0
+ ;;
+
+ *)
+ # Figure out destination file name, if it wasn't already specified.
+ if test -n "$destname"; then
+ destfile="$destdir/$destname"
+ else
+ destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ destfile="$destdir/$destfile"
+ fi
+
+ # Do a test to see if this is really a libtool program.
+ if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+ notinst_deplibs=
+ relink_command=
+
+ # If there is no directory component, then add one.
+ case $file in
+ */* | *\\*) . $file ;;
+ *) . ./$file ;;
+ esac
+
+ # Check the variables that should have been set.
+ if test -z "$notinst_deplibs"; then
+ $echo "$modename: invalid libtool wrapper script \`$file'" 1>&2
+ exit 1
+ fi
+
+ finalize=yes
+ for lib in $notinst_deplibs; do
+ # Check to see that each library is installed.
+ libdir=
+ if test -f "$lib"; then
+ # If there is no directory component, then add one.
+ case $lib in
+ */* | *\\*) . $lib ;;
+ *) . ./$lib ;;
+ esac
+ fi
+ libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
+ if test -n "$libdir" && test ! -f "$libfile"; then
+ $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
+ finalize=no
+ fi
+ done
+
+ relink_command=
+ # If there is no directory component, then add one.
+ case $file in
+ */* | *\\*) . $file ;;
+ *) . ./$file ;;
+ esac
+
+ outputname=
+ if test "$fast_install" = no && test -n "$relink_command"; then
+ if test "$finalize" = yes && test -z "$run"; then
+ tmpdir="/tmp"
+ test -n "$TMPDIR" && tmpdir="$TMPDIR"
+ tmpdir=`mktemp -d $tmpdir/libtool-XXXXXX 2> /dev/null`
+ if test $? = 0 ; then :
+ else
+ tmpdir="$tmpdir/libtool-$$"
+ fi
+ if $mkdir -p "$tmpdir" && chmod 700 "$tmpdir"; then :
+ else
+ $echo "$modename: error: cannot create temporary directory \`$tmpdir'" 1>&2
+ continue
+ fi
+ file=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ outputname="$tmpdir/$file"
+ # Replace the output file specification.
+ relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
+
+ $show "$relink_command"
+ if $run eval "$relink_command"; then :
+ else
+ $echo "$modename: error: relink \`$file' with the above command before installing it" 1>&2
+ ${rm}r "$tmpdir"
+ continue
+ fi
+ file="$outputname"
+ else
+ $echo "$modename: warning: cannot relink \`$file'" 1>&2
+ fi
+ else
+ # Install the binary that we compiled earlier.
+ file=`$echo "X$file" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
+ fi
+ fi
+
+ # remove .exe since cygwin /usr/bin/install will append another
+ # one anyways
+ case $install_prog,$host in
+ /usr/bin/install*,*cygwin*)
+ case $file:$destfile in
+ *.exe:*.exe)
+ # this is ok
+ ;;
+ *.exe:*)
+ destfile=$destfile.exe
+ ;;
+ *:*.exe)
+ destfile=`echo $destfile | sed -e 's,.exe$,,'`
+ ;;
+ esac
+ ;;
+ esac
+ $show "$install_prog$stripme $file $destfile"
+ $run eval "$install_prog\$stripme \$file \$destfile" || exit $?
+ test -n "$outputname" && ${rm}r "$tmpdir"
+ ;;
+ esac
+ done
+
+ for file in $staticlibs; do
+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+
+ # Set up the ranlib parameters.
+ oldlib="$destdir/$name"
+
+ $show "$install_prog $file $oldlib"
+ $run eval "$install_prog \$file \$oldlib" || exit $?
+
+ if test -n "$stripme" && test -n "$striplib"; then
+ $show "$old_striplib $oldlib"
+ $run eval "$old_striplib $oldlib" || exit $?
+ fi
+
+ # Do each command in the postinstall commands.
+ eval cmds=\"$old_postinstall_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || exit $?
+ done
+ IFS="$save_ifs"
+ done
+
+ if test -n "$future_libdirs"; then
+ $echo "$modename: warning: remember to run \`$progname --finish$future_libdirs'" 1>&2
+ fi
+
+ if test -n "$current_libdirs"; then
+ # Maybe just do a dry run.
+ test -n "$run" && current_libdirs=" -n$current_libdirs"
+ exec_cmd='$SHELL $0 --finish$current_libdirs'
+ else
+ exit 0
+ fi
+ ;;
+
+ # libtool finish mode
+ finish)
+ modename="$modename: finish"
+ libdirs="$nonopt"
+ admincmds=
+
+ if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then
+ for dir
+ do
+ libdirs="$libdirs $dir"
+ done
+
+ for libdir in $libdirs; do
+ if test -n "$finish_cmds"; then
+ # Do each command in the finish commands.
+ eval cmds=\"$finish_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd" || admincmds="$admincmds
+ $cmd"
+ done
+ IFS="$save_ifs"
+ fi
+ if test -n "$finish_eval"; then
+ # Do the single finish_eval.
+ eval cmds=\"$finish_eval\"
+ $run eval "$cmds" || admincmds="$admincmds
+ $cmds"
+ fi
+ done
+ fi
+
+ # Exit here if they wanted silent mode.
+ test "$show" = : && exit 0
+
+ echo "----------------------------------------------------------------------"
+ echo "Libraries have been installed in:"
+ for libdir in $libdirs; do
+ echo " $libdir"
+ done
+ echo
+ echo "If you ever happen to want to link against installed libraries"
+ echo "in a given directory, LIBDIR, you must either use libtool, and"
+ echo "specify the full pathname of the library, or use the \`-LLIBDIR'"
+ echo "flag during linking and do at least one of the following:"
+ if test -n "$shlibpath_var"; then
+ echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
+ echo " during execution"
+ fi
+ if test -n "$runpath_var"; then
+ echo " - add LIBDIR to the \`$runpath_var' environment variable"
+ echo " during linking"
+ fi
+ if test -n "$hardcode_libdir_flag_spec"; then
+ libdir=LIBDIR
+ eval flag=\"$hardcode_libdir_flag_spec\"
+
+ echo " - use the \`$flag' linker flag"
+ fi
+ if test -n "$admincmds"; then
+ echo " - have your system administrator run these commands:$admincmds"
+ fi
+ if test -f /etc/ld.so.conf; then
+ echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
+ fi
+ echo
+ echo "See any operating system documentation about shared libraries for"
+ echo "more information, such as the ld(1) and ld.so(8) manual pages."
+ echo "----------------------------------------------------------------------"
+ exit 0
+ ;;
+
+ # libtool execute mode
+ execute)
+ modename="$modename: execute"
+
+ # The first argument is the command name.
+ cmd="$nonopt"
+ if test -z "$cmd"; then
+ $echo "$modename: you must specify a COMMAND" 1>&2
+ $echo "$help"
+ exit 1
+ fi
+
+ # Handle -dlopen flags immediately.
+ for file in $execute_dlfiles; do
+ if test ! -f "$file"; then
+ $echo "$modename: \`$file' is not a file" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ dir=
+ case $file in
+ *.la)
+ # Check to see that this really is a libtool archive.
+ if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then :
+ else
+ $echo "$modename: \`$lib' is not a valid libtool archive" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ # Read the libtool library.
+ dlname=
+ library_names=
+
+ # If there is no directory component, then add one.
+ case $file in
+ */* | *\\*) . $file ;;
+ *) . ./$file ;;
+ esac
+
+ # Skip this library if it cannot be dlopened.
+ if test -z "$dlname"; then
+ # Warn if it was a shared library.
+ test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
+ continue
+ fi
+
+ dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
+ test "X$dir" = "X$file" && dir=.
+
+ if test -f "$dir/$objdir/$dlname"; then
+ dir="$dir/$objdir"
+ else
+ $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
+ exit 1
+ fi
+ ;;
+
+ *.lo)
+ # Just add the directory containing the .lo file.
+ dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
+ test "X$dir" = "X$file" && dir=.
+ ;;
+
+ *)
+ $echo "$modename: warning \`-dlopen' is ignored for non-libtool libraries and objects" 1>&2
+ continue
+ ;;
+ esac
+
+ # Get the absolute pathname.
+ absdir=`cd "$dir" && pwd`
+ test -n "$absdir" && dir="$absdir"
+
+ # Now add the directory to shlibpath_var.
+ if eval "test -z \"\$$shlibpath_var\""; then
+ eval "$shlibpath_var=\"\$dir\""
+ else
+ eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\""
+ fi
+ done
+
+ # This variable tells wrapper scripts just to set shlibpath_var
+ # rather than running their programs.
+ libtool_execute_magic="$magic"
+
+ # Check if any of the arguments is a wrapper script.
+ args=
+ for file
+ do
+ case $file in
+ -*) ;;
+ *)
+ # Do a test to see if this is really a libtool program.
+ if (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+ # If there is no directory component, then add one.
+ case $file in
+ */* | *\\*) . $file ;;
+ *) . ./$file ;;
+ esac
+
+ # Transform arg to wrapped name.
+ file="$progdir/$program"
+ fi
+ ;;
+ esac
+ # Quote arguments (to preserve shell metacharacters).
+ file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
+ args="$args \"$file\""
+ done
+
+ if test -z "$run"; then
+ if test -n "$shlibpath_var"; then
+ # Export the shlibpath_var.
+ eval "export $shlibpath_var"
+ fi
+
+ # Restore saved enviroment variables
+ if test "${save_LC_ALL+set}" = set; then
+ LC_ALL="$save_LC_ALL"; export LC_ALL
+ fi
+ if test "${save_LANG+set}" = set; then
+ LANG="$save_LANG"; export LANG
+ fi
+
+ # Now prepare to actually exec the command.
+ exec_cmd="\$cmd$args"
+ else
+ # Display what would be done.
+ if test -n "$shlibpath_var"; then
+ eval "\$echo \"\$shlibpath_var=\$$shlibpath_var\""
+ $echo "export $shlibpath_var"
+ fi
+ $echo "$cmd$args"
+ exit 0
+ fi
+ ;;
+
+ # libtool clean and uninstall mode
+ clean | uninstall)
+ modename="$modename: $mode"
+ rm="$nonopt"
+ files=
+ rmforce=
+ exit_status=0
+
+ # This variable tells wrapper scripts just to set variables rather
+ # than running their programs.
+ libtool_install_magic="$magic"
+
+ for arg
+ do
+ case $arg in
+ -f) rm="$rm $arg"; rmforce=yes ;;
+ -*) rm="$rm $arg" ;;
+ *) files="$files $arg" ;;
+ esac
+ done
+
+ if test -z "$rm"; then
+ $echo "$modename: you must specify an RM program" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ fi
+
+ rmdirs=
+
+ for file in $files; do
+ dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
+ if test "X$dir" = "X$file"; then
+ dir=.
+ objdir="$objdir"
+ else
+ objdir="$dir/$objdir"
+ fi
+ name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
+ test "$mode" = uninstall && objdir="$dir"
+
+ # Remember objdir for removal later, being careful to avoid duplicates
+ if test "$mode" = clean; then
+ case " $rmdirs " in
+ *" $objdir "*) ;;
+ *) rmdirs="$rmdirs $objdir" ;;
+ esac
+ fi
+
+ # Don't error if the file doesn't exist and rm -f was used.
+ if (test -L "$file") >/dev/null 2>&1 \
+ || (test -h "$file") >/dev/null 2>&1 \
+ || test -f "$file"; then
+ :
+ elif test -d "$file"; then
+ exit_status=1
+ continue
+ elif test "$rmforce" = yes; then
+ continue
+ fi
+
+ rmfiles="$file"
+
+ case $name in
+ *.la)
+ # Possibly a libtool archive, so verify it.
+ if (sed -e '2q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+ . $dir/$name
+
+ # Delete the libtool libraries and symlinks.
+ for n in $library_names; do
+ rmfiles="$rmfiles $objdir/$n"
+ done
+ test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library"
+ test "$mode" = clean && rmfiles="$rmfiles $objdir/$name $objdir/${name}i"
+
+ if test "$mode" = uninstall; then
+ if test -n "$library_names"; then
+ # Do each command in the postuninstall commands.
+ eval cmds=\"$postuninstall_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd"
+ if test "$?" -ne 0 && test "$rmforce" != yes; then
+ exit_status=1
+ fi
+ done
+ IFS="$save_ifs"
+ fi
+
+ if test -n "$old_library"; then
+ # Do each command in the old_postuninstall commands.
+ eval cmds=\"$old_postuninstall_cmds\"
+ save_ifs="$IFS"; IFS='~'
+ for cmd in $cmds; do
+ IFS="$save_ifs"
+ $show "$cmd"
+ $run eval "$cmd"
+ if test "$?" -ne 0 && test "$rmforce" != yes; then
+ exit_status=1
+ fi
+ done
+ IFS="$save_ifs"
+ fi
+ # FIXME: should reinstall the best remaining shared library.
+ fi
+ fi
+ ;;
+
+ *.lo)
+ if test "$build_old_libs" = yes; then
+ oldobj=`$echo "X$name" | $Xsed -e "$lo2o"`
+ rmfiles="$rmfiles $dir/$oldobj"
+ fi
+ ;;
+
+ *)
+ # Do a test to see if this is a libtool program.
+ if test "$mode" = clean &&
+ (sed -e '4q' $file | egrep "^# Generated by .*$PACKAGE") >/dev/null 2>&1; then
+ relink_command=
+ . $dir/$file
+
+ rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}"
+ if test "$fast_install" = yes && test -n "$relink_command"; then
+ rmfiles="$rmfiles $objdir/lt-$name"
+ fi
+ fi
+ ;;
+ esac
+ $show "$rm $rmfiles"
+ $run $rm $rmfiles || exit_status=1
+ done
+
+ # Try to remove the ${objdir}s in the directories where we deleted files
+ for dir in $rmdirs; do
+ if test -d "$dir"; then
+ $show "rmdir $dir"
+ $run rmdir $dir >/dev/null 2>&1
+ fi
+ done
+
+ exit $exit_status
+ ;;
+
+ "")
+ $echo "$modename: you must specify a MODE" 1>&2
+ $echo "$generic_help" 1>&2
+ exit 1
+ ;;
+ esac
+
+ if test -z "$exec_cmd"; then
+ $echo "$modename: invalid operation mode \`$mode'" 1>&2
+ $echo "$generic_help" 1>&2
+ exit 1
+ fi
+fi # test -z "$show_help"
+
+if test -n "$exec_cmd"; then
+ eval exec $exec_cmd
+ exit 1
+fi
+
+# We need to display help for each of the modes.
+case $mode in
+"") $echo \
+"Usage: $modename [OPTION]... [MODE-ARG]...
+
+Provide generalized library-building support services.
+
+ --config show all configuration variables
+ --debug enable verbose shell tracing
+-n, --dry-run display commands without modifying any files
+ --features display basic configuration information and exit
+ --finish same as \`--mode=finish'
+ --help display this help message and exit
+ --mode=MODE use operation mode MODE [default=inferred from MODE-ARGS]
+ --quiet same as \`--silent'
+ --silent don't print informational messages
+ --version print version information
+
+MODE must be one of the following:
+
+ clean remove files from the build directory
+ compile compile a source file into a libtool object
+ execute automatically set library path, then run a program
+ finish complete the installation of libtool libraries
+ install install libraries or executables
+ link create a library or an executable
+ uninstall remove libraries from an installed directory
+
+MODE-ARGS vary depending on the MODE. Try \`$modename --help --mode=MODE' for
+a more detailed description of MODE."
+ exit 0
+ ;;
+
+clean)
+ $echo \
+"Usage: $modename [OPTION]... --mode=clean RM [RM-OPTION]... FILE...
+
+Remove files from the build directory.
+
+RM is the name of the program to use to delete files associated with each FILE
+(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
+to RM.
+
+If FILE is a libtool library, object or program, all the files associated
+with it are deleted. Otherwise, only FILE itself is deleted using RM."
+ ;;
+
+compile)
+ $echo \
+"Usage: $modename [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE
+
+Compile a source file into a libtool library object.
+
+This mode accepts the following additional options:
+
+ -o OUTPUT-FILE set the output file name to OUTPUT-FILE
+ -prefer-pic try to building PIC objects only
+ -prefer-non-pic try to building non-PIC objects only
+ -static always build a \`.o' file suitable for static linking
+
+COMPILE-COMMAND is a command to be used in creating a \`standard' object file
+from the given SOURCEFILE.
+
+The output file name is determined by removing the directory component from
+SOURCEFILE, then substituting the C source code suffix \`.c' with the
+library object suffix, \`.lo'."
+ ;;
+
+execute)
+ $echo \
+"Usage: $modename [OPTION]... --mode=execute COMMAND [ARGS]...
+
+Automatically set library path, then run a program.
+
+This mode accepts the following additional options:
+
+ -dlopen FILE add the directory containing FILE to the library path
+
+This mode sets the library path environment variable according to \`-dlopen'
+flags.
+
+If any of the ARGS are libtool executable wrappers, then they are translated
+into their corresponding uninstalled binary, and any of their required library
+directories are added to the library path.
+
+Then, COMMAND is executed, with ARGS as arguments."
+ ;;
+
+finish)
+ $echo \
+"Usage: $modename [OPTION]... --mode=finish [LIBDIR]...
+
+Complete the installation of libtool libraries.
+
+Each LIBDIR is a directory that contains libtool libraries.
+
+The commands that this mode executes may require superuser privileges. Use
+the \`--dry-run' option if you just want to see what would be executed."
+ ;;
+
+install)
+ $echo \
+"Usage: $modename [OPTION]... --mode=install INSTALL-COMMAND...
+
+Install executables or libraries.
+
+INSTALL-COMMAND is the installation command. The first component should be
+either the \`install' or \`cp' program.
+
+The rest of the components are interpreted as arguments to that command (only
+BSD-compatible install options are recognized)."
+ ;;
+
+link)
+ $echo \
+"Usage: $modename [OPTION]... --mode=link LINK-COMMAND...
+
+Link object files or libraries together to form another library, or to
+create an executable program.
+
+LINK-COMMAND is a command using the C compiler that you would use to create
+a program from several object files.
+
+The following components of LINK-COMMAND are treated specially:
+
+ -all-static do not do any dynamic linking at all
+ -avoid-version do not add a version suffix if possible
+ -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime
+ -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols
+ -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3)
+ -export-symbols SYMFILE
+ try to export only the symbols listed in SYMFILE
+ -export-symbols-regex REGEX
+ try to export only the symbols matching REGEX
+ -LLIBDIR search LIBDIR for required installed libraries
+ -lNAME OUTPUT-FILE requires the installed library libNAME
+ -module build a library that can dlopened
+ -no-fast-install disable the fast-install mode
+ -no-install link a not-installable executable
+ -no-undefined declare that a library does not refer to external symbols
+ -o OUTPUT-FILE create OUTPUT-FILE from the specified objects
+ -release RELEASE specify package release information
+ -rpath LIBDIR the created library will eventually be installed in LIBDIR
+ -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries
+ -static do not do any dynamic linking of libtool libraries
+ -version-info CURRENT[:REVISION[:AGE]]
+ specify library version info [each variable defaults to 0]
+
+All other options (arguments beginning with \`-') are ignored.
+
+Every other argument is treated as a filename. Files ending in \`.la' are
+treated as uninstalled libtool libraries, other files are standard or library
+object files.
+
+If the OUTPUT-FILE ends in \`.la', then a libtool library is created,
+only library objects (\`.lo' files) may be specified, and \`-rpath' is
+required, except when creating a convenience library.
+
+If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created
+using \`ar' and \`ranlib', or on Windows using \`lib'.
+
+If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file
+is created, otherwise an executable program is created."
+ ;;
+
+uninstall)
+ $echo \
+"Usage: $modename [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE...
+
+Remove libraries from an installation directory.
+
+RM is the name of the program to use to delete files associated with each FILE
+(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed
+to RM.
+
+If FILE is a libtool library, all the files associated with it are deleted.
+Otherwise, only FILE itself is deleted using RM."
+ ;;
+
+*)
+ $echo "$modename: invalid operation mode \`$mode'" 1>&2
+ $echo "$help" 1>&2
+ exit 1
+ ;;
+esac
+
+echo
+$echo "Try \`$modename --help' for more information about other modes."
+
+exit 0
+
+# Local Variables:
+# mode:shell-script
+# sh-indentation:2
+# End:
diff --git a/src/external/3rd/library/libxml/missing b/src/external/3rd/library/libxml/missing
new file mode 100644
index 000000000..a6abd0698
--- /dev/null
+++ b/src/external/3rd/library/libxml/missing
@@ -0,0 +1,134 @@
+#! /bin/sh
+# Common stub for a few missing GNU programs while installing.
+# Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+# Franc,ois Pinard , 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, 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.
+
+if test $# -eq 0; then
+ echo 1>&2 "Try \`$0 --help' for more information"
+ exit 1
+fi
+
+case "$1" in
+
+ -h|--h|--he|--hel|--help)
+ echo "\
+$0 [OPTION]... PROGRAM [ARGUMENT]...
+
+Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an
+error status if there is no known handling for PROGRAM.
+
+Options:
+ -h, --help display this help and exit
+ -v, --version output version information and exit
+
+Supported PROGRAM values:
+ aclocal touch file \`aclocal.m4'
+ autoconf touch file \`configure'
+ autoheader touch file \`config.h.in'
+ automake touch all \`Makefile.in' files
+ bison touch file \`y.tab.c'
+ makeinfo touch the output file
+ yacc touch file \`y.tab.c'"
+ ;;
+
+ -v|--v|--ve|--ver|--vers|--versi|--versio|--version)
+ echo "missing - GNU libit 0.0"
+ ;;
+
+ -*)
+ echo 1>&2 "$0: Unknown \`$1' option"
+ echo 1>&2 "Try \`$0 --help' for more information"
+ exit 1
+ ;;
+
+ aclocal)
+ echo 1>&2 "\
+WARNING: \`$1' is missing on your system. You should only need it if
+ you modified \`acinclude.m4' or \`configure.in'. You might want
+ to install the \`Automake' and \`Perl' packages. Grab them from
+ any GNU archive site."
+ touch aclocal.m4
+ ;;
+
+ autoconf)
+ echo 1>&2 "\
+WARNING: \`$1' is missing on your system. You should only need it if
+ you modified \`configure.in'. You might want to install the
+ \`Autoconf' and \`GNU m4' packages. Grab them from any GNU
+ archive site."
+ touch configure
+ ;;
+
+ autoheader)
+ echo 1>&2 "\
+WARNING: \`$1' is missing on your system. You should only need it if
+ you modified \`acconfig.h' or \`configure.in'. You might want
+ to install the \`Autoconf' and \`GNU m4' packages. Grab them
+ from any GNU archive site."
+ touch config.h.in
+ ;;
+
+ automake)
+ echo 1>&2 "\
+WARNING: \`$1' is missing on your system. You should only need it if
+ you modified \`Makefile.am', \`acinclude.m4' or \`configure.in'.
+ You might want to install the \`Automake' and \`Perl' packages.
+ Grab them from any GNU archive site."
+ find . -type f -name Makefile.am -print \
+ | sed 's/^\(.*\).am$/touch \1.in/' \
+ | sh
+ ;;
+
+ bison|yacc)
+ echo 1>&2 "\
+WARNING: \`$1' is missing on your system. You should only need it if
+ you modified a \`.y' file. You may need the \`Bison' package
+ in order for those modifications to take effect. You can get
+ \`Bison' from any GNU archive site."
+ touch y.tab.c
+ ;;
+
+ makeinfo)
+ echo 1>&2 "\
+WARNING: \`$1' is missing on your system. You should only need it if
+ you modified a \`.texi' or \`.texinfo' file, or any other file
+ indirectly affecting the aspect of the manual. The spurious
+ call might also be the consequence of using a buggy \`make' (AIX,
+ DU, IRIX). You might want to install the \`Texinfo' package or
+ the \`GNU make' package. Grab either from any GNU archive site."
+ file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
+ if test -z "$file"; then
+ file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
+ file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
+ fi
+ touch $file
+ ;;
+
+ *)
+ echo 1>&2 "\
+WARNING: \`$1' is needed, and you do not seem to have it handy on your
+ system. You might have modified some files without having the
+ proper tools for further handling them. Check the \`README' file,
+ it often tells you about the needed prerequirements for installing
+ this package. You may also peek at any GNU archive site, in case
+ some other package would contain this missing \`$1' program."
+ exit 1
+ ;;
+esac
+
+exit 0
diff --git a/src/external/3rd/library/libxml/nanoftp.lo b/src/external/3rd/library/libxml/nanoftp.lo
new file mode 100644
index 000000000..4f1d80a92
Binary files /dev/null and b/src/external/3rd/library/libxml/nanoftp.lo differ
diff --git a/src/external/3rd/library/libxml/nanohttp.lo b/src/external/3rd/library/libxml/nanohttp.lo
new file mode 100644
index 000000000..605bb2d6f
Binary files /dev/null and b/src/external/3rd/library/libxml/nanohttp.lo differ
diff --git a/src/external/3rd/library/libxml/parser.lo b/src/external/3rd/library/libxml/parser.lo
new file mode 100644
index 000000000..69806a339
Binary files /dev/null and b/src/external/3rd/library/libxml/parser.lo differ
diff --git a/src/external/3rd/library/libxml/parserInternals.lo b/src/external/3rd/library/libxml/parserInternals.lo
new file mode 100644
index 000000000..7728495e7
Binary files /dev/null and b/src/external/3rd/library/libxml/parserInternals.lo differ
diff --git a/src/external/3rd/library/libxml/threads.lo b/src/external/3rd/library/libxml/threads.lo
new file mode 100644
index 000000000..b8ba9e55b
Binary files /dev/null and b/src/external/3rd/library/libxml/threads.lo differ
diff --git a/src/external/3rd/library/libxml/tree.lo b/src/external/3rd/library/libxml/tree.lo
new file mode 100644
index 000000000..16686146b
Binary files /dev/null and b/src/external/3rd/library/libxml/tree.lo differ
diff --git a/src/external/3rd/library/libxml/uri.lo b/src/external/3rd/library/libxml/uri.lo
new file mode 100644
index 000000000..bffe54191
Binary files /dev/null and b/src/external/3rd/library/libxml/uri.lo differ
diff --git a/src/external/3rd/library/libxml/valid.lo b/src/external/3rd/library/libxml/valid.lo
new file mode 100644
index 000000000..8127fd49d
Binary files /dev/null and b/src/external/3rd/library/libxml/valid.lo differ
diff --git a/src/external/3rd/library/libxml/xinclude.lo b/src/external/3rd/library/libxml/xinclude.lo
new file mode 100644
index 000000000..644d6ab17
Binary files /dev/null and b/src/external/3rd/library/libxml/xinclude.lo differ
diff --git a/src/external/3rd/library/libxml/xlink.lo b/src/external/3rd/library/libxml/xlink.lo
new file mode 100644
index 000000000..01dcc734d
Binary files /dev/null and b/src/external/3rd/library/libxml/xlink.lo differ
diff --git a/src/external/3rd/library/libxml/xmlIO.lo b/src/external/3rd/library/libxml/xmlIO.lo
new file mode 100644
index 000000000..a52ff6de7
Binary files /dev/null and b/src/external/3rd/library/libxml/xmlIO.lo differ
diff --git a/src/external/3rd/library/libxml/xmlmemory.lo b/src/external/3rd/library/libxml/xmlmemory.lo
new file mode 100644
index 000000000..ac8605c7a
Binary files /dev/null and b/src/external/3rd/library/libxml/xmlmemory.lo differ
diff --git a/src/external/3rd/library/libxml/xmlregexp.lo b/src/external/3rd/library/libxml/xmlregexp.lo
new file mode 100644
index 000000000..f97202148
Binary files /dev/null and b/src/external/3rd/library/libxml/xmlregexp.lo differ
diff --git a/src/external/3rd/library/libxml/xmlschemas.lo b/src/external/3rd/library/libxml/xmlschemas.lo
new file mode 100644
index 000000000..1e9055e26
Binary files /dev/null and b/src/external/3rd/library/libxml/xmlschemas.lo differ
diff --git a/src/external/3rd/library/libxml/xmlschemastypes.lo b/src/external/3rd/library/libxml/xmlschemastypes.lo
new file mode 100644
index 000000000..17425d07b
Binary files /dev/null and b/src/external/3rd/library/libxml/xmlschemastypes.lo differ
diff --git a/src/external/3rd/library/libxml/xmlunicode.lo b/src/external/3rd/library/libxml/xmlunicode.lo
new file mode 100644
index 000000000..91e834d45
Binary files /dev/null and b/src/external/3rd/library/libxml/xmlunicode.lo differ
diff --git a/src/external/3rd/library/libxml/xpath.lo b/src/external/3rd/library/libxml/xpath.lo
new file mode 100644
index 000000000..4b19206e2
Binary files /dev/null and b/src/external/3rd/library/libxml/xpath.lo differ
diff --git a/src/external/3rd/library/libxml/xpointer.lo b/src/external/3rd/library/libxml/xpointer.lo
new file mode 100644
index 000000000..8caf0adab
Binary files /dev/null and b/src/external/3rd/library/libxml/xpointer.lo differ
diff --git a/src/external/3rd/library/libxml2-2.6.7.win32/lib/libxml2-win32-debug.lib b/src/external/3rd/library/libxml2-2.6.7.win32/lib/libxml2-win32-debug.lib
new file mode 100644
index 000000000..1444e6b12
Binary files /dev/null and b/src/external/3rd/library/libxml2-2.6.7.win32/lib/libxml2-win32-debug.lib differ
diff --git a/src/external/3rd/library/libxml2-2.6.7.win32/lib/libxml2-win32-release.lib b/src/external/3rd/library/libxml2-2.6.7.win32/lib/libxml2-win32-release.lib
new file mode 100644
index 000000000..8b42e1099
Binary files /dev/null and b/src/external/3rd/library/libxml2-2.6.7.win32/lib/libxml2-win32-release.lib differ
diff --git a/src/external/3rd/library/maya4/lib/Foundation.lib b/src/external/3rd/library/maya4/lib/Foundation.lib
new file mode 100644
index 000000000..825a45743
Binary files /dev/null and b/src/external/3rd/library/maya4/lib/Foundation.lib differ
diff --git a/src/external/3rd/library/maya4/lib/Image.lib b/src/external/3rd/library/maya4/lib/Image.lib
new file mode 100644
index 000000000..e1c8681b8
Binary files /dev/null and b/src/external/3rd/library/maya4/lib/Image.lib differ
diff --git a/src/external/3rd/library/maya4/lib/OpenMaya.lib b/src/external/3rd/library/maya4/lib/OpenMaya.lib
new file mode 100644
index 000000000..c5b895bcf
Binary files /dev/null and b/src/external/3rd/library/maya4/lib/OpenMaya.lib differ
diff --git a/src/external/3rd/library/maya4/lib/OpenMayaAnim.lib b/src/external/3rd/library/maya4/lib/OpenMayaAnim.lib
new file mode 100644
index 000000000..8a5b5d78e
Binary files /dev/null and b/src/external/3rd/library/maya4/lib/OpenMayaAnim.lib differ
diff --git a/src/external/3rd/library/maya4/lib/OpenMayaFX.lib b/src/external/3rd/library/maya4/lib/OpenMayaFX.lib
new file mode 100644
index 000000000..5dbc344f9
Binary files /dev/null and b/src/external/3rd/library/maya4/lib/OpenMayaFX.lib differ
diff --git a/src/external/3rd/library/maya4/lib/OpenMayaRender.lib b/src/external/3rd/library/maya4/lib/OpenMayaRender.lib
new file mode 100644
index 000000000..f7a9240fd
Binary files /dev/null and b/src/external/3rd/library/maya4/lib/OpenMayaRender.lib differ
diff --git a/src/external/3rd/library/maya4/lib/OpenMayaUI.lib b/src/external/3rd/library/maya4/lib/OpenMayaUI.lib
new file mode 100644
index 000000000..49426ef29
Binary files /dev/null and b/src/external/3rd/library/maya4/lib/OpenMayaUI.lib differ
diff --git a/src/external/3rd/library/maya4/lib/libMDtAPI.lib b/src/external/3rd/library/maya4/lib/libMDtAPI.lib
new file mode 100644
index 000000000..ddfc28d3e
Binary files /dev/null and b/src/external/3rd/library/maya4/lib/libMDtAPI.lib differ
diff --git a/src/external/3rd/library/maya4/lib/libMocap.lib b/src/external/3rd/library/maya4/lib/libMocap.lib
new file mode 100644
index 000000000..45dc1ed34
Binary files /dev/null and b/src/external/3rd/library/maya4/lib/libMocap.lib differ
diff --git a/src/external/3rd/library/maya5/lib/Foundation.lib b/src/external/3rd/library/maya5/lib/Foundation.lib
new file mode 100644
index 000000000..c990e78e9
Binary files /dev/null and b/src/external/3rd/library/maya5/lib/Foundation.lib differ
diff --git a/src/external/3rd/library/maya5/lib/Image.lib b/src/external/3rd/library/maya5/lib/Image.lib
new file mode 100644
index 000000000..9bc751748
Binary files /dev/null and b/src/external/3rd/library/maya5/lib/Image.lib differ
diff --git a/src/external/3rd/library/maya5/lib/OpenMaya.lib b/src/external/3rd/library/maya5/lib/OpenMaya.lib
new file mode 100644
index 000000000..eeaac0ec0
Binary files /dev/null and b/src/external/3rd/library/maya5/lib/OpenMaya.lib differ
diff --git a/src/external/3rd/library/maya5/lib/OpenMayaAnim.lib b/src/external/3rd/library/maya5/lib/OpenMayaAnim.lib
new file mode 100644
index 000000000..44ea44727
Binary files /dev/null and b/src/external/3rd/library/maya5/lib/OpenMayaAnim.lib differ
diff --git a/src/external/3rd/library/maya5/lib/OpenMayaFX.lib b/src/external/3rd/library/maya5/lib/OpenMayaFX.lib
new file mode 100644
index 000000000..05af33b2c
Binary files /dev/null and b/src/external/3rd/library/maya5/lib/OpenMayaFX.lib differ
diff --git a/src/external/3rd/library/maya5/lib/OpenMayaRender.lib b/src/external/3rd/library/maya5/lib/OpenMayaRender.lib
new file mode 100644
index 000000000..905638567
Binary files /dev/null and b/src/external/3rd/library/maya5/lib/OpenMayaRender.lib differ
diff --git a/src/external/3rd/library/maya5/lib/OpenMayaUI.lib b/src/external/3rd/library/maya5/lib/OpenMayaUI.lib
new file mode 100644
index 000000000..082ebdc1c
Binary files /dev/null and b/src/external/3rd/library/maya5/lib/OpenMayaUI.lib differ
diff --git a/src/external/3rd/library/maya5/lib/libMDtApi.lib b/src/external/3rd/library/maya5/lib/libMDtApi.lib
new file mode 100644
index 000000000..423d7e1b1
Binary files /dev/null and b/src/external/3rd/library/maya5/lib/libMDtApi.lib differ
diff --git a/src/external/3rd/library/maya5/lib/libmocap.lib b/src/external/3rd/library/maya5/lib/libmocap.lib
new file mode 100644
index 000000000..982c22004
Binary files /dev/null and b/src/external/3rd/library/maya5/lib/libmocap.lib differ
diff --git a/src/external/3rd/library/maya7/lib/Cloth.exp b/src/external/3rd/library/maya7/lib/Cloth.exp
new file mode 100644
index 000000000..0959e374f
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/Cloth.exp differ
diff --git a/src/external/3rd/library/maya7/lib/Cloth.lib b/src/external/3rd/library/maya7/lib/Cloth.lib
new file mode 100644
index 000000000..061455152
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/Cloth.lib differ
diff --git a/src/external/3rd/library/maya7/lib/Foundation.exp b/src/external/3rd/library/maya7/lib/Foundation.exp
new file mode 100644
index 000000000..81e9d8086
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/Foundation.exp differ
diff --git a/src/external/3rd/library/maya7/lib/Foundation.lib b/src/external/3rd/library/maya7/lib/Foundation.lib
new file mode 100644
index 000000000..170dd5010
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/Foundation.lib differ
diff --git a/src/external/3rd/library/maya7/lib/IMF.exp b/src/external/3rd/library/maya7/lib/IMF.exp
new file mode 100644
index 000000000..92aa5a79a
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/IMF.exp differ
diff --git a/src/external/3rd/library/maya7/lib/IMF.lib b/src/external/3rd/library/maya7/lib/IMF.lib
new file mode 100644
index 000000000..4f992589e
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/IMF.lib differ
diff --git a/src/external/3rd/library/maya7/lib/Image.exp b/src/external/3rd/library/maya7/lib/Image.exp
new file mode 100644
index 000000000..9b1d8a439
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/Image.exp differ
diff --git a/src/external/3rd/library/maya7/lib/Image.lib b/src/external/3rd/library/maya7/lib/Image.lib
new file mode 100644
index 000000000..fcbd99d61
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/Image.lib differ
diff --git a/src/external/3rd/library/maya7/lib/OpenMaya.exp b/src/external/3rd/library/maya7/lib/OpenMaya.exp
new file mode 100644
index 000000000..808c54942
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/OpenMaya.exp differ
diff --git a/src/external/3rd/library/maya7/lib/OpenMaya.lib b/src/external/3rd/library/maya7/lib/OpenMaya.lib
new file mode 100644
index 000000000..a16d1b143
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/OpenMaya.lib differ
diff --git a/src/external/3rd/library/maya7/lib/OpenMayaAnim.exp b/src/external/3rd/library/maya7/lib/OpenMayaAnim.exp
new file mode 100644
index 000000000..1f6c2dc7c
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/OpenMayaAnim.exp differ
diff --git a/src/external/3rd/library/maya7/lib/OpenMayaAnim.lib b/src/external/3rd/library/maya7/lib/OpenMayaAnim.lib
new file mode 100644
index 000000000..1445ad1a1
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/OpenMayaAnim.lib differ
diff --git a/src/external/3rd/library/maya7/lib/OpenMayaFX.exp b/src/external/3rd/library/maya7/lib/OpenMayaFX.exp
new file mode 100644
index 000000000..0a8e95b85
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/OpenMayaFX.exp differ
diff --git a/src/external/3rd/library/maya7/lib/OpenMayaFX.lib b/src/external/3rd/library/maya7/lib/OpenMayaFX.lib
new file mode 100644
index 000000000..eb6ee79dd
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/OpenMayaFX.lib differ
diff --git a/src/external/3rd/library/maya7/lib/OpenMayaRender.exp b/src/external/3rd/library/maya7/lib/OpenMayaRender.exp
new file mode 100644
index 000000000..1401d67ad
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/OpenMayaRender.exp differ
diff --git a/src/external/3rd/library/maya7/lib/OpenMayaRender.lib b/src/external/3rd/library/maya7/lib/OpenMayaRender.lib
new file mode 100644
index 000000000..420e013f3
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/OpenMayaRender.lib differ
diff --git a/src/external/3rd/library/maya7/lib/OpenMayaUI.exp b/src/external/3rd/library/maya7/lib/OpenMayaUI.exp
new file mode 100644
index 000000000..7737d39b7
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/OpenMayaUI.exp differ
diff --git a/src/external/3rd/library/maya7/lib/OpenMayaUI.lib b/src/external/3rd/library/maya7/lib/OpenMayaUI.lib
new file mode 100644
index 000000000..d0a78cc6a
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/OpenMayaUI.lib differ
diff --git a/src/external/3rd/library/maya7/lib/cg.lib b/src/external/3rd/library/maya7/lib/cg.lib
new file mode 100644
index 000000000..773a4c736
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/cg.lib differ
diff --git a/src/external/3rd/library/maya7/lib/cgGL.lib b/src/external/3rd/library/maya7/lib/cgGL.lib
new file mode 100644
index 000000000..0e0571997
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/cgGL.lib differ
diff --git a/src/external/3rd/library/maya7/lib/libfbxfilesdk.lib b/src/external/3rd/library/maya7/lib/libfbxfilesdk.lib
new file mode 100644
index 000000000..009321e6a
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/libfbxfilesdk.lib differ
diff --git a/src/external/3rd/library/maya7/lib/libmocap.lib b/src/external/3rd/library/maya7/lib/libmocap.lib
new file mode 100644
index 000000000..19cddcdce
Binary files /dev/null and b/src/external/3rd/library/maya7/lib/libmocap.lib differ
diff --git a/src/external/3rd/library/maya8/lib/Cloth.exp b/src/external/3rd/library/maya8/lib/Cloth.exp
new file mode 100644
index 000000000..ef15b69ed
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/Cloth.exp differ
diff --git a/src/external/3rd/library/maya8/lib/Cloth.lib b/src/external/3rd/library/maya8/lib/Cloth.lib
new file mode 100644
index 000000000..d95e7867f
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/Cloth.lib differ
diff --git a/src/external/3rd/library/maya8/lib/Foundation.exp b/src/external/3rd/library/maya8/lib/Foundation.exp
new file mode 100644
index 000000000..3edaf1de0
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/Foundation.exp differ
diff --git a/src/external/3rd/library/maya8/lib/Foundation.lib b/src/external/3rd/library/maya8/lib/Foundation.lib
new file mode 100644
index 000000000..02398f89f
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/Foundation.lib differ
diff --git a/src/external/3rd/library/maya8/lib/IMF.exp b/src/external/3rd/library/maya8/lib/IMF.exp
new file mode 100644
index 000000000..e4ccc8798
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/IMF.exp differ
diff --git a/src/external/3rd/library/maya8/lib/IMF.lib b/src/external/3rd/library/maya8/lib/IMF.lib
new file mode 100644
index 000000000..d24450fc6
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/IMF.lib differ
diff --git a/src/external/3rd/library/maya8/lib/Image.exp b/src/external/3rd/library/maya8/lib/Image.exp
new file mode 100644
index 000000000..6985cff69
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/Image.exp differ
diff --git a/src/external/3rd/library/maya8/lib/Image.lib b/src/external/3rd/library/maya8/lib/Image.lib
new file mode 100644
index 000000000..083a20c16
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/Image.lib differ
diff --git a/src/external/3rd/library/maya8/lib/OpenMaya.exp b/src/external/3rd/library/maya8/lib/OpenMaya.exp
new file mode 100644
index 000000000..25421c1d9
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/OpenMaya.exp differ
diff --git a/src/external/3rd/library/maya8/lib/OpenMaya.lib b/src/external/3rd/library/maya8/lib/OpenMaya.lib
new file mode 100644
index 000000000..d1c435bac
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/OpenMaya.lib differ
diff --git a/src/external/3rd/library/maya8/lib/OpenMayaAnim.exp b/src/external/3rd/library/maya8/lib/OpenMayaAnim.exp
new file mode 100644
index 000000000..812ed615d
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/OpenMayaAnim.exp differ
diff --git a/src/external/3rd/library/maya8/lib/OpenMayaAnim.lib b/src/external/3rd/library/maya8/lib/OpenMayaAnim.lib
new file mode 100644
index 000000000..7d0fdcc87
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/OpenMayaAnim.lib differ
diff --git a/src/external/3rd/library/maya8/lib/OpenMayaFX.exp b/src/external/3rd/library/maya8/lib/OpenMayaFX.exp
new file mode 100644
index 000000000..74c09da00
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/OpenMayaFX.exp differ
diff --git a/src/external/3rd/library/maya8/lib/OpenMayaFX.lib b/src/external/3rd/library/maya8/lib/OpenMayaFX.lib
new file mode 100644
index 000000000..9d472b500
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/OpenMayaFX.lib differ
diff --git a/src/external/3rd/library/maya8/lib/OpenMayaRender.exp b/src/external/3rd/library/maya8/lib/OpenMayaRender.exp
new file mode 100644
index 000000000..c97ab1090
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/OpenMayaRender.exp differ
diff --git a/src/external/3rd/library/maya8/lib/OpenMayaRender.lib b/src/external/3rd/library/maya8/lib/OpenMayaRender.lib
new file mode 100644
index 000000000..a03b084aa
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/OpenMayaRender.lib differ
diff --git a/src/external/3rd/library/maya8/lib/OpenMayaUI.exp b/src/external/3rd/library/maya8/lib/OpenMayaUI.exp
new file mode 100644
index 000000000..932ed3b94
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/OpenMayaUI.exp differ
diff --git a/src/external/3rd/library/maya8/lib/OpenMayaUI.lib b/src/external/3rd/library/maya8/lib/OpenMayaUI.lib
new file mode 100644
index 000000000..097d23442
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/OpenMayaUI.lib differ
diff --git a/src/external/3rd/library/maya8/lib/cg.lib b/src/external/3rd/library/maya8/lib/cg.lib
new file mode 100644
index 000000000..ff4516add
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/cg.lib differ
diff --git a/src/external/3rd/library/maya8/lib/cgGL.lib b/src/external/3rd/library/maya8/lib/cgGL.lib
new file mode 100644
index 000000000..c9666eedd
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/cgGL.lib differ
diff --git a/src/external/3rd/library/maya8/lib/libHalf.lib b/src/external/3rd/library/maya8/lib/libHalf.lib
new file mode 100644
index 000000000..9b7b2e547
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/libHalf.lib differ
diff --git a/src/external/3rd/library/maya8/lib/libIex.lib b/src/external/3rd/library/maya8/lib/libIex.lib
new file mode 100644
index 000000000..07fbff7ae
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/libIex.lib differ
diff --git a/src/external/3rd/library/maya8/lib/libIlmImf.lib b/src/external/3rd/library/maya8/lib/libIlmImf.lib
new file mode 100644
index 000000000..648adc08a
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/libIlmImf.lib differ
diff --git a/src/external/3rd/library/maya8/lib/libImath.lib b/src/external/3rd/library/maya8/lib/libImath.lib
new file mode 100644
index 000000000..61aed1af3
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/libImath.lib differ
diff --git a/src/external/3rd/library/maya8/lib/libawxml2.exp b/src/external/3rd/library/maya8/lib/libawxml2.exp
new file mode 100644
index 000000000..672f7747b
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/libawxml2.exp differ
diff --git a/src/external/3rd/library/maya8/lib/libawxml2.lib b/src/external/3rd/library/maya8/lib/libawxml2.lib
new file mode 100644
index 000000000..d5b60ee3a
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/libawxml2.lib differ
diff --git a/src/external/3rd/library/maya8/lib/libfbxfilesdk.lib b/src/external/3rd/library/maya8/lib/libfbxfilesdk.lib
new file mode 100644
index 000000000..7b759e1bb
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/libfbxfilesdk.lib differ
diff --git a/src/external/3rd/library/maya8/lib/libmocap.lib b/src/external/3rd/library/maya8/lib/libmocap.lib
new file mode 100644
index 000000000..08635d031
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/libmocap.lib differ
diff --git a/src/external/3rd/library/maya8/lib/libzlib.lib b/src/external/3rd/library/maya8/lib/libzlib.lib
new file mode 100644
index 000000000..f686ac8e9
Binary files /dev/null and b/src/external/3rd/library/maya8/lib/libzlib.lib differ
diff --git a/src/external/3rd/library/miles-7.2e/lib/win/Mss32.lib b/src/external/3rd/library/miles-7.2e/lib/win/Mss32.lib
new file mode 100644
index 000000000..ec61c9efe
Binary files /dev/null and b/src/external/3rd/library/miles-7.2e/lib/win/Mss32.lib differ
diff --git a/src/external/3rd/library/miles/lib/win/Mss32.lib b/src/external/3rd/library/miles/lib/win/Mss32.lib
new file mode 100644
index 000000000..64bb26812
Binary files /dev/null and b/src/external/3rd/library/miles/lib/win/Mss32.lib differ
diff --git a/src/external/3rd/library/oracle_win32/ora80/oci/lib/bc/oci.lib b/src/external/3rd/library/oracle_win32/ora80/oci/lib/bc/oci.lib
new file mode 100644
index 000000000..1b0d060c8
Binary files /dev/null and b/src/external/3rd/library/oracle_win32/ora80/oci/lib/bc/oci.lib differ
diff --git a/src/external/3rd/library/oracle_win32/ora80/oci/lib/bc/ociw32.lib b/src/external/3rd/library/oracle_win32/ora80/oci/lib/bc/ociw32.lib
new file mode 100644
index 000000000..db4452a78
Binary files /dev/null and b/src/external/3rd/library/oracle_win32/ora80/oci/lib/bc/ociw32.lib differ
diff --git a/src/external/3rd/library/oracle_win32/ora80/oci/lib/msvc/oci.lib b/src/external/3rd/library/oracle_win32/ora80/oci/lib/msvc/oci.lib
new file mode 100644
index 000000000..17ac463f3
Binary files /dev/null and b/src/external/3rd/library/oracle_win32/ora80/oci/lib/msvc/oci.lib differ
diff --git a/src/external/3rd/library/oracle_win32/ora80/oci/lib/msvc/ociw32.lib b/src/external/3rd/library/oracle_win32/ora80/oci/lib/msvc/ociw32.lib
new file mode 100644
index 000000000..b6133d221
Binary files /dev/null and b/src/external/3rd/library/oracle_win32/ora80/oci/lib/msvc/ociw32.lib differ
diff --git a/src/external/3rd/library/pcre/4.1/linux/lib/libpcre.a b/src/external/3rd/library/pcre/4.1/linux/lib/libpcre.a
new file mode 100644
index 000000000..309cdb0c4
Binary files /dev/null and b/src/external/3rd/library/pcre/4.1/linux/lib/libpcre.a differ
diff --git a/src/external/3rd/library/pcre/4.1/linux/lib/libpcre.la b/src/external/3rd/library/pcre/4.1/linux/lib/libpcre.la
new file mode 100644
index 000000000..9eb4467db
--- /dev/null
+++ b/src/external/3rd/library/pcre/4.1/linux/lib/libpcre.la
@@ -0,0 +1,32 @@
+# libpcre.la - a libtool library file
+# Generated by ltmain.sh - GNU libtool 1.4.3 (1.922.2.110 2002/10/23 01:39:54)
+#
+# Please DO NOT delete this file!
+# It is necessary for linking the library.
+
+# The name that we can dlopen(3).
+dlname='libpcre.so.0'
+
+# Names of this library.
+library_names='libpcre.so.0.0.1 libpcre.so.0 libpcre.so'
+
+# The name of the static archive.
+old_library='libpcre.a'
+
+# Libraries that this one depends upon.
+dependency_libs=''
+
+# Version information for libpcre.
+current=0
+age=0
+revision=1
+
+# Is this an already installed library?
+installed=yes
+
+# Files to dlopen/dlpreopen
+dlopen=''
+dlpreopen=''
+
+# Directory that this library needs to be installed in:
+libdir='/home/tfiala/swg/current/src/external/3rd/library/pcre/4.1/linux/lib'
diff --git a/src/external/3rd/library/pcre/4.1/linux/lib/libpcre.so.0.0.1 b/src/external/3rd/library/pcre/4.1/linux/lib/libpcre.so.0.0.1
new file mode 100644
index 000000000..3da39c822
Binary files /dev/null and b/src/external/3rd/library/pcre/4.1/linux/lib/libpcre.so.0.0.1 differ
diff --git a/src/external/3rd/library/pcre/4.1/linux/lib/libpcreposix.a b/src/external/3rd/library/pcre/4.1/linux/lib/libpcreposix.a
new file mode 100644
index 000000000..d8adbf0b5
Binary files /dev/null and b/src/external/3rd/library/pcre/4.1/linux/lib/libpcreposix.a differ
diff --git a/src/external/3rd/library/pcre/4.1/linux/lib/libpcreposix.la b/src/external/3rd/library/pcre/4.1/linux/lib/libpcreposix.la
new file mode 100644
index 000000000..ff969a30c
--- /dev/null
+++ b/src/external/3rd/library/pcre/4.1/linux/lib/libpcreposix.la
@@ -0,0 +1,32 @@
+# libpcreposix.la - a libtool library file
+# Generated by ltmain.sh - GNU libtool 1.4.3 (1.922.2.110 2002/10/23 01:39:54)
+#
+# Please DO NOT delete this file!
+# It is necessary for linking the library.
+
+# The name that we can dlopen(3).
+dlname='libpcreposix.so.0'
+
+# Names of this library.
+library_names='libpcreposix.so.0.0.0 libpcreposix.so.0 libpcreposix.so'
+
+# The name of the static archive.
+old_library='libpcreposix.a'
+
+# Libraries that this one depends upon.
+dependency_libs=' -L/home/tfiala/transfer/pcre-4.1 /home/tfiala/swg/current/src/external/3rd/library/pcre/4.1/linux/lib/libpcre.la'
+
+# Version information for libpcreposix.
+current=0
+age=0
+revision=0
+
+# Is this an already installed library?
+installed=yes
+
+# Files to dlopen/dlpreopen
+dlopen=''
+dlpreopen=''
+
+# Directory that this library needs to be installed in:
+libdir='/home/tfiala/swg/current/src/external/3rd/library/pcre/4.1/linux/lib'
diff --git a/src/external/3rd/library/pcre/4.1/linux/lib/libpcreposix.so.0.0.0 b/src/external/3rd/library/pcre/4.1/linux/lib/libpcreposix.so.0.0.0
new file mode 100644
index 000000000..4b495b021
Binary files /dev/null and b/src/external/3rd/library/pcre/4.1/linux/lib/libpcreposix.so.0.0.0 differ
diff --git a/src/external/3rd/library/pcre/4.1/win32/lib/libpcre.a b/src/external/3rd/library/pcre/4.1/win32/lib/libpcre.a
new file mode 100644
index 000000000..66778d7e5
Binary files /dev/null and b/src/external/3rd/library/pcre/4.1/win32/lib/libpcre.a differ
diff --git a/src/external/3rd/library/perforce/lib/linux/libclient.a b/src/external/3rd/library/perforce/lib/linux/libclient.a
new file mode 100644
index 000000000..a8a39960c
Binary files /dev/null and b/src/external/3rd/library/perforce/lib/linux/libclient.a differ
diff --git a/src/external/3rd/library/perforce/lib/linux/librpc.a b/src/external/3rd/library/perforce/lib/linux/librpc.a
new file mode 100644
index 000000000..5ae498146
Binary files /dev/null and b/src/external/3rd/library/perforce/lib/linux/librpc.a differ
diff --git a/src/external/3rd/library/perforce/lib/linux/libsupp.a b/src/external/3rd/library/perforce/lib/linux/libsupp.a
new file mode 100644
index 000000000..32ecef4f2
Binary files /dev/null and b/src/external/3rd/library/perforce/lib/linux/libsupp.a differ
diff --git a/src/external/3rd/library/perforce/lib/win32/libclient.lib b/src/external/3rd/library/perforce/lib/win32/libclient.lib
new file mode 100644
index 000000000..127e07850
Binary files /dev/null and b/src/external/3rd/library/perforce/lib/win32/libclient.lib differ
diff --git a/src/external/3rd/library/perforce/lib/win32/librpc.lib b/src/external/3rd/library/perforce/lib/win32/librpc.lib
new file mode 100644
index 000000000..108d17874
Binary files /dev/null and b/src/external/3rd/library/perforce/lib/win32/librpc.lib differ
diff --git a/src/external/3rd/library/perforce/lib/win32/libsupp.lib b/src/external/3rd/library/perforce/lib/win32/libsupp.lib
new file mode 100644
index 000000000..62a2b4ae6
Binary files /dev/null and b/src/external/3rd/library/perforce/lib/win32/libsupp.lib differ
diff --git a/src/external/3rd/library/platform/monTest/Makefile b/src/external/3rd/library/platform/monTest/Makefile
new file mode 100644
index 000000000..3a3645c71
--- /dev/null
+++ b/src/external/3rd/library/platform/monTest/Makefile
@@ -0,0 +1,42 @@
+#################################################################
+## compiler data
+
+CC=g++
+LD=g++
+CFLAGS_RELEASE=-D_DEBUG -D_REENTRANT -D_GNU_SOURCE
+CFLAGS=-g ${CFLAGS_RELEASE}
+
+#################################################################
+## library data
+
+LIBS=MonApi UdpLibrary
+LDFLAGS=-L../../lib/linux-debug $(addprefix -l,$(LIBS))
+LDFLAGS_RELEASE=-L../../lib/linux-release $(addprefix -l,$(LIBS))
+
+#################################################################
+## object data
+
+OBJECTS=MonAPITest.o
+INCLUDE=-I. -I.. -I../..
+
+#################################################################
+## target data
+
+TARGET=montest
+
+${TARGET}: ${OBJECTS}
+ ${CC} -o $@ ${OBJECTS} ${LDFLAGS}
+# ${CC} -o $@ ${OBJECTS} ${LDFLAGS_RELEASE}
+
+clean:
+ rm *.o ${TARGET}
+
+all: clean ${TARGET}
+#################################################################
+## suffix data
+
+.SUFFIXES : .o .cpp
+
+.cpp.o :
+ ${CC} ${INCLUDE} ${CFLAGS} -c $<
+# ${CC} ${INCLUDE} ${CFLAGS_RELEASE} -c $<
diff --git a/src/external/3rd/library/platform/projects/Session/CommonAPI/Makefile b/src/external/3rd/library/platform/projects/Session/CommonAPI/Makefile
new file mode 100644
index 000000000..cc9e3164f
--- /dev/null
+++ b/src/external/3rd/library/platform/projects/Session/CommonAPI/Makefile
@@ -0,0 +1,134 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE=libCommonAPI.a
+OUTPUT_DIR=../../../lib
+OBJECT_DIR=.
+
+STL_HOME=../../../../stlport453
+
+INCLUDE_DIRS=../../../utils ../../../../udplibrary $(STL_HOME)/stlport
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG=$(CFLAGS) -D_DEBUG -g
+CFLAGS_RELEASE=$(CFLAGS) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR=$(OBJECT_DIR)/debug
+RELEASE_OBJ_DIR=$(OBJECT_DIR)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST=$(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST=$(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+DEPENDENCY_LIST = $(SOURCE_LIST:.cpp=.d)
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release: echoRelease releaseDirs $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug: debugDirs $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo Successfully build $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo
+
+all: clean debug release
+
+debugDirs :
+ @mkdir -p $(DEBUG_OBJ_DIR)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+# @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE): $(DEBUG_OBJ_LIST)
+# @echo linking $(DEBUG_DIR)/$(OUTPUT_FILE)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST)
+
+echoRelease :
+ @echo Building $(OUTPUT_FILE)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+releaseDirs :
+ @mkdir -p $(RELEASE_OBJ_DIR)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE): $(RELEASE_OBJ_LIST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST)
+
+# # # # # # # # # # # # # # # # # # # # #
+
+include .depend
+
+.PHONY : $(DEPENDENCY_LIST)
+
+depend: .depend $(DEPENDENCY_LIST)
+
+.depend:
+ touch .depend
+ make depend
+
+$(DEPENDENCY_LIST):
+ @echo Generating dependencies for $(notdir $(@:.d=.cpp))
+ @echo -n $(DEBUG_OBJ_DIR)/ >> .depend
+ @$(CPP) -MM $(addprefix -I,$(INCLUDE_DIRS)) $(@:.d=.cpp)>> .depend
+ @echo -n $(RELEASE_OBJ_DIR)/ >> .depend
+ @$(CPP) -MM $(addprefix -I,$(INCLUDE_DIRS)) $(@:.d=.cpp)>> .depend
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(DEBUG_OBJ_DIR)/*.o"
+ @rm -f $(DEBUG_OBJ_DIR)/*.o
+ @echo removing "$(RELEASE_OBJ_DIR)/*.o"
+ @rm -f $(RELEASE_OBJ_DIR)/*.o
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f .depend
+ @echo
+
+
diff --git a/src/external/3rd/library/platform/projects/Session/LoginAPI/Makefile b/src/external/3rd/library/platform/projects/Session/LoginAPI/Makefile
new file mode 100644
index 000000000..6b4e2272e
--- /dev/null
+++ b/src/external/3rd/library/platform/projects/Session/LoginAPI/Makefile
@@ -0,0 +1,135 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE=libLoginAPI.a
+OUTPUT_DIR=../../../lib
+OBJECT_DIR=.
+
+STL_HOME=../../../../stlport453
+
+INCLUDE_DIRS=../.. ../../../utils ../../../../udplibrary $(STL_HOME)/stlport
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG=$(CFLAGS) -D_DEBUG -g
+CFLAGS_RELEASE=$(CFLAGS) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR=$(OBJECT_DIR)/debug
+RELEASE_OBJ_DIR=$(OBJECT_DIR)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST=$(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST=$(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+DEPENDENCY_LIST = $(SOURCE_LIST:.cpp=.d)
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release: echoRelease releaseDirs $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug: debugDirs $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo Successfully build $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo
+
+all: clean debug release
+
+debugDirs :
+ @mkdir -p $(DEBUG_OBJ_DIR)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+# @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE): $(DEBUG_OBJ_LIST)
+# @echo linking $(DEBUG_DIR)/$(OUTPUT_FILE)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST)
+
+echoRelease :
+ @echo Building $(OUTPUT_FILE)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+releaseDirs :
+ @mkdir -p $(RELEASE_OBJ_DIR)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE): $(RELEASE_OBJ_LIST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+include .depend
+
+.PHONY : $(DEPENDENCY_LIST)
+
+depend: .depend $(DEPENDENCY_LIST)
+
+.depend:
+ touch .depend
+ make depend
+
+$(DEPENDENCY_LIST):
+ @echo Generating dependencies for $(notdir $(@:.d=.cpp))
+ @echo -n $(DEBUG_OBJ_DIR)/ >> .depend
+ @$(CPP) -MM $(addprefix -I,$(INCLUDE_DIRS)) $(@:.d=.cpp)>> .depend
+ @echo -n $(RELEASE_OBJ_DIR)/ >> .depend
+ @$(CPP) -MM $(addprefix -I,$(INCLUDE_DIRS)) $(@:.d=.cpp)>> .depend
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(DEBUG_OBJ_DIR)/*.o"
+ @rm -f $(DEBUG_OBJ_DIR)/*.o
+ @echo removing "$(RELEASE_OBJ_DIR)/*.o"
+ @rm -f $(RELEASE_OBJ_DIR)/*.o
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f .depend
+ @echo
+
+
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Archive.obj b/src/external/3rd/library/platform/utils/Base/debug/Archive.obj
new file mode 100644
index 000000000..77cc237a5
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Archive.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/AutoLog.obj b/src/external/3rd/library/platform/utils/Base/debug/AutoLog.obj
new file mode 100644
index 000000000..e695dc914
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/AutoLog.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Base.obj b/src/external/3rd/library/platform/utils/Base/debug/Base.obj
new file mode 100644
index 000000000..b4c7d1fdd
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Base.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/Base.lastbuildstate b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/Base.lastbuildstate
new file mode 100644
index 000000000..66a27e9fc
--- /dev/null
+++ b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/Base.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v120:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit
+Debug|Win32|C:\Users\Matt\Desktop\swg-src\src\build\win32\|
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/CL.read.1.tlog b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/CL.read.1.tlog
new file mode 100644
index 000000000..36384c9dc
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/CL.read.1.tlog differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/CL.write.1.tlog b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/CL.write.1.tlog
new file mode 100644
index 000000000..d9312a67a
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/CL.write.1.tlog differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/Lib-link.read.1.tlog b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/Lib-link.read.1.tlog
new file mode 100644
index 000000000..3df44c8d3
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/Lib-link.read.1.tlog differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/Lib-link.write.1.tlog b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/Lib-link.write.1.tlog
new file mode 100644
index 000000000..81c63fab8
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/Lib-link.write.1.tlog differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/cl.command.1.tlog b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/cl.command.1.tlog
new file mode 100644
index 000000000..d05528d16
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/cl.command.1.tlog differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/lib.command.1.tlog b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/lib.command.1.tlog
new file mode 100644
index 000000000..d7df37ee3
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Base.tlog/lib.command.1.tlog differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/BlockAllocator.obj b/src/external/3rd/library/platform/utils/Base/debug/BlockAllocator.obj
new file mode 100644
index 000000000..a1a482d28
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/BlockAllocator.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Config.obj b/src/external/3rd/library/platform/utils/Base/debug/Config.obj
new file mode 100644
index 000000000..926c120bf
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Config.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Event.obj b/src/external/3rd/library/platform/utils/Base/debug/Event.obj
new file mode 100644
index 000000000..b47fbe48a
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Event.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Logger.obj b/src/external/3rd/library/platform/utils/Base/debug/Logger.obj
new file mode 100644
index 000000000..6a762fa39
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Logger.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/MD5.obj b/src/external/3rd/library/platform/utils/Base/debug/MD5.obj
new file mode 100644
index 000000000..6d340942f
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/MD5.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Mutex.obj b/src/external/3rd/library/platform/utils/Base/debug/Mutex.obj
new file mode 100644
index 000000000..8601ac4af
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Mutex.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Platform.obj b/src/external/3rd/library/platform/utils/Base/debug/Platform.obj
new file mode 100644
index 000000000..9ec4df4cd
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Platform.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/ScopeLock.obj b/src/external/3rd/library/platform/utils/Base/debug/ScopeLock.obj
new file mode 100644
index 000000000..25b616683
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/ScopeLock.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Statistics.obj b/src/external/3rd/library/platform/utils/Base/debug/Statistics.obj
new file mode 100644
index 000000000..b848f0bc0
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Statistics.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/Thread.obj b/src/external/3rd/library/platform/utils/Base/debug/Thread.obj
new file mode 100644
index 000000000..f38bf41bf
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/Thread.obj differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/vc120.idb b/src/external/3rd/library/platform/utils/Base/debug/vc120.idb
new file mode 100644
index 000000000..ff5bd51a9
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/vc120.idb differ
diff --git a/src/external/3rd/library/platform/utils/Base/debug/vc120.pdb b/src/external/3rd/library/platform/utils/Base/debug/vc120.pdb
new file mode 100644
index 000000000..f4b621a28
Binary files /dev/null and b/src/external/3rd/library/platform/utils/Base/debug/vc120.pdb differ
diff --git a/src/external/3rd/library/platform/utils/Base/linux/Makefile b/src/external/3rd/library/platform/utils/Base/linux/Makefile
new file mode 100644
index 000000000..17142abb1
--- /dev/null
+++ b/src/external/3rd/library/platform/utils/Base/linux/Makefile
@@ -0,0 +1,199 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libBase.a
+OUTPUT_FILE_MT=libBase_MT.a
+OUTPUT_DIR=../../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+STL_HOME=../../../../stlport453
+
+INCLUDE_DIRS=.. ../ $(STL_HOME)/stlport
+
+SOURCE_DIRS=. ..
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+
+DEPENDENCY_LIST = $(SOURCE_LIST:.cpp=.d)
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+# # # # # # # # # # # # # # # # # # # # #
+
+include .depend
+
+.PHONY : $(DEPENDENCY_LIST)
+
+depend: .depend $(DEPENDENCY_LIST)
+
+.depend:
+ touch .depend
+ make depend
+
+$(DEPENDENCY_LIST):
+ @echo Generating dependencies for $(notdir $(@:.d=.cpp))
+ @echo -n $(DEBUG_OBJ_DIR_ST)/ >> .depend
+ @$(CPP) -MM $(addprefix -I,$(INCLUDE_DIRS)) $(@:.d=.cpp)>> .depend
+ @echo -n $(DEBUG_OBJ_DIR_MT)/ >> .depend
+ @$(CPP) -MM $(addprefix -I,$(INCLUDE_DIRS)) $(@:.d=.cpp) >> .depend
+ @echo -n $(RELEASE_OBJ_DIR_ST)/ >> .depend
+ @$(CPP) -MM $(addprefix -I,$(INCLUDE_DIRS)) $(@:.d=.cpp)>> .depend
+ @echo -n $(RELEASE_OBJ_DIR_MT)/ >> .depend
+ @$(CPP) -MM $(addprefix -I,$(INCLUDE_DIRS)) $(@:.d=.cpp) >> .depend
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f .depend
+ @echo
+
+
diff --git a/src/external/3rd/library/platform/utils/Base/solaris/Makefile b/src/external/3rd/library/platform/utils/Base/solaris/Makefile
new file mode 100644
index 000000000..9f6bdfcd3
--- /dev/null
+++ b/src/external/3rd/library/platform/utils/Base/solaris/Makefile
@@ -0,0 +1,171 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libBase.a
+OUTPUT_FILE_MT=libBase_MT.a
+OUTPUT_DIR=../../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=.. ../
+
+SOURCE_DIRS=. ..
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/qt/3.3.4/lib/README b/src/external/3rd/library/qt/3.3.4/lib/README
new file mode 100644
index 000000000..a9a58e2c3
--- /dev/null
+++ b/src/external/3rd/library/qt/3.3.4/lib/README
@@ -0,0 +1 @@
+If this directory is empty, you probably forgot to compile the Qt library.
diff --git a/src/external/3rd/library/qt/3.3.4/lib/designercore.lib b/src/external/3rd/library/qt/3.3.4/lib/designercore.lib
new file mode 100644
index 000000000..ae4c6a059
Binary files /dev/null and b/src/external/3rd/library/qt/3.3.4/lib/designercore.lib differ
diff --git a/src/external/3rd/library/qt/3.3.4/lib/designercore.prl b/src/external/3rd/library/qt/3.3.4/lib/designercore.prl
new file mode 100644
index 000000000..8c528c328
--- /dev/null
+++ b/src/external/3rd/library/qt/3.3.4/lib/designercore.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\3.3.4\tools\designer\designer
+QMAKE_PRO_INPUT = designer.pro
+QMAKE_PRL_TARGET = designercore
+QMAKE_PRL_CONFIG = qt warn_on release incremental flat link_prl precompile_header shared thread release nocrosscompiler canvas dialogs iconview kernel network opengl sql styles table tools widgets workspace xml minimal-config small-config medium-config large-config full-config release thread accessibility no-gif zlib png bigcodecs no-tablet incremental create_prl link_prl qt warn_on staticlib qmake_cache staticlib windows moc
+QMAKE_PRL_VERSION = 1.0.0
+QMAKE_PRL_LIBS = qt-mt334.lib qtmain.lib opengl32.lib glu32.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib imm32.lib winmm.lib wsock32.lib winspool.lib delayimp.lib qui.lib qassistantclient.lib
diff --git a/src/external/3rd/library/qt/3.3.4/lib/editor.lib b/src/external/3rd/library/qt/3.3.4/lib/editor.lib
new file mode 100644
index 000000000..e90700dd5
Binary files /dev/null and b/src/external/3rd/library/qt/3.3.4/lib/editor.lib differ
diff --git a/src/external/3rd/library/qt/3.3.4/lib/editor.prl b/src/external/3rd/library/qt/3.3.4/lib/editor.prl
new file mode 100644
index 000000000..b1269491a
--- /dev/null
+++ b/src/external/3rd/library/qt/3.3.4/lib/editor.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\3.3.4\tools\designer\editor
+QMAKE_PRO_INPUT = editor.pro
+QMAKE_PRL_TARGET = editor
+QMAKE_PRL_CONFIG = qt warn_on release incremental flat link_prl precompile_header shared thread release nocrosscompiler canvas dialogs iconview kernel network opengl sql styles table tools widgets workspace xml minimal-config small-config medium-config large-config full-config release thread accessibility no-gif zlib png bigcodecs no-tablet incremental create_prl link_prl qt warn_on staticlib staticlib windows moc
+QMAKE_PRL_VERSION = 1.0.0
+QMAKE_PRL_LIBS = qt-mt334.lib qtmain.lib opengl32.lib glu32.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib imm32.lib winmm.lib wsock32.lib winspool.lib delayimp.lib
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qassistantclient.lib b/src/external/3rd/library/qt/3.3.4/lib/qassistantclient.lib
new file mode 100644
index 000000000..c8a46cf73
Binary files /dev/null and b/src/external/3rd/library/qt/3.3.4/lib/qassistantclient.lib differ
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qassistantclient.prl b/src/external/3rd/library/qt/3.3.4/lib/qassistantclient.prl
new file mode 100644
index 000000000..55f2dfaff
--- /dev/null
+++ b/src/external/3rd/library/qt/3.3.4/lib/qassistantclient.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\3.3.4\tools\assistant\lib
+QMAKE_PRO_INPUT = lib.pro
+QMAKE_PRL_TARGET = qassistantclient
+QMAKE_PRL_CONFIG = qt warn_on release incremental flat link_prl precompile_header shared thread release nocrosscompiler canvas dialogs iconview kernel network opengl sql styles table tools widgets workspace xml minimal-config small-config medium-config large-config full-config release thread accessibility no-gif zlib png bigcodecs no-tablet incremental create_prl link_prl qt warn_on release staticlib staticlib windows moc
+QMAKE_PRL_VERSION = 1.0
+QMAKE_PRL_LIBS = qt-mt334.lib qtmain.lib opengl32.lib glu32.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib imm32.lib winmm.lib wsock32.lib winspool.lib delayimp.lib
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qaxcontainer.lib b/src/external/3rd/library/qt/3.3.4/lib/qaxcontainer.lib
new file mode 100644
index 000000000..8ad78d0d3
Binary files /dev/null and b/src/external/3rd/library/qt/3.3.4/lib/qaxcontainer.lib differ
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qaxcontainer.prl b/src/external/3rd/library/qt/3.3.4/lib/qaxcontainer.prl
new file mode 100644
index 000000000..00d4bc1d5
--- /dev/null
+++ b/src/external/3rd/library/qt/3.3.4/lib/qaxcontainer.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\3.3.4\extensions\activeqt\container
+QMAKE_PRO_INPUT = container.pro
+QMAKE_PRL_TARGET = qaxcontainer
+QMAKE_PRL_CONFIG = qt warn_on release incremental flat link_prl precompile_header shared thread release nocrosscompiler canvas dialogs iconview kernel network opengl sql styles table tools widgets workspace xml minimal-config small-config medium-config large-config full-config release thread accessibility no-gif zlib png bigcodecs no-tablet incremental create_prl link_prl qt warn_on staticlib windows moc
+QMAKE_PRL_LIBS = qt-mt334.lib qtmain.lib opengl32.lib glu32.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib imm32.lib winmm.lib wsock32.lib winspool.lib delayimp.lib
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qaxserver.lib b/src/external/3rd/library/qt/3.3.4/lib/qaxserver.lib
new file mode 100644
index 000000000..eb21d325b
Binary files /dev/null and b/src/external/3rd/library/qt/3.3.4/lib/qaxserver.lib differ
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qaxserver.prl b/src/external/3rd/library/qt/3.3.4/lib/qaxserver.prl
new file mode 100644
index 000000000..449cb03b6
--- /dev/null
+++ b/src/external/3rd/library/qt/3.3.4/lib/qaxserver.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\3.3.4\extensions\activeqt\control
+QMAKE_PRO_INPUT = control.pro
+QMAKE_PRL_TARGET = qaxserver
+QMAKE_PRL_CONFIG = qt warn_on release incremental flat link_prl precompile_header shared thread release nocrosscompiler canvas dialogs iconview kernel network opengl sql styles table tools widgets workspace xml minimal-config small-config medium-config large-config full-config release thread accessibility no-gif zlib png bigcodecs no-tablet incremental create_prl link_prl qt warn_off staticlib staticlib windows moc
+QMAKE_PRL_LIBS = qt-mt334.lib qtmain.lib opengl32.lib glu32.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib imm32.lib winmm.lib wsock32.lib winspool.lib delayimp.lib
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qnp.prl b/src/external/3rd/library/qt/3.3.4/lib/qnp.prl
new file mode 100644
index 000000000..1dd34bd41
--- /dev/null
+++ b/src/external/3rd/library/qt/3.3.4/lib/qnp.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\3.3.4\extensions\nsplugin\src
+QMAKE_PRO_INPUT = qnp.pro
+QMAKE_PRL_TARGET = qnp
+QMAKE_PRL_CONFIG = qt warn_on release incremental flat link_prl precompile_header shared thread release nocrosscompiler canvas dialogs iconview kernel network opengl sql styles table tools widgets workspace xml minimal-config small-config medium-config large-config full-config release thread accessibility no-gif zlib png bigcodecs no-tablet incremental create_prl link_prl qt x11 release staticlib staticlib windows moc
+QMAKE_PRL_VERSION = 0.4
+QMAKE_PRL_LIBS = qt-mt334.lib qtmain.lib opengl32.lib glu32.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib imm32.lib winmm.lib wsock32.lib winspool.lib delayimp.lib qtmain.lib
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qt-mt.prl b/src/external/3rd/library/qt/3.3.4/lib/qt-mt.prl
new file mode 100644
index 000000000..c88c55f79
--- /dev/null
+++ b/src/external/3rd/library/qt/3.3.4/lib/qt-mt.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\3.3.4\src
+QMAKE_PRO_INPUT = qt.pro
+QMAKE_PRL_TARGET = qt-mt
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT QT_ACCESSIBILITY_SUPPORT QT_NO_DEBUG
+QMAKE_PRL_CONFIG = qt warn_on release flat link_prl precompile_header shared thread release nocrosscompiler canvas dialogs iconview kernel network opengl sql styles table tools widgets workspace xml minimal-config small-config medium-config large-config full-config release thread accessibility no-gif zlib png bigcodecs no-tablet create_prl link_prl qt warn_on depend_includepath qmake_cache zlib dll windows moc
+QMAKE_PRL_VERSION = 3.3.4
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qt-mt334.dll b/src/external/3rd/library/qt/3.3.4/lib/qt-mt334.dll
new file mode 100644
index 000000000..18b8f4900
Binary files /dev/null and b/src/external/3rd/library/qt/3.3.4/lib/qt-mt334.dll differ
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qt-mt334.exp b/src/external/3rd/library/qt/3.3.4/lib/qt-mt334.exp
new file mode 100644
index 000000000..95371aec4
Binary files /dev/null and b/src/external/3rd/library/qt/3.3.4/lib/qt-mt334.exp differ
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qt-mt334.lib b/src/external/3rd/library/qt/3.3.4/lib/qt-mt334.lib
new file mode 100644
index 000000000..1bacdeaf6
Binary files /dev/null and b/src/external/3rd/library/qt/3.3.4/lib/qt-mt334.lib differ
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qtmain.lib b/src/external/3rd/library/qt/3.3.4/lib/qtmain.lib
new file mode 100644
index 000000000..5191cec87
Binary files /dev/null and b/src/external/3rd/library/qt/3.3.4/lib/qtmain.lib differ
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qtmain.prl b/src/external/3rd/library/qt/3.3.4/lib/qtmain.prl
new file mode 100644
index 000000000..354c3cc81
--- /dev/null
+++ b/src/external/3rd/library/qt/3.3.4/lib/qtmain.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\3.3.4\src
+QMAKE_PRO_INPUT = qtmain.pro
+QMAKE_PRL_TARGET = qtmain
+QMAKE_PRL_CONFIG = qt warn_on release incremental flat link_prl precompile_header shared thread release nocrosscompiler canvas dialogs iconview kernel network opengl sql styles table tools widgets workspace xml minimal-config small-config medium-config large-config full-config release thread accessibility no-gif zlib png bigcodecs no-tablet incremental create_prl link_prl qt staticlib warn_on release png zlib staticlib windows moc
+QMAKE_PRL_VERSION = 3.1.0
+QMAKE_PRL_LIBS = qt-mt334.lib qtmain.lib opengl32.lib glu32.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib imm32.lib winmm.lib wsock32.lib winspool.lib delayimp.lib
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qui.lib b/src/external/3rd/library/qt/3.3.4/lib/qui.lib
new file mode 100644
index 000000000..c411d8039
Binary files /dev/null and b/src/external/3rd/library/qt/3.3.4/lib/qui.lib differ
diff --git a/src/external/3rd/library/qt/3.3.4/lib/qui.prl b/src/external/3rd/library/qt/3.3.4/lib/qui.prl
new file mode 100644
index 000000000..cb3a2cd4e
--- /dev/null
+++ b/src/external/3rd/library/qt/3.3.4/lib/qui.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\3.3.4\tools\designer\uilib
+QMAKE_PRO_INPUT = uilib.pro
+QMAKE_PRL_TARGET = qui
+QMAKE_PRL_CONFIG = qt warn_on release incremental flat link_prl precompile_header shared thread release nocrosscompiler canvas dialogs iconview kernel network opengl sql styles table tools widgets workspace xml minimal-config small-config medium-config large-config full-config release thread accessibility no-gif zlib png bigcodecs no-tablet incremental create_prl link_prl qt warn_on release static staticlib windows moc
+QMAKE_PRL_VERSION = 1.0.0
+QMAKE_PRL_LIBS = qt-mt334.lib qtmain.lib opengl32.lib glu32.lib kernel32.lib user32.lib gdi32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib imm32.lib winmm.lib wsock32.lib winspool.lib delayimp.lib
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QAxContainer.lib b/src/external/3rd/library/qt/4.1.0/lib/QAxContainer.lib
new file mode 100644
index 000000000..d0d9ad3fd
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QAxContainer.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QAxContainer.prl b/src/external/3rd/library/qt/4.1.0/lib/QAxContainer.prl
new file mode 100644
index 000000000..318bcc829
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QAxContainer.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\activeqt\container
+QMAKE_PRO_INPUT = container.pro
+QMAKE_PRL_TARGET = QAxContainer
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt warn_on staticlib release ReleaseBuild Release build_pass no_autoqmake static staticlib moc thread
+QMAKE_PRL_LIBS = ole32.lib oleaut32.lib user32.lib gdi32.lib advapi32.lib C:\Qt\4.1.0\lib\QtGui4.lib C:\Qt\4.1.0\lib\QtCore4.lib
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QAxContainerd.lib b/src/external/3rd/library/qt/4.1.0/lib/QAxContainerd.lib
new file mode 100644
index 000000000..033c2244b
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QAxContainerd.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QAxContainerd.prl b/src/external/3rd/library/qt/4.1.0/lib/QAxContainerd.prl
new file mode 100644
index 000000000..e26706cd0
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QAxContainerd.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\activeqt\container
+QMAKE_PRO_INPUT = container.pro
+QMAKE_PRL_TARGET = QAxContainerd
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt warn_on staticlib debug DebugBuild Debug build_pass no_autoqmake static staticlib moc thread
+QMAKE_PRL_LIBS = ole32.lib oleaut32.lib user32.lib gdi32.lib advapi32.lib C:\Qt\4.1.0\lib\QtGuid4.lib C:\Qt\4.1.0\lib\QtCored4.lib
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QAxServer.lib b/src/external/3rd/library/qt/4.1.0/lib/QAxServer.lib
new file mode 100644
index 000000000..80b00f46a
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QAxServer.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QAxServer.prl b/src/external/3rd/library/qt/4.1.0/lib/QAxServer.prl
new file mode 100644
index 000000000..0a717a69d
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QAxServer.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\activeqt\control
+QMAKE_PRO_INPUT = control.pro
+QMAKE_PRL_TARGET = QAxServer
+QMAKE_PRL_CONFIG = lex yacc uic resources windows release ReleaseBuild Release build_pass qt release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt warn_off staticlib release ReleaseBuild Release build_pass no_autoqmake static staticlib moc thread
+QMAKE_PRL_LIBS = user32.lib ole32.lib oleaut32.lib gdi32.lib C:\Qt\4.1.0\lib\QtGui4.lib C:\Qt\4.1.0\lib\QtCore4.lib
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QAxServerd.lib b/src/external/3rd/library/qt/4.1.0/lib/QAxServerd.lib
new file mode 100644
index 000000000..9f0c87e44
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QAxServerd.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QAxServerd.prl b/src/external/3rd/library/qt/4.1.0/lib/QAxServerd.prl
new file mode 100644
index 000000000..79d38dc5e
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QAxServerd.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\activeqt\control
+QMAKE_PRO_INPUT = control.pro
+QMAKE_PRL_TARGET = QAxServerd
+QMAKE_PRL_CONFIG = lex yacc debug uic resources windows debug DebugBuild Debug build_pass qt incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt warn_off staticlib debug DebugBuild Debug build_pass no_autoqmake static staticlib moc thread
+QMAKE_PRL_LIBS = user32.lib ole32.lib oleaut32.lib gdi32.lib C:\Qt\4.1.0\lib\QtGuid4.lib C:\Qt\4.1.0\lib\QtCored4.lib
diff --git a/src/external/3rd/library/qt/4.1.0/lib/Qt3Support.prl b/src/external/3rd/library/qt/4.1.0/lib/Qt3Support.prl
new file mode 100644
index 000000000..72345b4aa
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/Qt3Support.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\qt3support
+QMAKE_PRO_INPUT = qt3support.pro
+QMAKE_PRL_TARGET = Qt3Support
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release shared stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib release ReleaseBuild Release build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/Qt3Support4.lib b/src/external/3rd/library/qt/4.1.0/lib/Qt3Support4.lib
new file mode 100644
index 000000000..50bb37fa6
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/Qt3Support4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/Qt3Supportd.prl b/src/external/3rd/library/qt/4.1.0/lib/Qt3Supportd.prl
new file mode 100644
index 000000000..5491cf7cc
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/Qt3Supportd.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\qt3support
+QMAKE_PRO_INPUT = qt3support.pro
+QMAKE_PRL_TARGET = Qt3Supportd
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target shared stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib debug DebugBuild Debug build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/Qt3Supportd4.lib b/src/external/3rd/library/qt/4.1.0/lib/Qt3Supportd4.lib
new file mode 100644
index 000000000..746581118
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/Qt3Supportd4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClient.lib b/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClient.lib
new file mode 100644
index 000000000..282054db4
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClient.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClient.prl b/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClient.prl
new file mode 100644
index 000000000..541239268
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClient.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\tools\assistant\lib
+QMAKE_PRO_INPUT = lib.pro
+QMAKE_PRL_TARGET = QtAssistantClient
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt warn_on staticlib debug_and_release release ReleaseBuild Release build_pass no_autoqmake static staticlib moc thread
+QMAKE_PRL_VERSION = 1
+QMAKE_PRL_LIBS = C:\Qt\4.1.0\lib\QtGui4.lib C:\Qt\4.1.0\lib\QtNetwork4.lib C:\Qt\4.1.0\lib\QtCore4.lib
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClientd.lib b/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClientd.lib
new file mode 100644
index 000000000..de5ddd63d
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClientd.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClientd.prl b/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClientd.prl
new file mode 100644
index 000000000..2f33f3dc0
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtAssistantClientd.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\tools\assistant\lib
+QMAKE_PRO_INPUT = lib.pro
+QMAKE_PRL_TARGET = QtAssistantClientd
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt warn_on staticlib debug_and_release debug DebugBuild Debug build_pass no_autoqmake static staticlib moc thread
+QMAKE_PRL_VERSION = 1
+QMAKE_PRL_LIBS = C:\Qt\4.1.0\lib\QtGuid4.lib C:\Qt\4.1.0\lib\QtNetworkd4.lib C:\Qt\4.1.0\lib\QtCored4.lib
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtCore.prl b/src/external/3rd/library/qt/4.1.0/lib/QtCore.prl
new file mode 100644
index 000000000..35bcc9473
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtCore.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\corelib
+QMAKE_PRO_INPUT = corelib.pro
+QMAKE_PRL_TARGET = QtCore
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release shared stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib release ReleaseBuild Release build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtCore4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtCore4.lib
new file mode 100644
index 000000000..da1de8bad
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtCore4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtCored.prl b/src/external/3rd/library/qt/4.1.0/lib/QtCored.prl
new file mode 100644
index 000000000..49a4bf3c0
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtCored.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\corelib
+QMAKE_PRO_INPUT = corelib.pro
+QMAKE_PRL_TARGET = QtCored
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target shared stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib debug DebugBuild Debug build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtCored4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtCored4.lib
new file mode 100644
index 000000000..217a2ee74
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtCored4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtDesigner.prl b/src/external/3rd/library/qt/4.1.0/lib/QtDesigner.prl
new file mode 100644
index 000000000..499b18be7
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtDesigner.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\tools\designer\src\lib
+QMAKE_PRO_INPUT = lib.pro
+QMAKE_PRL_TARGET = QtDesigner
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release shared stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt debug_and_release dll debug_and_release release ReleaseBuild Release build_pass no_autoqmake shared dll moc thread
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtDesigner4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtDesigner4.lib
new file mode 100644
index 000000000..a88ce3026
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtDesigner4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponents.prl b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponents.prl
new file mode 100644
index 000000000..9399391cc
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponents.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\tools\designer\src\components\lib
+QMAKE_PRO_INPUT = lib.pro
+QMAKE_PRL_TARGET = QtDesignerComponents
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release shared stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt debug_and_release depend_prl dll debug_and_release release ReleaseBuild Release build_pass no_autoqmake shared dll moc thread
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponents4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponents4.lib
new file mode 100644
index 000000000..d59854361
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponents4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponentsd.prl b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponentsd.prl
new file mode 100644
index 000000000..724c89676
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponentsd.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\tools\designer\src\components\lib
+QMAKE_PRO_INPUT = lib.pro
+QMAKE_PRL_TARGET = QtDesignerComponentsd
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target shared stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt debug_and_release depend_prl dll debug_and_release debug DebugBuild Debug build_pass no_autoqmake shared dll moc thread
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponentsd4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponentsd4.lib
new file mode 100644
index 000000000..9b62b8220
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerComponentsd4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtDesignerd.prl b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerd.prl
new file mode 100644
index 000000000..c3dc7b8c5
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerd.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\tools\designer\src\lib
+QMAKE_PRO_INPUT = lib.pro
+QMAKE_PRL_TARGET = QtDesignerd
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target shared stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt debug_and_release dll debug_and_release debug DebugBuild Debug build_pass no_autoqmake shared dll moc thread
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtDesignerd4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerd4.lib
new file mode 100644
index 000000000..9e84a385e
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtDesignerd4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtGui.prl b/src/external/3rd/library/qt/4.1.0/lib/QtGui.prl
new file mode 100644
index 000000000..ad5c24f8d
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtGui.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\gui
+QMAKE_PRO_INPUT = gui.pro
+QMAKE_PRL_TARGET = QtGui
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release shared stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib pdf release ReleaseBuild Release build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtGui4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtGui4.lib
new file mode 100644
index 000000000..d36c58fbf
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtGui4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtGuid.prl b/src/external/3rd/library/qt/4.1.0/lib/QtGuid.prl
new file mode 100644
index 000000000..c0bb1cd49
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtGuid.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\gui
+QMAKE_PRO_INPUT = gui.pro
+QMAKE_PRL_TARGET = QtGuid
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target shared stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib pdf debug DebugBuild Debug build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtGuid4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtGuid4.lib
new file mode 100644
index 000000000..e98ccad12
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtGuid4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtNetwork.prl b/src/external/3rd/library/qt/4.1.0/lib/QtNetwork.prl
new file mode 100644
index 000000000..9aa538a15
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtNetwork.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\network
+QMAKE_PRO_INPUT = network.pro
+QMAKE_PRL_TARGET = QtNetwork
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release shared stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib release ReleaseBuild Release build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtNetwork4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtNetwork4.lib
new file mode 100644
index 000000000..3f14bcbd7
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtNetwork4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtNetworkd.prl b/src/external/3rd/library/qt/4.1.0/lib/QtNetworkd.prl
new file mode 100644
index 000000000..55325005c
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtNetworkd.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\network
+QMAKE_PRO_INPUT = network.pro
+QMAKE_PRL_TARGET = QtNetworkd
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target shared stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib debug DebugBuild Debug build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtNetworkd4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtNetworkd4.lib
new file mode 100644
index 000000000..08292655d
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtNetworkd4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtOpenGL.prl b/src/external/3rd/library/qt/4.1.0/lib/QtOpenGL.prl
new file mode 100644
index 000000000..882ff3b7f
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtOpenGL.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\opengl
+QMAKE_PRO_INPUT = opengl.pro
+QMAKE_PRL_TARGET = QtOpenGL
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release shared stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib opengl release ReleaseBuild Release build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtOpenGL4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtOpenGL4.lib
new file mode 100644
index 000000000..d91988477
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtOpenGL4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtOpenGLd.prl b/src/external/3rd/library/qt/4.1.0/lib/QtOpenGLd.prl
new file mode 100644
index 000000000..acb35f2b9
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtOpenGLd.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\opengl
+QMAKE_PRO_INPUT = opengl.pro
+QMAKE_PRL_TARGET = QtOpenGLd
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target shared stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib opengl debug DebugBuild Debug build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtOpenGLd4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtOpenGLd4.lib
new file mode 100644
index 000000000..ee1a1ab94
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtOpenGLd4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtSql.prl b/src/external/3rd/library/qt/4.1.0/lib/QtSql.prl
new file mode 100644
index 000000000..aa8811492
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtSql.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\sql
+QMAKE_PRO_INPUT = sql.pro
+QMAKE_PRL_TARGET = QtSql
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release shared stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib release ReleaseBuild Release build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtSql4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtSql4.lib
new file mode 100644
index 000000000..80e05bdc4
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtSql4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtSqld.prl b/src/external/3rd/library/qt/4.1.0/lib/QtSqld.prl
new file mode 100644
index 000000000..496c861b2
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtSqld.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\sql
+QMAKE_PRO_INPUT = sql.pro
+QMAKE_PRL_TARGET = QtSqld
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target shared stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib debug DebugBuild Debug build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtSqld4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtSqld4.lib
new file mode 100644
index 000000000..7ae147c7d
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtSqld4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtSvg.prl b/src/external/3rd/library/qt/4.1.0/lib/QtSvg.prl
new file mode 100644
index 000000000..cd3601cf0
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtSvg.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\svg
+QMAKE_PRO_INPUT = svg.pro
+QMAKE_PRL_TARGET = QtSvg
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release shared stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib release ReleaseBuild Release build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtSvg4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtSvg4.lib
new file mode 100644
index 000000000..7a7ee20d3
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtSvg4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtSvgd.prl b/src/external/3rd/library/qt/4.1.0/lib/QtSvgd.prl
new file mode 100644
index 000000000..5d23bb5cb
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtSvgd.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\svg
+QMAKE_PRO_INPUT = svg.pro
+QMAKE_PRL_TARGET = QtSvgd
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target shared stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib debug DebugBuild Debug build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtSvgd4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtSvgd4.lib
new file mode 100644
index 000000000..0c41d351b
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtSvgd4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtTest.prl b/src/external/3rd/library/qt/4.1.0/lib/QtTest.prl
new file mode 100644
index 000000000..dd80c8d01
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtTest.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\tools\qtestlib\src
+QMAKE_PRO_INPUT = src.pro
+QMAKE_PRL_TARGET = QtTest
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release shared stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass dll release ReleaseBuild Release build_pass no_autoqmake shared dll moc thread
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtTest4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtTest4.lib
new file mode 100644
index 000000000..0a229d279
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtTest4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtTest_debug.prl b/src/external/3rd/library/qt/4.1.0/lib/QtTest_debug.prl
new file mode 100644
index 000000000..066c7f3cd
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtTest_debug.prl
@@ -0,0 +1,5 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\tools\qtestlib\src
+QMAKE_PRO_INPUT = src.pro
+QMAKE_PRL_TARGET = QtTest_debug
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target shared stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass dll debug DebugBuild Debug build_pass no_autoqmake shared dll moc thread
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtTest_debug4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtTest_debug4.lib
new file mode 100644
index 000000000..c11386b95
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtTest_debug4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtUiTools.lib b/src/external/3rd/library/qt/4.1.0/lib/QtUiTools.lib
new file mode 100644
index 000000000..9fb98a8da
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtUiTools.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtUiTools.prl b/src/external/3rd/library/qt/4.1.0/lib/QtUiTools.prl
new file mode 100644
index 000000000..e067f8427
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtUiTools.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\tools\designer\src\uitools
+QMAKE_PRO_INPUT = uitools.pro
+QMAKE_PRL_TARGET = QtUiTools
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt staticlib release ReleaseBuild Release build_pass no_autoqmake static staticlib moc thread
+QMAKE_PRL_VERSION = 4
+QMAKE_PRL_LIBS = C:\Qt\4.1.0\lib\QtXml4.lib C:\Qt\4.1.0\lib\QtGui4.lib C:\Qt\4.1.0\lib\QtCore4.lib
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtUiToolsd.prl b/src/external/3rd/library/qt/4.1.0/lib/QtUiToolsd.prl
new file mode 100644
index 000000000..0f85194f1
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtUiToolsd.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\tools\designer\src\uitools
+QMAKE_PRO_INPUT = uitools.pro
+QMAKE_PRL_TARGET = QtUiToolsd
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt staticlib debug DebugBuild Debug build_pass no_autoqmake static staticlib moc thread
+QMAKE_PRL_VERSION = 4
+QMAKE_PRL_LIBS = C:\Qt\4.1.0\lib\QtXmld4.lib C:\Qt\4.1.0\lib\QtGuid4.lib C:\Qt\4.1.0\lib\QtCored4.lib
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtXml.prl b/src/external/3rd/library/qt/4.1.0/lib/QtXml.prl
new file mode 100644
index 000000000..f5dc64b3c
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtXml.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\xml
+QMAKE_PRO_INPUT = xml.pro
+QMAKE_PRL_TARGET = QtXml
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass qt warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release shared stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib release ReleaseBuild Release build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtXml4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtXml4.lib
new file mode 100644
index 000000000..671826f2e
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtXml4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtXmld.prl b/src/external/3rd/library/qt/4.1.0/lib/QtXmld.prl
new file mode 100644
index 000000000..90ded758f
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/QtXmld.prl
@@ -0,0 +1,6 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\xml
+QMAKE_PRO_INPUT = xml.pro
+QMAKE_PRL_TARGET = QtXmld
+QMAKE_PRL_DEFINES = QT_SHARED QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass qt warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target shared stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release zlib debug DebugBuild Debug build_pass no_autoqmake moc thread dll shared
+QMAKE_PRL_VERSION = 4
diff --git a/src/external/3rd/library/qt/4.1.0/lib/QtXmld4.lib b/src/external/3rd/library/qt/4.1.0/lib/QtXmld4.lib
new file mode 100644
index 000000000..5908fbcf8
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/QtXmld4.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/README b/src/external/3rd/library/qt/4.1.0/lib/README
new file mode 100644
index 000000000..a9a58e2c3
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/README
@@ -0,0 +1 @@
+If this directory is empty, you probably forgot to compile the Qt library.
diff --git a/src/external/3rd/library/qt/4.1.0/lib/qtmain.lib b/src/external/3rd/library/qt/4.1.0/lib/qtmain.lib
new file mode 100644
index 000000000..bed8cd289
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/qtmain.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/qtmain.prl b/src/external/3rd/library/qt/4.1.0/lib/qtmain.prl
new file mode 100644
index 000000000..73416f898
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/qtmain.prl
@@ -0,0 +1,7 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\winmain
+QMAKE_PRO_INPUT = winmain.pro
+QMAKE_PRL_TARGET = qtmain
+QMAKE_PRL_DEFINES = QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on uic resources windows release ReleaseBuild Release build_pass warn_on release incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target release stl exceptions rtti minimal-config small-config medium-config large-config full-config release incremental create_prl link_prl depend_includepath release ReleaseBuild Release build_pass staticlib warn_on png zlib qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release static zlib release ReleaseBuild Release build_pass no_autoqmake staticlib static moc thread
+QMAKE_PRL_VERSION = 4
+QMAKE_PRL_LIBS =
diff --git a/src/external/3rd/library/qt/4.1.0/lib/qtmaind.lib b/src/external/3rd/library/qt/4.1.0/lib/qtmaind.lib
new file mode 100644
index 000000000..b6c9eaf35
Binary files /dev/null and b/src/external/3rd/library/qt/4.1.0/lib/qtmaind.lib differ
diff --git a/src/external/3rd/library/qt/4.1.0/lib/qtmaind.prl b/src/external/3rd/library/qt/4.1.0/lib/qtmaind.prl
new file mode 100644
index 000000000..42dd5760b
--- /dev/null
+++ b/src/external/3rd/library/qt/4.1.0/lib/qtmaind.prl
@@ -0,0 +1,7 @@
+QMAKE_PRL_BUILD_DIR = C:\Qt\4.1.0\src\winmain
+QMAKE_PRO_INPUT = winmain.pro
+QMAKE_PRL_TARGET = qtmaind
+QMAKE_PRL_DEFINES = QT_THREAD_SUPPORT
+QMAKE_PRL_CONFIG = lex yacc warn_on debug uic resources windows debug DebugBuild Debug build_pass warn_on incremental flat link_prl precompile_header copy_dir_files cd_change_global no_delete_multiple_files debug_and_release debug_and_release_target stl exceptions rtti minimal-config small-config medium-config large-config full-config incremental create_prl link_prl depend_includepath debug DebugBuild Debug build_pass staticlib warn_on png zlib qt_install_headers qt warn_on depend_includepath qmake_cache target_qt debug_and_release static zlib debug DebugBuild Debug build_pass no_autoqmake staticlib static moc thread
+QMAKE_PRL_VERSION = 4
+QMAKE_PRL_LIBS =
diff --git a/src/external/3rd/library/soePlatform/Base/linux/Makefile b/src/external/3rd/library/soePlatform/Base/linux/Makefile
new file mode 100644
index 000000000..c6090afef
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/Base/linux/Makefile
@@ -0,0 +1,106 @@
+########################################
+# Project specific macros
+
+OUTPUT_DEBUG=libbase.so
+OUTPUT_RELEASE=libbase.so
+
+SOURCE_SHARED_DIR=..
+SOURCE_PLATFORM_DIR=.
+INCLUDE_DIRS=$(SOURCE_SHARED_DIR) $(SOURCE_PLATFORM_DIR)
+
+LIBRARY_DIRS_DEBUG=
+LIBRARY_DIRS_RELEASE=
+LIBS_DEBUG=
+LIBS_RELEASE=
+
+DEBUG_DIR=../../compile/Base/linux/Debug
+RELEASE_DIR=../../compile/Base/linux/Release
+
+
+########################################
+# Platform specific macros
+
+LIBS_PLATFORM=pthread
+
+CFLAGS_DEFINES=-Wall -Wno-unknown-pragmas -D_REENTRANT -D_GNU_SOURCE
+CFLAGS_PLATFORM_DEBUG=-g -D_DEBUG=1
+CFLAGS_PLATFORM_RELEASE=-O2
+LINK_FLAGS=-shared
+
+CC=gcc
+CPP=g++
+LINK=ld
+
+
+########################################
+# List Macros
+
+SRC_LIST_C=$(shell find $(SOURCE_SHARED_DIR) -name "*.c" -maxdepth 1) $(shell find $(SOURCE_PLATFORM_DIR) -name "*.c" -maxdepth 1)
+SRC_LIST_CPP=$(shell find $(SOURCE_SHARED_DIR) -name "*.cpp" -maxdepth 1) $(shell find $(SOURCE_PLATFORM_DIR) -name "*.cpp" -maxdepth 1)
+DEBUG_OBJ_LIST_C=$(addprefix $(DEBUG_DIR)/, $(notdir $(SRC_LIST_C:.c=.o)))
+RELEASE_OBJ_LIST_C=$(addprefix $(RELEASE_DIR)/, $(notdir $(SRC_LIST_C:.c=.o)))
+DEBUG_OBJ_LIST_CPP=$(addprefix $(DEBUG_DIR)/, $(notdir $(SRC_LIST_CPP:.cpp=.o)))
+RELEASE_OBJ_LIST_CPP=$(addprefix $(RELEASE_DIR)/, $(notdir $(SRC_LIST_CPP:.cpp=.o)))
+
+
+########################################
+# Flag Macros
+
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIRS))
+CFLAGS= $(INCLUDE_FLAGS) $(CFLAGS_DEFINES)
+CFLAGS_DEBUG= $(CFLAGS) $(CFLAGS_PLATFORM_DEBUG)
+CFLAGS_RELEASE= $(CFLAGS) $(CFLAGS_PLATFORM_RELEASE)
+
+LFLAGS_DEBUG=$(addprefix -L,$(LIBRARY_DIRS_DEBUG)) $(addprefix -l,$(LIBS_DEBUG)) $(addprefix -l,$(LIBS_PLATFORM))
+LFLAGS_RELEASE=$(addprefix -L,$(LIBRARY_DIRS_RELEASE)) $(addprefix -l,$(LIBS_RELEASE)) $(addprefix -l,$(LIBS_PLATFORM))
+
+
+
+########################################
+# Target Rules
+
+all: debug release
+
+debug: $(DEBUG_DIR) $(DEBUG_DIR)/$(OUTPUT_DEBUG)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_DEBUG)
+
+release: $(RELEASE_DIR) $(RELEASE_DIR)/$(OUTPUT_RELEASE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_RELEASE)
+
+$(DEBUG_OBJ_LIST_C): $(SRC_LIST)
+ @echo compiling $(filter %/$(notdir $(basename $@)).c,$(SRC_LIST_C))
+ @$(CC) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SRC_LIST_C))
+
+$(DEBUG_OBJ_LIST_CPP): $(SRC_LIST)
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SRC_LIST_CPP))
+ @$(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SRC_LIST_CPP))
+
+$(DEBUG_DIR) :
+ @mkdir -p $@
+
+$(DEBUG_DIR)/$(OUTPUT_DEBUG): $(DEBUG_OBJ_LIST_C) $(DEBUG_OBJ_LIST_CPP) $(DEBUG_DIR)
+ @echo linking $(DEBUG_DIR)/$(OUTPUT_DEBUG)
+ @$(LINK) $(LINK_FLAGS) -o $@ $(DEBUG_OBJ_LIST_C) $(DEBUG_OBJ_LIST_CPP) $(LFLAGS_DEBUG)
+
+$(RELEASE_OBJ_LIST_C): $(SRC_LIST)
+ @echo compiling $(filter %/$(notdir $(basename $@)).c,$(SRC_LIST_C))
+ @$(CC) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SRC_LIST_C))
+
+$(RELEASE_OBJ_LIST_CPP): $(SRC_LIST)
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SRC_LIST_CPP))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SRC_LIST_CPP))
+
+$(RELEASE_DIR) :
+ @mkdir -p $@
+
+$(RELEASE_DIR)/$(OUTPUT_RELEASE): $(RELEASE_OBJ_LIST_C) $(RELEASE_OBJ_LIST_CPP) $(RELEASE_DIR)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_RELEASE)
+ @$(LINK) $(LINK_FLAGS) -o $@ $(RELEASE_OBJ_LIST_C) $(RELEASE_OBJ_LIST_CPP) $(LFLAGS_RELEASE)
+
+clean:
+ rm -f $(DEBUG_DIR)/*.o
+ rm -f $(RELEASE_DIR)/*.o
+ rm -f $(DEBUG_DIR)/$(OUTPUT_DEBUG)
+ rm -f $(RELEASE_DIR)/$(OUTPUT_RELEASE)
+
+
diff --git a/src/external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/CSAssistStressTest/Makefile b/src/external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/CSAssistStressTest/Makefile
new file mode 100644
index 000000000..0a54d58a1
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/CSAssistStressTest/Makefile
@@ -0,0 +1,92 @@
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE=CSAssistStressTest
+OUTPUT_DIR=.
+OBJECT_DIR=./obj
+
+INCLUDE_DIRS=$(STL_HOME)/stlport . ../ ../../../../utils
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=../debug $(STL_HOME)/lib
+LIBRARY_FILES=CSAssistgameapi pthread stlport_gcc dl
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIRS))
+CFLAGS=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG=$(CFLAGS) -D_DEBUG -g
+CFLAGS_RELEASE=$(CFLAGS) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -L,$(LIBRARY_DIRS)) $(addprefix -l,$(LIBRARY_FILES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER)
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=g++
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR=$(OBJECT_DIR)/debug
+RELEASE_OBJ_DIR=$(OBJECT_DIR)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+SOURCE_LIST=$(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(shell find $(x) -name "*.cpp" -maxdepth 1))
+DEBUG_OBJ_LIST=$(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST=$(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release: release_dir $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug: debug_dir $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo
+
+all: clean debug release
+
+debug_dir:
+ @mkdir -p $(DEBUG_OBJ_DIR)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST)) %.cpp
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE): $(DEBUG_OBJ_LIST)
+ @echo linking $(DEBUG_DIR)/$(OUTPUT_FILE)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST)
+
+release_dir:
+ @mkdir -p $(RELEASE_OBJ_DIR)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE): $(RELEASE_OBJ_LIST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST)
+
+clean:
+ @echo removing "$(DEBUG_OBJ_DIR)/*.o"
+ @rm -f $(DEBUG_OBJ_DIR)/*.o
+ @echo removing "$(RELEASE_OBJ_DIR)/*.o"
+ @rm -f $(RELEASE_OBJ_DIR)/*.o
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/CSAssisttest/Makefile b/src/external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/CSAssisttest/Makefile
new file mode 100644
index 000000000..6a78f4f3d
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/CSAssisttest/Makefile
@@ -0,0 +1,92 @@
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE=CSAssistclient
+OUTPUT_DIR=.
+OBJECT_DIR=./obj
+
+INCLUDE_DIRS=$(STL_HOME)/stlport . ../ ../../../../utils
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=../debug $(STL_HOME)/lib
+LIBRARY_FILES=CSAssistgameapi pthread stlport_gcc
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIRS))
+CFLAGS=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG=$(CFLAGS) -D_DEBUG -g
+CFLAGS_RELEASE=$(CFLAGS) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -L,$(LIBRARY_DIRS)) $(addprefix -l,$(LIBRARY_FILES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER)
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=g++
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR=$(OBJECT_DIR)/debug
+RELEASE_OBJ_DIR=$(OBJECT_DIR)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+SOURCE_LIST=$(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(shell find $(x) -name "*.cpp" -maxdepth 1))
+DEBUG_OBJ_LIST=$(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST=$(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release: release_dir $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug: debug_dir $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo
+
+all: clean debug release
+
+debug_dir:
+ @mkdir -p $(DEBUG_OBJ_DIR)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST)) %.cpp
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE): $(DEBUG_OBJ_LIST)
+ @echo linking $(DEBUG_DIR)/$(OUTPUT_FILE)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST)
+
+release_dir:
+ @mkdir -p $(RELEASE_OBJ_DIR)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE): $(RELEASE_OBJ_LIST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST)
+
+clean:
+ @echo removing "$(DEBUG_OBJ_DIR)/*.o"
+ @rm -f $(DEBUG_OBJ_DIR)/*.o
+ @echo removing "$(RELEASE_OBJ_DIR)/*.o"
+ @rm -f $(RELEASE_OBJ_DIR)/*.o
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/Makefile b/src/external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/Makefile
new file mode 100644
index 000000000..fe59bba3a
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/projects/CSAssist/CSAssistgameapi/Makefile
@@ -0,0 +1,99 @@
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE=libCSAssistgameapi.a
+OUTPUT_DIR=.
+OBJECT_DIR=./obj
+STL_HOME=../../../../../stlport453
+INCLUDE_DIRS=$(STL_HOME)/stlport ../.. ../ ../../../utils
+
+SOURCE_DIRS=. ../../../utils/Base ../../../utils/Base/linux ../../../utils/TcpLibrary ../../../utils/Unicode
+SOURCE_FILES=
+
+LIBRARY_DIRS=../lib/debug
+LIBRARY_FILES=
+
+CFLAGS_USER=-static
+LFLAGS_USER=-static
+
+ifeq ($(USE_UDP_LIBRARY),yes)
+ SOURCE_DIRS=. ../../../utils/Base ../../../utils/Base/linux ../../../utils/UdpLibrary ../../../utils/Unicode
+ CFLAGS_USER+= -DUSE_UDP_LIBRARY
+endif
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIRS))
+CFLAGS=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_REENTRANT -Wall -Wno-unknown-pragmas -DEXTERNAL_DISTRO -DNAMESPACE="CSAssist"
+CFLAGS_DEBUG=$(CFLAGS) -D_DEBUG -g
+CFLAGS_RELEASE=$(CFLAGS) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -L,$(LIBRARY_DIRS)) $(addprefix -l,$(LIBRARY_FILES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR=$(OBJECT_DIR)/debug
+RELEASE_OBJ_DIR=$(OBJECT_DIR)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+SOURCE_LIST=$(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(shell find $(x) -name "*.cpp" -maxdepth 1))
+DEBUG_OBJ_LIST=$(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST=$(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release: release_dir $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug: debug_dir $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug_udp:
+ $(MAKE) debug USE_UDP_LIBRARY="yes"
+
+all: clean debug release
+
+debug_dir:
+ @mkdir -p $(DEBUG_OBJ_DIR)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE): $(DEBUG_OBJ_LIST)
+ @echo linking $(DEBUG_DIR)/$(OUTPUT_FILE)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST)
+
+release_dir:
+ @mkdir -p $(RELEASE_OBJ_DIR)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE): $(RELEASE_OBJ_LIST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST)
+
+clean:
+ @echo removing "$(DEBUG_OBJ_DIR)/*.o"
+ @rm -f $(DEBUG_OBJ_DIR)/*.o
+ @echo removing "$(RELEASE_OBJ_DIR)/*.o"
+ @rm -f $(RELEASE_OBJ_DIR)/*.o
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/CSAssist/utils/AES/Makefile b/src/external/3rd/library/soePlatform/CSAssist/utils/AES/Makefile
new file mode 100644
index 000000000..ef3ff8231
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/utils/AES/Makefile
@@ -0,0 +1,172 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libAES.a
+OUTPUT_FILE_MT=libAES_MT.a
+OUTPUT_DIR=../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=.. ../
+
+#SOURCE_DIRS=. ..
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/CSAssist/utils/AES/SampleClient/Makefile b/src/external/3rd/library/soePlatform/CSAssist/utils/AES/SampleClient/Makefile
new file mode 100644
index 000000000..216996271
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/utils/AES/SampleClient/Makefile
@@ -0,0 +1,118 @@
+# # # # # # # # # # # # # # # # # # # # #
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+# $ORACLE_HOME is the path to the Oracle installation
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE=AES_TEST
+OUTPUT_DIR=.
+OBJECT_DIR=./obj
+
+ORACLE_INCLUDE_DIRS=$(ORACLE_HOME)/rdbms/demo $(ORACLE_HOME)/rdbms/public $(ORACLE_HOME)/network/public
+INCLUDE_DIRS=$(ORACLE_INCLUDE_DIRS) ../../../utils ../ ../../ ../../../
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=$(ORACLE_HOME)/lib ../../../lib/debug
+LIBRARY_FILES= AES
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG=$(CFLAGS) -D_DEBUG -g
+CFLAGS_RELEASE=$(CFLAGS) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARY_FILES)) $(addprefix -L,$(LIBRARY_DIRS))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER)
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=g++
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR=$(OBJECT_DIR)/debug
+RELEASE_OBJ_DIR=$(OBJECT_DIR)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST=$(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST=$(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release: echoRelease releaseDirs $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug: debugDirs $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo
+
+all: clean debug release
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs :
+ @mkdir -p $(DEBUG_OBJ_DIR)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE): $(DEBUG_OBJ_LIST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease :
+ @echo Building $(OUTPUT_FILE)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs :
+ @mkdir -p $(RELEASE_OBJ_DIR)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE): $(RELEASE_OBJ_LIST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR)/*.o"
+ @rm -rf $(OBJECT_DIR)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/CSAssist/utils/Base/linux/Makefile b/src/external/3rd/library/soePlatform/CSAssist/utils/Base/linux/Makefile
new file mode 100644
index 000000000..9f6bdfcd3
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/utils/Base/linux/Makefile
@@ -0,0 +1,171 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libBase.a
+OUTPUT_FILE_MT=libBase_MT.a
+OUTPUT_DIR=../../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=.. ../
+
+SOURCE_DIRS=. ..
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/CSAssist/utils/Base/solaris/Makefile b/src/external/3rd/library/soePlatform/CSAssist/utils/Base/solaris/Makefile
new file mode 100644
index 000000000..9f6bdfcd3
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/utils/Base/solaris/Makefile
@@ -0,0 +1,171 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libBase.a
+OUTPUT_FILE_MT=libBase_MT.a
+OUTPUT_DIR=../../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=.. ../
+
+SOURCE_DIRS=. ..
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/Makefile b/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/Makefile
new file mode 100644
index 000000000..ba06b4bc5
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/Makefile
@@ -0,0 +1,171 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libTcpLibrary.a
+OUTPUT_FILE_MT=libTcpLibrary_MT.a
+OUTPUT_DIR=../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=.. ../
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/TestClient/Makefile b/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/TestClient/Makefile
new file mode 100644
index 000000000..fcb00919d
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/TestClient/Makefile
@@ -0,0 +1,118 @@
+# # # # # # # # # # # # # # # # # # # # #
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+# $ORACLE_HOME is the path to the Oracle installation
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE=TestClient
+OUTPUT_DIR=./bin
+OBJECT_DIR=./obj
+
+ORACLE_INCLUDE_DIRS=$(ORACLE_HOME)/rdbms/demo $(ORACLE_HOME)/rdbms/public $(ORACLE_HOME)/network/public
+INCLUDE_DIRS=$(ORACLE_INCLUDE_DIRS) ../../
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=$(ORACLE_HOME)/lib ../../../lib/debug
+LIBRARY_FILES=clntsh TcpLibrary
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG=$(CFLAGS) -D_DEBUG -g
+CFLAGS_RELEASE=$(CFLAGS) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARY_FILES)) $(addprefix -L,$(LIBRARY_DIRS))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER)
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=g++
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR=$(OBJECT_DIR)/debug
+RELEASE_OBJ_DIR=$(OBJECT_DIR)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST=$(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST=$(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release: echoRelease releaseDirs $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug: debugDirs $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo
+
+all: clean debug release
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs :
+ @mkdir -p $(DEBUG_OBJ_DIR)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE): $(DEBUG_OBJ_LIST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease :
+ @echo Building $(OUTPUT_FILE)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs :
+ @mkdir -p $(RELEASE_OBJ_DIR)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE): $(RELEASE_OBJ_LIST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR)/*.o"
+ @rm -rf $(OBJECT_DIR)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/TestServer/Makefile b/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/TestServer/Makefile
new file mode 100644
index 000000000..bb3302882
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/TestServer/Makefile
@@ -0,0 +1,118 @@
+# # # # # # # # # # # # # # # # # # # # #
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+# $ORACLE_HOME is the path to the Oracle installation
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE=TestServer
+OUTPUT_DIR=./bin
+OBJECT_DIR=./obj
+
+ORACLE_INCLUDE_DIRS=$(ORACLE_HOME)/rdbms/demo $(ORACLE_HOME)/rdbms/public $(ORACLE_HOME)/network/public
+INCLUDE_DIRS=$(ORACLE_INCLUDE_DIRS) ../../
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=$(ORACLE_HOME)/lib ../../../lib/debug
+LIBRARY_FILES=clntsh TcpLibrary
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG=$(CFLAGS) -D_DEBUG -g
+CFLAGS_RELEASE=$(CFLAGS) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARY_FILES)) $(addprefix -L,$(LIBRARY_DIRS))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER)
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=g++
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR=$(OBJECT_DIR)/debug
+RELEASE_OBJ_DIR=$(OBJECT_DIR)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST=$(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST=$(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release: echoRelease releaseDirs $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug: debugDirs $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo
+
+all: clean debug release
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs :
+ @mkdir -p $(DEBUG_OBJ_DIR)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE): $(DEBUG_OBJ_LIST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease :
+ @echo Building $(OUTPUT_FILE)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs :
+ @mkdir -p $(RELEASE_OBJ_DIR)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE): $(RELEASE_OBJ_LIST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR)/*.o"
+ @rm -rf $(OBJECT_DIR)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/sqlnet.log b/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/sqlnet.log
new file mode 100644
index 000000000..efeb14277
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/utils/TcpLibrary/sqlnet.log
@@ -0,0 +1,40 @@
+
+
+***********************************************************************
+Fatal NI connect error 12542, connecting to:
+ (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=sddb3.station.sony.com)(PORT=1521))(CONNECT_DATA=(SID=DEVL)(CID=(PROGRAM=c:\devel\projects\DBTest\Debug\DBTest.exe)(HOST=XP-RLSMITH2)(USER=rlsmith))))
+
+ VERSION INFORMATION:
+ TNS for 32-bit Windows: Version 9.2.0.1.0 - Production
+ Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 9.2.0.1.0 - Production
+ Time: 05-DEC-2003 14:02:06
+ Tracing not turned on.
+ Tns error struct:
+ nr err code: 0
+ ns main err code: 12542
+ TNS-12542: TNS:address already in use
+ ns secondary err code: 12560
+ nt main err code: 512
+ TNS-00512: Address already in use
+ nt secondary err code: 48
+ nt OS err code: 0
+
+
+***********************************************************************
+Fatal NI connect error 12542, connecting to:
+ (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=sddb3.station.sony.com)(PORT=1521))(CONNECT_DATA=(SID=DEVL)(CID=(PROGRAM=c:\devel\projects\DBTest\Debug\DBTest.exe)(HOST=XP-RLSMITH2)(USER=rlsmith))))
+
+ VERSION INFORMATION:
+ TNS for 32-bit Windows: Version 9.2.0.1.0 - Production
+ Windows NT TCP/IP NT Protocol Adapter for 32-bit Windows: Version 9.2.0.1.0 - Production
+ Time: 05-DEC-2003 14:02:17
+ Tracing not turned on.
+ Tns error struct:
+ nr err code: 0
+ ns main err code: 12542
+ TNS-12542: TNS:address already in use
+ ns secondary err code: 12560
+ nt main err code: 512
+ TNS-00512: Address already in use
+ nt secondary err code: 48
+ nt OS err code: 0
diff --git a/src/external/3rd/library/soePlatform/CSAssist/utils/Unicode/Makefile b/src/external/3rd/library/soePlatform/CSAssist/utils/Unicode/Makefile
new file mode 100644
index 000000000..c7096751e
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CSAssist/utils/Unicode/Makefile
@@ -0,0 +1,171 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libUnicode.a
+OUTPUT_FILE_MT=libUnicode_MT.a
+OUTPUT_DIR=../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=.. ../
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/CTServiceGameAPI/Makefile b/src/external/3rd/library/soePlatform/CTServiceGameAPI/Makefile
new file mode 100644
index 000000000..2576a662e
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/CTServiceGameAPI/Makefile
@@ -0,0 +1,60 @@
+TARGET = libCTServiceGameAPI.a
+
+OBJS = \
+ Base/Archive.o \
+ Base/linux/Platform.o \
+ TcpLibrary/Clock.o \
+ TcpLibrary/IPAddress.o \
+ TcpLibrary/TcpBlockAllocator.o \
+ TcpLibrary/TcpConnection.o \
+ TcpLibrary/TcpManager.o \
+ Unicode/FirstUnicode.o \
+ Unicode/Unicode.o \
+ Unicode/UnicodeBlocks.o \
+ Unicode/UnicodeCharacterData.o \
+ Unicode/UnicodeCharacterDataMap.o \
+ Unicode/UnicodeUtils.o \
+ CTCommon/CTServiceCharacter.o \
+ CTCommon/CTServiceServer.o \
+ CTGenericAPI/GenericApiCore.o \
+ CTGenericAPI/GenericConnection.o \
+ CTGenericAPI/GenericMessage.o \
+ CTServiceAPI.o \
+ CTServiceAPICore.o \
+ Request.o \
+ Response.o
+
+INCLUDE_DIRS = . ../../stlport453/stlport
+CFLAGS_USER=-DEXTERNAL_DISTRO -DNAMESPACE=CTService -DUSE_TCP_LIBRARY
+
+# # # # # # # # # # # # # # # # # # # # #
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_DEBUG=$(INCLUDE_FLAGS) -D_DEBUG -g
+CFLAGS_RELEASE=$(INCLUDE_FLAGS) -DNDEBUG -O2
+#CFLAGS=$(CFLAGS_DEBUG) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS=$(CFLAGS_RELEASE) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+
+.SUFFIXES: .cpp .c
+
+all: clean $(TARGET)
+
+$(TARGET): $(OBJS)
+ ld -r $(OBJS) -o $(TARGET)
+
+clean:
+ rm -f $(TARGET)
+ rm -f $(OBJS)
+
+.cpp.o:
+ g++ $(CFLAGS) -c $< -o $*.o
+
+.c.o:
+ gcc $(CFLAGS) -c $< -o $*.o
diff --git a/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/projects/Chat/ChatAPI/Makefile b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/projects/Chat/ChatAPI/Makefile
new file mode 100644
index 000000000..a435315d0
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/projects/Chat/ChatAPI/Makefile
@@ -0,0 +1,108 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE=libChatAPI.a
+OUTPUT_DIR=../../../lib
+OBJECT_DIR=.
+
+INCLUDE_DIRS=../../../utils # ../../../../stlport453/stlport
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG=$(CFLAGS) -D_DEBUG -g
+CFLAGS_RELEASE=$(CFLAGS) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR=$(OBJECT_DIR)/debug
+RELEASE_OBJ_DIR=$(OBJECT_DIR)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST=$(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST=$(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release: echoRelease releaseDirs $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug: debugDirs $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo Successfully build $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo
+
+all: clean debug release
+
+debugDirs :
+ @mkdir -p $(DEBUG_OBJ_DIR)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+# @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE): $(DEBUG_OBJ_LIST)
+# @echo linking $(DEBUG_DIR)/$(OUTPUT_FILE)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST)
+
+echoRelease :
+ @echo Building $(OUTPUT_FILE)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+releaseDirs :
+ @mkdir -p $(RELEASE_OBJ_DIR)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE): $(RELEASE_OBJ_LIST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST)
+
+clean:
+ @echo removing "$(DEBUG_OBJ_DIR)/*.o"
+ @rm -f $(DEBUG_OBJ_DIR)/*.o
+ @echo removing "$(RELEASE_OBJ_DIR)/*.o"
+ @rm -f $(RELEASE_OBJ_DIR)/*.o
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/projects/Chat/ChatMono/Makefile b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/projects/Chat/ChatMono/Makefile
new file mode 100644
index 000000000..3a5726395
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/projects/Chat/ChatMono/Makefile
@@ -0,0 +1,109 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE=libChatAPI.a
+OUTPUT_DIR=../../../lib
+OBJECT_DIR=.
+
+INCLUDE_DIRS=../../../utils ../../../../../../stlport453/stlport ../../../../../../../stlport453/stlport
+
+SOURCE_DIRS=../ChatAPI ../../../utils/Unicode ../../../utils/Base ../../../utils/Base/linux ../../../utils/UdpLibrary ../../../utils/GenericAPI
+SOURCE_FILES=
+
+LIBRARY_DIRS=../../../../../../stlport453/lib
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG=$(CFLAGS) -D_DEBUG -g -DEXTERNAL_DISTRO -DNAMESPACE="ChatSystem" -D_REENTRANT
+CFLAGS_RELEASE=$(CFLAGS) -DNDEBUG -O2 -DEXTERNAL_DISTRO -DNAMESPACE="ChatSystem" -D_REENTRANT
+
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR=$(OBJECT_DIR)/debug
+RELEASE_OBJ_DIR=$(OBJECT_DIR)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST=$(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST=$(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release: echoRelease releaseDirs $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug: debugDirs $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo
+
+all: clean debug release
+
+debugDirs :
+ @mkdir -p $(DEBUG_OBJ_DIR)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+# @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE): $(DEBUG_OBJ_LIST)
+# @echo linking $(DEBUG_DIR)/$(OUTPUT_FILE)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST)
+
+echoRelease :
+ @echo Building $(OUTPUT_FILE)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+releaseDirs :
+ @mkdir -p $(RELEASE_OBJ_DIR)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE): $(RELEASE_OBJ_LIST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST)
+
+clean:
+ @echo removing "$(DEBUG_OBJ_DIR)/*.o"
+ @rm -f $(DEBUG_OBJ_DIR)/*.o
+ @echo removing "$(RELEASE_OBJ_DIR)/*.o"
+ @rm -f $(RELEASE_OBJ_DIR)/*.o
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/Base/linux/Makefile b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/Base/linux/Makefile
new file mode 100644
index 000000000..9f6bdfcd3
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/Base/linux/Makefile
@@ -0,0 +1,171 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libBase.a
+OUTPUT_FILE_MT=libBase_MT.a
+OUTPUT_DIR=../../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=.. ../
+
+SOURCE_DIRS=. ..
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/Base/solaris/Makefile b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/Base/solaris/Makefile
new file mode 100644
index 000000000..9f6bdfcd3
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/Base/solaris/Makefile
@@ -0,0 +1,171 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libBase.a
+OUTPUT_FILE_MT=libBase_MT.a
+OUTPUT_DIR=../../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=.. ../
+
+SOURCE_DIRS=. ..
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/GenericAPI/Makefile b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/GenericAPI/Makefile
new file mode 100644
index 000000000..81d95b905
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/GenericAPI/Makefile
@@ -0,0 +1,171 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libGenericAPI.a
+OUTPUT_FILE_MT=libGenericAPI_MT.a
+OUTPUT_DIR=../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=../
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/UdpLibrary/Makefile b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/UdpLibrary/Makefile
new file mode 100644
index 000000000..5d59d89e6
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/UdpLibrary/Makefile
@@ -0,0 +1,174 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libUdpLibrary.a
+OUTPUT_FILE_MT=libUdpLibrary_MT.a
+OUTPUT_DIR=../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+ORACLE_INCLUDE_DIRS=$(ORACLE_HOME)/rdbms/demo $(ORACLE_HOME)/rdbms/public $(ORACLE_HOME)/network/public
+INCLUDE_DIRS=$(ORACLE_INCLUDE_DIRS) ../
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+EXCLUDE_FILES=UdpDriverPS3.cpp UdpDriverSparc.cpp
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST =$(filter-out $(addprefix %,$(EXCLUDE_FILES)), $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND)))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(filter-out MT%.o, $(notdir $(SOURCE_LIST:.cpp=.o))))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(filter-out MT%.o, $(notdir $(SOURCE_LIST:.cpp=.o))))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST)) %.cpp
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST)) %.cpp
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST)) %.cpp
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST)) %.cpp
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/Unicode/Makefile b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/Unicode/Makefile
new file mode 100644
index 000000000..44fa70303
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/ChatAPI2/ChatAPI/utils/Unicode/Makefile
@@ -0,0 +1,171 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libUnicode.a
+OUTPUT_FILE_MT=libUnicode_MT.a
+OUTPUT_DIR=../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=.. ../ ../../../../../stlport453/stlport
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/VChatAPI/projects/VChat/VChatAPI/Makefile b/src/external/3rd/library/soePlatform/VChatAPI/projects/VChat/VChatAPI/Makefile
new file mode 100644
index 000000000..bd50d6355
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/VChatAPI/projects/VChat/VChatAPI/Makefile
@@ -0,0 +1,172 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libVChatAPI.a
+OUTPUT_FILE_MT=libVChatAPI_MT.a
+OUTPUT_DIR=../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+UTILS_DIR=../../../utils2.0/utils
+INCLUDE_DIRS=$(UTILS_DIR) . ../../../../../stlport453/stlport
+
+SOURCE_DIRS=. $(UTILS_DIR)/Api $(UTILS_DIR)/Base $(UTILS_DIR)/TcpLibrary $(UTILS_DIR)/UdpLibrary
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER= -DAPI_NAMESPACE=VChatSystem
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas -Dlinux
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas -Dlinux
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+#-include distcc.mk
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/VChatAPI/projects/VChat/VChatUnitTest/Makefile b/src/external/3rd/library/soePlatform/VChatAPI/projects/VChat/VChatUnitTest/Makefile
new file mode 100644
index 000000000..b538dd66c
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/VChatAPI/projects/VChat/VChatUnitTest/Makefile
@@ -0,0 +1,163 @@
+# # # # # # # # # # # # # # # # # # # # #
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+# $ORACLE_HOME is the path to the Oracle installation
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+EXCLUDE_CHAR_TRAITS=EXCLUDE
+ORACLE_HOME=/opt/app/oracle/product/9.2.0
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE=VChatUnitTest
+OUTPUT_DIR=./bin
+OBJECT_DIR=./obj
+
+UTILS_BASE=../../../utils2.0
+UTILS_DIR=$(UTILS_BASE)/utils
+ORACLE_INCLUDE_DIRS=$(ORACLE_HOME)/rdbms/demo $(ORACLE_HOME)/rdbms/public $(ORACLE_HOME)/network/public
+XML_DIR=$(UTILS_DIR)/XMLLibrary
+INCLUDE_DIRS=$(ORACLE_INCLUDE_DIRS) $(UTILS_DIR) ../VChatAPI $(XML_DIR) ../ ../../../../../stlport453/stlport
+
+SOURCE_DIRS=.
+
+LIBRARY_DIRS=$(UTILS_DIR)/SoeMon3AgentAPI/monapi/lib $(UTILS_DIR)/SSLLibrary/openssl/lib/Debug
+LIBRARY_DIRS_DEBUG=$(ORACLE_HOME)/lib $(UTILS_BASE)/lib/debug ../lib/debug $(LIBRARY_DIRS)
+LIBRARY_DIRS_RELEASE=$(ORACLE_HOME)/lib $(UTILS_BASE)/lib/release ../lib/release $(LIBRARY_DIRS)
+LIBRARY_FILES=Base_MT Resources_MT TcpLibrary_MT UdpLibrary_MT OracleDB_MT clntsh pthread ssl SSLSocket_MT SoeMonApi3 xml2 VChatAPI_MT AES_MT
+LIBSRC_DIRS=$(addprefix $(UTILS_DIR)/, Base OracleDB SSLLibrary TcpLibrary UdpLibrary AES Resources) ../VChatAPI
+
+CFLAGS_USER=-D_REENTRANT
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas -DAPI_NAMESPACE="VChatSystem"
+CFLAGS_DEBUG=$(CFLAGS) -D_DEBUG -g
+CFLAGS_RELEASE=$(CFLAGS) -DNDEBUG -O2
+
+LIBRARY_FLAGS_DEBUG=$(addprefix -l,$(LIBRARY_FILES)) $(addprefix -L,$(LIBRARY_DIRS_DEBUG))
+LIBRARY_FLAGS_RELEASE=$(addprefix -l,$(LIBRARY_FILES)) $(addprefix -L,$(LIBRARY_DIRS_RELEASE))
+LFLAGS_DEBUG=$(LIBRARY_FLAGS_DEBUG) $(LFLAGS_USER)
+LFLAGS_RELEASE=$(LIBRARY_FLAGS_RELEASE) $(LFLAGS_USER)
+
+CPP=g++
+LINK=g++
+
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR=$(OBJECT_DIR)/debug
+RELEASE_OBJ_DIR=$(OBJECT_DIR)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+#FIND=$(shell ls $(x)/*.cpp)
+FIND=$(shell ls $(x)/*.cpp | if [ "$(EXCLUDED_SOURCE_FILES)" != "" ]; then egrep -v "$(EXCLUDED_SOURCE_FILES)"; else egrep "*"; fi)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST=$(addprefix $(DEBUG_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST=$(addprefix $(RELEASE_OBJ_DIR)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+MK_DEBUG_DIRS=$(shell if [ ! -d $(DEBUG_OBJ_DIR) ]; then mkdir -p $(DEBUG_OBJ_DIR) $(DEBUG_DIR); fi)
+MK_RELEASE_DIRS=$(shell if [ ! -d $(RELEASE_OBJ_DIR) ]; then mkdir -p $(RELEASE_OBJ_DIR) $(RELEASE_DIR); fi)
+# # # # # # # # # # # # # # # # # # # # #
+
+release: echoRelease releaseDirs libsrelease $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+debug: debugDirs libsdebug $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo
+
+all: debug release
+
+include dist.mk
+include version.mk
+-include distcc.mk
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs :
+ @mkdir -p $(DEBUG_OBJ_DIR)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE): $(DEBUG_OBJ_LIST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST)
+
+$(DEBUG_OBJ_DIR)/MTDatabaseResourceManager.d : ../../../utils/GenericServer/ReusableResourceManagers/MTDatabaseResourceManager.cpp
+ $(SHELL) -ec '$(CPP) -MT "$(DEBUG_OBJ_DIR)/$*.o $(DEBUG_OBJ_DIR)/*.d" -MM $(CFLAGS_DEBUG) $<;' > $@
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease :
+ @echo Building $(OUTPUT_FILE)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs :
+ @mkdir -p $(RELEASE_OBJ_DIR)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE): $(RELEASE_OBJ_LIST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST)
+
+$(RELEASE_OBJ_DIR)/MTDatabaseResourceManager.d : ../../../utils/GenericServer/ReusableResourceManagers/MTDatabaseResourceManager.cpp
+ $(SHELL) -ec '$(CPP) -MT "$(RELEASE_OBJ_DIR)/$*.o $(RELEASE_OBJ_DIR)/*.d" -MM $(CFLAGS_RELEASE) $<;' > $@
+
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+# @echo removing "$(OBJECT_DIR)/*.o"
+ rm -rf $(DEBUG_OBJ_DIR)/*.o
+ rm -rf $(RELEASE_OBJ_DIR)/*.o
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE)
+ @echo
+
+depclean:
+ @echo removing dependancy files "$(OBJECT_DIR)/*/*.d"
+ @rm -rf $(OBJECT_DIR)/*/*.d
+# # # # # # # # # # # # # # # # # # # # #
+# rule to generate the dependency files
+# there are 2 sets of dependency files
+#debug object directories and release directories
+# # # # # # # # # # # # # # # # # # # # #
+#$(DEBUG_OBJ_DIR)/%.d: %.cpp
+# $(SHELL) -ec '$(CPP) -MT "$(DEBUG_OBJ_DIR)/$*.o $(DEBUG_OBJ_DIR)/$*.d" -MM $(CFLAGS_DEBUG) $<;' > $@
+#$(RELEASE_OBJ_DIR)/%.d: %.cpp
+# $(SHELL) -ec '$(CPP) -MT "$(RELEASE_OBJ_DIR)/$*.o $(RELEASE_OBJ_DIR)/$*.d" -MM $(CFLAGS_DEBUG) $<;' > $@
+$(DEBUG_OBJ_DIR)/%.d: $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @if [ ! -d "$(DEBUG_OBJ_DIR)" ]; then mkdir -p $(DEBUG_OBJ_DIR); fi
+ $(SHELL) -ec '$(CPP) -MT "$(DEBUG_OBJ_DIR)/$*.o $(DEBUG_OBJ_DIR)/$*.d" -MM $(CFLAGS_DEBUG) $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST));' > $@
+
+$(RELEASE_OBJ_DIR)/%.d: $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @if [ ! -d "$(RELEASE_OBJ_DIR)" ]; then mkdir -p $(RELEASE_OBJ_DIR); fi
+ $(SHELL) -ec '$(CPP) -MT "$(RELEASE_OBJ_DIR)/$*.o $(RELEASE_OBJ_DIR)/$*.d" -MM $(CFLAGS_DEBUG) $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST));' > $@
+
+
+
+# # # # # # # # # # # # # # # # # # # # #
+-include $(DEBUG_OBJ_LIST:.o=.d)
+-include $(RELEASE_OBJ_LIST:.o=.d)
+
diff --git a/src/external/3rd/library/soePlatform/VChatAPI/utils2.0/utils/Base/Makefile b/src/external/3rd/library/soePlatform/VChatAPI/utils2.0/utils/Base/Makefile
new file mode 100644
index 000000000..53d4381f6
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/VChatAPI/utils2.0/utils/Base/Makefile
@@ -0,0 +1,171 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libBase.a
+OUTPUT_FILE_MT=libBase_MT.a
+OUTPUT_DIR=./../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=.. ../ ../UdpLibrary ../../../../../stlport453/stlport
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+#-include distcc.mk
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/VChatAPI/utils2.0/utils/TcpLibrary/Makefile b/src/external/3rd/library/soePlatform/VChatAPI/utils2.0/utils/TcpLibrary/Makefile
new file mode 100644
index 000000000..72e103584
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/VChatAPI/utils2.0/utils/TcpLibrary/Makefile
@@ -0,0 +1,180 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libTcpLibrary.a
+OUTPUT_FILE_MT=libTcpLibrary_MT.a
+OUTPUT_DIR=../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=.. ../ ../../../../../stlport453/stlport
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+#-include distcc.mk
+#ifneq (,$(filter /usr/lib/distcc/c++, $(shell ls /usr/lib/distcc/c++)))
+# DISTCCHOSTS="sdtnav-build1/8 sdtnav-build2/8 sdtnav-dev1/2"
+# export DISTCC_HOSTS="$(DISTCCHOSTS)"
+# CPP=/usr/lib/distcc/g++
+# LINK=ld
+# MAKEFLAGS+="-j8 CPP=$(CPP) "
+#else
+# MAKEFLAGS+=-j8
+#endif
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/VChatAPI/utils2.0/utils/UdpLibrary/Makefile b/src/external/3rd/library/soePlatform/VChatAPI/utils2.0/utils/UdpLibrary/Makefile
new file mode 100644
index 000000000..a81dda189
--- /dev/null
+++ b/src/external/3rd/library/soePlatform/VChatAPI/utils2.0/utils/UdpLibrary/Makefile
@@ -0,0 +1,171 @@
+# environment variables:
+# $INCLUDE_PATH is a colon-delimited list of include directories
+
+EMPTY_CHAR=
+SPACE_CHAR=$(empty) $(empty)
+COLON_CHAR=:
+
+# # # # # # # # # # # # # # # # # # # # #
+
+OUTPUT_FILE_ST=libUdpLibrary.a
+OUTPUT_FILE_MT=libUdpLibrary_MT.a
+OUTPUT_DIR=../../lib
+OBJECT_DIR_ST=./obj_st
+OBJECT_DIR_MT=./obj_mt
+
+INCLUDE_DIRS=../BaseLibrary/ .. ../
+
+SOURCE_DIRS=.
+SOURCE_FILES=
+
+LIBRARY_DIRS=
+LIBRARY_FILES=
+
+CFLAGS_USER=
+LFLAGS_USER=
+
+# # # # # # # # # # # # # # # # # # # # #
+
+INCLUDE_DIR_LIST=$(subst $(COLON_CHAR),$(SPACE_CHAR),$(INCLUDE_PATH)) $(INCLUDE_DIRS)
+INCLUDE_FLAGS=$(addprefix -I,$(INCLUDE_DIR_LIST))
+CFLAGS_ST=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -Wall -Wno-unknown-pragmas
+CFLAGS_MT=$(INCLUDE_FLAGS) $(CFLAGS_USER) -D_GNU_SOURCE -D_REENTRANT -Wall -Wno-unknown-pragmas
+CFLAGS_DEBUG_ST=$(CFLAGS_ST) -D_DEBUG -g
+CFLAGS_RELEASE_ST=$(CFLAGS_ST) -DNDEBUG -O2
+CFLAGS_DEBUG_MT=$(CFLAGS_MT) -D_DEBUG -g
+CFLAGS_RELEASE_MT=$(CFLAGS_MT) -DNDEBUG -O2
+
+LIBRARY_FLAGS=$(addprefix -l,$(LIBRARIES))
+LFLAGS=$(LIBRARY_FLAGS) $(LFLAGS_USER) -r
+LFLAGS_DEBUG=$(LFLAGS)
+LFLAGS_RELEASE=$(LFLAGS)
+
+CPP=g++
+LINK=ld
+#-include distcc.mk
+# # # # # # # # # # # # # # # # # # # # #
+
+DEBUG_OBJ_DIR_ST=$(OBJECT_DIR_ST)/debug
+RELEASE_OBJ_DIR_ST=$(OBJECT_DIR_ST)/release
+DEBUG_OBJ_DIR_MT=$(OBJECT_DIR_MT)/debug
+RELEASE_OBJ_DIR_MT=$(OBJECT_DIR_MT)/release
+
+DEBUG_DIR=$(OUTPUT_DIR)/debug
+RELEASE_DIR=$(OUTPUT_DIR)/release
+
+FIND=$(shell ls $(x)/*.cpp)
+SOURCE_LIST = $(SOURCE_FILES) $(foreach x, $(SOURCE_DIRS), $(FIND))
+
+DEBUG_OBJ_LIST_ST=$(addprefix $(DEBUG_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_ST=$(addprefix $(RELEASE_OBJ_DIR_ST)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+DEBUG_OBJ_LIST_MT=$(addprefix $(DEBUG_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+RELEASE_OBJ_LIST_MT=$(addprefix $(RELEASE_OBJ_DIR_MT)/, $(notdir $(SOURCE_LIST:.cpp=.o)))
+
+# # # # # # # # # # # # # # # # # # # # #
+
+release_st: echoRelease_st releaseDirs_st $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+debug_st: debugDirs_st $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo
+
+release_mt: echoRelease_mt releaseDirs_mt $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+debug_mt: debugDirs_mt $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo Successfully built $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+all: clean debug_st release_st debug_mt release_mt
+
+all_st: clean debug_st release_st
+
+all_mt: clean debug_mt release_mt
+
+# # # # # # # # # # # # # # # # # # # # #
+
+debugDirs_st :
+ @mkdir -p $(DEBUG_OBJ_DIR_ST)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_ST): $(DEBUG_OBJ_LIST_ST)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_ST)
+
+
+debugDirs_mt :
+ @mkdir -p $(DEBUG_OBJ_DIR_MT)
+ @mkdir -p $(DEBUG_DIR)
+
+$(DEBUG_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ $(CPP) $(CFLAGS_DEBUG_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(DEBUG_DIR)/$(OUTPUT_FILE_MT): $(DEBUG_OBJ_LIST_MT)
+ $(LINK) $(LFLAGS_DEBUG) -o $@ $(DEBUG_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+echoRelease_st :
+ @echo Building $(OUTPUT_FILE_ST)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_ST)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+echoRelease_mt :
+ @echo Building $(OUTPUT_FILE_MT)
+ @echo compiler: $(CPP) $(CFLAGS_RELEASE_MT)
+ @echo linker: $(LINK) $(LFLAGS_RELEASE)
+ @echo
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+releaseDirs_st :
+ @mkdir -p $(RELEASE_OBJ_DIR_ST)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_ST)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_ST) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_ST): $(RELEASE_OBJ_LIST_ST)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_ST)
+
+releaseDirs_mt :
+ @mkdir -p $(RELEASE_OBJ_DIR_MT)
+ @mkdir -p $(RELEASE_DIR)
+
+$(RELEASE_OBJ_DIR_MT)/%.o : $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @echo compiling $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+ @$(CPP) $(CFLAGS_RELEASE_MT) -o $@ -c $(filter %/$(notdir $(basename $@)).cpp,$(SOURCE_LIST))
+
+$(RELEASE_DIR)/$(OUTPUT_FILE_MT): $(RELEASE_OBJ_LIST_MT)
+ @echo linking $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @$(LINK) $(LFLAGS_RELEASE) -o $@ $(RELEASE_OBJ_LIST_MT)
+
+
+# # # # # # # # # # # # # # # # # # # # #
+
+clean:
+ @echo removing "$(OBJECT_DIR_ST)/*.o"
+ @rm -rf $(OBJECT_DIR_ST)
+ @echo removing "$(OBJECT_DIR_MT)/*.o"
+ @rm -rf $(OBJECT_DIR_MT)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_ST)
+ @echo removing $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(DEBUG_DIR)/$(OUTPUT_FILE_MT)
+ @echo removing $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @rm -f $(RELEASE_DIR)/$(OUTPUT_FILE_MT)
+ @echo
+
+
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/Base.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/Base.lib
new file mode 100644
index 000000000..0e74a557c
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/Base.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/Base_vchat.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/Base_vchat.lib
new file mode 100644
index 000000000..82f6d86fd
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/Base_vchat.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/ChatAPI.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/ChatAPI.lib
new file mode 100644
index 000000000..3186cf876
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/ChatAPI.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/ChatMono.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/ChatMono.lib
new file mode 100644
index 000000000..6e39e2665
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/ChatMono.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/CommodityAPI.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/CommodityAPI.lib
new file mode 100644
index 000000000..56ec57daa
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/CommodityAPI.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/Network.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/Network.lib
new file mode 100644
index 000000000..83fb71b20
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/Network.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/NetworkSupport.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/NetworkSupport.lib
new file mode 100644
index 000000000..0d6691d1c
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/NetworkSupport.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/TcpLibrary.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/TcpLibrary.lib
new file mode 100644
index 000000000..668c15152
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/TcpLibrary.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/VChatAPI.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/VChatAPI.lib
new file mode 100644
index 000000000..8a0b9f8fc
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/VChatAPI.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/dbgutil.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/dbgutil.lib
new file mode 100644
index 000000000..ff33c873e
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/dbgutil.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/monapi.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/monapi.lib
new file mode 100644
index 000000000..681e057cf
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/monapi.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Debug/rdp.lib b/src/external/3rd/library/soePlatform/libs/Win32-Debug/rdp.lib
new file mode 100644
index 000000000..1d8b28117
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Debug/rdp.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/Base.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/Base.lib
new file mode 100644
index 000000000..3db08389c
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/Base.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/Base_vchat.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/Base_vchat.lib
new file mode 100644
index 000000000..3ec18026d
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/Base_vchat.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/ChatAPI.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/ChatAPI.lib
new file mode 100644
index 000000000..f3fd031f7
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/ChatAPI.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/ChatMono.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/ChatMono.lib
new file mode 100644
index 000000000..1c2e08515
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/ChatMono.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/CommodityAPI.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/CommodityAPI.lib
new file mode 100644
index 000000000..be612dcb0
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/CommodityAPI.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/Network.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/Network.lib
new file mode 100644
index 000000000..015348a52
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/Network.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/NetworkSupport.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/NetworkSupport.lib
new file mode 100644
index 000000000..370ee0bef
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/NetworkSupport.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/TcpLibrary.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/TcpLibrary.lib
new file mode 100644
index 000000000..7a9eb7a92
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/TcpLibrary.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/VChatAPI.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/VChatAPI.lib
new file mode 100644
index 000000000..be4661e3c
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/VChatAPI.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/dbgutil.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/dbgutil.lib
new file mode 100644
index 000000000..ff33c873e
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/dbgutil.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/monapi.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/monapi.lib
new file mode 100644
index 000000000..5c376c643
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/monapi.lib differ
diff --git a/src/external/3rd/library/soePlatform/libs/Win32-Release/rdp.lib b/src/external/3rd/library/soePlatform/libs/Win32-Release/rdp.lib
new file mode 100644
index 000000000..98b52909e
Binary files /dev/null and b/src/external/3rd/library/soePlatform/libs/Win32-Release/rdp.lib differ
diff --git a/src/external/3rd/library/stationapi/Makefile b/src/external/3rd/library/stationapi/Makefile
new file mode 100644
index 000000000..ea84fcbd1
--- /dev/null
+++ b/src/external/3rd/library/stationapi/Makefile
@@ -0,0 +1,92 @@
+#========================================================
+# clear default build commands
+#========================================================
+.SUFFIXES:
+
+#========================================================
+# include path
+#========================================================
+INC_DIR = -I. \
+ -I../RDP/include \
+ -I../RDP/dbgutil \
+ -I../RDP/rdp \
+ -I../crypt \
+
+#========================================================
+# link libraries
+#========================================================
+LIBS = -L../lib \
+ -lm \
+ -lvcrypt \
+ -lrdp -ldbgutil \
+ -lpthread \
+# -lnsl -lsocket -lpthread -lposix4 \
+
+#========================================================
+# debug / release flags
+#========================================================
+#RELEASE_FLAGS = -O3 -DNDEBUG
+DEBUG_FLAGS = -g -fasm -D_DEBUG
+
+#========================================================
+# user flags
+#========================================================
+USER_FLAGS = -DGNU -D_REENTRANT
+
+#========================================================
+# set default build commands
+#========================================================
+CFLAGS = $(INC_DIR) $(RELEASE_FLAGS) $(DEBUG_FLAGS) $(USER_FLAGS)
+CPPFLAGS =
+#LINK_SO = g++ -G $(CFLAGS)
+LINK_SO = ld -shared
+
+%.o : %.c
+ g++ -c -x c $(CFLAGS) $<
+
+%.o : %.cpp
+ g++ -c -x c++ $(CFLAGS) $(CPPFLAGS) $<
+
+#========================================================
+# project
+#========================================================
+SRCS=\
+ PackClass.cpp \
+ stationapi.cpp \
+ stationapilist.cpp \
+ stationrequest.cpp \
+ StationAPISession.cpp \
+ extend_rdp.c \
+ order.cpp \
+
+OBJS= \
+ PackClass.o \
+ stationapi.o \
+ stationapilist.o \
+ stationrequest.o \
+ StationAPISession.o \
+ extend_rdp.o \
+ order.o \
+
+#========================================================
+# output
+#========================================================
+all: stationapidemo
+
+stationapidemo : stationapidemo.o libstationapi.so
+ g++ -g -o $@ $^ $(LIBS)
+
+libstationapi.so : $(OBJS)
+ $(LINK_SO) -o $@ $^
+
+libstationapi.a : $(OBJS)
+ ar -r $@ $^
+
+clean:
+ rm -f *.o libstationapi.a libstationapi.so stationapidemo
+ rm -f *.dsw *.dsp *.dep *.ncb *.plg *.opt *.mak
+
+depend:
+ g++ -MM $(CFLAGS) $(SRCS)
+
+
diff --git a/src/external/3rd/library/stlport453/lib/win32/stlport_vc6_static.lib b/src/external/3rd/library/stlport453/lib/win32/stlport_vc6_static.lib
new file mode 100644
index 000000000..b7727919b
Binary files /dev/null and b/src/external/3rd/library/stlport453/lib/win32/stlport_vc6_static.lib differ
diff --git a/src/external/3rd/library/stlport453/lib/win32/stlport_vc6_stldebug_static.lib b/src/external/3rd/library/stlport453/lib/win32/stlport_vc6_stldebug_static.lib
new file mode 100644
index 000000000..93e23204d
Binary files /dev/null and b/src/external/3rd/library/stlport453/lib/win32/stlport_vc6_stldebug_static.lib differ
diff --git a/src/external/3rd/library/stlport453/lib/win32/stlport_vc71_static.lib b/src/external/3rd/library/stlport453/lib/win32/stlport_vc71_static.lib
new file mode 100644
index 000000000..644615a8a
Binary files /dev/null and b/src/external/3rd/library/stlport453/lib/win32/stlport_vc71_static.lib differ
diff --git a/src/external/3rd/library/stlport453/lib/win32/stlport_vc71_stldebug_static.lib b/src/external/3rd/library/stlport453/lib/win32/stlport_vc71_stldebug_static.lib
new file mode 100644
index 000000000..fd5c0c418
Binary files /dev/null and b/src/external/3rd/library/stlport453/lib/win32/stlport_vc71_stldebug_static.lib differ
diff --git a/src/external/3rd/library/stlport453/lib/win32/stlport_vc7_static.lib b/src/external/3rd/library/stlport453/lib/win32/stlport_vc7_static.lib
new file mode 100644
index 000000000..84b071a12
Binary files /dev/null and b/src/external/3rd/library/stlport453/lib/win32/stlport_vc7_static.lib differ
diff --git a/src/external/3rd/library/stlport453/lib/win32/stlport_vc7_stldebug_static.lib b/src/external/3rd/library/stlport453/lib/win32/stlport_vc7_stldebug_static.lib
new file mode 100644
index 000000000..d1e5ae7f5
Binary files /dev/null and b/src/external/3rd/library/stlport453/lib/win32/stlport_vc7_stldebug_static.lib differ
diff --git a/src/external/3rd/library/stlport453/stlport/config/_epilog.h b/src/external/3rd/library/stlport453/stlport/config/_epilog.h
new file mode 100644
index 000000000..367128462
--- /dev/null
+++ b/src/external/3rd/library/stlport453/stlport/config/_epilog.h
@@ -0,0 +1,33 @@
+#if defined (_STLP_MSVC) || defined (__ICL) || defined (__BORLANDC__)
+
+# if defined (__BORLANDC__)
+# pragma option pop
+# pragma option -w-8062
+# else
+# if !(defined (_STLP_MSVC) && (_STLP_MSVC < 1200))
+# pragma warning (pop)
+# endif
+# pragma pack (pop)
+# endif
+
+
+#elif defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
+
+# pragma reset woff 1174
+# pragma reset woff 1375
+# pragma reset woff 1209
+// from iterator_base.h
+# pragma reset woff 1183
+
+#elif defined(__DECCXX)
+
+# ifdef __PRAGMA_ENVIRONMENT
+# pragma __environment __restore
+# endif
+
+#elif defined(__IBMCPP__)
+
+#pragma info(restore)
+
+#endif
+
diff --git a/src/external/3rd/library/stlport453/stlport/config/_msvc_warnings_off.h b/src/external/3rd/library/stlport453/stlport/config/_msvc_warnings_off.h
new file mode 100644
index 000000000..b4ea8b15a
--- /dev/null
+++ b/src/external/3rd/library/stlport453/stlport/config/_msvc_warnings_off.h
@@ -0,0 +1,20 @@
+# if (_MSC_VER > 1000)
+// #pragma warning ( disable : 4251 ) // ignore template classes being exported in .dll's
+/*
+ * "this used in base member initializer list"
+ * arrow operator warning
+ * copy constr & assignment cannot be generated
+ * "forcing value to bool 'true' or 'false'
+ * typedef used instaead of full type
+ * 4018 : signed/unsigned mismatch, 4146 - result still unsigned
+ * 4100: unreferenced formal parameter
+ * 4663: C++ language change: to explicitly specialize class template 'identifier' use the following syntax
+ */
+# pragma warning ( disable : 4355 4284 4231 4511 4512 4097 4786 4800 4018 4146 4244 4514 4127 4100 4663)
+# pragma warning ( disable : 4245 4514 4660) // conversion from enum to unsigned int signed/unsigned mismatch
+# if (_MSC_VER > 1200)
+// multiple copy constructors/assignment operators specified,
+// with member templates are bogus...
+# pragma warning ( disable : 4521 4522)
+# endif
+# endif
diff --git a/src/external/3rd/library/stlport453/stlport/config/_prolog.h b/src/external/3rd/library/stlport453/stlport/config/_prolog.h
new file mode 100644
index 000000000..be32caab7
--- /dev/null
+++ b/src/external/3rd/library/stlport453/stlport/config/_prolog.h
@@ -0,0 +1,46 @@
+
+#if defined (_STLP_MSVC) || defined (__ICL) || defined (__BORLANDC__)
+
+# if defined (__BORLANDC__)
+# if (__BORLANDC__ >= 0x510)
+# pragma option push -Vx- -Ve- -a8 -b -pc -w-inl -w-aus -w-sig -w-8062 -w-8041 -w-8008 -w-8012 -w-8027 -w-8057 -w-8091 -w-8092 -w-8066 /* P_O_1 */
+# endif
+# else
+# if !(defined (_STLP_MSVC) && (_STLP_MSVC < 1200))
+# pragma warning(push)
+# endif
+# pragma pack(push,8)
+# include
+# endif
+
+
+#elif defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
+
+#pragma set woff 1209
+#pragma set woff 1174
+#pragma set woff 1375
+// from iterator_base.h
+#pragma set woff 1183
+
+#elif defined(__DECCXX)
+
+# ifdef __PRAGMA_ENVIRONMENT
+# pragma __environment __save
+# pragma __environment __header_defaults
+# endif
+
+#elif defined(__IBMCPP__)
+// supress EDC3130: A constant is being used as a conditional expression
+#pragma info(nocnd)
+
+#elif defined (__HP_aCC)
+/* _REENTRANT selects Posix 1c threads unless draft4 selected.
+ * * This usage is obsolescent, "-D_POSIX_C_SOURCE=199506" is preferred */
+# if 0 /* defined (_REENTRANT) && ! defined (_POSIX_C_SOURCE) */
+# define _POSIX_C_SOURCE 199506
+# endif
+#elif defined (__WATCOMCPLUSPLUS__)
+# pragma warning 604 10 // must lookahead to determine...
+# pragma warning 594 10 // resolved as declaration/type
+# pragma warning 595 10 // resolved as an expression
+#endif
diff --git a/src/external/3rd/library/stlport453/stlport/config/new_compiler/README b/src/external/3rd/library/stlport453/stlport/config/new_compiler/README
new file mode 100644
index 000000000..fc7d92ccc
--- /dev/null
+++ b/src/external/3rd/library/stlport453/stlport/config/new_compiler/README
@@ -0,0 +1,12 @@
+
+README file for "stlport/config/new_compiler"
+
+
+This directory contains "configure" script which will help you to
+create config file for a new compiler. Please refer to HTML documentation
+at www.stlport.org/doc for details.
+NOTE : stlconf.h produced by "configure" is NOT suitable for immediate use
+as platform-specific configuration file as it does not set several important
+macros. However, it is a good starting point.
+
+Boris Fomitchev.
\ No newline at end of file
diff --git a/src/external/3rd/library/stlport453/stlport/config/new_compiler/configure b/src/external/3rd/library/stlport453/stlport/config/new_compiler/configure
new file mode 100644
index 000000000..657e3fa7d
--- /dev/null
+++ b/src/external/3rd/library/stlport453/stlport/config/new_compiler/configure
@@ -0,0 +1,3644 @@
+#! /bin/sh
+
+# Guess values for system-dependent variables and create Makefiles.
+# Generated automatically using autoconf version 2.12
+# Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
+#
+# This configure script is free software; the Free Software Foundation
+# gives unlimited permission to copy, distribute and modify it.
+
+# Defaults:
+ac_help=
+ac_default_prefix=/usr/local
+# Any additions from configure.in:
+ac_help="$ac_help
+--enable-extension="
+ac_help="$ac_help
+--enable-namespaces Use namespaces (default if posssible)
+--disable-namespaces Don't use namespaces support"
+ac_help="$ac_help
+--enable-exceptions Use exceptions support (default if posssible)
+ --disable-exceptions Don't use exceptions support"
+ac_help="$ac_help
+--enable-relops Separate rel_ops namespace for relational operators (default if posssible)
+--disable-relops No separate rel_ops namespace for relational operators"
+ac_help="$ac_help
+--enable-new-style-headers Use new-style headers (default)
+--disable-new-style-headers Don't use new-style headers"
+ac_help="$ac_help
+--enable-new-iostreams Use new iostreams (default)
+--disable-new-iostreams Don't use new iostreams"
+ac_help="$ac_help
+--enable-sgi-allocators : set default parameter to SGI-style default alloc, not allocator
+ --disable-sgi-allocators : use allocator if possible"
+ac_help="$ac_help
+--enable-malloc : set default alloc to malloc-based allocator ( malloc_alloc_template, alloc.h )
+--disable-malloc : choose (default) sgi node allocator (__alloc alloc.h )"
+ac_help="$ac_help
+--enable-newalloc : set default alloc to new-based allocator ( new_alloc, alloc.h )
+--disable-newalloc : choose (default) sgi allocator (__alloc alloc.h )"
+ac_help="$ac_help
+--enable-defalloc : make HP-style defalloc.h included in alloc.h )
+--disable-defalloc : leave defalloc.h alone"
+ac_help="$ac_help
+--enable-debugalloc : use debug versions of allocators
+--disable-debugalloc : not using debug allocators"
+ac_help="$ac_help
+--enable-abbrevs : use abbreviated class names internally for linker benefit (don't affect interface)
+--disable-abbrevs : don't use abbreviated names"
+
+# Initialize some variables set by options.
+# The variables have the same names as the options, with
+# dashes changed to underlines.
+build=NONE
+cache_file=./config.cache
+exec_prefix=NONE
+host=NONE
+no_create=
+nonopt=NONE
+no_recursion=
+prefix=NONE
+program_prefix=NONE
+program_suffix=NONE
+program_transform_name=s,x,x,
+silent=
+site=
+srcdir=
+target=NONE
+verbose=
+x_includes=NONE
+x_libraries=NONE
+bindir='${exec_prefix}/bin'
+sbindir='${exec_prefix}/sbin'
+libexecdir='${exec_prefix}/libexec'
+datadir='${prefix}/share'
+sysconfdir='${prefix}/etc'
+sharedstatedir='${prefix}/com'
+localstatedir='${prefix}/var'
+libdir='${exec_prefix}/lib'
+includedir='${prefix}/include'
+oldincludedir='/usr/include'
+infodir='${prefix}/info'
+mandir='${prefix}/man'
+
+# Initialize some other variables.
+subdirs=
+MFLAGS= MAKEFLAGS=
+# Maximum number of lines to put in a shell here document.
+ac_max_here_lines=12
+
+ac_prev=
+for ac_option
+do
+
+ # If the previous option needs an argument, assign it.
+ if test -n "$ac_prev"; then
+ eval "$ac_prev=\$ac_option"
+ ac_prev=
+ continue
+ fi
+
+ case "$ac_option" in
+ -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
+ *) ac_optarg= ;;
+ esac
+
+ # Accept the important Cygnus configure options, so we can diagnose typos.
+
+ case "$ac_option" in
+
+ -bindir | --bindir | --bindi | --bind | --bin | --bi)
+ ac_prev=bindir ;;
+ -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
+ bindir="$ac_optarg" ;;
+
+ -build | --build | --buil | --bui | --bu)
+ ac_prev=build ;;
+ -build=* | --build=* | --buil=* | --bui=* | --bu=*)
+ build="$ac_optarg" ;;
+
+ -cache-file | --cache-file | --cache-fil | --cache-fi \
+ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
+ ac_prev=cache_file ;;
+ -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
+ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
+ cache_file="$ac_optarg" ;;
+
+ -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
+ ac_prev=datadir ;;
+ -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
+ | --da=*)
+ datadir="$ac_optarg" ;;
+
+ -disable-* | --disable-*)
+ ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
+ # Reject names that are not valid shell variable names.
+ if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
+ { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
+ fi
+ ac_feature=`echo $ac_feature| sed 's/-/_/g'`
+ eval "enable_${ac_feature}=no" ;;
+
+ -enable-* | --enable-*)
+ ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
+ # Reject names that are not valid shell variable names.
+ if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
+ { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
+ fi
+ ac_feature=`echo $ac_feature| sed 's/-/_/g'`
+ case "$ac_option" in
+ *=*) ;;
+ *) ac_optarg=yes ;;
+ esac
+ eval "enable_${ac_feature}='$ac_optarg'" ;;
+
+ -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
+ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
+ | --exec | --exe | --ex)
+ ac_prev=exec_prefix ;;
+ -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
+ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
+ | --exec=* | --exe=* | --ex=*)
+ exec_prefix="$ac_optarg" ;;
+
+ -gas | --gas | --ga | --g)
+ # Obsolete; use --with-gas.
+ with_gas=yes ;;
+
+ -help | --help | --hel | --he)
+ # Omit some internal or obsolete options to make the list less imposing.
+ # This message is too long to be a string in the A/UX 3.1 sh.
+ cat << EOF
+Usage: configure [options] [host]
+Options: [defaults in brackets after descriptions]
+Configuration:
+ --cache-file=FILE cache test results in FILE
+ --help print this message
+ --no-create do not create output files
+ --quiet, --silent do not print \`checking...' messages
+ --version print the version of autoconf that created configure
+Directory and file names:
+ --prefix=PREFIX install architecture-independent files in PREFIX
+ [$ac_default_prefix]
+ --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
+ [same as prefix]
+ --bindir=DIR user executables in DIR [EPREFIX/bin]
+ --sbindir=DIR system admin executables in DIR [EPREFIX/sbin]
+ --libexecdir=DIR program executables in DIR [EPREFIX/libexec]
+ --datadir=DIR read-only architecture-independent data in DIR
+ [PREFIX/share]
+ --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc]
+ --sharedstatedir=DIR modifiable architecture-independent data in DIR
+ [PREFIX/com]
+ --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var]
+ --libdir=DIR object code libraries in DIR [EPREFIX/lib]
+ --includedir=DIR C header files in DIR [PREFIX/include]
+ --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include]
+ --infodir=DIR info documentation in DIR [PREFIX/info]
+ --mandir=DIR man documentation in DIR [PREFIX/man]
+ --srcdir=DIR find the sources in DIR [configure dir or ..]
+ --program-prefix=PREFIX prepend PREFIX to installed program names
+ --program-suffix=SUFFIX append SUFFIX to installed program names
+ --program-transform-name=PROGRAM
+ run sed PROGRAM on installed program names
+EOF
+ cat << EOF
+Host type:
+ --build=BUILD configure for building on BUILD [BUILD=HOST]
+ --host=HOST configure for HOST [guessed]
+ --target=TARGET configure for TARGET [TARGET=HOST]
+Features and packages:
+ --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
+ --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
+ --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
+ --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
+ --x-includes=DIR X include files are in DIR
+ --x-libraries=DIR X library files are in DIR
+EOF
+ if test -n "$ac_help"; then
+ echo "--enable and --with options recognized:$ac_help"
+ fi
+ exit 0 ;;
+
+ -host | --host | --hos | --ho)
+ ac_prev=host ;;
+ -host=* | --host=* | --hos=* | --ho=*)
+ host="$ac_optarg" ;;
+
+ -includedir | --includedir | --includedi | --included | --include \
+ | --includ | --inclu | --incl | --inc)
+ ac_prev=includedir ;;
+ -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
+ | --includ=* | --inclu=* | --incl=* | --inc=*)
+ includedir="$ac_optarg" ;;
+
+ -infodir | --infodir | --infodi | --infod | --info | --inf)
+ ac_prev=infodir ;;
+ -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
+ infodir="$ac_optarg" ;;
+
+ -libdir | --libdir | --libdi | --libd)
+ ac_prev=libdir ;;
+ -libdir=* | --libdir=* | --libdi=* | --libd=*)
+ libdir="$ac_optarg" ;;
+
+ -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
+ | --libexe | --libex | --libe)
+ ac_prev=libexecdir ;;
+ -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
+ | --libexe=* | --libex=* | --libe=*)
+ libexecdir="$ac_optarg" ;;
+
+ -localstatedir | --localstatedir | --localstatedi | --localstated \
+ | --localstate | --localstat | --localsta | --localst \
+ | --locals | --local | --loca | --loc | --lo)
+ ac_prev=localstatedir ;;
+ -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
+ | --localstate=* | --localstat=* | --localsta=* | --localst=* \
+ | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
+ localstatedir="$ac_optarg" ;;
+
+ -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
+ ac_prev=mandir ;;
+ -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
+ mandir="$ac_optarg" ;;
+
+ -nfp | --nfp | --nf)
+ # Obsolete; use --without-fp.
+ with_fp=no ;;
+
+ -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+ | --no-cr | --no-c)
+ no_create=yes ;;
+
+ -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
+ no_recursion=yes ;;
+
+ -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
+ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
+ | --oldin | --oldi | --old | --ol | --o)
+ ac_prev=oldincludedir ;;
+ -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
+ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
+ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
+ oldincludedir="$ac_optarg" ;;
+
+ -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
+ ac_prev=prefix ;;
+ -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
+ prefix="$ac_optarg" ;;
+
+ -program-prefix | --program-prefix | --program-prefi | --program-pref \
+ | --program-pre | --program-pr | --program-p)
+ ac_prev=program_prefix ;;
+ -program-prefix=* | --program-prefix=* | --program-prefi=* \
+ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
+ program_prefix="$ac_optarg" ;;
+
+ -program-suffix | --program-suffix | --program-suffi | --program-suff \
+ | --program-suf | --program-su | --program-s)
+ ac_prev=program_suffix ;;
+ -program-suffix=* | --program-suffix=* | --program-suffi=* \
+ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
+ program_suffix="$ac_optarg" ;;
+
+ -program-transform-name | --program-transform-name \
+ | --program-transform-nam | --program-transform-na \
+ | --program-transform-n | --program-transform- \
+ | --program-transform | --program-transfor \
+ | --program-transfo | --program-transf \
+ | --program-trans | --program-tran \
+ | --progr-tra | --program-tr | --program-t)
+ ac_prev=program_transform_name ;;
+ -program-transform-name=* | --program-transform-name=* \
+ | --program-transform-nam=* | --program-transform-na=* \
+ | --program-transform-n=* | --program-transform-=* \
+ | --program-transform=* | --program-transfor=* \
+ | --program-transfo=* | --program-transf=* \
+ | --program-trans=* | --program-tran=* \
+ | --progr-tra=* | --program-tr=* | --program-t=*)
+ program_transform_name="$ac_optarg" ;;
+
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
+ | -silent | --silent | --silen | --sile | --sil)
+ silent=yes ;;
+
+ -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
+ ac_prev=sbindir ;;
+ -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
+ | --sbi=* | --sb=*)
+ sbindir="$ac_optarg" ;;
+
+ -sharedstatedir | --sharedstatedir | --sharedstatedi \
+ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
+ | --sharedst | --shareds | --shared | --share | --shar \
+ | --sha | --sh)
+ ac_prev=sharedstatedir ;;
+ -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
+ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
+ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
+ | --sha=* | --sh=*)
+ sharedstatedir="$ac_optarg" ;;
+
+ -site | --site | --sit)
+ ac_prev=site ;;
+ -site=* | --site=* | --sit=*)
+ site="$ac_optarg" ;;
+
+ -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
+ ac_prev=srcdir ;;
+ -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
+ srcdir="$ac_optarg" ;;
+
+ -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
+ | --syscon | --sysco | --sysc | --sys | --sy)
+ ac_prev=sysconfdir ;;
+ -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
+ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
+ sysconfdir="$ac_optarg" ;;
+
+ -target | --target | --targe | --targ | --tar | --ta | --t)
+ ac_prev=target ;;
+ -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
+ target="$ac_optarg" ;;
+
+ -v | -verbose | --verbose | --verbos | --verbo | --verb)
+ verbose=yes ;;
+
+ -version | --version | --versio | --versi | --vers)
+ echo "configure generated by autoconf version 2.12"
+ exit 0 ;;
+
+ -with-* | --with-*)
+ ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
+ # Reject names that are not valid shell variable names.
+ if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
+ { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
+ fi
+ ac_package=`echo $ac_package| sed 's/-/_/g'`
+ case "$ac_option" in
+ *=*) ;;
+ *) ac_optarg=yes ;;
+ esac
+ eval "with_${ac_package}='$ac_optarg'" ;;
+
+ -without-* | --without-*)
+ ac_package=`echo $ac_option|sed -e 's/-*without-//'`
+ # Reject names that are not valid shell variable names.
+ if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
+ { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
+ fi
+ ac_package=`echo $ac_package| sed 's/-/_/g'`
+ eval "with_${ac_package}=no" ;;
+
+ --x)
+ # Obsolete; use --with-x.
+ with_x=yes ;;
+
+ -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
+ | --x-incl | --x-inc | --x-in | --x-i)
+ ac_prev=x_includes ;;
+ -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
+ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
+ x_includes="$ac_optarg" ;;
+
+ -x-libraries | --x-libraries | --x-librarie | --x-librari \
+ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
+ ac_prev=x_libraries ;;
+ -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
+ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
+ x_libraries="$ac_optarg" ;;
+
+ -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
+ ;;
+
+ *)
+ if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
+ echo "configure: warning: $ac_option: invalid host type" 1>&2
+ fi
+ if test "x$nonopt" != xNONE; then
+ { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
+ fi
+ nonopt="$ac_option"
+ ;;
+
+ esac
+done
+
+if test -n "$ac_prev"; then
+ { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
+fi
+
+trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
+
+# File descriptor usage:
+# 0 standard input
+# 1 file creation
+# 2 errors and warnings
+# 3 some systems may open it to /dev/tty
+# 4 used on the Kubota Titan
+# 6 checking for... messages and results
+# 5 compiler messages saved in config.log
+if test "$silent" = yes; then
+ exec 6>/dev/null
+else
+ exec 6>&1
+fi
+exec 5>./config.log
+
+echo "\
+This file contains any messages produced by compilers while
+running configure, to aid debugging if configure makes a mistake.
+" 1>&5
+
+# Strip out --no-create and --no-recursion so they do not pile up.
+# Also quote any args containing shell metacharacters.
+ac_configure_args=
+for ac_arg
+do
+ case "$ac_arg" in
+ -no-create | --no-create | --no-creat | --no-crea | --no-cre \
+ | --no-cr | --no-c) ;;
+ -no-recursion | --no-recursion | --no-recursio | --no-recursi \
+ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
+ *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
+ ac_configure_args="$ac_configure_args '$ac_arg'" ;;
+ *) ac_configure_args="$ac_configure_args $ac_arg" ;;
+ esac
+done
+
+# NLS nuisances.
+# Only set these to C if already set. These must not be set unconditionally
+# because not all systems understand e.g. LANG=C (notably SCO).
+# Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
+# Non-C LC_CTYPE values break the ctype check.
+if test "${LANG+set}" = set; then LANG=C; export LANG; fi
+if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
+if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
+if test "${LC_CTYPE+set}" = set; then LC_CTYPE=C; export LC_CTYPE; fi
+
+# confdefs.h avoids OS command line length limits that DEFS can exceed.
+rm -rf conftest* confdefs.h
+# AIX cpp loses on an empty file, so make sure it contains at least a newline.
+echo > confdefs.h
+
+# A filename unique to this package, relative to the directory that
+# configure is in, which we can look for to find out if srcdir is correct.
+ac_unique_file=stlconf.h.in
+
+# Find the source files, if location was not specified.
+if test -z "$srcdir"; then
+ ac_srcdir_defaulted=yes
+ # Try the directory containing this script, then its parent.
+ ac_prog=$0
+ ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
+ test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
+ srcdir=$ac_confdir
+ if test ! -r $srcdir/$ac_unique_file; then
+ srcdir=..
+ fi
+else
+ ac_srcdir_defaulted=no
+fi
+if test ! -r $srcdir/$ac_unique_file; then
+ if test "$ac_srcdir_defaulted" = yes; then
+ { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
+ else
+ { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
+ fi
+fi
+srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
+
+# Prefer explicitly selected file to automatically selected ones.
+if test -z "$CONFIG_SITE"; then
+ if test "x$prefix" != xNONE; then
+ CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
+ else
+ CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
+ fi
+fi
+for ac_site_file in $CONFIG_SITE; do
+ if test -r "$ac_site_file"; then
+ echo "loading site script $ac_site_file"
+ . "$ac_site_file"
+ fi
+done
+
+
+ac_ext=c
+# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
+ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
+cross_compiling=$ac_cv_prog_cc_cross
+
+if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
+ # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
+ if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
+ ac_n= ac_c='
+' ac_t=' '
+ else
+ ac_n=-n ac_c= ac_t=
+ fi
+else
+ ac_n= ac_c='\c' ac_t=
+fi
+
+
+
+
+echo "$ac_t""*** $0: STLport configuration utility ***" 1>&6
+if test "${CXXFLAGS}" = ""; then
+echo "$ac_t""* Note: for best reliability - try \"CXXFLAGS=-treat_warnings_as_errors\" $0 " 1>&6
+echo "$ac_t""* Please don't forget specifying typical CXXFLAGS you'll be using - " 1>&6
+echo "$ac_t""* such as that enabling exceptions handling" 1>&6
+fi
+echo "$ac_t""Please stand by while exploring compiler capabilities..." 1>&6
+echo "$ac_t""Be patient - that may take a while..." 1>&6
+echo "$ac_t""***" 1>&6
+
+# utility function
+check_warning () {
+ warn_str=`tail -1 config.log | egrep -i "arning|\(W\)"`
+ if test "$warn_str" = ""; then
+ return 0
+ else
+ return 1
+ fi
+}
+
+
+# Check whether --enable-extension or --disable-extension was given.
+if test "${enable_extension+set}" = set; then
+ enableval="$enable_extension"
+
+case "$enableval" in
+ no) echo "$ac_t""Info :.cpp used as extension for tests" 1>&6
+ ac_ext=cpp
+ ;;
+ *) echo "$ac_t""Argument : .$enableval used as extension" 1>&6
+ ac_ext=$enableval
+esac
+
+else
+ echo "$ac_t""Info : .cpp used as extension for tests" 1>&6
+ ac_ext=cpp
+
+
+fi
+
+
+# Save that, as it is being redefined several times
+use_ac_ext=$ac_ext
+
+for ac_prog in $CCC c++ g++ gcc CC cxx cc++
+do
+# Extract the first word of "$ac_prog", so it can be a program name with args.
+set dummy $ac_prog; ac_word=$2
+echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+echo "configure:601: checking for $ac_word" >&5
+if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ if test -n "$CXX"; then
+ ac_cv_prog_CXX="$CXX" # Let the user override the test.
+else
+ IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
+ for ac_dir in $PATH; do
+ test -z "$ac_dir" && ac_dir=.
+ if test -f $ac_dir/$ac_word; then
+ ac_cv_prog_CXX="$ac_prog"
+ break
+ fi
+ done
+ IFS="$ac_save_ifs"
+fi
+fi
+CXX="$ac_cv_prog_CXX"
+if test -n "$CXX"; then
+ echo "$ac_t""$CXX" 1>&6
+else
+ echo "$ac_t""no" 1>&6
+fi
+
+test -n "$CXX" && break
+done
+test -n "$CXX" || CXX="gcc"
+
+
+echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6
+echo "configure:632: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5
+
+ac_ext=C
+# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
+ac_cpp='$CXXCPP $CPPFLAGS'
+ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
+ac_link='${CXX-g++} -o conftest $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
+cross_compiling=$ac_cv_prog_cxx_cross
+
+cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+ ac_cv_prog_cxx_works=yes
+ # If we can't run a trivial program, we are probably using a cross compiler.
+ if (./conftest; exit) 2>/dev/null; then
+ ac_cv_prog_cxx_cross=no
+ else
+ ac_cv_prog_cxx_cross=yes
+ fi
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ ac_cv_prog_cxx_works=no
+fi
+rm -fr conftest*
+ac_ext=c
+# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
+ac_cpp='$CPP $CPPFLAGS'
+ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
+ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
+cross_compiling=$ac_cv_prog_cc_cross
+
+echo "$ac_t""$ac_cv_prog_cxx_works" 1>&6
+if test $ac_cv_prog_cxx_works = no; then
+ { echo "configure: error: installation or configuration problem: C++ compiler cannot create executables." 1>&2; exit 1; }
+fi
+echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
+echo "configure:672: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5
+echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6
+cross_compiling=$ac_cv_prog_cxx_cross
+
+echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6
+echo "configure:677: checking whether we are using GNU C++" >&5
+if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ cat > conftest.C <&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
+ ac_cv_prog_gxx=yes
+else
+ ac_cv_prog_gxx=no
+fi
+fi
+
+echo "$ac_t""$ac_cv_prog_gxx" 1>&6
+
+if test $ac_cv_prog_gxx = yes; then
+ GXX=yes
+ ac_test_CXXFLAGS="${CXXFLAGS+set}"
+ ac_save_CXXFLAGS="$CXXFLAGS"
+ CXXFLAGS=
+ echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6
+echo "configure:701: checking whether ${CXX-g++} accepts -g" >&5
+if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ echo 'void f(){}' > conftest.cc
+if test -z "`${CXX-g++} -g -c conftest.cc 2>&1`"; then
+ ac_cv_prog_cxx_g=yes
+else
+ ac_cv_prog_cxx_g=no
+fi
+rm -f conftest*
+
+fi
+
+echo "$ac_t""$ac_cv_prog_cxx_g" 1>&6
+ if test "$ac_test_CXXFLAGS" = set; then
+ CXXFLAGS="$ac_save_CXXFLAGS"
+ elif test $ac_cv_prog_cxx_g = yes; then
+ CXXFLAGS="-g -O2"
+ else
+ CXXFLAGS="-O2"
+ fi
+else
+ GXX=
+ test "${CXXFLAGS+set}" = set || CXXFLAGS="-g"
+fi
+
+ac_ext=$use_ac_ext
+
+ac_ext=C
+# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
+ac_cpp='$CXXCPP $CPPFLAGS'
+ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
+ac_link='${CXX-g++} -o conftest $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
+cross_compiling=$ac_cv_prog_cxx_cross
+
+ac_ext=$use_ac_ext
+
+echo $ac_n "checking size of int""... $ac_c" 1>&6
+echo "configure:740: checking size of int" >&5
+if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ if test "$cross_compiling" = yes; then
+ ac_cv_sizeof_int=4
+else
+ cat > conftest.$ac_ext <
+main()
+{
+ FILE *f=fopen("conftestval", "w");
+ if (!f) exit(1);
+ fprintf(f, "%d\n", sizeof(int));
+ exit(0);
+}
+EOF
+if { (eval echo configure:762: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
+then
+ ac_cv_sizeof_int=`cat conftestval`
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -fr conftest*
+ ac_cv_sizeof_int=0
+fi
+rm -fr conftest*
+fi
+
+fi
+echo "$ac_t""$ac_cv_sizeof_int" 1>&6
+cat >> confdefs.h <> confdefs.h <&6
+echo "configure:790: checking size of long" >&5
+if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ if test "$cross_compiling" = yes; then
+ ac_cv_sizeof_long=4
+else
+ cat > conftest.$ac_ext <
+main()
+{
+ FILE *f=fopen("conftestval", "w");
+ if (!f) exit(1);
+ fprintf(f, "%d\n", sizeof(long));
+ exit(0);
+}
+EOF
+if { (eval echo configure:812: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
+then
+ ac_cv_sizeof_long=`cat conftestval`
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -fr conftest*
+ ac_cv_sizeof_long=0
+fi
+rm -fr conftest*
+fi
+
+fi
+echo "$ac_t""$ac_cv_sizeof_long" 1>&6
+cat >> confdefs.h <> confdefs.h <&6
+echo "configure:839: checking size of short" >&5
+if eval "test \"`echo '$''{'ac_cv_sizeof_short'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+ if test "$cross_compiling" = yes; then
+ ac_cv_sizeof_short=4
+else
+ cat > conftest.$ac_ext <
+main()
+{
+ FILE *f=fopen("conftestval", "w");
+ if (!f) exit(1);
+ fprintf(f, "%d\n", sizeof(short));
+ exit(0);
+}
+EOF
+if { (eval echo configure:861: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
+then
+ ac_cv_sizeof_short=`cat conftestval`
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -fr conftest*
+ ac_cv_sizeof_short=0
+fi
+rm -fr conftest*
+fi
+
+fi
+echo "$ac_t""$ac_cv_sizeof_short" 1>&6
+cat >> confdefs.h <> confdefs.h <&2; exit 1; }
+ fi
+ ac_ext=$use_ac_ext
+ fi
+fi
+ac_ext=$use_ac_ext
+
+
+if test "$ac_cv_c_cross" = "yes"; then
+ CXXFLAGS="${CXXFLAGS} -c"
+fi
+
+ac_ext=$use_ac_ext
+
+echo $ac_n "checking for basic STL compatibility""... $ac_c" 1>&6
+echo "configure:901: checking for basic STL compatibility" >&5
+cat > conftest.$ac_ext <
+struct binary_function {
+ typedef Arg1 first_argument_type;
+ typedef Arg2 second_argument_type;
+ typedef Result result_type;
+};
+template
+struct plus : public binary_function {
+ T operator()(const T& x, const T& y) const;
+};
+
+template
+T plus::operator()(const T& x, const T& y) const { return x + y; }
+plus p;
+
+int main() {
+
+; return 0; }
+EOF
+if { (eval echo configure:925: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+ rm -rf conftest*
+ ac_cv_compat="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ { echo "configure: error: Your compiler won't be able to compile this implementation. Sorry." 1>&2; exit 1; }
+ ac_cv_compat="no"
+
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_compat" 1>&6
+
+echo $ac_n "checking for partial specialization syntax""... $ac_c" 1>&6
+echo "configure:940: checking for partial specialization syntax" >&5
+cat > conftest.$ac_ext < class fs_foo {};
+ template <> class fs_foo {};
+int main() {
+ fs_foo i;
+; return 0; }
+EOF
+if { (eval echo configure:951: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+ rm -rf conftest*
+ _FULL_SPEC="template <>" ac_cv_spec_syntax="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_PARTIAL_SPECIALIZATION_SYNTAX 1
+EOF
+ ac_cv_spec_syntax="no" _FULL_SPEC=""
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_spec_syntax" 1>&6
+
+echo $ac_n "checking for bool keyword""... $ac_c" 1>&6
+echo "configure:967: checking for bool keyword" >&5
+cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_bool="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_BOOL 1
+EOF
+ ac_cv_bool="no"
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_bool" 1>&6
+if test "$ac_cv_bool" = "no"; then
+ echo $ac_n "checking for yvals.h header""... $ac_c" 1>&6
+echo "configure:992: checking for yvals.h header" >&5
+ cat > conftest.$ac_ext <
+ extern bool aaa=true;
+
+int main() {
+
+; return 0; }
+EOF
+if { (eval echo configure:1003: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_YVALS_H 1
+EOF
+ echo "$ac_t""yes" 1>&6
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+
+ echo "$ac_t""no" 1>&6
+ echo $ac_n "checking whether bool is reserved word""... $ac_c" 1>&6
+echo "configure:1016: checking whether bool is reserved word" >&5
+ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_bool_reserved="no"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_DONT_USE_BOOL_TYPEDEF 1
+EOF
+ ac_cv_bool_reserved="yes"
+fi
+rm -f conftest*
+ echo "$ac_t""$ac_cv_bool_reserved" 1>&6
+
+fi
+rm -f conftest*
+fi
+
+echo $ac_n "checking for wchar_t type""... $ac_c" 1>&6
+echo "configure:1045: checking for wchar_t type" >&5
+cat > conftest.$ac_ext <
+ wchar_t wc_foo() { return 'a'; }
+int main() {
+(void)wc_foo();
+; return 0; }
+EOF
+if { (eval echo configure:1055: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_wchar="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_WCHAR_T 1
+EOF
+ ac_cv_wchar="no"
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_wchar" 1>&6
+
+echo $ac_n "checking if wchar_t is unsigned short""... $ac_c" 1>&6
+echo "configure:1071: checking if wchar_t is unsigned short" >&5
+cat > conftest.$ac_ext <
+ template struct foo {};
+ $_FULL_SPEC struct foo {};
+ typedef unsigned short u__short;
+ $_FULL_SPEC struct foo {};
+ foo f1;
+ foo f2;
+
+int main() {
+
+; return 0; }
+EOF
+if { (eval echo configure:1088: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_wchar_short="no"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_WCHAR_T_IS_USHORT 1
+EOF
+ ac_cv_wchar_short="yes"
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_wchar_short" 1>&6
+
+echo $ac_n "checking for long long type""... $ac_c" 1>&6
+echo "configure:1104: checking for long long type" >&5
+cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_LONG_LONG 1
+EOF
+ ac_cv_long_long="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ ac_cv_long_long="no"
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_long_long" 1>&6
+
+echo $ac_n "checking for long double type""... $ac_c" 1>&6
+echo "configure:1129: checking for long double type" >&5
+cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_long_double="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_LONG_DOUBLE 1
+EOF
+ ac_cv_long_double="no"
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_long_double" 1>&6
+
+echo $ac_n "checking for typename keyword""... $ac_c" 1>&6
+echo "configure:1154: checking for typename keyword" >&5
+cat > conftest.$ac_ext <
+struct pair {
+ typedef T1 first_type;
+ typedef T2 second_type;
+};
+
+template
+struct unary_function {
+ typedef Arg argument_type;
+ typedef Result result_type;
+};
+
+template
+struct select2nd : public unary_function {
+ typedef typename Pair::first_type ignored_type;
+ const typename Pair::second_type& operator()(const typename Pair::second_type& x,
+ const ignored_type& ) const
+ {
+ return x;
+ }
+
+};
+
+int main() {
+
+ typedef pair tn_p;
+ select2nd< tn_p > tn_s;
+ (void)tn_s(1,5);
+
+; return 0; }
+EOF
+if { (eval echo configure:1190: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+ rm -rf conftest*
+ __TYPENAME="typename"
+ ac_cv_typename="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ __TYPENAME=""
+ cat >> confdefs.h <<\EOF
+#define _STLP_NEED_TYPENAME 1
+EOF
+
+ ac_cv_typename="no"
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_typename" 1>&6
+
+echo $ac_n "checking for explicit keyword""... $ac_c" 1>&6
+echo "configure:1209: checking for explicit keyword" >&5
+cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_explicit="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_EXPLICIT 1
+EOF
+ ac_cv_explicit="no"
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_explicit" 1>&6
+
+echo $ac_n "checking for mutable keyword""... $ac_c" 1>&6
+echo "configure:1236: checking for mutable keyword" >&5
+cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_mutable="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NEED_MUTABLE 1
+EOF
+ ac_cv_mutable="no"
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_mutable" 1>&6
+
+echo $ac_n "checking for new style casts""... $ac_c" 1>&6
+echo "configure:1263: checking for new style casts" >&5
+cat > conftest.$ac_ext <(&a))
+
+; return 0; }
+EOF
+if { (eval echo configure:1278: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_new_cast="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_NEW_STYLE_CASTS 1
+EOF
+ ac_cv_new_cast="no"
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_new_cast" 1>&6
+
+echo $ac_n "checking for new-style C library headers""... $ac_c" 1>&6
+echo "configure:1294: checking for new-style C library headers" >&5
+cat > conftest.$ac_ext <
+ #include
+ #include
+ #include
+ #include
+ #include
+ #include
+ #ifndef _STLP_NO_WCHAR_T
+ #include
+ #endif
+
+int main() {
+
+; return 0; }
+EOF
+if { (eval echo configure:1314: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_newheaders="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_HAS_NO_NEW_C_HEADERS 1
+EOF
+ ac_cv_newheaders="no"
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_newheaders" 1>&6
+
+echo $ac_n "checking for new-style header""... $ac_c" 1>&6
+echo "configure:1330: checking for new-style header" >&5
+cat > conftest.$ac_ext <
+
+int main() {
+
+; return 0; }
+EOF
+if { (eval echo configure:1341: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_new_new="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_NEW_NEW_HEADER 1
+EOF
+ ac_cv_new_new="no"
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_new_new" 1>&6
+
+
+echo $ac_n "checking for member template methods""... $ac_c" 1>&6
+echo "configure:1358: checking for member template methods" >&5
+cat > conftest.$ac_ext <
+struct mt_foo {
+ typedef Result result_type;
+ template result_type operate(const Arg&) { return Result(); }
+};
+mt_foo p;
+
+int main() {
+
+(void)p.operate((char*)"aaa");
+
+; return 0; }
+EOF
+if { (eval echo configure:1376: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+ rm -rf conftest*
+ ac_cv_member_templates="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_MEMBER_TEMPLATES 1
+EOF
+ ac_cv_member_templates="no"
+
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_member_templates" 1>&6
+
+echo $ac_n "checking for friend templates""... $ac_c" 1>&6
+echo "configure:1393: checking for friend templates" >&5
+cat > conftest.$ac_ext < class foo;
+
+template
+struct ft_foo {
+ typedef Result result_type;
+ template friend class foo;
+};
+ft_foo p;
+
+int main() {
+
+; return 0; }
+EOF
+if { (eval echo configure:1412: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+ rm -rf conftest*
+ ac_cv_friend_templates="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_FRIEND_TEMPLATES 1
+EOF
+ ac_cv_friend_templates="no"
+
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_friend_templates" 1>&6
+
+echo $ac_n "checking for qualified friend templates""... $ac_c" 1>&6
+echo "configure:1429: checking for qualified friend templates" >&5
+cat > conftest.$ac_ext < class foo;
+
+template
+struct ft_foo {
+ typedef Result result_type;
+ template friend class $_TEST_STD::foo;
+};
+ft_foo p;
+${_TEST_STD_END}
+
+
+int main() {
+
+; return 0; }
+EOF
+if { (eval echo configure:1452: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+ rm -rf conftest*
+ ac_cv_qual_friend_templates="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_QUALIFIED_FRIENDS 1
+EOF
+ ac_cv_qual_friend_templates="no"
+
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_qual_friend_templates" 1>&6
+
+echo $ac_n "checking for member template keyword""... $ac_c" 1>&6
+echo "configure:1469: checking for member template keyword" >&5
+cat > conftest.$ac_ext <
+struct nt_foo {
+ typedef Result result_type;
+ template struct rebind { typedef nt_foo other; };
+};
+
+template
+struct _Traits
+{
+ typedef typename _Allocator:: template rebind<_Tp> my_rebind;
+ typedef typename my_rebind::other allocator_type;
+};
+
+nt_foo p;
+_Traits< int, nt_foo > pp;
+
+int main() {
+
+; return 0; }
+EOF
+if { (eval echo configure:1494: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+ rm -rf conftest*
+ ac_cv_member_template_keyword="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_MEMBER_TEMPLATE_KEYWORD 1
+EOF
+ ac_cv_member_template_keyword="no"
+
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_member_template_keyword" 1>&6
+
+if test "$ac_cv_member_template_keyword" = "no"; then
+echo $ac_n "checking for member template classes""... $ac_c" 1>&6
+echo "configure:1512: checking for member template classes" >&5
+cat > conftest.$ac_ext <
+struct nt_foo {
+ typedef Result result_type;
+ template struct rebind { typedef nt_foo other; };
+};
+
+template
+struct _Traits
+{
+ typedef typename _Allocator::rebind<_Tp> my_rebind;
+ typedef typename my_rebind::other allocator_type;
+};
+
+nt_foo p;
+_Traits< int, nt_foo > pp;
+
+int main() {
+
+; return 0; }
+EOF
+if { (eval echo configure:1537: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+ rm -rf conftest*
+ ac_cv_member_template_classes="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_MEMBER_TEMPLATE_CLASSES 1
+EOF
+ ac_cv_member_template_classes="no"
+
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_member_template_classes" 1>&6
+fi
+
+echo $ac_n "checking for partial class specialization""... $ac_c" 1>&6
+echo "configure:1555: checking for partial class specialization" >&5
+cat > conftest.$ac_ext <
+struct ps_foo {
+ typedef Arg argument_type;
+ typedef Result result_type;
+};
+
+template
+struct ps_foo {
+ void bar() {}
+};
+
+template
+struct ps_foo {
+ void foo() {}
+};
+
+ps_foo p;
+ps_foo p1;
+
+int main() {
+p.bar();
+ p1.foo();
+; return 0; }
+EOF
+if { (eval echo configure:1584: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
+ rm -rf conftest*
+ ac_cv_partial_spec="yes"
+else
+ echo "configure: failed program was:" >&5
+ cat conftest.$ac_ext >&5
+ rm -rf conftest*
+ cat >> confdefs.h <<\EOF
+#define _STLP_NO_CLASS_PARTIAL_SPECIALIZATION 1
+EOF
+ ac_cv_partial_spec="no"
+
+fi
+rm -f conftest*
+echo "$ac_t""$ac_cv_partial_spec" 1>&6
+
+if test "$ac_cv_partial_spec" = yes; then
+
+echo $ac_n "checking if explicit args accepted on constructors of partial specialized classes""... $ac_c" 1>&6
+echo "configure:1603: checking if explicit args accepted on constructors of partial specialized classes" >&5
+cat > conftest.$ac_ext <
+struct ps_foo {
+ typedef Arg argument_type;
+ typedef Result result_type;
+};
+
+template
+struct ps_foo {
+ ps_foo() {}
+ void bar() {}
+};
+
+template