Module: wine
Branch: stable
Commit: 961e3d95de1cf67bf5c5c68a6f4143277656638d
URL: http://source.winehq.org/git/wine.git/?a=commit;h=961e3d95de1cf67bf5c5c68a6…
Author: Anders Jonsson <anders.jonsson(a)norsjonet.se>
Date: Tue Aug 3 08:25:48 2010 +0200
winmm: Fix typo in English, Slovak resources.
(cherry picked from commit 2ebe732453a6477dd8e5fcc209b297c7e2cf5b67)
---
dlls/winmm/winmm_En.rc | 2 +-
dlls/winmm/winmm_Sk.rc | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/winmm/winmm_En.rc b/dlls/winmm/winmm_En.rc
index 1a945d8..f7e80ea 100644
--- a/dlls/winmm/winmm_En.rc
+++ b/dlls/winmm/winmm_En.rc
@@ -119,7 +119,7 @@ MCIERR_FILE_READ, "Cannot read the specified file. Make sure the file is still
MCIERR_FILE_WRITE, "Cannot write to the specified file. Make sure you have enough disk space or are still connected to the network."
MCIERR_SEQ_DIV_INCOMPATIBLE, "The time formats of the ""song pointer"" and SMPTE are mutually exclusive. You can't use them together."
MCIERR_SEQ_NOMIDIPRESENT, "The system has no installed MIDI devices. Use the Drivers option from the Control Panel to install a MIDI driver."
-MCIERR_SEQ_PORT_INUSE, "The specified MIDI port is already in use. Wait until it is free; the try again."
+MCIERR_SEQ_PORT_INUSE, "The specified MIDI port is already in use. Wait until it is free; then try again."
MCIERR_SEQ_PORT_MAPNODEVICE, "The current MIDI Mapper setup refers to a MIDI device that is not installed on the system. Use the MIDI Mapper option from the Control Panel to edit the setup."
MCIERR_SEQ_PORT_MISCERROR, "An error occurred with the specified port."
MCIERR_SEQ_PORT_NONEXISTENT, "The specified MIDI device is not installed on the system. Use the Drivers option from the Control Panel to install a MIDI device."
diff --git a/dlls/winmm/winmm_Sk.rc b/dlls/winmm/winmm_Sk.rc
index d9345ec..0a1ded0 100644
--- a/dlls/winmm/winmm_Sk.rc
+++ b/dlls/winmm/winmm_Sk.rc
@@ -119,7 +119,7 @@ MCIERR_FILE_READ, "Cannot read the specified file. Make sure the file is still
MCIERR_FILE_WRITE, "Cannot write to the specified file. Make sure you have enough disk space or are still connected to the network."
MCIERR_SEQ_DIV_INCOMPATIBLE, "The time formats of the ""song pointer"" and SMPTE are mutually exclusive. You can't use them together."
MCIERR_SEQ_NOMIDIPRESENT, "The system has no installed MIDI devices. Use the Drivers option from the Control Panel to install a MIDI driver."
-MCIERR_SEQ_PORT_INUSE, "The specified MIDI port is already in use. Wait until it is free; the try again."
+MCIERR_SEQ_PORT_INUSE, "The specified MIDI port is already in use. Wait until it is free; then try again."
MCIERR_SEQ_PORT_MAPNODEVICE, "The current MIDI Mapper setup refers to a MIDI device that is not installed on the system. Use the MIDI Mapper option from the Control Panel to edit the setup."
MCIERR_SEQ_PORT_MISCERROR, "An error occurred with the specified port."
MCIERR_SEQ_PORT_NONEXISTENT, "The specified MIDI device is not installed on the system. Use the Drivers option from the Control Panel to install a MIDI device."
Module: wine
Branch: stable
Commit: 05c277e3e15dd265827b2ff722fffcbfde4713ef
URL: http://source.winehq.org/git/wine.git/?a=commit;h=05c277e3e15dd265827b2ff72…
Author: Anders Jonsson <anders.jonsson(a)norsjonet.se>
Date: Tue Aug 3 08:24:12 2010 +0200
cryptui: Fix typos in English resources.
(cherry picked from commit e8994599dcebb948d5c219bf7dda13546e70a0dc)
---
dlls/cryptui/cryptui_En.rc | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/cryptui/cryptui_En.rc b/dlls/cryptui/cryptui_En.rc
index 527ffa5..11ffa03 100644
--- a/dlls/cryptui/cryptui_En.rc
+++ b/dlls/cryptui/cryptui_En.rc
@@ -118,10 +118,10 @@ STRINGTABLE DISCARDABLE
IDS_WARN_REMOVE_PLURAL_DEFAULT "Are you sure you want to remove these certificates?"
IDS_CERT_MGR "Certificates"
IDS_FRIENDLY_NAME_NONE "<None>"
- IDS_PURPOSE_SERVER_AUTH "Ensures the identify of a remote computer"
+ IDS_PURPOSE_SERVER_AUTH "Ensures the identity of a remote computer"
IDS_PURPOSE_CLIENT_AUTH "Proves your identity to a remote computer"
IDS_PURPOSE_CODE_SIGNING "Ensures software came from software publisher\nProtects software from alteration after publication"
- IDS_PURPOSE_EMAIL_PROTECTION "Protects e-mail messges"
+ IDS_PURPOSE_EMAIL_PROTECTION "Protects e-mail messages"
IDS_PURPOSE_IPSEC "Allows secure communication over the Internet"
IDS_PURPOSE_TIMESTAMP_SIGNING "Allows data to be signed with the current time"
IDS_PURPOSE_CTL_USAGE_SIGNING "Allows you to digitally sign a certificate trust list"
Module: wine
Branch: stable
Commit: 365000ce5c158c758c4ff8cbcd3060f20fa1733b
URL: http://source.winehq.org/git/wine.git/?a=commit;h=365000ce5c158c758c4ff8cbc…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Fri Nov 26 16:18:32 2010 +0100
configure: Load wine lower in memory on FreeBSD to leave more space for mmap() and malloc().
If not provided an explicit address, FreeBSD won't mmap any memory
below the executable. In particularly this means any memory below that
is unavailable to dlopen() and malloc(). This fixes the bug where
large WineLib binaries, in particular winetest, failed to load because
there was not enough space left for them and the native libraries they
linked to. The drawback is that we can no longer load very large
Windows executables (between about 1.5 and 2 GB).
(cherry picked from commit 5f694ddf4c211c1c167a15541c2654175ce42a62)
---
configure | 6 +++++-
configure.ac | 6 +++++-
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
index db44d4d..0ac4902 100755
--- a/configure
+++ b/configure
@@ -6922,7 +6922,11 @@ eval ac_res=\$$as_ac_var
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
$as_echo "$ac_res" >&6; }
if test `eval 'as_val=${'$as_ac_var'};$as_echo "$as_val"'` = yes; then :
- LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7bf00400"
+ case $host_os in
+ freebsd*) LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x60000400" ;;
+ *) LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7bf00400" ;;
+ esac
+
fi
;;
esac
diff --git a/configure.ac b/configure.ac
index 8181c4d..3372e87 100644
--- a/configure.ac
+++ b/configure.ac
@@ -792,7 +792,11 @@ case $host_os in
case $host_cpu in
*i[[3456789]]86* | x86_64)
WINE_TRY_CFLAGS([-Wl,--section-start,.interp=0x7bf00400],
- [LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7bf00400"])
+ [case $host_os in
+ freebsd*) LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x60000400" ;;
+ *) LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7bf00400" ;;
+ esac
+ ])
;;
esac