1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Upgrade to 20021101 release (aka 1.0), which fixes compilation on

recent FreeBSD versions and allows to remove all of the gcc 3.x
fixes. sscli now supports Darwin/ppc, so that it might be possible
to port it to FreeBSD/ppc once it is available.
This commit is contained in:
Maxim Sobolev 2003-04-24 11:17:57 +00:00
parent e5cd9dacdf
commit 062cd21bb1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=79580
20 changed files with 281 additions and 2624 deletions

View File

@ -6,12 +6,9 @@
#
PORTNAME= cli
PORTVERSION= 20020619
PORTVERSION= 20021101
CATEGORIES= lang
MASTER_SITES= http://download.microsoft.com/download/.netframesdk/CLI/Beta2/WXP/EN-US/ \
http://download.microsoft.com/download/.netframesdk/Beta2/WXP/EN-US/ \
http://www.corel.com/6763/downloads/mirror/microsoft/rotor/ \
ftp://ftp.corel.com/pub/mirror/Microsoft/rotor/
MASTER_SITES= http://download.microsoft.com/download/.netframesdk/cli3/1.0/wxp/en-us/
DISTNAME= sscli_${PORTVERSION}
EXTRACT_SUFX= .tgz
@ -24,6 +21,7 @@ RESTRICTED= "license terms need to be reviewed"
NO_CDROM= ${RESTRICTED}
NO_PACKAGE= ${RESTRICTED}
USE_REINPLACE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= ${BUILD_TYPE}
CONFIGURE_SCRIPT= portconfigure
@ -36,12 +34,19 @@ PLIST_SUB= CLI_VERSION="${PORTVERSION}"
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 500000
EXTRA_PATCHES!= ${ECHO_CMD} ${PKGDIR}/files.5/patch-*
GCC_LIB= -lstdc++ -lgcc -lc_r -lc
.else
GCC_LIB= -lstdc++ -lgcc -lc_r
.endif
post-extract:
@${CP} ${SCRIPTDIR}/portconfigure ${WRKSRC}
post-patch:
@${REINPLACE_CMD} -e 's|%%GCC_LIB%%|${GCC_LIB}|g' \
${WRKSRC}/makefile.common.in \
${WRKSRC}/rotorenv/bin/rotor_x86mk.inc
do-build:
@(cd ${BUILD_WRKSRC}; ${SETENV} ${MAKE_ENV} ./buildall ${BUILD_TYPE})

View File

@ -1 +1 @@
MD5 (sscli_20020619.tgz) = b76f487d46010c488bb0936cedb0137d
MD5 (sscli_20021101.tgz) = be9abced1e3ed97cf94a79f41a15171a

File diff suppressed because it is too large Load Diff

View File

@ -1,14 +0,0 @@
$FreeBSD$
--- makefile.common.in.orig Fri Mar 22 03:48:17 2002
+++ makefile.common.in Fri Mar 29 00:54:26 2002
@@ -50,7 +50,7 @@
# This should come last in the list of parameters to gcc or ld
# because otherwise /usr/lib might be searched when it shouldn't
# be.
-GCC_LIB = -L/usr/lib -lgcc
+GCC_LIB = -L/usr/lib -lgcc -lstdc++ -lc_r -lc
# The C runtime static libraries that we need to get an application
# up and running.

View File

