binaries=t
clam_bin=t
packages=t
-win32_helper=t
+#win32_helper=t
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
target=$TARGET/runtime/packages
recurse=1
-[win32_helper]
-source=$PRODUCTION_DIR/win32_helper
-target=$TARGET/production/win32_helper
-recurse=1
+#[win32_helper]
+#source=$PRODUCTION_DIR/win32_helper
+#target=$TARGET/production/win32_helper
+#recurse=1
&backup_hierarchy($snarf_file_base, $number, "$root", "production/assign_bases");
&backup_hierarchy($snarf_file_base, $number, "$root", "production/check_versions");
&backup_hierarchy($snarf_file_base, $number, "$root", "production/setup_src");
-&backup_hierarchy($snarf_file_base, $number, "$root", "production/win32_helper");
+#old &backup_hierarchy($snarf_file_base, $number, "$root", "production/win32_helper");
# now rename the file so only the unpacker can access it.
&rename_archive($snarf_file);
# spits out the root directory of visual studio, calculated from the common
# tools directory that always seems to be reliably set.
-# code stolen from vis_stu_vars...
+# code snagged from vis_stu_vars...
if [ -z "$VSxTOOLS" ]; then
export VSxTOOLS="$VS90COMNTOOLS"
if [ -z "$VSxTOOLS" ]; then
exit 33
fi
-short_path "$VSxTOOLS" | sed -e 's/\\/\//g' | sed -e 's/^\(.*\)\/[^\/]*\/[^\/]*[\/]$/\1/'
+cygpath -w -s "$VSxTOOLS" | sed -e 's/\\/\//g' | sed -e 's/^\(.*\)\/[^\/]*\/[^\/]*[\/]$/\1/'
function setup_visual_studio_variables()
{
- chmod 755 $PRODUCTION_DIR/win32_helper/*.exe
- export PATH="$(dos_to_unix_path $PRODUCTION_DIR)/win32_helper:$PATH"
+# chmod 755 $PRODUCTION_DIR/win32_helper/*.exe
+# export PATH="$(dos_to_unix_path $PRODUCTION_DIR)/win32_helper:$PATH"
# we try to use the most recent compiler location, and work backwards as
# needed for the supported range (10 = vs 2010, 9 = vs 2008, 8 = vs 2005).
if [ -z "$VSxTOOLS" ]; then
return 33
fi
- export VSxTOOLS="$(short_path "$VSxTOOLS" | tr "A-Z" "a-z" | sed -e 's/\\/\//g' )"
+ export VSxTOOLS="$(cygpath -w -s "$VSxTOOLS" | tr "A-Z" "a-z" | sed -e 's/\\/\//g' )"
#| sed -e 's/^\(.\):/\/\1/' )"
export VIS_STU_ROOT="$(echo $VSxTOOLS | sed -e 's/^\(.*\)\/[^\/]*\/[^\/]*[\/]$/\1/' )"
#| sed -e 's/^\(.\):/\/\1/' )"
export VSINSTALLDIR="$VIS_STU_ROOT"
- export WINDIR="$(short_path "$WINDIR" | tr A-Z a-z | sed -e 's/\\/\//g' )"
+ export WINDIR="$(cygpath -w -s "$WINDIR" | tr A-Z a-z | sed -e 's/\\/\//g' )"
#| sed -e 's/^\(.\):/\/\1/' )"
export VCINSTALLDIR="$VSINSTALLDIR/VC"
export PLATFORM_DIR="$VCINSTALLDIR/PlatformSDK"
if [ ! -d "$PLATFORM_DIR" ]; then
-#on hold: export PLATFORM_DIR="$(short_path "$PROGRAMFILES/Microsoft SDKs/Windows/v7.0A" | tr "A-Z" "a-z" | sed -e 's/^\(.*\)\/[^\/]*\/[^\/]*[\/]$/\1/' )"
+#on hold: export PLATFORM_DIR="$(cygpath -w -s "$PROGRAMFILES/Microsoft SDKs/Windows/v7.0A" | tr "A-Z" "a-z" | sed -e 's/^\(.*\)\/[^\/]*\/[^\/]*[\/]$/\1/' )"
##| sed -e 's/^\(.\):/\/\1/' )"
# guess at where we can find this damned directory in its short form.
filename="$1"; shift
function_name="$1"; shift
-good_path="$(short_path $filename)"
+good_path="$(cygpath -w -s $filename)"
#/exports
dumpbin /all $good_path | grep -q -i "$function_name"