Enable automatic updates for Win64. Fix a copy/paste error.

svn path=/trunk/; revision=47749
This commit is contained in:
Gerald Combs 2013-02-19 22:57:40 +00:00
parent e48236a436
commit 81a5be5813
4 changed files with 9 additions and 4 deletions

View File

@ -665,6 +665,13 @@ SMI_PKG=svn-40773
#
GEOIP_PKG=1.4.8-2
#
# Optional: WinSparkle, software updates
#
# Used for automatic software updates
#
WINSPARKLE_PKG=0.3-44-g2c8d9d3-win64ws
!endif
# win32 / win64

View File

@ -2080,7 +2080,7 @@ prefs_register_modules(void)
prefs_register_enum_preference(gui_module, "update.channel",
"Update channel",
"The type of update to fetch",
(gint*)(void*)(&prefs.gui_update_channel), gui_version_placement_type, FALSE);
(gint*)(void*)(&prefs.gui_update_channel), gui_update_channel, FALSE);
prefs_register_string_preference(gui_module, "window_title", "Custom window title",
"Custom window title. (Appended to existing titles.)", (const char**)(&prefs.gui_window_title));

View File

@ -4,7 +4,7 @@
# 64-bit wrapper for win-setup.sh.
export DOWNLOAD_TAG="2012-12-19"
export DOWNLOAD_TAG="2013-02-19"
export WIRESHARK_TARGET_PLATFORM="win64"
WIN_SETUP=`echo $0 | sed -e s/win64/win/`

View File

@ -66,12 +66,10 @@ static const char *get_appcast_update_url(software_update_channel_e chan) {
update_url_str = g_string_new("");
}
#if 0
/* XXX Add WOW64 checks similar to version_info.c? */
if (sizeof(arch) != 4) {
arch = "x86-64";
}
#endif
switch (chan) {
case UPDATE_CHANNEL_DEVELOPMENT: