aboutsummaryrefslogtreecommitdiffstats
path: root/tools/win-setup.sh
AgeCommit message (Collapse)AuthorFilesLines
2011-02-03Fix: Cygwin make fails after updating to bash v 4.1.9.2Bill Meier1-2/+2
Extracts from the cygwin Bash 4.1.9.2 release announcement: 4a. For a single affected script, add this line just after the she-bang: (set -o igncr) 2>/dev/null && set -o igncr; # comment is needed 4e. bash-4.1.9-1 dropped support for 'shopt -s igncr'; I'm assuming this is backwards compatible; If not, we'll know quite shortly :) svn path=/trunk/; revision=35788
2011-01-26(Trivial) Fix a typo.Bill Meier1-1/+1
svn path=/trunk/; revision=35652
2010-10-04Stop the MS-DOS style path name warnings when compiling on Windows.Stephen Fisher1-4/+4
svn path=/trunk/; revision=34375
2010-04-30From Chris Maynard: Fix Bug #1292: "Win32: confusing setup target warning if ↵Bill Meier1-2/+5
cl.exe is not in path" See: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1292 svn path=/trunk/; revision=32614
2010-02-16At least part of the problem is that Bash's test command appears not toGuy Harris1-12/+15
do short-circuit evaluation, so you can't do if [ {test 1} -a {test that's not safe if test1 is false} ] then ... fi so don't do that. svn path=/trunk/; revision=31894
2010-02-16Close quote.Guy Harris1-1/+1
svn path=/trunk/; revision=31893
2010-02-16More debug crap.Guy Harris1-1/+4
svn path=/trunk/; revision=31892
2010-02-15More debugging - stripping out the newlines didn't suffice.Guy Harris1-0/+2
svn path=/trunk/; revision=31891
2010-02-15The problem was that if you do, for example:Guy Harris1-3/+6
foo=`echo` $foo won't be empty, it'll include the newline at the end of the output of "echo". The same applies for any other command; strip newlines from the output of regtool to avoid that problem. svn path=/trunk/; revision=31889
2010-02-15Eh? It looks blank, but "-n" should catch that. Hopefully we have "od"Guy Harris1-1/+2
and that'll let us see the raw bytes. svn path=/trunk/; revision=31888
2010-02-15Add a debugging printout. (What I found in the Intertubes seems toGuy Harris1-0/+1
indicate that ProxyEnabled is an integral value; if it's not a null string, and if it's not an integral value, what is it?) svn path=/trunk/; revision=31887
2010-02-15Protect against $proxy_enabled being empty.Guy Harris1-1/+1
svn path=/trunk/; revision=31886
2010-01-15For now: Add hack so \r ignored when win-setup.sh is invoked from a cygwin ↵Bill Meier1-0/+2
bash shell. See: http://www.mail-archive.com/cygwin-announce@cygwin.com/msg01711.html Note: another way to do this (as described in the above) might be to "export the environment variable SHELLOPTS with igncr included in it. It is read-only from within bash, but you can set it before invoking bash; once in bash, it auto-tracks the current state of 'set -o igncr' or 'shopt -s igncr'. If exported, then all bash child processes inherit the same option settings". svn path=/trunk/; revision=31538
2010-01-14Set some properties.Gerald Combs1-0/+0
svn path=/trunk/; revision=31528
2009-12-16Use gtk+-bundle_2.16.6-20091215_win32Anders Broman1-3/+2
svn path=/trunk/; revision=31285
2009-09-24Add win-setup.sh which contains pretty much what used to be in ↵Kovarththanan Rajaratnam1-0/+186
win32-setup.sh and which happens to be generic code svn path=/trunk/; revision=30130