@ -1,26 +0,0 @@
$FreeBSD$
--- pal/unix/file/find.c 2002/07/28 21:36:17 1.1
+++ pal/unix/file/find.c 2002/07/28 22:11:44
@@ -59,6 +59,7 @@
HANDLE hRet = INVALID_HANDLE_VALUE;
DWORD dwLastError = NO_ERROR;
find_obj *find_data = NULL;
+ int rval;
ENTRY("FindFirstFileA(lpFileName=%s, lpFindFileData=%p)\n",
lpFileName?lpFileName:"NULL", lpFindFileData);
@@ -86,9 +87,10 @@
find_data->self_addr = find_data;
- if ( FILEDosGlobA(lpFileName, 0, NULL, &(find_data->glob)) != 0 )
+ if ( (rval = FILEDosGlobA(lpFileName, 0, NULL, &(find_data->glob))) != 0 &&
+ rval != GLOB_NOMATCH )
{
- if ( errno == GLOB_NOSPACE )
+ if ( rval == GLOB_NOSPACE )
{
ERROR("glob failed on pattern [%s]\n", lpFileName);
dwLastError = ERROR_NOT_ENOUGH_MEMORY;

View File

@ -1,14 +0,0 @@
$FreeBSD$
--- pal/unix/makefile.in.orig Thu Jun 20 02:44:00 2002
+++ pal/unix/makefile.in Fri Jul 26 18:04:01 2002
@@ -120,7 +120,7 @@
#the recursive librotor_pal target does that
$(MODULE_PATH)$(MODULE_NAME): $(OBJS)
$(CC) $(PTHREAD_OPTIONS) -shared -Wl,-soname,$(MODULE_NAME) $(OBJS) \
- -o "$(MODULE_PATH)$(MODULE_NAME)" -lc_r -lm -Wl,-R,/usr/lib/crt1.o
+ -o "$(MODULE_PATH)$(MODULE_NAME)" -lm -lstdc++ -lc_r -lc -Wl,-R,/usr/lib/crt1.o
makefile : makefile.in

View File

@ -1,15 +0,0 @@
$FreeBSD$
--- rotorenv/bin/makefile.def.orig Fri Mar 22 03:48:24 2002
+++ rotorenv/bin/makefile.def Fri Mar 29 01:27:08 2002
@@ -1676,7 +1676,8 @@
!endif
LINKER_FLAGS = $(LINKER_FLAGS:/LARGEADDRESSAWARE=) \
$(LINK_INCREMENTAL_FLAG) \
- $(REQUIRED_C_RUNTIME)
+ $(REQUIRED_C_RUNTIME) \
+ -lstdc++ -lc_r -lc
!else
LINKER_FLAGS = $(LINKER_FLAGS) \
-MERGE:_PAGE=PAGE \

View File

@ -1,14 +0,0 @@
$FreeBSD$
--- rotorenv/bin/rotor_x86mk.inc.orig Thu Jun 20 02:44:05 2002
+++ rotorenv/bin/rotor_x86mk.inc Tue Jul 30 15:45:22 2002
@@ -347,7 +347,7 @@
!ifdef PLATFORM_UNIX
C_COMPILER_FLAGS = $(NP_COMPILER_FLAGS)
CXX_COMPILER_FLAGS = $(NP_COMPILER_FLAGS)
-C_PREPROCESSOR_FLAGS = $(GLOBAL_C_FLAGS) -E
+C_PREPROCESSOR_FLAGS = $(GLOBAL_C_FLAGS) -E -w
!else
C_COMPILER_FLAGS = $(NP_COMPILER_FLAGS) $(PRECOMPILED)
CXX_COMPILER_FLAGS = $(NP_COMPILER_FLAGS) $(PRECOMPILED_CXX)

View File

@ -1,14 +0,0 @@
$FreeBSD$
--- tools/nmake/makefile.in.orig Thu Jun 20 02:45:41 2002
+++ tools/nmake/makefile.in Fri Jul 26 18:33:33 2002
@@ -57,7 +57,7 @@
all: makefile $(TARGET_NAME)
$(TARGET_NAME) : makefile $(OBJS)
- ld -o $@ $(OBJS) $(REQUIRED_CRUNTIME) $(LDFLAGS) -l$(PAL_LIB) $(GCC_LIB)
+ ld -o $@ $(OBJS) $(REQUIRED_CRUNTIME) $(LDFLAGS) -l$(PAL_LIB) $(GCC_LIB) -lstdc++ -lc_r -lc
makefile : makefile.in
@echo $? is newer than $@. Please rerun $(TOP_SRC_DIR)/configure.

View File

@ -0,0 +1,14 @@
$FreeBSD$
--- configure 2003/04/25 08:43:30 1.1
+++ configure 2003/04/25 08:44:09
@@ -2041,7 +2041,7 @@
PTHREAD_OPTIONS=
-CFLAGS="-g -O2 -Wall -fPIC -DPIC"
+CFLAGS="$CFLAGS -Wall -fPIC -DPIC"
if test "$FEATURE_CASE_SENSITIVE_FS" = "1"; then
CFLAGS="$CFLAGS -DFEATURE_CASE_SENSITIVE_FILESYSTEM"

View File

@ -1,29 +1,29 @@
$FreeBSD$
--- env.sh.orig Fri Mar 22 03:47:54 2002
+++ env.sh Tue Apr 16 18:38:49 2002
@@ -69,7 +69,15 @@
export DEBUGGING_SUPPORTED_BUILD=1
export SVR_WKS_DIRS=wks
--- env.sh.orig Sat Nov 2 04:21:57 2002
+++ env.sh Fri Apr 25 10:16:50 2003
@@ -188,7 +188,15 @@
CSC_COMPILE_FLAGS="${CSC_COMPILE_FLAGS} /d:FEATURE_CASE_SENSITIVE_FILESYSTEM"
fi
-if test X"$1" = "Xfree"
+if test X"$1" = "Xretail"
+then
+echo "Retail Environment"
+export DDKBUILDENV=free
+export C_DEFINES="${C_DEFINES} -DNTMAKEENV -DNDEBUG -DPERF_TRACKING"
+export BUILD_ALT_DIR=r
+export TARGETCOMPLUS="${ROTOR_DIR}/build/v1.x86fre.rotor"
+export NTDEBUG=retail
+ DDKBUILDENV=free
+ C_DEFINES="${C_DEFINES} -DNTMAKEENV -DNDEBUG -DPERF_TRACKING"
+ BUILD_ALT_DIR=r
+ TARGETCOMPLUS="${ROTOR_DIR}/build/v1.x86fre.rotor"
+ NTDEBUG=retail
+else if test X"$1" = "Xfree"
then
echo "Free Environment"
export DDKBUILDENV=free
@@ -93,6 +101,7 @@
export BUILD_ALT_DIR=df
export TARGETCOMPLUS="${ROTOR_DIR}/build/v1.x86fstchk.rotor"
export NTDEBUG=ntsd
echo "Free Environment"
DDKBUILDENV=free
@@ -213,6 +221,7 @@
BUILD_ALT_DIR=df
TARGETCOMPLUS="${ROTOR_DIR}/build/v1.${PROCESSOR_ARCHITECTURE}fstchk.rotor"
NTDEBUG=ntsd
+fi
fi
fi

View File

@ -1,14 +1,14 @@
$FreeBSD$
--- makefile.common.in.orig Fri Mar 22 03:48:17 2002
+++ makefile.common.in Fri Mar 29 00:54:26 2002
@@ -38,7 +38,7 @@
CPP = @CPP@
# The flags should be adjusted based on the compiler, but we
# only support GCC so this will do for now.
-CFLAGS = -g -O2 -Wall
+CFLAGS ?= -g -O2 -Wall
--- makefile.common.in 2003/04/25 08:00:00 1.1
+++ makefile.common.in 2003/04/25 08:00:14
@@ -45,7 +45,7 @@
PAL_LIB_FILE = $(LIB_PREFIX)$(PAL_LIB)$(LIB_SUFFIX)
ROTOR_LIBS = -l$(PAL_LIB)
LDFLAGS = -L$(TARGETCOMPLUS)
-GCC_LIB = @GCC_LIB@
+GCC_LIB = %%GCC_LIB%%
LINKER_FLAGS = @LINKER_FLAGS@
# Linker information
PAL_LIB = rotor_pal
# The C runtime static libraries that we need to get an application

View File

@ -1,23 +1,36 @@
$FreeBSD$
--- pal/unix/configure.orig Fri Jun 14 06:01:07 2002
+++ pal/unix/configure Fri Jul 26 17:53:12 2002
@@ -1037,14 +1037,14 @@
CFLAGS="$CFLAGS -Wall -fno-builtin -fno-exceptions -fno-rtti"
--- pal/unix/configure.orig Thu Oct 31 03:00:09 2002
+++ pal/unix/configure Fri Apr 25 10:33:47 2003
@@ -1899,17 +1899,17 @@
fi
if test "$NTDEBUG" != "ntsdnodbg"; then
- CFLAGS="$CFLAGS -g"
+# CFLAGS="$CFLAGS -g"
- CFLAGS="$CFLAGS -g"
+# CFLAGS="$CFLAGS -g"
fi
if test "$BUILD_ALT_DIR" = "d"; then
- CFLAGS="$CFLAGS -O0 -finline"
+ CFLAGS="$CFLAGS -finline"
fi
if test "$BUILD_ALT_DIR" = "df"; then
- CFLAGS="$CFLAGS -O2"
+# CFLAGS="$CFLAGS -O2"
- CFLAGS="$CFLAGS -O2"
+# CFLAGS="$CFLAGS -O2"
fi
if test "$BUILD_ALT_DIR" = "r"; then
- CFLAGS="$CFLAGS -O2"
+# CFLAGS="$CFLAGS -O2"
- CFLAGS="$CFLAGS -O2"
+# CFLAGS="$CFLAGS -O2"
fi
CFLAGS_NO_PIC="$CFLAGS"
CFLAGS="$CFLAGS -fPIC -DPIC"
@@ -4898,7 +4898,7 @@
fi
done
-for ac_func in setcontext getcontext copysign
+for ac_func in setcontext copysign
do
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
echo "$as_me:4904: checking for $ac_func" >&5

View File

@ -1,14 +0,0 @@
$FreeBSD$
--- pal/unix/startup/makefile.in.orig Fri Mar 22 03:48:22 2002
+++ pal/unix/startup/makefile.in Wed Apr 10 12:14:41 2002
@@ -50,6 +50,8 @@
OPTCFLAGS+= -g
.endif
+OPTCFLAGS=$(CFLAGS)
+
#################
# Targets

View File

@ -1,9 +1,18 @@
$FreeBSD$
--- rotorenv/bin/rotor_x86mk.inc.orig Thu Jun 20 02:44:05 2002
+++ rotorenv/bin/rotor_x86mk.inc Tue Jul 30 15:45:22 2002
@@ -336,7 +336,7 @@
--- rotorenv/bin/rotor_x86mk.inc.orig Sat Nov 2 04:22:40 2002
+++ rotorenv/bin/rotor_x86mk.inc Fri Apr 25 11:06:16 2003
@@ -329,7 +329,7 @@
CC_LIB =$(GCC_LIB_DIR)/libgcc.a $(GCC_EH_LIB) \
/usr/local/lib/libstdc++.a
!else
-CC_LIB =/usr/lib/libgcc.a
+CC_LIB =%%GCC_LIB%%
!endif
!else
ASM_SUFFIX =asm
@@ -362,7 +362,7 @@
!IFNDEF COMPILER_WARNINGS
!IFDEF PLATFORM_UNIX

View File

@ -1,11 +1,11 @@
$FreeBSD$
--- tools/build/buildexe.c.orig Thu Jun 20 02:45:40 2002
+++ tools/build/buildexe.c Fri Jul 26 22:17:07 2002
@@ -1152,7 +1152,9 @@
} else if (strstr(p, "might be clobbered by `longjmp' or `vfork'")) {
// Ignore this warning, too
--- tools/build/buildexe.c.orig Sat Nov 2 04:25:49 2002
+++ tools/build/buildexe.c Fri Apr 25 10:23:19 2003
@@ -1170,7 +1170,9 @@
} else if (strstr(p, "invalid offsetof from non-POD type")) {
// Ignore this
goto notgcc;
- }
+ } else if (strstr(p, "from ")) {
@ -14,7 +14,7 @@ $FreeBSD$
p1 = strchr(p, ':');
if (!p1) {
// not of the form "filename:..."
@@ -1176,6 +1178,20 @@
@@ -1194,6 +1196,20 @@
}
*p1 = '\0'; // null-terminate the line number
p1++;
@ -35,13 +35,3 @@ $FreeBSD$
if (TestPrefix(&p1, " warning: ")) {
// Found a warning
Warning = TRUE;
@@ -2111,7 +2127,8 @@
}
#ifdef __GNUC__
else
- if ( TestPrefixPath( &p, "gcc " )) {
+ if ( TestPrefixPath( &p, "cc " )) {
+ {static int i = 0; while (i);}
ThreadState->FilterProc = GCCFilter;
ThreadState->ChildFlags = 0;
if ( strstr( p, "-Wall" ) != NULL || strstr( p, "-Werror" ) != NULL) {

View File

@ -1,15 +0,0 @@
$FreeBSD$
--- tools/cppmunge/makefile.orig Fri Mar 22 03:49:22 2002
+++ tools/cppmunge/makefile Wed Apr 10 12:10:29 2002
@@ -17,7 +17,8 @@
# makefile for cppmunge
# ============================================================================
-CFLAGS = -g -Wall -O2
+CFLAGS ?= -g -Wall -O2
+CFLAGS += -fno-builtin -fno-exceptions -fno-rtti
TARGET_NAME = $(TARGETCOMPLUS)/cppmunge
SOURCES=cppmunge.c

View File

@ -0,0 +1,14 @@
$FreeBSD$
--- tools/cppmunge/makefile.in 2003/04/25 07:24:34 1.1
+++ tools/cppmunge/makefile.in 2003/04/25 07:25:00
@@ -18,7 +18,7 @@
# ============================================================================
BIGENDIAN=@BIGENDIAN@
-CFLAGS = -g -Wall -O2 $(BIGENDIAN)
+CFLAGS += -fno-builtin -fno-exceptions -fno-rtti $(BIGENDIAN)
TARGET_NAME = $(TARGETCOMPLUS)/cppmunge
CC = @CC@

View File

@ -24,3 +24,5 @@ o The Platform Adaptation Layer (PAL) used to port the Shared Source CLI from
o Build environment tools (nmake, build, and others);
o Documentation for the implementation;
o Test suites used to verify the implementation.
WWW: http://msdn.microsoft.com/net/sscli/

View File

@ -15,6 +15,8 @@ cli-%%CLI_VERSION%%/System.dll
cli-%%CLI_VERSION%%/System.ildb
cli-%%CLI_VERSION%%/al
cli-%%CLI_VERSION%%/alink.satellite
cli-%%CLI_VERSION%%/assembly/GAC/ISymWrapper/1.0.3300.0__b03f5f7f11d50a3a/ISymWrapper.dll
cli-%%CLI_VERSION%%/assembly/GAC/ISymWrapper/1.0.3300.0__b03f5f7f11d50a3a/__AssemblyInfo__.ini
cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.JScript/7.0.3300.0__b03f5f7f11d50a3a/Microsoft.JScript.dll
cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.JScript/7.0.3300.0__b03f5f7f11d50a3a/__AssemblyInfo__.ini
cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.Vsa/7.0.3300.0__b03f5f7f11d50a3a/Microsoft.Vsa.dll
@ -27,6 +29,8 @@ cli-%%CLI_VERSION%%/assembly/GAC/System.Xml/1.0.3300.0__b77a5c561934e089/System.
cli-%%CLI_VERSION%%/assembly/GAC/System.Xml/1.0.3300.0__b77a5c561934e089/__AssemblyInfo__.ini
cli-%%CLI_VERSION%%/assembly/GAC/System/1.0.3300.0__b77a5c561934e089/System.dll
cli-%%CLI_VERSION%%/assembly/GAC/System/1.0.3300.0__b77a5c561934e089/__AssemblyInfo__.ini
cli-%%CLI_VERSION%%/assembly/GAC/myperm/1.0.1.0__0e8dcc8628396732/__AssemblyInfo__.ini
cli-%%CLI_VERSION%%/assembly/GAC/myperm/1.0.1.0__0e8dcc8628396732/myperm.dll
cli-%%CLI_VERSION%%/big5.nlp
cli-%%CLI_VERSION%%/binplace
cli-%%CLI_VERSION%%/bopomofo.nlp
@ -89,7 +93,6 @@ cli-%%CLI_VERSION%%/dump/dump-types.h
cli-%%CLI_VERSION%%/dump/eetwain.h
cli-%%CLI_VERSION%%/dump/ehencoder.h
cli-%%CLI_VERSION%%/dump/enc.h
cli-%%CLI_VERSION%%/dump/endian.h
cli-%%CLI_VERSION%%/dump/frame-types.h
cli-%%CLI_VERSION%%/dump/fusion.h
cli-%%CLI_VERSION%%/dump/fusionbind.h
@ -97,13 +100,7 @@ cli-%%CLI_VERSION%%/dump/fusionpriv.h
cli-%%CLI_VERSION%%/dump/fusionsetup.h
cli-%%CLI_VERSION%%/dump/fusionsink.h
cli-%%CLI_VERSION%%/dump/fuspriv.h
cli-%%CLI_VERSION%%/dump/gcdump.h
cli-%%CLI_VERSION%%/dump/gcinfo.h
cli-%%CLI_VERSION%%/dump/guidfromname.h
cli-%%CLI_VERSION%%/dump/hello.exe
cli-%%CLI_VERSION%%/dump/hello.ildb
cli-%%CLI_VERSION%%/dump/helloxml.exe
cli-%%CLI_VERSION%%/dump/helloxml.ildb
cli-%%CLI_VERSION%%/dump/holder.h
cli-%%CLI_VERSION%%/dump/hrex.h
cli-%%CLI_VERSION%%/dump/iceefilegen.h
@ -130,6 +127,8 @@ cli-%%CLI_VERSION%%/dump/openum.h
cli-%%CLI_VERSION%%/dump/opinfo.h
cli-%%CLI_VERSION%%/dump/outstring.h
cli-%%CLI_VERSION%%/dump/palclr.h
cli-%%CLI_VERSION%%/dump/palstartup.h
cli-%%CLI_VERSION%%/dump/palstartupw.h
cli-%%CLI_VERSION%%/dump/perfcounterdefs.h
cli-%%CLI_VERSION%%/dump/perfcounters.h
cli-%%CLI_VERSION%%/dump/perflog.h
@ -175,7 +174,6 @@ cli-%%CLI_VERSION%%/l_except.nlp
cli-%%CLI_VERSION%%/l_intl.nlp
cli-%%CLI_VERSION%%/libalink.so
cli-%%CLI_VERSION%%/libcscomp.so
cli-%%CLI_VERSION%%/libdnprofiler.so
cli-%%CLI_VERSION%%/libfusion.so
cli-%%CLI_VERSION%%/libildbsymbols.so
cli-%%CLI_VERSION%%/libmscordbc.so
@ -192,12 +190,6 @@ cli-%%CLI_VERSION%%/license.txt
cli-%%CLI_VERSION%%/mscorlib.dll
cli-%%CLI_VERSION%%/mscorrc.satellite
cli-%%CLI_VERSION%%/nmake
cli-%%CLI_VERSION%%/pigui/SharedSourceCLI.TK.dll
cli-%%CLI_VERSION%%/pigui/SharedSourceCLI.TK.ildb
cli-%%CLI_VERSION%%/pigui/pighello.exe
cli-%%CLI_VERSION%%/pigui/pighello.ildb
cli-%%CLI_VERSION%%/pigui/pigpad.exe
cli-%%CLI_VERSION%%/pigui/pigpad.ildb
cli-%%CLI_VERSION%%/prc.nlp
cli-%%CLI_VERSION%%/prcp.nlp
cli-%%CLI_VERSION%%/private/lib/System.dll
@ -206,16 +198,135 @@ cli-%%CLI_VERSION%%/resourcecompiler
cli-%%CLI_VERSION%%/rotor/rotor.ini
cli-%%CLI_VERSION%%/rotor/strongname.ini
cli-%%CLI_VERSION%%/rotor_pal.satellite
cli-%%CLI_VERSION%%/sdk/bin/corcls.exe
cli-%%CLI_VERSION%%/sdk/bin/corcls.ildb
cli-%%CLI_VERSION%%/samples/compilers/clisp/clisp.exe
cli-%%CLI_VERSION%%/samples/compilers/clisp/clisp.ildb
cli-%%CLI_VERSION%%/samples/compilers/clisp/fibo.lisp
cli-%%CLI_VERSION%%/samples/compilers/clisp/sort.lisp
cli-%%CLI_VERSION%%/samples/compilers/myc/myc.exe
cli-%%CLI_VERSION%%/samples/compilers/myc/myc.ildb
cli-%%CLI_VERSION%%/samples/compilers/myc/t01.myc
cli-%%CLI_VERSION%%/samples/compilers/myc/t02.myc
cli-%%CLI_VERSION%%/samples/compilers/myc/t03.myc
cli-%%CLI_VERSION%%/samples/compilers/myc/t04.myc
cli-%%CLI_VERSION%%/samples/compilers/myc/t05.myc
cli-%%CLI_VERSION%%/samples/compilers/myc/t06.myc
cli-%%CLI_VERSION%%/samples/compilers/myc/t07.myc
cli-%%CLI_VERSION%%/samples/compilers/myc/t08.myc
cli-%%CLI_VERSION%%/samples/compilers/myc/tdll.myc
cli-%%CLI_VERSION%%/samples/compilers/myc/tflow.myc
cli-%%CLI_VERSION%%/samples/hello/hello.exe
cli-%%CLI_VERSION%%/samples/hello/hello.ildb
cli-%%CLI_VERSION%%/samples/hello/helloxml.exe
cli-%%CLI_VERSION%%/samples/hello/helloxml.ildb
cli-%%CLI_VERSION%%/samples/howto/basedatatypes/stringformat/stringformat.exe
cli-%%CLI_VERSION%%/samples/howto/basedatatypes/stringformat/stringformat.ildb
cli-%%CLI_VERSION%%/samples/howto/codedom/listbuilder.exe
cli-%%CLI_VERSION%%/samples/howto/codedom/listbuilder.ildb
cli-%%CLI_VERSION%%/samples/howto/net/getresponse/getresponse.exe
cli-%%CLI_VERSION%%/samples/howto/net/getresponse/getresponse.ildb
cli-%%CLI_VERSION%%/samples/howto/net/udpchat/udpchat.exe
cli-%%CLI_VERSION%%/samples/howto/net/udpchat/udpchat.ildb
cli-%%CLI_VERSION%%/samples/howto/reflection/emit/reflectionemit.exe
cli-%%CLI_VERSION%%/samples/howto/reflection/emit/reflectionemit.ildb
cli-%%CLI_VERSION%%/samples/howto/reflection/invoke/reflectioninvoke.exe
cli-%%CLI_VERSION%%/samples/howto/reflection/invoke/reflectioninvoke.ildb
cli-%%CLI_VERSION%%/samples/howto/regularexpressions/regularexpressions.exe
cli-%%CLI_VERSION%%/samples/howto/regularexpressions/regularexpressions.ildb
cli-%%CLI_VERSION%%/samples/howto/remoting/remotingclient.exe
cli-%%CLI_VERSION%%/samples/howto/remoting/remotingclient.ildb
cli-%%CLI_VERSION%%/samples/howto/remoting/remotingserver.exe
cli-%%CLI_VERSION%%/samples/howto/remoting/remotingserver.ildb
cli-%%CLI_VERSION%%/samples/howto/remoting/remotingshared.dll
cli-%%CLI_VERSION%%/samples/howto/remoting/remotingshared.ildb
cli-%%CLI_VERSION%%/samples/howto/resources/managedresources.exe
cli-%%CLI_VERSION%%/samples/howto/resources/managedresources.ildb
cli-%%CLI_VERSION%%/samples/howto/security/permissions/authorized.exe
cli-%%CLI_VERSION%%/samples/howto/security/permissions/authorized.ildb
cli-%%CLI_VERSION%%/samples/howto/security/permissions/exclusive.bat
cli-%%CLI_VERSION%%/samples/howto/security/permissions/exclusive.sh
cli-%%CLI_VERSION%%/samples/howto/security/permissions/myperm.dll
cli-%%CLI_VERSION%%/samples/howto/security/permissions/myperm.ildb
cli-%%CLI_VERSION%%/samples/howto/security/permissions/myperm.xml
cli-%%CLI_VERSION%%/samples/howto/security/permissions/names.txt
cli-%%CLI_VERSION%%/samples/howto/security/permissions/namestore.dll
cli-%%CLI_VERSION%%/samples/howto/security/permissions/namestore.ildb
cli-%%CLI_VERSION%%/samples/howto/security/permissions/setpolicy.bat
cli-%%CLI_VERSION%%/samples/howto/security/permissions/setpolicy.sh
cli-%%CLI_VERSION%%/samples/howto/security/permissions/unauthorized.exe
cli-%%CLI_VERSION%%/samples/howto/security/permissions/unauthorized.ildb
cli-%%CLI_VERSION%%/samples/howto/serialization/iserializable.exe
cli-%%CLI_VERSION%%/samples/howto/serialization/iserializable.ildb
cli-%%CLI_VERSION%%/samples/howto/serialization/simpleserialize.exe
cli-%%CLI_VERSION%%/samples/howto/serialization/simpleserialize.ildb
cli-%%CLI_VERSION%%/samples/howto/xml/xmlschema/books.xsd
cli-%%CLI_VERSION%%/samples/howto/xml/xmlschema/poschema.xsd
cli-%%CLI_VERSION%%/samples/howto/xml/xmlschema/xmlschema.exe
cli-%%CLI_VERSION%%/samples/howto/xml/xmlschema/xmlschema.ildb
cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/books.xml
cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/books.xsl
cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/processparameters1.xml
cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/processparameters2.xml
cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/stylesheetgenerator.xsl
cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/xmltransform.exe
cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform/xmltransform.ildb
cli-%%CLI_VERSION%%/samples/howto/xmlserialization/inputdata.xml
cli-%%CLI_VERSION%%/samples/howto/xmlserialization/purchaseorder.dll
cli-%%CLI_VERSION%%/samples/howto/xmlserialization/purchaseorder.ildb
cli-%%CLI_VERSION%%/samples/howto/xmlserialization/xmlserialize.exe
cli-%%CLI_VERSION%%/samples/howto/xmlserialization/xmlserialize.ildb
cli-%%CLI_VERSION%%/samples/pigui/pighello.exe
cli-%%CLI_VERSION%%/samples/pigui/pighello.ildb
cli-%%CLI_VERSION%%/samples/pigui/pigpad.exe
cli-%%CLI_VERSION%%/samples/pigui/pigpad.ildb
cli-%%CLI_VERSION%%/samples/pigui/sharedsourcecli.tk.dll
cli-%%CLI_VERSION%%/samples/pigui/sharedsourcecli.tk.ildb
cli-%%CLI_VERSION%%/samples/utilities/cleanbuild/cleanbuild.exe
cli-%%CLI_VERSION%%/samples/utilities/cleanbuild/cleanbuild.ildb
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/codeblue.css
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/codetohtml.exe
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/codetohtml.ildb
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/codewhite.css
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/cs_codetohtml.ini
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/cs_futurereserved.ini
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/cs_keywords.ini
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/cs_replace.ini
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/cs_userdefined.ini
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/footer.txt
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/header.txt
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/js_codetohtml.ini
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/js_futurereserved.ini
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/js_keywords.ini
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/js_replace.ini
cli-%%CLI_VERSION%%/samples/utilities/codetohtml/js_userdefined.ini
cli-%%CLI_VERSION%%/samples/utilities/corclass/corcls.exe
cli-%%CLI_VERSION%%/samples/utilities/corclass/corcls.ildb
cli-%%CLI_VERSION%%/samples/utilities/crlf/crlf.exe
cli-%%CLI_VERSION%%/samples/utilities/crlf/crlf.ildb
cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/libdnprofiler.so
cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_off.bat
cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_off.csh
cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_off.sh
cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_on.bat
cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_on.csh
cli-%%CLI_VERSION%%/samples/utilities/dnprofiler/profiling_on.sh
cli-%%CLI_VERSION%%/samples/utilities/getcliversion/getcliversion.exe
cli-%%CLI_VERSION%%/samples/utilities/getcliversion/getcliversion.ildb
cli-%%CLI_VERSION%%/samples/utilities/grep/ngrep.exe
cli-%%CLI_VERSION%%/samples/utilities/grep/ngrep.ildb
cli-%%CLI_VERSION%%/samples/utilities/keyconfig/keyconfig.exe
cli-%%CLI_VERSION%%/samples/utilities/keyconfig/keyconfig.ildb
cli-%%CLI_VERSION%%/samples/utilities/typefinder/typefinder.exe
cli-%%CLI_VERSION%%/samples/utilities/typefinder/typefinder.ildb
cli-%%CLI_VERSION%%/samples/utilities/wordcount/wordcount.exe
cli-%%CLI_VERSION%%/samples/utilities/wordcount/wordcount.ildb
cli-%%CLI_VERSION%%/samples/utilities/xsd/xsd.exe
cli-%%CLI_VERSION%%/samples/utilities/xsd/xsd.ildb
cli-%%CLI_VERSION%%/sdk/bin/cordbg
cli-%%CLI_VERSION%%/sdk/bin/ilasm
cli-%%CLI_VERSION%%/sdk/bin/ildasm
cli-%%CLI_VERSION%%/sdk/bin/ildasm.satellite
cli-%%CLI_VERSION%%/sdk/bin/ildbdump
cli-%%CLI_VERSION%%/sdk/bin/metainfo
cli-%%CLI_VERSION%%/sdk/bin/ngrep.exe
cli-%%CLI_VERSION%%/sdk/bin/ngrep.ildb
cli-%%CLI_VERSION%%/sdk/bin/permview
cli-%%CLI_VERSION%%/sdk/bin/permview.satellite
cli-%%CLI_VERSION%%/sdk/bin/peverify
@ -225,8 +336,6 @@ cli-%%CLI_VERSION%%/sdk/bin/sn
cli-%%CLI_VERSION%%/sdk/bin/sn.satellite
cli-%%CLI_VERSION%%/sdk/bin/storeadm.exe
cli-%%CLI_VERSION%%/sdk/bin/storeadm.ildb
cli-%%CLI_VERSION%%/sdk/bin/xsd.exe
cli-%%CLI_VERSION%%/sdk/bin/xsd.ildb
cli-%%CLI_VERSION%%/sdk/include/cor.h
cli-%%CLI_VERSION%%/sdk/include/cordebug.h
cli-%%CLI_VERSION%%/sdk/include/corerror.h
@ -240,7 +349,6 @@ cli-%%CLI_VERSION%%/sdk/include/ivehandler.h
cli-%%CLI_VERSION%%/sdk/include/mscoree.h
cli-%%CLI_VERSION%%/sdk/include/opcode.def
cli-%%CLI_VERSION%%/sdk/include/strongname.h
cli-%%CLI_VERSION%%/sdk/lib/mscorsn.lib
cli-%%CLI_VERSION%%/sdk/pal/inc/assert.h
cli-%%CLI_VERSION%%/sdk/pal/inc/atl.h
cli-%%CLI_VERSION%%/sdk/pal/inc/ccombstr.h
@ -294,19 +402,57 @@ cli-%%CLI_VERSION%%/sorttbls.nlp
cli-%%CLI_VERSION%%/xjis.nlp
@dirrm cli-%%CLI_VERSION%%/sdk/pal/inc
@dirrm cli-%%CLI_VERSION%%/sdk/pal
@dirrm cli-%%CLI_VERSION%%/sdk/lib
@dirrm cli-%%CLI_VERSION%%/sdk/include
@dirrm cli-%%CLI_VERSION%%/sdk/bin
@dirrm cli-%%CLI_VERSION%%/sdk
@dirrm cli-%%CLI_VERSION%%/samples/utilities/xsd
@dirrm cli-%%CLI_VERSION%%/samples/utilities/wordcount
@dirrm cli-%%CLI_VERSION%%/samples/utilities/typefinder
@dirrm cli-%%CLI_VERSION%%/samples/utilities/keyconfig
@dirrm cli-%%CLI_VERSION%%/samples/utilities/grep
@dirrm cli-%%CLI_VERSION%%/samples/utilities/getcliversion
@dirrm cli-%%CLI_VERSION%%/samples/utilities/dnprofiler
@dirrm cli-%%CLI_VERSION%%/samples/utilities/crlf
@dirrm cli-%%CLI_VERSION%%/samples/utilities/corclass
@dirrm cli-%%CLI_VERSION%%/samples/utilities/codetohtml
@dirrm cli-%%CLI_VERSION%%/samples/utilities/cleanbuild
@dirrm cli-%%CLI_VERSION%%/samples/utilities
@dirrm cli-%%CLI_VERSION%%/samples/pigui
@dirrm cli-%%CLI_VERSION%%/samples/howto/xmlserialization
@dirrm cli-%%CLI_VERSION%%/samples/howto/xml/xmltransform
@dirrm cli-%%CLI_VERSION%%/samples/howto/xml/xmlschema
@dirrm cli-%%CLI_VERSION%%/samples/howto/xml
@dirrm cli-%%CLI_VERSION%%/samples/howto/serialization
@dirrm cli-%%CLI_VERSION%%/samples/howto/security/permissions
@dirrm cli-%%CLI_VERSION%%/samples/howto/security
@dirrm cli-%%CLI_VERSION%%/samples/howto/resources
@dirrm cli-%%CLI_VERSION%%/samples/howto/remoting
@dirrm cli-%%CLI_VERSION%%/samples/howto/regularexpressions
@dirrm cli-%%CLI_VERSION%%/samples/howto/reflection/invoke
@dirrm cli-%%CLI_VERSION%%/samples/howto/reflection/emit
@dirrm cli-%%CLI_VERSION%%/samples/howto/reflection
@dirrm cli-%%CLI_VERSION%%/samples/howto/net/udpchat
@dirrm cli-%%CLI_VERSION%%/samples/howto/net/getresponse
@dirrm cli-%%CLI_VERSION%%/samples/howto/net
@dirrm cli-%%CLI_VERSION%%/samples/howto/codedom
@dirrm cli-%%CLI_VERSION%%/samples/howto/basedatatypes/stringformat
@dirrm cli-%%CLI_VERSION%%/samples/howto/basedatatypes
@dirrm cli-%%CLI_VERSION%%/samples/howto
@dirrm cli-%%CLI_VERSION%%/samples/hello
@dirrm cli-%%CLI_VERSION%%/samples/compilers/myc
@dirrm cli-%%CLI_VERSION%%/samples/compilers/clisp
@dirrm cli-%%CLI_VERSION%%/samples/compilers
@dirrm cli-%%CLI_VERSION%%/samples
@dirrm cli-%%CLI_VERSION%%/rotor
@dirrm cli-%%CLI_VERSION%%/private/lib/rotor_x86
@dirrm cli-%%CLI_VERSION%%/private/lib
@dirrm cli-%%CLI_VERSION%%/private
@dirrm cli-%%CLI_VERSION%%/pigui
@dirrm cli-%%CLI_VERSION%%/int_tools
@dirrm cli-%%CLI_VERSION%%/dump
@dirrm cli-%%CLI_VERSION%%/config
@dirrm cli-%%CLI_VERSION%%/assembly/tmp
@dirrm cli-%%CLI_VERSION%%/assembly/GAC/myperm/1.0.1.0__0e8dcc8628396732
@dirrm cli-%%CLI_VERSION%%/assembly/GAC/myperm
@dirrm cli-%%CLI_VERSION%%/assembly/GAC/System/1.0.3300.0__b77a5c561934e089
@dirrm cli-%%CLI_VERSION%%/assembly/GAC/System.Xml/1.0.3300.0__b77a5c561934e089
@dirrm cli-%%CLI_VERSION%%/assembly/GAC/System.Xml
@ -319,6 +465,8 @@ cli-%%CLI_VERSION%%/xjis.nlp
@dirrm cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.Vsa
@dirrm cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.JScript/7.0.3300.0__b03f5f7f11d50a3a
@dirrm cli-%%CLI_VERSION%%/assembly/GAC/Microsoft.JScript
@dirrm cli-%%CLI_VERSION%%/assembly/GAC/ISymWrapper/1.0.3300.0__b03f5f7f11d50a3a
@dirrm cli-%%CLI_VERSION%%/assembly/GAC/ISymWrapper
@dirrm cli-%%CLI_VERSION%%/assembly/GAC
@dirrm cli-%%CLI_VERSION%%/assembly
@dirrm cli-%%CLI_VERSION%%/Symbols.pri/dll