Remove tools/win32-setup.sh and tools/win64-setup.sh

Change-Id: Ifdc57304a0109f60260dc73d95b0598ddca81805
Reviewed-on: https://code.wireshark.org/review/3146
Reviewed-by: Jörg Mayer <jmayer@loplof.de>
This commit is contained in:
Joerg Mayer 2014-07-21 03:11:42 +02:00 committed by Jörg Mayer
parent 494092a418
commit 56a241137a
3 changed files with 4 additions and 84 deletions

View File

@ -94,7 +94,7 @@ EXTRA_DIST = \
cppcheck/includes \
cppcheck/suppressions \
debian-setup.sh \
dfilter-test.py \
dfilter-test.py \
extract_asn1_from_spec.pl \
fix-encoding-args.pl \
fixhf.pl \
@ -112,8 +112,8 @@ EXTRA_DIST = \
make-dissector-reg \
make-dissector-reg.py \
make-manuf \
make-sminmpec.pl \
make-services.py \
make-sminmpec.pl \
make-services.py \
make-tapreg-dotc \
make-tap-reg.py \
msnchat \
@ -129,10 +129,8 @@ EXTRA_DIST = \
setuid-root.pl.in \
test-common.sh \
test-captures.sh \
textify.sh \
textify.sh \
valgrind-wireshark.sh \
win32-setup.sh \
win64-setup.sh \
win-setup.sh \
wireshark_be.py \
wireshark_gen.py \

View File

@ -1,39 +0,0 @@
#!/bin/bash
#
# Copyright 2013 Gerald Combs <gerald@wireshark.org>
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# 32-bit wrapper for win-setup.sh.
export DOWNLOAD_TAG="2014-06-05"
WIN_SETUP=`echo $0 | sed -e s/win32/win/`
if [ -z "$*" ]; then
exec $WIN_SETUP $@
fi
case "$1" in
--download|--settag|--checktag)
exec $WIN_SETUP $@ $DOWNLOAD_TAG
;;
*)
exec $WIN_SETUP $@
;;
esac

View File

@ -1,39 +0,0 @@
#!/bin/bash
#
# Copyright 2013 Gerald Combs <gerald@wireshark.org>
#
# Wireshark - Network traffic analyzer
# By Gerald Combs <gerald@wireshark.org>
# Copyright 1998 Gerald Combs
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
# 64-bit wrapper for win-setup.sh.
export DOWNLOAD_TAG="2014-06-05"
WIN_SETUP=`echo $0 | sed -e s/win64/win/`
if [ -z "$*" ]; then
exec $WIN_SETUP $@
fi
case "$1" in
--download|--settag|--checktag)
exec $WIN_SETUP $@ $DOWNLOAD_TAG
;;
*)
exec $WIN_SETUP $@
;;
esac