When building php on a remote machine using cygwin+ssh
the terminal name is 'cygwin' and cannot be detected by
shtool. However it works when using settings from vt100.
I maild this to the developer but did not get any feedback
yet...

marcus

cvs -z3 -q diff build\shtool (in directory S:\php4-HEAD\)
Index: build/shtool
===================================================================
RCS file: /repository/php4/build/shtool,v
retrieving revision 1.3
diff -u -r1.3 shtool
--- build/shtool 7 Mar 2002 14:17:56 -0000 1.3
+++ build/shtool 30 Oct 2002 13:38:08 -0000
@@ -362,7 +362,7 @@
term_bold=`awk 'BEGIN { printf("%c%c%c%c", 27, 91, 49, 109); }' </dev/null 2>/dev/null`
term_norm=`awk 'BEGIN { printf("%c%c%c", 27, 91, 109); }' </dev/null 2>/dev/null`
;;
- vt100|vt100*)
+ vt100|vt100*|cygwin)
term_bold=`awk 'BEGIN { printf("%c%c%c%c%c%c", 27, 91, 49, 109, 0, 0); }' </dev/null 2>/dev/null`
term_norm=`awk 'BEGIN { printf("%c%c%c%c%c", 27, 91, 109, 0, 0); }' </dev/null 2>/dev/null`
;;

Reply via email to