From 2661a5a262a460d613ad1c7811fbe48b9662dd2a Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Tue, 9 Jul 2019 01:00:09 +0300 Subject: [PATCH] windows-untested: Remove all contents Issue #105 (bdwgc). CMake script should be used instead. --- windows-untested/README | 4 - windows-untested/gc.def | 2 - windows-untested/gc.rc | 1 - windows-untested/gc.ver | 82 --- windows-untested/stdafx.c | 1 - windows-untested/stdafx.h | 15 - windows-untested/vc60/all.dsp | 63 -- windows-untested/vc60/gc.dsp | 320 ---------- windows-untested/vc60/gc.dsw | 194 ------ windows-untested/vc60/libgc.dsp | 257 -------- windows-untested/vc60/libgcmt.dsp | 217 ------- windows-untested/vc60/test.dsp | 63 -- windows-untested/vc60/test_gc.dsp | 93 --- windows-untested/vc60/test_leak_gc.dsp | 93 --- windows-untested/vc60/test_leak_libgc.dsp | 93 --- windows-untested/vc60/test_leak_libgcmt.dsp | 93 --- windows-untested/vc60/test_libgc.dsp | 93 --- windows-untested/vc60/test_libgcmt.dsp | 93 --- windows-untested/vc60/vc60crlf.cmd | 15 - windows-untested/vc70/all.vcproj | 49 -- windows-untested/vc70/gc.sln | 96 --- windows-untested/vc70/gc.vcproj | 338 ---------- windows-untested/vc70/libgc.vcproj | 249 -------- windows-untested/vc70/libgcmt.vcproj | 219 ------- windows-untested/vc70/test.vcproj | 49 -- windows-untested/vc70/test_gc.vcproj | 127 ---- windows-untested/vc70/test_leak_gc.vcproj | 127 ---- windows-untested/vc70/test_leak_libgc.vcproj | 127 ---- windows-untested/vc70/test_leak_libgcmt.vcproj | 127 ---- windows-untested/vc70/test_libgc.vcproj | 127 ---- windows-untested/vc70/test_libgcmt.vcproj | 127 ---- windows-untested/vc71/all.vcproj | 57 -- windows-untested/vc71/gc.sln | 116 ---- windows-untested/vc71/gc.vcproj | 822 ------------------------- windows-untested/vc71/libgc.vcproj | 729 ---------------------- windows-untested/vc71/libgcmt.vcproj | 699 --------------------- windows-untested/vc71/test.vcproj | 57 -- windows-untested/vc71/test_gc.vcproj | 161 ----- windows-untested/vc71/test_leak_gc.vcproj | 161 ----- windows-untested/vc71/test_leak_libgc.vcproj | 161 ----- windows-untested/vc71/test_leak_libgcmt.vcproj | 161 ----- windows-untested/vc71/test_libgc.vcproj | 161 ----- windows-untested/vc71/test_libgcmt.vcproj | 161 ----- windows-untested/vc9/libgc.vcproj | 433 ------------- windows-untested/vc9/test_cpp_libgc.vcproj | 293 --------- windows-untested/vc9/test_huge.vcproj | 295 --------- windows-untested/vc9/test_leak.vcproj | 295 --------- windows-untested/vc9/test_libgc.vcproj | 289 --------- 48 files changed, 8605 deletions(-) delete mode 100644 windows-untested/README delete mode 100644 windows-untested/gc.def delete mode 100644 windows-untested/gc.rc delete mode 100644 windows-untested/gc.ver delete mode 100644 windows-untested/stdafx.c delete mode 100644 windows-untested/stdafx.h delete mode 100644 windows-untested/vc60/all.dsp delete mode 100644 windows-untested/vc60/gc.dsp delete mode 100644 windows-untested/vc60/gc.dsw delete mode 100644 windows-untested/vc60/libgc.dsp delete mode 100644 windows-untested/vc60/libgcmt.dsp delete mode 100644 windows-untested/vc60/test.dsp delete mode 100644 windows-untested/vc60/test_gc.dsp delete mode 100644 windows-untested/vc60/test_leak_gc.dsp delete mode 100644 windows-untested/vc60/test_leak_libgc.dsp delete mode 100644 windows-untested/vc60/test_leak_libgcmt.dsp delete mode 100644 windows-untested/vc60/test_libgc.dsp delete mode 100644 windows-untested/vc60/test_libgcmt.dsp delete mode 100755 windows-untested/vc60/vc60crlf.cmd delete mode 100644 windows-untested/vc70/all.vcproj delete mode 100644 windows-untested/vc70/gc.sln delete mode 100644 windows-untested/vc70/gc.vcproj delete mode 100644 windows-untested/vc70/libgc.vcproj delete mode 100644 windows-untested/vc70/libgcmt.vcproj delete mode 100644 windows-untested/vc70/test.vcproj delete mode 100644 windows-untested/vc70/test_gc.vcproj delete mode 100644 windows-untested/vc70/test_leak_gc.vcproj delete mode 100644 windows-untested/vc70/test_leak_libgc.vcproj delete mode 100644 windows-untested/vc70/test_leak_libgcmt.vcproj delete mode 100644 windows-untested/vc70/test_libgc.vcproj delete mode 100644 windows-untested/vc70/test_libgcmt.vcproj delete mode 100644 windows-untested/vc71/all.vcproj delete mode 100644 windows-untested/vc71/gc.sln delete mode 100644 windows-untested/vc71/gc.vcproj delete mode 100644 windows-untested/vc71/libgc.vcproj delete mode 100644 windows-untested/vc71/libgcmt.vcproj delete mode 100644 windows-untested/vc71/test.vcproj delete mode 100644 windows-untested/vc71/test_gc.vcproj delete mode 100644 windows-untested/vc71/test_leak_gc.vcproj delete mode 100644 windows-untested/vc71/test_leak_libgc.vcproj delete mode 100644 windows-untested/vc71/test_leak_libgcmt.vcproj delete mode 100644 windows-untested/vc71/test_libgc.vcproj delete mode 100644 windows-untested/vc71/test_libgcmt.vcproj delete mode 100644 windows-untested/vc9/libgc.vcproj delete mode 100644 windows-untested/vc9/test_cpp_libgc.vcproj delete mode 100644 windows-untested/vc9/test_huge.vcproj delete mode 100644 windows-untested/vc9/test_leak.vcproj delete mode 100644 windows-untested/vc9/test_libgc.vcproj diff --git a/windows-untested/README b/windows-untested/README deleted file mode 100644 index 0de3ce7..0000000 --- a/windows-untested/README +++ /dev/null @@ -1,4 +0,0 @@ -gc.def should probably be removed completely. - -I removed an apparently erroneous line for GC_CreateThread. Unfortunately -gc.def is referenced in various other places I cannot easily edit. -HB diff --git a/windows-untested/gc.def b/windows-untested/gc.def deleted file mode 100644 index 2853518..0000000 --- a/windows-untested/gc.def +++ /dev/null @@ -1,2 +0,0 @@ -EXPORTS - GC_version DATA diff --git a/windows-untested/gc.rc b/windows-untested/gc.rc deleted file mode 100644 index 7de7af4..0000000 --- a/windows-untested/gc.rc +++ /dev/null @@ -1 +0,0 @@ -#include "gc.ver" diff --git a/windows-untested/gc.ver b/windows-untested/gc.ver deleted file mode 100644 index 789d450..0000000 --- a/windows-untested/gc.ver +++ /dev/null @@ -1,82 +0,0 @@ -#include -#include - -#include "../include/gc_version.h" - -#define GC_VERSION_REVISION 0 - -#define GC_VERSION ((GC_VERSION_MAJOR) * 100 + GC_VERSION_MINOR) -#define GC_FULL_VERSION ((GC_VERSION) * 10000 + GC_VERSION_MICRO) - -#ifndef __T -# ifdef UNICODE -# define __T(x) L ## x -# else -# define __T(x) x -# endif -#endif - -#define PP_TSTR(x) __T(#x) -#define PP_EVAL_TSTR(x) PP_TSTR(x) - -#define GC_VERSION_STR PP_EVAL_TSTR(GC_VERSION_MAJOR) __T(".") PP_EVAL_TSTR(GC_VERSION_MINOR) -#define GC_FULL_VERSION_STR PP_EVAL_TSTR(GC_VERSION_MAJOR) __T(".") PP_EVAL_TSTR(GC_VERSION_MINOR) __T(".") PP_EVAL_TSTR(GC_VERSION_MICRO) __T(".") PP_EVAL_TSTR(GC_VERSION_REVISION) -#define GC_FULL_VERSION_CSV GC_VERSION_MAJOR, GC_VERSION_MINOR, GC_VERSION_MICRO, GC_VERSION_REVISION - -#ifdef _DEBUG -#define VER_DEBUG VS_FF_DEBUG -#else -#define VER_DEBUG 0 -#endif - -#ifdef _BETA -#define VER_PRERELEASE VS_FF_PRERELEASE -#else -#define VER_PRERELEASE 0 -#endif - -LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US -#pragma code_page(1252) - -VS_VERSION_INFO VERSIONINFO - FILEVERSION GC_FULL_VERSION_CSV - PRODUCTVERSION GC_FULL_VERSION_CSV - FILEFLAGSMASK VS_FFI_FILEFLAGSMASK - FILEFLAGS VER_DEBUG | VER_PRERELEASE - FILEOS VOS__WINDOWS32 - FILETYPE VFT_DLL - FILESUBTYPE VFT2_UNKNOWN -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904B0" - BEGIN - VALUE "CompanyName", "\ -Hans-J. Boehm, \ -Alan J. Demers, \ -Xerox Corporation, \ -Silicon Graphics, \ -and Hewlett-Packard Company. \ -\0" - VALUE "LegalCopyright", "\ -Copyright 1988, 1989 Hans-J. Boehm, Alan J. Demers. \ -Copyright (c) 1991-1995 by Xerox Corporation. All rights reserved. \ -Copyright (c) 1996-1999 by Silicon Graphics. All rights reserved. \ -Copyright (c) 1999-2004 by Hewlett-Packard. All rights reserved. \ -Copyright (c) 2009-2018 Ivan Maidanski. \ -\0" - - VALUE "OriginalFilename", "GC.DLL\0" - VALUE "InternalName", "GC\0" - VALUE "FileDescription", "Conservative Garbage Collector for C and C++\0" - VALUE "FileVersion", GC_FULL_VERSION_STR - - VALUE "ProductName", "Conservative Garbage Collector for C and C++\0" - VALUE "ProductVersion", GC_FULL_VERSION_STR - END - END - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x409, 1200 - END -END diff --git a/windows-untested/stdafx.c b/windows-untested/stdafx.c deleted file mode 100644 index fd4f341..0000000 --- a/windows-untested/stdafx.c +++ /dev/null @@ -1 +0,0 @@ -#include "stdafx.h" diff --git a/windows-untested/stdafx.h b/windows-untested/stdafx.h deleted file mode 100644 index 7f5dcf1..0000000 --- a/windows-untested/stdafx.h +++ /dev/null @@ -1,15 +0,0 @@ -#define WIN32_LEAN_AND_MEAN -#include - -#pragma warning(error: 4013) // function undefined; assuming extern returning int - -#ifdef _MT -# define GC_THREADS 1 -#endif - -#ifdef _DEBUG -# define GC_DEBUG -#endif - -#define SAVE_CALL_CHAIN -#define SAVE_CALL_COUNT 8 diff --git a/windows-untested/vc60/all.dsp b/windows-untested/vc60/all.dsp deleted file mode 100644 index b195df6..0000000 --- a/windows-untested/vc60/all.dsp +++ /dev/null @@ -1,63 +0,0 @@ -# Microsoft Developer Studio Project File - Name="all" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Generic Project" 0x010a - -CFG=all - 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 "all.mak". -!MESSAGE -!MESSAGE You can specify a configuration when running NMAKE -!MESSAGE by defining the macro CFG on the command line. For example: -!MESSAGE -!MESSAGE NMAKE /f "all.mak" CFG="all - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "all - Win32 Release" (based on "Win32 (x86) Generic Project") -!MESSAGE "all - Win32 Debug" (based on "Win32 (x86) Generic Project") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -MTL=midl.exe - -!IF "$(CFG)" == "all - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Release" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "all - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Debug" -# PROP Target_Dir "" - -!ENDIF - -# Begin Target - -# Name "all - Win32 Release" -# Name "all - Win32 Debug" -# End Target -# End Project diff --git a/windows-untested/vc60/gc.dsp b/windows-untested/vc60/gc.dsp deleted file mode 100644 index 19ac61f..0000000 --- a/windows-untested/vc60/gc.dsp +++ /dev/null @@ -1,320 +0,0 @@ -# Microsoft Developer Studio Project File - Name="gc" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=gc - 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 "gc.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 "gc.mak" CFG="gc - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "gc - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "gc - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "gc - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Release\gc" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GC_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\include" /FI"stdafx.h" /D "NDEBUG" /D "_WINDOWS" /D "_USRDLL" /D "GC_DLL" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /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 /i "..\..\include" /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x37C30000" /subsystem:console /dll /debug /machine:I386 /out:"..\..\..\bin/gc60.dll" /implib:"..\..\..\lib/gc.lib" /opt:ref /release -# SUBTRACT LINK32 /pdb:none -# Begin Special Build Tool -OutDir=.\..\..\..\bin -SOURCE="$(InputPath)" -PostBuild_Cmds=del $(OutDir)\..\lib\gc.exp -# End Special Build Tool - -!ELSEIF "$(CFG)" == "gc - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Debug\gc" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "GC_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /GX /Zi /Od /I "..\..\include" /FI"stdafx.h" /D "_DEBUG" /D "_WINDOWS" /D "_USRDLL" /D "GC_DLL" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /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 /i "..\..\include" /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo /o"..\..\..\bin/gcd.bsc" -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /base:"0x37C30000" /subsystem:console /dll /incremental:no /debug /machine:I386 /out:"..\..\..\bin/gc60d.dll" /implib:"..\..\..\lib/gcd.lib" /pdbtype:sept -# SUBTRACT LINK32 /pdb:none -# Begin Special Build Tool -OutDir=.\..\..\..\bin -SOURCE="$(InputPath)" -PostBuild_Cmds=del $(OutDir)\..\lib\gcd.exp -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "gc - Win32 Release" -# Name "gc - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "c;cpp;cc;cxx;tcc;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\allchblk.c -# End Source File -# Begin Source File - -SOURCE=..\..\alloc.c -# End Source File -# Begin Source File - -SOURCE=..\..\backgraph.c -# End Source File -# Begin Source File - -SOURCE=..\..\blacklst.c -# End Source File -# Begin Source File - -SOURCE=..\..\dbg_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\gcj_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\fnlz_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\dyn_load.c -# End Source File -# Begin Source File - -SOURCE=..\..\finalize.c -# End Source File -# Begin Source File - -SOURCE=..\..\headers.c -# End Source File -# Begin Source File - -SOURCE=..\..\mach_dep.c -# End Source File -# Begin Source File - -SOURCE=..\..\malloc.c -# End Source File -# Begin Source File - -SOURCE=..\..\mallocx.c -# End Source File -# Begin Source File - -SOURCE=..\..\mark.c -# End Source File -# Begin Source File - -SOURCE=..\..\mark_rts.c -# End Source File -# Begin Source File - -SOURCE=..\..\misc.c -# End Source File -# Begin Source File - -SOURCE=..\..\extra\msvc_dbg.c -# End Source File -# Begin Source File - -SOURCE=..\..\new_hblk.c -# End Source File -# Begin Source File - -SOURCE=..\..\obj_map.c -# End Source File -# Begin Source File - -SOURCE=..\..\os_dep.c -# End Source File -# Begin Source File - -SOURCE=..\..\ptr_chck.c -# End Source File -# Begin Source File - -SOURCE=..\..\reclaim.c -# End Source File -# Begin Source File - -SOURCE=..\stdafx.c -# ADD CPP /Yc"stdafx.h" -# End Source File -# Begin Source File - -SOURCE=..\..\typd_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\win32_threads.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hh;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\gc.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_allocator.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_backptr.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_config_macros.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_cpp.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_gcj.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\private\gc_hdrs.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_inline.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\private\gc_locks.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_mark.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_disclaim.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\private\gc_pmark.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\private\gc_priv.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_pthread_redirects.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_typed.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\private\gcconfig.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\javaxfc.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\leak_detector.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\private\msvc_dbg.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_alloc_ptrs.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\new_gc_alloc.h -# End Source File -# Begin Source File - -SOURCE=..\stdafx.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_version.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=..\gc.def -# End Source File -# Begin Source File - -SOURCE=..\gc.rc -# End Source File -# Begin Source File - -SOURCE=..\gc.ver -# End Source File -# End Group -# End Target -# End Project diff --git a/windows-untested/vc60/gc.dsw b/windows-untested/vc60/gc.dsw deleted file mode 100644 index c0f2618..0000000 --- a/windows-untested/vc60/gc.dsw +++ /dev/null @@ -1,194 +0,0 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "all"=".\all.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name gc - End Project Dependency - Begin Project Dependency - Project_Dep_Name libgc - End Project Dependency - Begin Project Dependency - Project_Dep_Name libgcmt - End Project Dependency -}}} - -############################################################################### - -Project: "gc"=".\gc.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "libgc"=".\libgc.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "libgcmt"=".\libgcmt.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "test"=".\test.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name test_gc - End Project Dependency - Begin Project Dependency - Project_Dep_Name test_libgc - End Project Dependency - Begin Project Dependency - Project_Dep_Name test_libgcmt - End Project Dependency - Begin Project Dependency - Project_Dep_Name test_leak_gc - End Project Dependency - Begin Project Dependency - Project_Dep_Name test_leak_libgc - End Project Dependency - Begin Project Dependency - Project_Dep_Name test_leak_libgcmt - End Project Dependency -}}} - -############################################################################### - -Project: "test_gc"=".\test_gc.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name gc - End Project Dependency -}}} - -############################################################################### - -Project: "test_leak_gc"=".\test_leak_gc.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name gc - End Project Dependency -}}} - -############################################################################### - -Project: "test_leak_libgc"=".\test_leak_libgc.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libgc - End Project Dependency -}}} - -############################################################################### - -Project: "test_leak_libgcmt"=".\test_leak_libgcmt.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libgcmt - End Project Dependency -}}} - -############################################################################### - -Project: "test_libgc"=".\test_libgc.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libgc - End Project Dependency -}}} - -############################################################################### - -Project: "test_libgcmt"=".\test_libgcmt.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name libgcmt - End Project Dependency -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - diff --git a/windows-untested/vc60/libgc.dsp b/windows-untested/vc60/libgc.dsp deleted file mode 100644 index 8816327..0000000 --- a/windows-untested/vc60/libgc.dsp +++ /dev/null @@ -1,257 +0,0 @@ -# Microsoft Developer Studio Project File - Name="libgc" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=libgc - 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 "libgc.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 "libgc.mak" CFG="libgc - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "libgc - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "libgc - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "libgc - 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 "..\..\..\lib" -# PROP Intermediate_Dir "..\..\..\obj\Release\libgc" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /W3 /GX /Zi /O2 /I "..\..\include" /FI"stdafx.h" /D "NDEBUG" /D "_LIB" /D "WIN32" /D "_MBCS" /Yu"stdafx.h" /Fd"..\..\..\lib\libgc.pdb" /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 -# Begin Special Build Tool -OutDir=.\..\..\..\lib -TargetName=libgc -SOURCE="$(InputPath)" -PostBuild_Cmds=del $(OutDir)\$(TargetName).idb -# End Special Build Tool - -!ELSEIF "$(CFG)" == "libgc - 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 "..\..\..\lib" -# PROP Intermediate_Dir "..\..\..\obj\Debug\libgc" -# 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 /W3 /GX /Zi /Od /I "..\..\include" /FI"stdafx.h" /D "_DEBUG" /D "_LIB" /D "WIN32" /D "_MBCS" /Yu"stdafx.h" /Fd"..\..\..\lib\libgcd.pdb" /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 /o"..\..\..\lib/libgcd.bsc" -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\..\lib\libgcd.lib" -# Begin Special Build Tool -OutDir=.\..\..\..\lib -TargetName=libgcd -SOURCE="$(InputPath)" -PostBuild_Cmds=del $(OutDir)\$(TargetName).idb -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "libgc - Win32 Release" -# Name "libgc - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "c;cpp;cc;cxx;tcc;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\allchblk.c -# End Source File -# Begin Source File - -SOURCE=..\..\alloc.c -# End Source File -# Begin Source File - -SOURCE=..\..\backgraph.c -# End Source File -# Begin Source File - -SOURCE=..\..\blacklst.c -# End Source File -# Begin Source File - -SOURCE=..\..\dbg_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\gcj_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\fnlz_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\dyn_load.c -# End Source File -# Begin Source File - -SOURCE=..\..\finalize.c -# End Source File -# Begin Source File - -SOURCE=..\..\headers.c -# End Source File -# Begin Source File - -SOURCE=..\..\mach_dep.c -# End Source File -# Begin Source File - -SOURCE=..\..\malloc.c -# End Source File -# Begin Source File - -SOURCE=..\..\mallocx.c -# End Source File -# Begin Source File - -SOURCE=..\..\mark.c -# End Source File -# Begin Source File - -SOURCE=..\..\mark_rts.c -# End Source File -# Begin Source File - -SOURCE=..\..\misc.c -# End Source File -# Begin Source File - -SOURCE=..\..\extra\msvc_dbg.c -# End Source File -# Begin Source File - -SOURCE=..\..\new_hblk.c -# End Source File -# Begin Source File - -SOURCE=..\..\obj_map.c -# End Source File -# Begin Source File - -SOURCE=..\..\os_dep.c -# End Source File -# Begin Source File - -SOURCE=..\..\ptr_chck.c -# End Source File -# Begin Source File - -SOURCE=..\..\reclaim.c -# End Source File -# Begin Source File - -SOURCE=..\stdafx.c -# ADD CPP /Yc"stdafx.h" -# End Source File -# Begin Source File - -SOURCE=..\..\typd_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\win32_threads.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hh;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\gc_allocator.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_backptr.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_cpp.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_gcj.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_inline.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_pthread_redirects.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\javaxfc.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\leak_detector.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\private\msvc_dbg.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_alloc_ptrs.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\new_gc_alloc.h -# End Source File -# Begin Source File - -SOURCE=..\stdafx.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_version.h -# End Source File -# End Group -# End Target -# End Project diff --git a/windows-untested/vc60/libgcmt.dsp b/windows-untested/vc60/libgcmt.dsp deleted file mode 100644 index 979a081..0000000 --- a/windows-untested/vc60/libgcmt.dsp +++ /dev/null @@ -1,217 +0,0 @@ -# Microsoft Developer Studio Project File - Name="libgcmt" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=libgcmt - 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 "libgcmt.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 "libgcmt.mak" CFG="libgcmt - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "libgcmt - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "libgcmt - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "libgcmt - 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 "..\..\..\lib" -# PROP Intermediate_Dir "..\..\..\obj\Release\libgcmt" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /Zi /O2 /I "..\..\include" /FI"stdafx.h" /D "NDEBUG" /D "_LIB" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /Yu"stdafx.h" /Fd"..\..\..\lib\libgcmt.pdb" /Zl /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 -# Begin Special Build Tool -OutDir=.\..\..\..\lib -TargetName=libgcmt -SOURCE="$(InputPath)" -PostBuild_Cmds=del $(OutDir)\$(TargetName).idb -# End Special Build Tool - -!ELSEIF "$(CFG)" == "libgcmt - 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 "..\..\..\lib" -# PROP Intermediate_Dir "..\..\..\obj\Debug\libgcmt" -# 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 /MTd /W3 /GX /Zi /Od /I "..\..\include" /FI"stdafx.h" /D "_DEBUG" /D "_LIB" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /Yu"stdafx.h" /Fd"..\..\..\lib\libgcmtd.pdb" /Zl /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 /o"..\..\..\lib/libgcmtd.bsc" -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo /out:"..\..\..\lib\libgcmtd.lib" -# Begin Special Build Tool -OutDir=.\..\..\..\lib -TargetName=libgcmtd -SOURCE="$(InputPath)" -PostBuild_Cmds=del $(OutDir)\$(TargetName).idb -# End Special Build Tool - -!ENDIF - -# Begin Target - -# Name "libgcmt - Win32 Release" -# Name "libgcmt - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "c;cpp;cc;cxx;tcc;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=..\..\allchblk.c -# End Source File -# Begin Source File - -SOURCE=..\..\alloc.c -# End Source File -# Begin Source File - -SOURCE=..\..\backgraph.c -# End Source File -# Begin Source File - -SOURCE=..\..\blacklst.c -# End Source File -# Begin Source File - -SOURCE=..\..\dbg_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\gcj_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\fnlz_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\dyn_load.c -# End Source File -# Begin Source File - -SOURCE=..\..\finalize.c -# End Source File -# Begin Source File - -SOURCE=..\..\headers.c -# End Source File -# Begin Source File - -SOURCE=..\..\mach_dep.c -# End Source File -# Begin Source File - -SOURCE=..\..\malloc.c -# End Source File -# Begin Source File - -SOURCE=..\..\mallocx.c -# End Source File -# Begin Source File - -SOURCE=..\..\mark.c -# End Source File -# Begin Source File - -SOURCE=..\..\mark_rts.c -# End Source File -# Begin Source File - -SOURCE=..\..\misc.c -# End Source File -# Begin Source File - -SOURCE=..\..\extra\msvc_dbg.c -# End Source File -# Begin Source File - -SOURCE=..\..\new_hblk.c -# End Source File -# Begin Source File - -SOURCE=..\..\obj_map.c -# End Source File -# Begin Source File - -SOURCE=..\..\os_dep.c -# End Source File -# Begin Source File - -SOURCE=..\..\ptr_chck.c -# End Source File -# Begin Source File - -SOURCE=..\..\reclaim.c -# End Source File -# Begin Source File - -SOURCE=..\stdafx.c -# ADD CPP /Yc"stdafx.h" -# End Source File -# Begin Source File - -SOURCE=..\..\typd_mlc.c -# End Source File -# Begin Source File - -SOURCE=..\..\win32_threads.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hh;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=..\..\include\private\msvc_dbg.h -# End Source File -# Begin Source File - -SOURCE=..\stdafx.h -# End Source File -# Begin Source File - -SOURCE=..\..\include\gc_version.h -# End Source File -# End Group -# End Target -# End Project diff --git a/windows-untested/vc60/test.dsp b/windows-untested/vc60/test.dsp deleted file mode 100644 index 3648da4..0000000 --- a/windows-untested/vc60/test.dsp +++ /dev/null @@ -1,63 +0,0 @@ -# Microsoft Developer Studio Project File - Name="test" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Generic Project" 0x010a - -CFG=test - 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 "test.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 "test.mak" CFG="test - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "test - Win32 Release" (based on "Win32 (x86) Generic Project") -!MESSAGE "test - Win32 Debug" (based on "Win32 (x86) Generic Project") -!MESSAGE - -# Begin Project -# PROP testowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -MTL=midl.exe - -!IF "$(CFG)" == "test - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Release" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "test - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Debug" -# PROP Target_Dir "" - -!ENDIF - -# Begin Target - -# Name "test - Win32 Release" -# Name "test - Win32 Debug" -# End Target -# End Project diff --git a/windows-untested/vc60/test_gc.dsp b/windows-untested/vc60/test_gc.dsp deleted file mode 100644 index a922563..0000000 --- a/windows-untested/vc60/test_gc.dsp +++ /dev/null @@ -1,93 +0,0 @@ -# Microsoft Developer Studio Project File - Name="test_gc" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=test_gc - 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 "test_gc.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 "test_gc.mak" CFG="test_gc - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "test_gc - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "test_gc - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "test_gc - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Release\test_gc" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\include" /D "NDEBUG" /D "_CONSOLE" /D "GC_DLL" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /FD /c -# SUBTRACT CPP /Fr /YX -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /debug /machine:I386 /release /opt:ref -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "test_gc - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Debug\test_gc" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\include" /D "_DEBUG" /D "_CONSOLE" /D "GC_DLL" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /YX /FD /GZ /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo /o"..\..\..\bin/test_gcd.bsc" -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /incremental:no /debug /machine:I386 /out:"..\..\..\bin/test_gcd.exe" /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "test_gc - Win32 Release" -# Name "test_gc - Win32 Debug" -# Begin Source File - -SOURCE=..\..\tests\test.c -# End Source File -# End Target -# End Project diff --git a/windows-untested/vc60/test_leak_gc.dsp b/windows-untested/vc60/test_leak_gc.dsp deleted file mode 100644 index 273c27d..0000000 --- a/windows-untested/vc60/test_leak_gc.dsp +++ /dev/null @@ -1,93 +0,0 @@ -# Microsoft Developer Studio Project File - Name="test_leak_gc" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=test_leak_gc - 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 "test_leak_gc.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 "test_leak_gc.mak" CFG="test_leak_gc - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "test_leak_gc - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "test_leak_gc - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "test_leak_gc - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Release\test_leak_gc" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /Zi /O2 /I "..\..\include" /D "NDEBUG" /D "_CONSOLE" /D "GC_DLL" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /FD /c -# SUBTRACT CPP /Fr /YX -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /debug /machine:I386 /release /opt:ref -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "test_leak_gc - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Debug\test_leak_gc" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\include" /D "_DEBUG" /D "_CONSOLE" /D "GC_DLL" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /YX /FD /GZ /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo /o"..\..\..\bin/test_leak_gcd.bsc" -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /incremental:no /debug /machine:I386 /out:"..\..\..\bin/test_leak_gcd.exe" /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "test_leak_gc - Win32 Release" -# Name "test_leak_gc - Win32 Debug" -# Begin Source File - -SOURCE=..\..\tests\leak_test.c -# End Source File -# End Target -# End Project diff --git a/windows-untested/vc60/test_leak_libgc.dsp b/windows-untested/vc60/test_leak_libgc.dsp deleted file mode 100644 index 2d92257..0000000 --- a/windows-untested/vc60/test_leak_libgc.dsp +++ /dev/null @@ -1,93 +0,0 @@ -# Microsoft Developer Studio Project File - Name="test_leak_libgc" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=test_leak_libgc - 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 "test_leak_libgc.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 "test_leak_libgc.mak" CFG="test_leak_libgc - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "test_leak_libgc - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "test_leak_libgc - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "test_leak_libgc - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Release\test_leak_libgc" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /Zi /O2 /I "..\..\include" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D "_MBCS" /FD /c -# SUBTRACT CPP /Fr /YX -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /debug /machine:I386 /release /opt:ref -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "test_leak_libgc - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Debug\test_leak_libgc" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /Zi /Od /I "..\..\include" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D "_MBCS" /YX /FD /GZ /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo /o"..\..\..\bin/test_leak_libgcd.bsc" -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /incremental:no /debug /machine:I386 /out:"..\..\..\bin/test_leak_libgcd.exe" /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "test_leak_libgc - Win32 Release" -# Name "test_leak_libgc - Win32 Debug" -# Begin Source File - -SOURCE=..\..\tests\leak_test.c -# End Source File -# End Target -# End Project diff --git a/windows-untested/vc60/test_leak_libgcmt.dsp b/windows-untested/vc60/test_leak_libgcmt.dsp deleted file mode 100644 index 42f9789..0000000 --- a/windows-untested/vc60/test_leak_libgcmt.dsp +++ /dev/null @@ -1,93 +0,0 @@ -# Microsoft Developer Studio Project File - Name="test_leak_libgcmt" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=test_leak_libgcmt - 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 "test_leak_libgcmt.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 "test_leak_libgcmt.mak" CFG="test_leak_libgcmt - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "test_leak_libgcmt - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "test_leak_libgcmt - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "test_leak_libgcmt - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Release\test_leak_libgcmt" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /Zi /O2 /I "..\..\include" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /FD /c -# SUBTRACT CPP /Fr /YX -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /debug /machine:I386 /release /opt:ref -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "test_leak_libgcmt - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Debug\test_leak_libgcmt" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "..\..\include" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /YX /FD /GZ /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo /o"..\..\..\bin/test_leak_libgcmtd.bsc" -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /incremental:no /debug /machine:I386 /out:"..\..\..\bin/test_leak_libgcmtd.exe" /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "test_leak_libgcmt - Win32 Release" -# Name "test_leak_libgcmt - Win32 Debug" -# Begin Source File - -SOURCE=..\..\tests\leak_test.c -# End Source File -# End Target -# End Project diff --git a/windows-untested/vc60/test_libgc.dsp b/windows-untested/vc60/test_libgc.dsp deleted file mode 100644 index d7fa50a..0000000 --- a/windows-untested/vc60/test_libgc.dsp +++ /dev/null @@ -1,93 +0,0 @@ -# Microsoft Developer Studio Project File - Name="test_libgc" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=test_libgc - 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 "test_libgc.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 "test_libgc.mak" CFG="test_libgc - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "test_libgc - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "test_libgc - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "test_libgc - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Release\test_libgc" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX /Zi /O2 /I "..\..\include" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D "_MBCS" /FD /c -# SUBTRACT CPP /Fr /YX -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /debug /machine:I386 /release /opt:ref -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "test_libgc - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Debug\test_libgc" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /Zi /Od /I "..\..\include" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D "_MBCS" /YX /FD /GZ /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo /o"..\..\..\bin/test_libgcd.bsc" -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /incremental:no /debug /machine:I386 /out:"..\..\..\bin/test_libgcd.exe" /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "test_libgc - Win32 Release" -# Name "test_libgc - Win32 Debug" -# Begin Source File - -SOURCE=..\..\tests\test.c -# End Source File -# End Target -# End Project diff --git a/windows-untested/vc60/test_libgcmt.dsp b/windows-untested/vc60/test_libgcmt.dsp deleted file mode 100644 index 6f81a34..0000000 --- a/windows-untested/vc60/test_libgcmt.dsp +++ /dev/null @@ -1,93 +0,0 @@ -# Microsoft Developer Studio Project File - Name="test_libgcmt" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=test_libgcmt - 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 "test_libgcmt.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 "test_libgcmt.mak" CFG="test_libgcmt - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "test_libgcmt - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "test_libgcmt - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "test_libgcmt - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Release\test_libgcmt" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /Zi /O2 /I "..\..\include" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /FD /c -# SUBTRACT CPP /Fr /YX -# ADD BASE RSC /l 0x409 /d "NDEBUG" -# ADD RSC /l 0x409 /d "NDEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /machine:I386 -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /debug /machine:I386 /release /opt:ref -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "test_libgcmt - 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 "..\..\..\bin" -# PROP Intermediate_Dir "..\..\..\obj\Debug\test_libgcmt" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /Zi /Od /I "..\..\include" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D "_MBCS" /D "GC_THREADS" /YX /FD /GZ /c -# SUBTRACT CPP /Fr -# ADD BASE RSC /l 0x409 /d "_DEBUG" -# ADD RSC /l 0x409 /d "_DEBUG" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo /o"..\..\..\bin/test_libgcmtd.bsc" -LINK32=link.exe -# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /incremental:no /debug /machine:I386 /out:"..\..\..\bin/test_libgcmtd.exe" /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "test_libgcmt - Win32 Release" -# Name "test_libgcmt - Win32 Debug" -# Begin Source File - -SOURCE=..\..\tests\test.c -# End Source File -# End Target -# End Project diff --git a/windows-untested/vc60/vc60crlf.cmd b/windows-untested/vc60/vc60crlf.cmd deleted file mode 100755 index 28ec536..0000000 --- a/windows-untested/vc60/vc60crlf.cmd +++ /dev/null @@ -1,15 +0,0 @@ -@echo off -rem This script will convert Unix-style line endings into Windows format. - -for %%P in (*.ds?) do call :fixline %%P -goto :eof - -:fixline -@echo on -if exist "%~1.new" del "%~1.new" -for /f %%S in (%1) do ( - echo %%S>>"%~1.new" -) -ren %1 "%~1.bak" -ren "%~1.new" %1 -goto :eof diff --git a/windows-untested/vc70/all.vcproj b/windows-untested/vc70/all.vcproj deleted file mode 100644 index 512e9a0..0000000 --- a/windows-untested/vc70/all.vcproj +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc70/gc.sln b/windows-untested/vc70/gc.sln deleted file mode 100644 index aaa1be6..0000000 --- a/windows-untested/vc70/gc.sln +++ /dev/null @@ -1,96 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 7.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "all", "all.vcproj", "{CED9D953-AC1A-4795-9853-6D60857509EE}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gc", "gc.vcproj", "{D7ADAD9A-14FF-4C93-9BF1-ACD03FB6A2FA}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgc", "libgc.vcproj", "{F80C47A7-2B2D-4BA9-BEED-AAFA7541650D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgcmt", "libgcmt.vcproj", "{39802D97-BEF7-499D-8570-294AEA39ED7D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test", "test.vcproj", "{997208FE-7A7D-435A-945A-C61C57D8070C}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_gc", "test_gc.vcproj", "{D1F56655-8C27-4320-9436-2A11729A337B}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_leak_gc", "test_leak_gc.vcproj", "{6E545988-1AE7-41FB-A981-D256A84F4C3A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_leak_libgc", "test_leak_libgc.vcproj", "{A561AE5C-33FE-4DBC-A4D4-52B7F196D20F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_leak_libgcmt", "test_leak_libgcmt.vcproj", "{92046CBF-2EF9-408D-B997-8445E945D687}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_libgc", "test_libgc.vcproj", "{8CFE55AA-676C-4B5A-B133-390B4BF02AB8}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_libgcmt", "test_libgcmt.vcproj", "{8C63DB39-DBF4-49D3-A908-172ADA21753B}" -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - ConfigName.0 = Debug - ConfigName.1 = Release - EndGlobalSection - GlobalSection(ProjectDependencies) = postSolution - {CED9D953-AC1A-4795-9853-6D60857509EE}.0 = {39802D97-BEF7-499D-8570-294AEA39ED7D} - {CED9D953-AC1A-4795-9853-6D60857509EE}.1 = {F80C47A7-2B2D-4BA9-BEED-AAFA7541650D} - {CED9D953-AC1A-4795-9853-6D60857509EE}.2 = {D7ADAD9A-14FF-4C93-9BF1-ACD03FB6A2FA} - {997208FE-7A7D-435A-945A-C61C57D8070C}.0 = {92046CBF-2EF9-408D-B997-8445E945D687} - {997208FE-7A7D-435A-945A-C61C57D8070C}.1 = {A561AE5C-33FE-4DBC-A4D4-52B7F196D20F} - {997208FE-7A7D-435A-945A-C61C57D8070C}.2 = {6E545988-1AE7-41FB-A981-D256A84F4C3A} - {997208FE-7A7D-435A-945A-C61C57D8070C}.3 = {8C63DB39-DBF4-49D3-A908-172ADA21753B} - {997208FE-7A7D-435A-945A-C61C57D8070C}.4 = {8CFE55AA-676C-4B5A-B133-390B4BF02AB8} - {997208FE-7A7D-435A-945A-C61C57D8070C}.5 = {D1F56655-8C27-4320-9436-2A11729A337B} - {D1F56655-8C27-4320-9436-2A11729A337B}.0 = {D7ADAD9A-14FF-4C93-9BF1-ACD03FB6A2FA} - {6E545988-1AE7-41FB-A981-D256A84F4C3A}.0 = {D7ADAD9A-14FF-4C93-9BF1-ACD03FB6A2FA} - {A561AE5C-33FE-4DBC-A4D4-52B7F196D20F}.0 = {F80C47A7-2B2D-4BA9-BEED-AAFA7541650D} - {92046CBF-2EF9-408D-B997-8445E945D687}.0 = {39802D97-BEF7-499D-8570-294AEA39ED7D} - {8CFE55AA-676C-4B5A-B133-390B4BF02AB8}.0 = {F80C47A7-2B2D-4BA9-BEED-AAFA7541650D} - {8C63DB39-DBF4-49D3-A908-172ADA21753B}.0 = {39802D97-BEF7-499D-8570-294AEA39ED7D} - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {CED9D953-AC1A-4795-9853-6D60857509EE}.Debug.ActiveCfg = Debug|Win32 - {CED9D953-AC1A-4795-9853-6D60857509EE}.Debug.Build.0 = Debug|Win32 - {CED9D953-AC1A-4795-9853-6D60857509EE}.Release.ActiveCfg = Release|Win32 - {CED9D953-AC1A-4795-9853-6D60857509EE}.Release.Build.0 = Release|Win32 - {D7ADAD9A-14FF-4C93-9BF1-ACD03FB6A2FA}.Debug.ActiveCfg = Debug|Win32 - {D7ADAD9A-14FF-4C93-9BF1-ACD03FB6A2FA}.Debug.Build.0 = Debug|Win32 - {D7ADAD9A-14FF-4C93-9BF1-ACD03FB6A2FA}.Release.ActiveCfg = Release|Win32 - {D7ADAD9A-14FF-4C93-9BF1-ACD03FB6A2FA}.Release.Build.0 = Release|Win32 - {F80C47A7-2B2D-4BA9-BEED-AAFA7541650D}.Debug.ActiveCfg = Debug|Win32 - {F80C47A7-2B2D-4BA9-BEED-AAFA7541650D}.Debug.Build.0 = Debug|Win32 - {F80C47A7-2B2D-4BA9-BEED-AAFA7541650D}.Release.ActiveCfg = Release|Win32 - {F80C47A7-2B2D-4BA9-BEED-AAFA7541650D}.Release.Build.0 = Release|Win32 - {39802D97-BEF7-499D-8570-294AEA39ED7D}.Debug.ActiveCfg = Debug|Win32 - {39802D97-BEF7-499D-8570-294AEA39ED7D}.Debug.Build.0 = Debug|Win32 - {39802D97-BEF7-499D-8570-294AEA39ED7D}.Release.ActiveCfg = Release|Win32 - {39802D97-BEF7-499D-8570-294AEA39ED7D}.Release.Build.0 = Release|Win32 - {997208FE-7A7D-435A-945A-C61C57D8070C}.Debug.ActiveCfg = Debug|Win32 - {997208FE-7A7D-435A-945A-C61C57D8070C}.Debug.Build.0 = Debug|Win32 - {997208FE-7A7D-435A-945A-C61C57D8070C}.Release.ActiveCfg = Release|Win32 - {997208FE-7A7D-435A-945A-C61C57D8070C}.Release.Build.0 = Release|Win32 - {D1F56655-8C27-4320-9436-2A11729A337B}.Debug.ActiveCfg = Debug|Win32 - {D1F56655-8C27-4320-9436-2A11729A337B}.Debug.Build.0 = Debug|Win32 - {D1F56655-8C27-4320-9436-2A11729A337B}.Release.ActiveCfg = Release|Win32 - {D1F56655-8C27-4320-9436-2A11729A337B}.Release.Build.0 = Release|Win32 - {6E545988-1AE7-41FB-A981-D256A84F4C3A}.Debug.ActiveCfg = Debug|Win32 - {6E545988-1AE7-41FB-A981-D256A84F4C3A}.Debug.Build.0 = Debug|Win32 - {6E545988-1AE7-41FB-A981-D256A84F4C3A}.Release.ActiveCfg = Release|Win32 - {6E545988-1AE7-41FB-A981-D256A84F4C3A}.Release.Build.0 = Release|Win32 - {A561AE5C-33FE-4DBC-A4D4-52B7F196D20F}.Debug.ActiveCfg = Debug|Win32 - {A561AE5C-33FE-4DBC-A4D4-52B7F196D20F}.Debug.Build.0 = Debug|Win32 - {A561AE5C-33FE-4DBC-A4D4-52B7F196D20F}.Release.ActiveCfg = Release|Win32 - {A561AE5C-33FE-4DBC-A4D4-52B7F196D20F}.Release.Build.0 = Release|Win32 - {92046CBF-2EF9-408D-B997-8445E945D687}.Debug.ActiveCfg = Debug|Win32 - {92046CBF-2EF9-408D-B997-8445E945D687}.Debug.Build.0 = Debug|Win32 - {92046CBF-2EF9-408D-B997-8445E945D687}.Release.ActiveCfg = Release|Win32 - {92046CBF-2EF9-408D-B997-8445E945D687}.Release.Build.0 = Release|Win32 - {8CFE55AA-676C-4B5A-B133-390B4BF02AB8}.Debug.ActiveCfg = Debug|Win32 - {8CFE55AA-676C-4B5A-B133-390B4BF02AB8}.Debug.Build.0 = Debug|Win32 - {8CFE55AA-676C-4B5A-B133-390B4BF02AB8}.Release.ActiveCfg = Release|Win32 - {8CFE55AA-676C-4B5A-B133-390B4BF02AB8}.Release.Build.0 = Release|Win32 - {8C63DB39-DBF4-49D3-A908-172ADA21753B}.Debug.ActiveCfg = Debug|Win32 - {8C63DB39-DBF4-49D3-A908-172ADA21753B}.Debug.Build.0 = Debug|Win32 - {8C63DB39-DBF4-49D3-A908-172ADA21753B}.Release.ActiveCfg = Release|Win32 - {8C63DB39-DBF4-49D3-A908-172ADA21753B}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/windows-untested/vc70/gc.vcproj b/windows-untested/vc70/gc.vcproj deleted file mode 100644 index 272294a..0000000 --- a/windows-untested/vc70/gc.vcproj +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc70/libgc.vcproj b/windows-untested/vc70/libgc.vcproj deleted file mode 100644 index 68337c9..0000000 --- a/windows-untested/vc70/libgc.vcproj +++ /dev/null @@ -1,249 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc70/libgcmt.vcproj b/windows-untested/vc70/libgcmt.vcproj deleted file mode 100644 index 2c2704a..0000000 --- a/windows-untested/vc70/libgcmt.vcproj +++ /dev/null @@ -1,219 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc70/test.vcproj b/windows-untested/vc70/test.vcproj deleted file mode 100644 index 4b6170d..0000000 --- a/windows-untested/vc70/test.vcproj +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc70/test_gc.vcproj b/windows-untested/vc70/test_gc.vcproj deleted file mode 100644 index 8802cf6..0000000 --- a/windows-untested/vc70/test_gc.vcproj +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc70/test_leak_gc.vcproj b/windows-untested/vc70/test_leak_gc.vcproj deleted file mode 100644 index 4b12168..0000000 --- a/windows-untested/vc70/test_leak_gc.vcproj +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc70/test_leak_libgc.vcproj b/windows-untested/vc70/test_leak_libgc.vcproj deleted file mode 100644 index 05a1be4..0000000 --- a/windows-untested/vc70/test_leak_libgc.vcproj +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc70/test_leak_libgcmt.vcproj b/windows-untested/vc70/test_leak_libgcmt.vcproj deleted file mode 100644 index 8f4f8bd..0000000 --- a/windows-untested/vc70/test_leak_libgcmt.vcproj +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc70/test_libgc.vcproj b/windows-untested/vc70/test_libgc.vcproj deleted file mode 100644 index 110c396..0000000 --- a/windows-untested/vc70/test_libgc.vcproj +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc70/test_libgcmt.vcproj b/windows-untested/vc70/test_libgcmt.vcproj deleted file mode 100644 index 1353cdf..0000000 --- a/windows-untested/vc70/test_libgcmt.vcproj +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc71/all.vcproj b/windows-untested/vc71/all.vcproj deleted file mode 100644 index 2f4d7ae..0000000 --- a/windows-untested/vc71/all.vcproj +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc71/gc.sln b/windows-untested/vc71/gc.sln deleted file mode 100644 index fa1acc8..0000000 --- a/windows-untested/vc71/gc.sln +++ /dev/null @@ -1,116 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 8.00 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "all", "all.vcproj", "{684E465A-3944-4BA0-BA8D-52A064B43A5D}" - ProjectSection(ProjectDependencies) = postProject - {EDA8C8B6-2538-4F1E-9C9A-F5C4FAF1EC16} = {EDA8C8B6-2538-4F1E-9C9A-F5C4FAF1EC16} - {1C32FB8B-6F91-4190-9F05-CE1E772BB5E0} = {1C32FB8B-6F91-4190-9F05-CE1E772BB5E0} - {93622AAF-633A-4D02-B023-674D4CDA266B} = {93622AAF-633A-4D02-B023-674D4CDA266B} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gc", "gc.vcproj", "{93622AAF-633A-4D02-B023-674D4CDA266B}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgc", "libgc.vcproj", "{1C32FB8B-6F91-4190-9F05-CE1E772BB5E0}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libgcmt", "libgcmt.vcproj", "{EDA8C8B6-2538-4F1E-9C9A-F5C4FAF1EC16}" - ProjectSection(ProjectDependencies) = postProject - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test", "test.vcproj", "{1891ADD8-C39B-494B-B69D-D64F76729E5A}" - ProjectSection(ProjectDependencies) = postProject - {8A595901-33E6-4959-A8E9-6DACC2D57330} = {8A595901-33E6-4959-A8E9-6DACC2D57330} - {EB1D2ECA-926D-4B6E-BF65-B429C713381C} = {EB1D2ECA-926D-4B6E-BF65-B429C713381C} - {500B7CE2-FD16-42C5-B738-1406C13A68B4} = {500B7CE2-FD16-42C5-B738-1406C13A68B4} - {9551B5E4-94A5-4B04-ACA1-9FB28DFD28AA} = {9551B5E4-94A5-4B04-ACA1-9FB28DFD28AA} - {B0F6C137-5153-48E3-ABED-6C02D3912EDA} = {B0F6C137-5153-48E3-ABED-6C02D3912EDA} - {1911057C-30C3-41CE-AF9E-232AEB37BCD3} = {1911057C-30C3-41CE-AF9E-232AEB37BCD3} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_gc", "test_gc.vcproj", "{1911057C-30C3-41CE-AF9E-232AEB37BCD3}" - ProjectSection(ProjectDependencies) = postProject - {93622AAF-633A-4D02-B023-674D4CDA266B} = {93622AAF-633A-4D02-B023-674D4CDA266B} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_leak_gc", "test_leak_gc.vcproj", "{500B7CE2-FD16-42C5-B738-1406C13A68B4}" - ProjectSection(ProjectDependencies) = postProject - {93622AAF-633A-4D02-B023-674D4CDA266B} = {93622AAF-633A-4D02-B023-674D4CDA266B} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_leak_libgc", "test_leak_libgc.vcproj", "{EB1D2ECA-926D-4B6E-BF65-B429C713381C}" - ProjectSection(ProjectDependencies) = postProject - {1C32FB8B-6F91-4190-9F05-CE1E772BB5E0} = {1C32FB8B-6F91-4190-9F05-CE1E772BB5E0} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_leak_libgcmt", "test_leak_libgcmt.vcproj", "{8A595901-33E6-4959-A8E9-6DACC2D57330}" - ProjectSection(ProjectDependencies) = postProject - {EDA8C8B6-2538-4F1E-9C9A-F5C4FAF1EC16} = {EDA8C8B6-2538-4F1E-9C9A-F5C4FAF1EC16} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_libgc", "test_libgc.vcproj", "{B0F6C137-5153-48E3-ABED-6C02D3912EDA}" - ProjectSection(ProjectDependencies) = postProject - {1C32FB8B-6F91-4190-9F05-CE1E772BB5E0} = {1C32FB8B-6F91-4190-9F05-CE1E772BB5E0} - EndProjectSection -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_libgcmt", "test_libgcmt.vcproj", "{9551B5E4-94A5-4B04-ACA1-9FB28DFD28AA}" - ProjectSection(ProjectDependencies) = postProject - {EDA8C8B6-2538-4F1E-9C9A-F5C4FAF1EC16} = {EDA8C8B6-2538-4F1E-9C9A-F5C4FAF1EC16} - EndProjectSection -EndProject -Global - GlobalSection(SolutionConfiguration) = preSolution - Debug = Debug - Release = Release - EndGlobalSection - GlobalSection(ProjectConfiguration) = postSolution - {684E465A-3944-4BA0-BA8D-52A064B43A5D}.Debug.ActiveCfg = Debug|Win32 - {684E465A-3944-4BA0-BA8D-52A064B43A5D}.Debug.Build.0 = Debug|Win32 - {684E465A-3944-4BA0-BA8D-52A064B43A5D}.Release.ActiveCfg = Release|Win32 - {684E465A-3944-4BA0-BA8D-52A064B43A5D}.Release.Build.0 = Release|Win32 - {93622AAF-633A-4D02-B023-674D4CDA266B}.Debug.ActiveCfg = Debug|Win32 - {93622AAF-633A-4D02-B023-674D4CDA266B}.Debug.Build.0 = Debug|Win32 - {93622AAF-633A-4D02-B023-674D4CDA266B}.Release.ActiveCfg = Release|Win32 - {93622AAF-633A-4D02-B023-674D4CDA266B}.Release.Build.0 = Release|Win32 - {1C32FB8B-6F91-4190-9F05-CE1E772BB5E0}.Debug.ActiveCfg = Debug|Win32 - {1C32FB8B-6F91-4190-9F05-CE1E772BB5E0}.Debug.Build.0 = Debug|Win32 - {1C32FB8B-6F91-4190-9F05-CE1E772BB5E0}.Release.ActiveCfg = Release|Win32 - {1C32FB8B-6F91-4190-9F05-CE1E772BB5E0}.Release.Build.0 = Release|Win32 - {EDA8C8B6-2538-4F1E-9C9A-F5C4FAF1EC16}.Debug.ActiveCfg = Debug|Win32 - {EDA8C8B6-2538-4F1E-9C9A-F5C4FAF1EC16}.Debug.Build.0 = Debug|Win32 - {EDA8C8B6-2538-4F1E-9C9A-F5C4FAF1EC16}.Release.ActiveCfg = Release|Win32 - {EDA8C8B6-2538-4F1E-9C9A-F5C4FAF1EC16}.Release.Build.0 = Release|Win32 - {1891ADD8-C39B-494B-B69D-D64F76729E5A}.Debug.ActiveCfg = Debug|Win32 - {1891ADD8-C39B-494B-B69D-D64F76729E5A}.Debug.Build.0 = Debug|Win32 - {1891ADD8-C39B-494B-B69D-D64F76729E5A}.Release.ActiveCfg = Release|Win32 - {1891ADD8-C39B-494B-B69D-D64F76729E5A}.Release.Build.0 = Release|Win32 - {1911057C-30C3-41CE-AF9E-232AEB37BCD3}.Debug.ActiveCfg = Debug|Win32 - {1911057C-30C3-41CE-AF9E-232AEB37BCD3}.Debug.Build.0 = Debug|Win32 - {1911057C-30C3-41CE-AF9E-232AEB37BCD3}.Release.ActiveCfg = Release|Win32 - {1911057C-30C3-41CE-AF9E-232AEB37BCD3}.Release.Build.0 = Release|Win32 - {500B7CE2-FD16-42C5-B738-1406C13A68B4}.Debug.ActiveCfg = Debug|Win32 - {500B7CE2-FD16-42C5-B738-1406C13A68B4}.Debug.Build.0 = Debug|Win32 - {500B7CE2-FD16-42C5-B738-1406C13A68B4}.Release.ActiveCfg = Release|Win32 - {500B7CE2-FD16-42C5-B738-1406C13A68B4}.Release.Build.0 = Release|Win32 - {EB1D2ECA-926D-4B6E-BF65-B429C713381C}.Debug.ActiveCfg = Debug|Win32 - {EB1D2ECA-926D-4B6E-BF65-B429C713381C}.Debug.Build.0 = Debug|Win32 - {EB1D2ECA-926D-4B6E-BF65-B429C713381C}.Release.ActiveCfg = Release|Win32 - {EB1D2ECA-926D-4B6E-BF65-B429C713381C}.Release.Build.0 = Release|Win32 - {8A595901-33E6-4959-A8E9-6DACC2D57330}.Debug.ActiveCfg = Debug|Win32 - {8A595901-33E6-4959-A8E9-6DACC2D57330}.Debug.Build.0 = Debug|Win32 - {8A595901-33E6-4959-A8E9-6DACC2D57330}.Release.ActiveCfg = Release|Win32 - {8A595901-33E6-4959-A8E9-6DACC2D57330}.Release.Build.0 = Release|Win32 - {B0F6C137-5153-48E3-ABED-6C02D3912EDA}.Debug.ActiveCfg = Debug|Win32 - {B0F6C137-5153-48E3-ABED-6C02D3912EDA}.Debug.Build.0 = Debug|Win32 - {B0F6C137-5153-48E3-ABED-6C02D3912EDA}.Release.ActiveCfg = Release|Win32 - {B0F6C137-5153-48E3-ABED-6C02D3912EDA}.Release.Build.0 = Release|Win32 - {9551B5E4-94A5-4B04-ACA1-9FB28DFD28AA}.Debug.ActiveCfg = Debug|Win32 - {9551B5E4-94A5-4B04-ACA1-9FB28DFD28AA}.Debug.Build.0 = Debug|Win32 - {9551B5E4-94A5-4B04-ACA1-9FB28DFD28AA}.Release.ActiveCfg = Release|Win32 - {9551B5E4-94A5-4B04-ACA1-9FB28DFD28AA}.Release.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - EndGlobalSection - GlobalSection(ExtensibilityAddIns) = postSolution - EndGlobalSection -EndGlobal diff --git a/windows-untested/vc71/gc.vcproj b/windows-untested/vc71/gc.vcproj deleted file mode 100644 index 4a53d4b..0000000 --- a/windows-untested/vc71/gc.vcproj +++ /dev/null @@ -1,822 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc71/libgc.vcproj b/windows-untested/vc71/libgc.vcproj deleted file mode 100644 index 34d9a3d..0000000 --- a/windows-untested/vc71/libgc.vcproj +++ /dev/null @@ -1,729 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc71/libgcmt.vcproj b/windows-untested/vc71/libgcmt.vcproj deleted file mode 100644 index bce8c38..0000000 --- a/windows-untested/vc71/libgcmt.vcproj +++ /dev/null @@ -1,699 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc71/test.vcproj b/windows-untested/vc71/test.vcproj deleted file mode 100644 index 4168197..0000000 --- a/windows-untested/vc71/test.vcproj +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc71/test_gc.vcproj b/windows-untested/vc71/test_gc.vcproj deleted file mode 100644 index d477d70..0000000 --- a/windows-untested/vc71/test_gc.vcproj +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc71/test_leak_gc.vcproj b/windows-untested/vc71/test_leak_gc.vcproj deleted file mode 100644 index b6c980c..0000000 --- a/windows-untested/vc71/test_leak_gc.vcproj +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc71/test_leak_libgc.vcproj b/windows-untested/vc71/test_leak_libgc.vcproj deleted file mode 100644 index 0486f1e..0000000 --- a/windows-untested/vc71/test_leak_libgc.vcproj +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc71/test_leak_libgcmt.vcproj b/windows-untested/vc71/test_leak_libgcmt.vcproj deleted file mode 100644 index 297464d..0000000 --- a/windows-untested/vc71/test_leak_libgcmt.vcproj +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc71/test_libgc.vcproj b/windows-untested/vc71/test_libgc.vcproj deleted file mode 100644 index 93d35f4..0000000 --- a/windows-untested/vc71/test_libgc.vcproj +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc71/test_libgcmt.vcproj b/windows-untested/vc71/test_libgcmt.vcproj deleted file mode 100644 index 276aed5..0000000 --- a/windows-untested/vc71/test_libgcmt.vcproj +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc9/libgc.vcproj b/windows-untested/vc9/libgc.vcproj deleted file mode 100644 index 25512c2..0000000 --- a/windows-untested/vc9/libgc.vcproj +++ /dev/null @@ -1,433 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc9/test_cpp_libgc.vcproj b/windows-untested/vc9/test_cpp_libgc.vcproj deleted file mode 100644 index 0a6a88c..0000000 --- a/windows-untested/vc9/test_cpp_libgc.vcproj +++ /dev/null @@ -1,293 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc9/test_huge.vcproj b/windows-untested/vc9/test_huge.vcproj deleted file mode 100644 index 0ad1b2d..0000000 --- a/windows-untested/vc9/test_huge.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc9/test_leak.vcproj b/windows-untested/vc9/test_leak.vcproj deleted file mode 100644 index 1ee9243..0000000 --- a/windows-untested/vc9/test_leak.vcproj +++ /dev/null @@ -1,295 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows-untested/vc9/test_libgc.vcproj b/windows-untested/vc9/test_libgc.vcproj deleted file mode 100644 index 65e9005..0000000 --- a/windows-untested/vc9/test_libgc.vcproj +++ /dev/null @@ -1,289 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- 2.7.4