summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2009-04-16 18:14:38 +0000
committerGerald Combs <gerald@wireshark.org>2009-04-16 18:14:38 +0000
commitc0ebf76780417a82404f5c87e179fc6c1dd12271 (patch)
tree55a0c3f3b7338e655f53786ec175759adf7b8662 /tools
parenta7fd8c01f26112721a0d4604d0d083deef3853d5 (diff)
downloadwireshark-c0ebf76780417a82404f5c87e179fc6c1dd12271.tar.gz
Fix (and likely re-break) the Windows builds:
- Use the latest WinPcap Developer's Pack. - In file_dlg_win32.c, try to fix Visual C++ 6.0 compilation. - #if 0 out a bunch of definitions in capture_if_details_dlg_win32.c that already exist in Ntddndis.h. svn path=/trunk/; revision=28067
Diffstat (limited to 'tools')
-rwxr-xr-xtools/win32-setup.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/win32-setup.sh b/tools/win32-setup.sh
index bcd99c5636..95fe67848c 100755
--- a/tools/win32-setup.sh
+++ b/tools/win32-setup.sh
@@ -9,7 +9,7 @@
# in order to provide backward compatibility with older trees (e.g. a
# previous release or an older SVN checkout).
# Save previous tag.
-DOWNLOAD_TAG=${DOWNLOAD_TAG:-"2009-03-19"}
+DOWNLOAD_TAG=${DOWNLOAD_TAG:-"2009-04-16"}
WIRESHARK_TARGET_PLATFORM=${WIRESHARK_TARGET_PLATFORM:-"win32"}
DOWNLOAD_PREFIX="http://anonsvn.wireshark.org/wireshark-$WIRESHARK_TARGET_PLATFORM-libs/tags/$DOWNLOAD_TAG/packages/"
@@ -82,7 +82,7 @@ case "$1" in
which which > /dev/null 2>&1 || \
err_exit "Can't find 'which'. Unable to proceed."
- MISSING_APPS=
+ MISSING_APPS=
for APP in $* ; do
APP_PATH=`cygpath --unix $APP`
if [ -x "$APP_PATH" -a ! -d "$APP_PATH" ] ; then
@@ -98,7 +98,7 @@ case "$1" in
done
if [ -n "$MISSING_APPS" ]; then
- echo
+ echo
echo "Can't find: $MISSING_APPS"
err_exit "These are probably optional cygwin packages not yet installed. Try to install them using cygwin's setup.exe!"
fi