diff options
Diffstat (limited to 'app-emulation/vmware-player/files/2.0.0.45731/002_all_pagebreak-detection-fix.patch')
-rw-r--r-- | app-emulation/vmware-player/files/2.0.0.45731/002_all_pagebreak-detection-fix.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app-emulation/vmware-player/files/2.0.0.45731/002_all_pagebreak-detection-fix.patch b/app-emulation/vmware-player/files/2.0.0.45731/002_all_pagebreak-detection-fix.patch new file mode 100644 index 000000000000..fd3fc76ca679 --- /dev/null +++ b/app-emulation/vmware-player/files/2.0.0.45731/002_all_pagebreak-detection-fix.patch @@ -0,0 +1,15 @@ +diff -ur vmware-distrib.orig/bin/vmware-config.pl vmware-distrib/bin/vmware-config.pl +--- vmware-distrib.orig/bin/vmware-config.pl 2006-03-24 23:13:05.000000000 +0100 ++++ vmware-distrib/bin/vmware-config.pl 2006-03-24 23:26:40.000000000 +0100 +@@ -2015,9 +2015,9 @@ + . shell_string($pattern)); + chomp($header_page_offset); + # Ignore PAGE_OFFSET if we cannot parse it. +- if ($header_page_offset =~ /^$pattern \(?0x([0-9a-fA-F]{8,})/) { ++ if ($header_page_offset =~ /^$pattern \(?(\([^)]*\))?\)?0x([0-9a-fA-F]{8,}).*$/) { + # We found a valid page offset +- $header_page_offset = $1; ++ $header_page_offset = $2; + if (defined($gSystem{'page_offset'}) and + not (lc($header_page_offset) eq lc($gSystem{'page_offset'}))) { + if ($source eq 'user') { |