Index: /issm/trunk-jpl-damage/externalpackages/intel/.bashrc
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/intel/.bashrc	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/intel/.bashrc	(revision 11413)
@@ -0,0 +1,1 @@
+link .bash_profile
Index: /issm/trunk-jpl-damage/externalpackages/intel/.exrc
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/intel/.exrc	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/intel/.exrc	(revision 11413)
@@ -0,0 +1,55 @@
+set noic
+set autoindent
+set wrapmargin=0
+set tabstop=4
+set shiftwidth=4
+set nomesg
+map #5 o$.......2.......3.......4.......5.......6.......7.......8.......9.......0.......
+map #6 !}fmt -w 80
+ 
+map #7 o$........1.........2.........3.........4.........5.........6.........7..
+map #9 i/*50a-
+map #10 2i 50a-a*/
+ab bc /*
+ab ec */
+ab IOMS IMOS
+ab TF THISFUNCTION
+ab PS PetscSynchronizedPrintf(MPI_COMM_WORLD,"");
+PetscSynchronizedFlush(MPI_COMM_WORLD);
+ab As /*Assign output pointers:*/
+ab Fe /*Free ressources:*/
+ab p1 printf("ok1\n");
+ab p2 printf("ok2\n");
+ab p3 printf("ok3\n");
+ab p4 printf("ok4\n");
+ab p5 printf("ok5\n");
+ab p6 printf("ok6\n");
+ab p7 printf("ok7\n");
+ab p8 printf("ok8\n");
+ab p9 printf("ok9\n");
+
+ab cit \textit{temp} [2001] \cite{temp2001}
+ab xf xfree((void**)&);<left><left>
+
+:function! ReverseBackground() 
+:   let Mysyn=&syntax 
+:   if &bg=="light" 
+:       se bg=dark 
+:       highlight Normal guibg=black guifg=white 
+:   else 
+:       se bg=light 
+:       highlight Normal guibg=white guifg=black 
+:   endif   
+:   syn on   
+:   exe "set syntax=" . Mysyn 
+:   echo "now syntax is "&syntax 
+:endfunction 
+:command! Invbg call ReverseBackground() 
+:noremap <F11> :Invbg<CR>
+
+
+"  Abbreviations {{{1
+" ----------------------------------------------------------------------
+au BufRead,BufNewFile *.c* iab <expr> des  "printf(\"file: ".expand('%')." line: %i\\n\",__LINE__);"
+au BufRead,BufNewFile *.c* iab <expr> dep "PetscSynchronizedPrintf(MPI_COMM_WORLD,\"file: ".expand('%:p')." line: ".line(".")."\\n\");\nPetscSynchronizedFlush(MPI_COMM_WORLD);"
+"}}}
Index: /issm/trunk-jpl-damage/externalpackages/intel/.vimrc
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/intel/.vimrc	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/intel/.vimrc	(revision 11413)
@@ -0,0 +1,96 @@
+
+" Use Vim settings, rather then Vi settings (much better!).
+" This must be first, because it changes other options as a side effect.
+set nocompatible
+set foldmethod=marker
+
+" allow backspacing over everything in insert mode
+set backspace=indent,eol,start
+
+set autoindent		" always set autoindenting on
+set history=50		" keep 50 lines of command line history
+set ruler		" show the cursor position all the time
+set showcmd		" display incomplete commands
+set incsearch		" do incremental searching 
+set softtabstop=3 
+set uc=0                " disable swap files
+set shell=/bin/bash  
+set nobackup
+
+" For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries
+" let &guioptions = substitute(&guioptions, "t", "", "g")
+
+" Don't use Ex mode, use Q for formatting
+map Q gq
+
+" Make p in Visual mode replace the selected text with the "" register.
+vnoremap p <Esc>:let current_reg = @"<CR>gvs<C-R>=current_reg<CR><Esc>
+
+" This is an alternative that also works in block mode, but the deleted
+" text is lost and it only works for putting the current register.
+"vnoremap p "_dp
+
+" Switch syntax highlighting on, when the terminal has colors
+" Also switch on highlighting the last used search pattern.
+syntax on
+set hlsearch 
+
+" Only do this part when compiled with support for autocommands.
+if has("autocmd")
+
+  " Enable file type detection.
+  " Use the default filetype settings, so that mail gets 'tw' set to 72,
+  " 'cindent' is on in C files, etc.
+  " Also load indent files, to automatically do language-dependent indenting.
+  filetype plugin indent on
+
+  " For all text files set 'textwidth' to 78 characters.
+  autocmd FileType text setlocal textwidth=0
+
+  " When editing a file, always jump to the last known cursor position.
+  " Don't do it when the position is invalid or when inside an event handler
+  " (happens when dropping a file on gvim).
+  autocmd BufReadPost *
+    \ if line("'\"") > 0 && line("'\"") <= line("$") |
+    \   exe "normal g`\"" |
+    \ endif |
+	 \ if foldlevel('.') > 0 |
+    \   exe ":foldopen!" |
+	 \ endif
+
+
+
+endif " has("autocmd")
+colo default  
+
+
+"execute "source ~/.vim/plugin/FeralToggleCommentify.vim" 
+"map <M-c> : call ToggleCommentify()<CR>j
+"imap <M-c> <ESC>:call ToggleCommentify()<CR>j
+
+
+
+function! InsertTabWrapper(direction) 
+let col = col('.') - 1 
+if !col || getline('.')[col - 1] !~ '\k' 
+   return "\<tab>" 
+elseif "backward" == a:direction 
+   return "\<c-p>" 
+else 
+   return "\<c-n>" 
+endif 
+endfunction 
+
+inoremap <tab> <c-r>=InsertTabWrapper ("forward")<cr>
+inoremap <s-tab> <c-r>=InsertTabWrapper ("backward")<cr>
+
+source ~/.exrc 
+set wildmenu
+set  background=dark
+
+"Do local Makefile
+map <F2> :!/home/larour/bin/cs <CR>
+"Compile server code
+map <F1> :!/home/larour/bin/c <CR>
+"Change to directory of current file automatically
+autocmd BufEnter * lcd %:p:h
Index: /issm/trunk-jpl-damage/externalpackages/matlab/install.sh
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/matlab/install.sh	(revision 11412)
+++ /issm/trunk-jpl-damage/externalpackages/matlab/install.sh	(revision 11413)
@@ -5,8 +5,8 @@
 
 #Select or create a new simlink
