Module: wine
Branch: master
Commit: 65d1760452901b7ccdcac46bfdc539a3844200ff
URL: http://source.winehq.org/git/wine.git/?a=commit;h=65d1760452901b7ccdcac46bf…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Mon Aug 1 17:03:07 2011 +0200
configure: Don't reserve page zero on Mac OS, it won't run DOS apps anyway.
---
configure | 2 +-
configure.ac | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
index 130b4b3..0fbfd51 100755
--- a/configure
+++ b/configure
@@ -6417,7 +6417,7 @@ fi
APPLICATIONSERVICESLIB="-framework ApplicationServices"
- LDEXECFLAGS="-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00000000,-segaddr,WINE_SHAREDHEAP,0x7f000000"
+ LDEXECFLAGS="-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00001000,-segaddr,WINE_SHAREDHEAP,0x7f000000"
if test "$ac_cv_header_DiskArbitration_DiskArbitration_h" = "yes"
then
diff --git a/configure.ac b/configure.ac
index cb68b3b..8104f7f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -697,7 +697,7 @@ case $host_os in
AC_SUBST(COREFOUNDATIONLIB,"-framework CoreFoundation")
AC_SUBST(IOKITLIB,"-framework IOKit -framework CoreFoundation")
AC_SUBST(APPLICATIONSERVICESLIB,"-framework ApplicationServices")
- AC_SUBST(LDEXECFLAGS,["-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00000000,-segaddr,WINE_SHAREDHEAP,0x7f000000"])
+ AC_SUBST(LDEXECFLAGS,["-image_base 0x7bf00000 -Wl,-segaddr,WINE_DOS,0x00001000,-segaddr,WINE_SHAREDHEAP,0x7f000000"])
if test "$ac_cv_header_DiskArbitration_DiskArbitration_h" = "yes"
then
dnl DiskArbitration API is not public on Darwin < 8.0, use it only if header found
Module: wine
Branch: master
Commit: bb44fe5698f2e2d3dc49dc53c63e160415f78147
URL: http://source.winehq.org/git/wine.git/?a=commit;h=bb44fe5698f2e2d3dc49dc53c…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Fri Jul 29 19:34:23 2011 +0200
c2man: We don't have multiple dlls in one directory anymore.
---
tools/c2man.pl | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/tools/c2man.pl b/tools/c2man.pl
index 9c67488..ce8a444 100755
--- a/tools/c2man.pl
+++ b/tools/c2man.pl
@@ -1133,13 +1133,12 @@ sub output_spec($)
$percent_documented = int($percent_documented);
}
- # Make a list of the contributors to this DLL. Do this only for the source
- # files that make up the DLL, because some directories specify multiple dlls.
+ # Make a list of the contributors to this DLL.
my @contributors;
- for (@{$spec_details->{SOURCES}})
+ foreach my $source_file (keys %source_files)
{
- my $source_details = $source_files{$_}[0];
+ my $source_details = $source_files{$source_file}[0];
for (@{$source_details->{CONTRIBUTORS}})
{
push (@contributors, $_);
Module: wine
Branch: master
Commit: e6390a5c7fded6bc3b7bda6a3ba490de112d527f
URL: http://source.winehq.org/git/wine.git/?a=commit;h=e6390a5c7fded6bc3b7bda6a3…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Fri Jul 29 19:33:09 2011 +0200
dbghelp: One line only for the copyright.
---
dlls/dbghelp/crc32.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/dbghelp/crc32.c b/dlls/dbghelp/crc32.c
index f07bf42..e1f604e 100644
--- a/dlls/dbghelp/crc32.c
+++ b/dlls/dbghelp/crc32.c
@@ -26,9 +26,9 @@
#include "dbghelp_private.h"
-/* Copyright (C) 1986 Gary S. Brown. Modified by Robert Shearman. You may use
- the following calc_crc32 code or tables extracted from it, as desired without
- restriction. */
+/* Copyright (C) 1986 Gary S. Brown
+ * Modified by Robert Shearman. You may use the following calc_crc32 code or
+ * tables extracted from it, as desired without restriction. */
/**********************************************************************\
|* Demonstration program to compute the 32-bit CRC used as the frame *|