summaryrefslogtreecommitdiff
path: root/multimedia/avifile/patches/patch-am
blob: 5c3cf9905b11ffecfae44b59ad6f33973e380b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
$NetBSD: patch-am,v 1.2 2004/07/30 09:57:54 salo Exp $

--- lib/loader/win32.c.orig	2001-01-31 21:23:25.000000000 +0100
+++ lib/loader/win32.c	2004-07-30 11:54:45.000000000 +0200
@@ -696,7 +696,7 @@
 	cachedsi.wProcessorLevel		= 5; /* pentium */
 	cachedsi.wProcessorRevision		= 0x0101;
 	
-#ifdef __FreeBSD__
+#if defined(__FreeBSD__) || defined(__NetBSD__)
         cachedsi.dwProcessorType = PROCESSOR_INTEL_PENTIUM;
         cachedsi.wProcessorLevel= 5;
 	PF[PF_COMPARE_EXCHANGE_DOUBLE] = TRUE;
@@ -1094,11 +1094,11 @@
 {
 #warning FIXME
     if(s1)
-    dbgprintf("MultiByteToWideChar(codepage %d, flags 0x%x, string 0x%x='%s',
+    dbgprintf("MultiByteToWideChar(codepage %d, flags 0x%x, string 0x%x='%s', \
 	size %d, dest buffer 0x%x, dest size %d) => 1 ( L\"\\0\" )\n",
 	    v1, v2, s1, s1, siz1, s2, siz2);
     else
-    dbgprintf("MultiByteToWideChar(codepage %d, flags 0x%x, string NULL,
+    dbgprintf("MultiByteToWideChar(codepage %d, flags 0x%x, string NULL, \
 	size %d, dest buffer 0x%x, dest size %d) => 1 ( L\"\\0\" )\n",
 	    v1, v2, siz1, s2, siz2);
     
@@ -1605,11 +1605,11 @@
 {
     long result=CreateFileMappingA(hFile, lpAttr, flProtect, dwMaxHigh, dwMaxLow, name);
     if(!name)
-    dbgprintf("CreateFileMappingA(file 0x%x, lpAttr 0x%x, 
+    dbgprintf("CreateFileMappingA(file 0x%x, lpAttr 0x%x, \
 	flProtect 0x%x, dwMaxHigh 0x%x, dwMaxLow 0x%x, name 0) => %d\n",
 	    hFile, lpAttr, flProtect, dwMaxHigh, dwMaxLow, result);
     else
-    dbgprintf("CreateFileMappingA(file 0x%x, lpAttr 0x%x, 
+    dbgprintf("CreateFileMappingA(file 0x%x, lpAttr 0x%x, \
 	flProtect 0x%x, dwMaxHigh 0x%x, dwMaxLow 0x%x, name 0x%x='%s') => %d\n",
 	    hFile, lpAttr, flProtect, dwMaxHigh, dwMaxLow, name, name, result);    
     return result;