-ln -s /usr/local/pkgs/matlab-7.6/ install
+#ln -s /usr/local/pkgs/matlab-7.6/ install
 #ln -s /usr/local/matlab704/ install
 #ln -s /usr/local/matlab711/ install
-#ln -s /usr/local/matlab712/ install
+ln -s /usr/local/matlab712/ install
 #ln -s /usr/local/pkgs/matlab-7.6/ install
 #ln -s /Applications/MATLAB_R2008a/ install
Index: /issm/trunk-jpl-damage/externalpackages/metis/configs/4.0/greenplanet/Makefile.in.patch
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/metis/configs/4.0/greenplanet/Makefile.in.patch	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/metis/configs/4.0/greenplanet/Makefile.in.patch	(revision 11413)
@@ -0,0 +1,10 @@
+3,5c3
+< CC = gcc
+< OBJ_EXT=o
+< LIB_EXT=a
+---
+> CC = icc
+8c6
+< OPTFLAGS = -DLINUX -fPIC
+---
+> OPTFLAGS = -O3
Index: /issm/trunk-jpl-damage/externalpackages/metis/configs/4.0/win7/Makefile.in.patch
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/metis/configs/4.0/win7/Makefile.in.patch	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/metis/configs/4.0/win7/Makefile.in.patch	(revision 11413)
@@ -0,0 +1,25 @@
+3,5c3,5
+< CC = cl
+< OBJ_EXT=obj
+< LIB_EXT=lib
+---
+> CC = gcc
+> OBJ_EXT=o
+> LIB_EXT=a
+8c8
+< OPTFLAGS = -DWIN32 -D__VC__
+---
+> OPTFLAGS = -DLINUX -fPIC
+16,17c16,24
+< # What tool to use to create library
+< LIB=lib.exe
+---
+> # What archiving to use
+> AR = ar rv
+> 
+> # What to use for indexing the archive
+> RANLIB = ranlib
+> #RANLIB = ar -ts
+> #RANLIB = 
+> 
+> 
Index: /issm/trunk-jpl-damage/externalpackages/metis/configs/4.0/win7/Makefile.patch
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/metis/configs/4.0/win7/Makefile.patch	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/metis/configs/4.0/win7/Makefile.patch	(revision 11413)
@@ -0,0 +1,5 @@
+24c24,25
+< 	$(LIB) -out:$@ $(OBJS)
+---
+> 	$(AR) $@ $(OBJS)
+> 	$(RANLIB) $@
Index: /issm/trunk-jpl-damage/externalpackages/metis/install-4.0-greenplanet.sh
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/metis/install-4.0-greenplanet.sh	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/metis/install-4.0-greenplanet.sh	(revision 11413)
@@ -0,0 +1,20 @@
+#!/bin/bash
+
+#Some cleanup
+rm -rf install metis-4.0
+mkdir install
+
+#Untar 
+tar -zxvf  metis-4.0.tar.gz
+
+#Move metis into install directory
+mv metis-4.0/* install
+rm -rf metis-4.0
+
+#Apply patches
+cd install 
+patch -p1 < ../metis-4.0.patch
+patch Makefile.in ../configs/4.0/greenplanet/Makefile.in.patch
+
+#Compile
+make
Index: /issm/trunk-jpl-damage/externalpackages/metis/install-4.0-win7.sh
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/metis/install-4.0-win7.sh	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/metis/install-4.0-win7.sh	(revision 11413)
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+#Some cleanup
+rm -rf install metis-4.0
+mkdir install
+
+#Untar 
+tar -zxvf  metis-4.0.tar.gz
+
+#Move metis into install directory
+mv metis-4.0/* install
+rm -rf metis-4.0
+
+#Apply patches
+cd install 
+patch -p1 < ../metis-4.0.patch
+patch -R Lib/Makefile ../configs/4.0/win7/Makefile.patch
+patch -R Makefile.in ../configs/4.0/win7/Makefile.in.patch
+
+#Compile
+make
Index: /issm/trunk-jpl-damage/externalpackages/petsc/install-2.3.2-win7.sh
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/petsc/install-2.3.2-win7.sh	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/petsc/install-2.3.2-win7.sh	(revision 11413)
@@ -0,0 +1,25 @@
+#!/bin/bash
+
+#Some cleanup
+rm -rf install petsc-2.3.2-p3 src
+mkdir install src
+
+#Untar and move petsc to install directory
+tar -zxvf  petsc-2.3.2-p3.tar.gz
+mv petsc-2.3.2-p3/* install/
+rm -rf petsc-2.3.2-p3
+
+#configure
+cd install
+./config/configure.py  \
+	--with-parallel-no \
+	--prefix="$ISSM_TIER/externalpackages/petsc/install" \
+	--PETSC_ARCH=cygwin-intel \
+	--PETSC_DIR="$ISSM_TIER/externalpackages/petsc/install" \
+	--with-debugging=0 \
+	--with-mpi=0 \
+	--download-c-blas-lapack=1
+
+#Compile petsc and install it
+make
+make install
Index: /issm/trunk-jpl-damage/externalpackages/petsc/install-3.1-win7.sh
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/petsc/install-3.1-win7.sh	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/petsc/install-3.1-win7.sh	(revision 11413)
@@ -0,0 +1,44 @@
+#!/bin/bash
+
+#Some cleanup
+rm -rf install petsc-3.1-p7 src
+mkdir install src
+
+#Untar and move petsc to install directory
+tar -zxvf  petsc-3.1-p7.tar.gz
+mv petsc-3.1-p7/* src/
+rm -rf petsc-3.1-p7
+
+#configure
+cd src
+./config/configure.py  \
+	--with-parallel-no \
+	--prefix="$ISSM_TIER/externalpackages/petsc/install" \
+	--PETSC_ARCH=cygwin-intel \
+	--PETSC_DIR="$ISSM_TIER/externalpackages/petsc/src" \
+	--with-debugging=0 \
+	--with-mpi=0 \
+	--download-c-blas-lapack=1
+
+#./config/configure.py  \
+# --prefix="$ISSM_TIER/externalpackages/petsc/install" \
+# --PETSC_DIR="$ISSM_TIER/externalpackages/petsc/src" \
+# --PETSC_ARCH=macosx-gnu \
+# --with-mpi-dir=$ISSM_TIER/externalpackages/mpich2/install \
+# --with-debugging=0 \
+# --with-shared=0 \
+# --download-mumps=yes \
+# --download-scalapack=yes \
+# --download-blacs=yes \
+# --download-blas=yes \
+# --download-f-blas-lapack=yes \
+# --download-plapack=yes \
+# --FFLAGS="-I$ISSM_TIER/externalpackages/mpich2/install/include -arch i386" \
+# --COPTFLAGS="-march=opteron -O2 -arch i386" \
+# --FOPTFLAGS="-march=opteron -O2 -arch i386" \
+# --CXXOPTFLAGS="-march=opteron -O2 -arch i386" \
+# --download-parmetis=yes
+
+#Compile petsc and install it
+make
+make install
Index: /issm/trunk-jpl-damage/externalpackages/petsc/install-3.2-greenplanet.sh
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/petsc/install-3.2-greenplanet.sh	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/petsc/install-3.2-greenplanet.sh	(revision 11413)
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+#Some cleanup
+rm -rf install petsc-3.2-p3 src
+mkdir install src
+
+#Untar and move petsc to install directory
+tar -zxvf  petsc-3.2-p3.tar.gz
+mv petsc-3.2-p3/* src/
+rm -rf petsc-3.2-p3
+
+#configure
+cd src
+./config/configure.py \
+	--prefix="$ISSM_TIER/externalpackages/petsc/install" \
+	--PETSC_DIR="$ISSM_TIER/externalpackages/petsc/src" \
+	--PETSC_ARCH="$ISSM_ARCH" \
+	--with-batch=1 \
+	--with-debugging=0 \
+	--with-shared-libraries=0 \
+	--known-mpi-shared-libraries=1 \
+	--with-mpi-dir=/sopt/mpi/openmpi-1.5.4_psm/intel/ \
+	--with-blas-lapack-dir=/opt/intel/mkl/10.2.4.032/ \
+	--download-mumps=yes \
+	--download-scalapack=yes \
+	--download-blacs=yes \
+	--download-plapack=yes \
+	--download-parmetis=yes \
+	--with-pic=1
+
+echo "== Follow PETSc's instructions"
Index: /issm/trunk-jpl-damage/externalpackages/triangle/configs/win7/configure.make
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/triangle/configs/win7/configure.make	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/triangle/configs/win7/configure.make	(revision 11413)
@@ -0,0 +1,4 @@
+CC=cl
+CSWITCHES = $(CFLAGS) -I$(MATLAB_DIR)/extern/include  -I$(MATLAB_DIR)/include -DWIN32
+OBJ_EXT=obj
+LIB_EXT=lib
Index: /issm/trunk-jpl-damage/externalpackages/triangle/configs/win7/makefile
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/triangle/configs/win7/makefile	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/triangle/configs/win7/makefile	(revision 11413)
@@ -0,0 +1,21 @@
+#Adaptation of Triangle makefile to compile only the triangle.c file, 
+#into a standalone library that can then be used to compile mex modules
+
+include ./configure.make
+
+AR = ar
+
+TRILIBDEFS = -DTRILIBRARY
+
+all: triangle.$(LIB_EXT)
+
+OBJECTS=triangle.$(OBJ_EXT)
+
+triangle.$(LIB_EXT): $(OBJECTS)
+	lib -out:triangle.$(LIB_EXT) $(OBJECTS)
+
+triangle.$(OBJ_EXT): triangle.c triangle.h
+	$(CC) $(CSWITCHES) $(TRILIBDEFS) -c triangle.c
+
+clean: 
+	rm -rf *.$(LIB_EXT) *.$(OBJ_EXT) *.LIB *.LST *.$(OBJ_EXT)bj *.BAK
Index: /issm/trunk-jpl-damage/externalpackages/triangle/install-win7.sh
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/triangle/install-win7.sh	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/triangle/install-win7.sh	(revision 11413)
@@ -0,0 +1,23 @@
+#!/bin/bash
+
+#Some cleanup 
+rm -rf install triangle
+mkdir install
+
+#Untar 
+cd install
+cp ../triangle.zip ./
+unzip triangle.zip
+
+#copy new makefile
+cp ../configs/win7/configure.make ./
+cp ../configs/win7/makefile ./
+
+#Patch triangle.c 
+patch triangle.c ../triangle.c.patch
+
+#Compile triangle
+make
+
+#Patch triangle.h
+patch triangle.h ../triangle.h.patch
Index: /issm/trunk-jpl-damage/externalpackages/win7/notes
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/win7/notes	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/win7/notes	(revision 11413)
@@ -0,0 +1,8 @@
+Compiling ISSM using Matlab compatible  compilers. 
+
+At: http://www.mathworks.com/support/compilers/R2011b/win64.html#n2 
+you will find a list of Matlab supported compilers. 
+
+
+
+We'll try the compile with the Microsoft Windows SDK 7.1: http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=8279
Index: /issm/trunk-jpl-damage/externalpackages/win7/vs10.0.sh
===================================================================
--- /issm/trunk-jpl-damage/externalpackages/win7/vs10.0.sh	(revision 11413)
+++ /issm/trunk-jpl-damage/externalpackages/win7/vs10.0.sh	(revision 11413)
@@ -0,0 +1,64 @@
+declare -x ALLUSERSPROFILE="C:\\ProgramData"
+declare -x APPDATA="C:\\Users\\larour\\AppData\\Roaming"
+declare -x COMMONPROGRAMFILES="C:\\Program Files (x86)\\Common Files"
+declare -x COMPUTERNAME="WIN-IH1FCG0JVB1"
+declare -x COMSPEC="C:\\Windows\\system32\\cmd.exe"
+declare -x CommonProgramW6432="C:\\Program Files\\Common Files"
+declare -x DevEnvDir="C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\Common7\\IDE\\"
+declare -x FP_NO_HOST_CHECK="NO"
+declare -x Framework35Version="v3.5"
+declare -x FrameworkDIR32="C:\\Windows\\Microsoft.NET\\Framework\\"
+declare -x FrameworkDir="C:\\Windows\\Microsoft.NET\\Framework\\"
+declare -x FrameworkVersion="v4.0.30319"
+declare -x FrameworkVersion32="v4.0.30319"
+declare -x GREP_COLOR="00;38;5;226"
+declare -x GREP_OPTIONS="--binary-file=without-match"
+declare -x HOME="/home/larour"
+declare -x HOMEDRIVE="C:"
+declare -x HOMEPATH="\\Users\\larour"
+declare -x HOSTNAME="WIN-IH1FCG0JVB1"
+declare -x INCLUDE="C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\INCLUDE;C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v7.0A\\include;"
+declare -x INFOPATH="/usr/local/info:/usr/share/info:/usr/info:"
+declare -x LANG="C.UTF-8"
+declare -x LIB="C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\LIB;C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v7.0A\\lib;"
+declare -x LIBPATH="C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319;C:\\Windows\\Microsoft.NET\\Framework\\v3.5;C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\LIB;"
+declare -x LOCALAPPDATA="C:\\Users\\larour\\AppData\\Local"
+declare -x LOGONSERVER="\\\\WIN-IH1FCG0JVB1"
+declare -x MANPATH="/usr/local/man:/usr/share/man:/usr/man:"
+declare -x NUMBER_OF_PROCESSORS="1"
+declare -x OLDPWD="/cygdrive/c/issm-uci/trunk-jpl"
+declare -x OS="Windows_NT"
+declare -x PATH="/usr/local/bin:/usr/bin:/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 10.0/Common7/IDE:/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 10.0/VC/BIN:/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 10.0/Common7/Tools:/cygdrive/c/Windows/Microsoft.NET/Framework/v4.0.30319:/cygdrive/c/Windows/Microsoft.NET/Framework/v3.5:/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 10.0/VC/VCPackages:/cygdrive/c/Program Files (x86)/Microsoft SDKs/Windows/v7.0A/bin/NETFX 4.0 Tools:/cygdrive/c/Program Files (x86)/Microsoft SDKs/Windows/v7.0A/bin:/cygdrive/c/Windows/system32:/cygdrive/c/Windows:/cygdrive/c/Windows/System32/Wbem:/cygdrive/c/Windows/System32/WindowsPowerShell/v1.0:/cygdrive/c/Program Files/Microsoft Windows Performance Toolkit"
+declare -x PATHEXT=".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC"
+declare -x PRINTER="137.78.140.129#:1"
+declare -x PROCESSOR_ARCHITECTURE="x86"
+declare -x PROCESSOR_ARCHITEW6432="AMD64"
+declare -x PROCESSOR_IDENTIFIER="Intel64 Family 6 Model 42 Stepping 7, GenuineIntel"
+declare -x PROCESSOR_LEVEL="6"
+declare -x PROCESSOR_REVISION="2a07"
+declare -x PROGRAMFILES="C:\\Program Files (x86)"
+declare -x PROMPT="\$P\$G"
+declare -x PS1="\\[\\e]0;\\w\\a\\]\\n\\[\\e[32m\\]\\u@\\h \\[\\e[33m\\]\\w\\[\\e[0m\\]\\n\\\$ "
+declare -x PSModulePath="C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\Modules\\"
+declare -x PUBLIC="C:\\Users\\Public"
+declare -x ProgramData="C:\\ProgramData"
+declare -x ProgramW6432="C:\\Program Files"
+declare -x REPO="jpl"
+declare -x SESSIONNAME="Console"
+declare -x SHLVL="1"
+declare -x SYSTEMDRIVE="C:"
+declare -x SYSTEMROOT="C:\\Windows"
+declare -x TEMP="/tmp"
+declare -x TERM="cygwin"
+declare -x TMP="/tmp"
+declare -x USER="larour"
+declare -x USERDOMAIN="WIN-IH1FCG0JVB1"
+declare -x USERNAME="larour"
+declare -x USERPROFILE="C:\\Users\\larour"
+declare -x VCINSTALLDIR="C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\VC\\"
+declare -x VS100COMNTOOLS="C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\Common7\\Tools\\"
+declare -x VSINSTALLDIR="C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\"
+declare -x WINDIR="C:\\Windows"
+declare -x WindowsSdkDir="C:\\Program Files (x86)\\Microsoft SDKs\\Windows\\v7.0A\\"
+declare -x windows_tracing_flags="3"
+declare -x windows_tracing_logfile="C:\\BVTBin\\Tests\\installpackage\\csilogfile.log"
