aboutsummaryrefslogtreecommitdiffstats
path: root/tools/win-setup.sh
AgeCommit message (Collapse)AuthorFilesLines
2015-04-09Pass HTTP URLs to wget.Gerald Combs1-4/+4
Not all wgets are equal. Revert part of 7787c1b so that wget fetches over HTTP instead of HTTPS. Change-Id: Iced263380429795975cf239cba7dac54bd729d38 Reviewed-on: https://code.wireshark.org/review/8005 Reviewed-by: Graham Bloice <graham.bloice@trihedral.com> Petri-Dish: Graham Bloice <graham.bloice@trihedral.com> Reviewed-by: Martin Mathieson <martin.r.mathieson@googlemail.com> Reviewed-by: Gerald Combs <gerald@wireshark.org>
2015-04-02Fixup our anonsvn URLs.Gerald Combs1-4/+4
Change-Id: Id18d392bf7ff948fc78b684d8222c5c3725d302a Reviewed-on: https://code.wireshark.org/review/7886 Reviewed-by: Gerald Combs <gerald@wireshark.org>
2014-07-28Fix download of 3rd party packages when WIRESHARK_TARGET_PLATFORM ↵Pascal Quantin1-2/+3
environment variable is not explicitly set Bug: 10317 Change-Id: Ic7b4ffe2bbe4f69928b91a5151d8cef1ae59f723 Reviewed-on: https://code.wireshark.org/review/3203 Reviewed-by: Bill Meier <wmeier@newsguy.com>
2014-07-22Add back a 'dummy' comment I removed with commit e91121e1435d97c92Joerg Mayer1-1/+1
Change-Id: Ia21dc80c8b942fbc1a85a8990354bdaaf9dc8210 Reviewed-on: https://code.wireshark.org/review/3161 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
2014-07-21Pass the download tag as an argument to win-setup.sh instead as an ↵Joerg Mayer1-12/+13
enviroment variable Change-Id: Id2369cec93b82f182bab9046469796f51115accb Reviewed-on: https://code.wireshark.org/review/3143 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
2014-07-20WIRESHARK_TARGET_PLATFORM is only used inside --download code path:Joerg Mayer1-18/+14
Use it only there. Update comments wrt DOWNLOAD_PREFIX Remove trailing / at end of DOWNLOAD_PREFIX Change-Id: Ia161d4226ff3d463bceaaf4e01de70b2db98bf3c Reviewed-on: https://code.wireshark.org/review/3142 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
2014-07-20Change a comment to be slightly easier to readJoerg Mayer1-24/+27
Reorder code to have all toplevel code in 'main' Change-Id: Ia99830ce2ee6af46249f533d64a328d2da2ed9b8 Reviewed-on: https://code.wireshark.org/review/3141 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
2014-02-18Fix indent (use tabs)Alexis La Goutte1-16/+16
Change-Id: I45f5e2ed64090947f1605db10eb6cee0e33782bf Reviewed-on: https://code.wireshark.org/review/248 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2014-02-14Remove $Id$ and other Subversion leftovers from the tools.Jeff Morriss1-2/+0
There are a few things in here which could still use attention. Don't regenerate anything now. Change-Id: I283c224d3523212144707fca3d6265916cb11792 Reviewed-on: https://code.wireshark.org/review/205 Reviewed-by: Jeff Morriss <jeff.morriss.ws@gmail.com>
2013-07-15Get rid of "win-setup.sh: line 24: $'\r': command not found" warningPascal Quantin1-1/+0
svn path=/trunk/; revision=50642
2013-07-12Add (GPLv2+) license headers to these scripts, assigning the copyright toJeff Morriss1-2/+23
the original author of the scripts (Gerald). svn path=/trunk/; revision=50542
2013-06-19From Orgad Shaneh via bug 8308 - allow a relative path for the ↵Graham Bloice1-3/+4
WIRESHARK_LIBS location. svn path=/trunk/; revision=50065
2012-09-13Remove our local copy of WinPcap and download it fromGerald Combs1-13/+15
wireshark-win{32,64}-libs instead. In win-setup.sh only try to unzip files ending in .zip. PortableApps and U3 packaging changes are untested. svn path=/trunk/; revision=44888
2012-01-06Add quotes around some filename usage; Also: use $() instead of backticksBill Meier1-21/+21
svn path=/trunk/; revision=40396
2011-12-12Allow for true error reporing.Jaap Keuter1-18/+18
Move the comment to where it's intended. svn path=/trunk/; revision=40158
2011-08-29Add "--windowsonly" and "--cygwinonly" options to win-setup.shGerald Combs1-6/+25
--appverify. Make sure "mt" is only found in a normaly Windows path and "find" is only found in a Cygwin path. svn path=/trunk/; revision=38781
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