diff options
author | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-25 17:41:18 +0000 |
---|---|---|
committer | Daniel Ahlberg <aliz@gentoo.org> | 2004-02-25 17:41:18 +0000 |
commit | 8da92558d11902e2cf8fcaedb59251c6989b7f85 (patch) | |
tree | d0ad6db4faa6cb9da1d397a342bb4dc46771ac37 /media-plugins/modplugxmms/files | |
parent | Adding amd64 keyword. Closing #42517. (diff) | |
download | gentoo-2-8da92558d11902e2cf8fcaedb59251c6989b7f85.tar.gz gentoo-2-8da92558d11902e2cf8fcaedb59251c6989b7f85.tar.bz2 gentoo-2-8da92558d11902e2cf8fcaedb59251c6989b7f85.zip |
Closing #42074.
Diffstat (limited to 'media-plugins/modplugxmms/files')
-rw-r--r-- | media-plugins/modplugxmms/files/modplugxmms-2.04-amd64.patch | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/media-plugins/modplugxmms/files/modplugxmms-2.04-amd64.patch b/media-plugins/modplugxmms/files/modplugxmms-2.04-amd64.patch new file mode 100644 index 000000000000..9584268c3b3b --- /dev/null +++ b/media-plugins/modplugxmms/files/modplugxmms-2.04-amd64.patch @@ -0,0 +1,73 @@ +--- stdafx.h ++++ stdafx.h +23a24,91 +> #elif defined(__x86_64__) +> +> #include <stdlib.h> +> #include <stdio.h> +> #include <string.h> +> +> typedef signed char CHAR; +> typedef unsigned char UCHAR; +> typedef unsigned char* PUCHAR; +> typedef unsigned short USHORT; +> typedef unsigned int ULONG; +> typedef unsigned int UINT; +> typedef unsigned int DWORD; +> typedef int LONG; +> typedef unsigned short WORD; +> typedef unsigned char BYTE; +> typedef unsigned char * LPBYTE; +> typedef bool BOOL; +> typedef char * LPSTR; +> typedef void * LPVOID; +> typedef int * LPLONG; +> typedef unsigned int * LPDWORD; +> typedef unsigned short * LPWORD; +> typedef const char * LPCSTR; +> typedef long LONGLONG; +> typedef void * PVOID; +> typedef void VOID; +> +> inline LONG MulDiv (int a, int b, int c) +> { +> // if (!c) return 0; +> return ((unsigned long)a * (unsigned long) b ) / c; +> } +> +> #define MODPLUG_NO_FILESAVE +> #define NO_AGC +> #define LPCTSTR LPCSTR +> #define lstrcpyn strncpy +> #define lstrcpy strcpy +> #define lstrcmp strcmp +> #define WAVE_FORMAT_PCM 1 +> //#define ENABLE_EQ +> +> #define GHND 0 +> +> inline signed char * GlobalAllocPtr(unsigned int, size_t size) +> { +> signed char * p = (signed char *) malloc(size); +> +> if (p != NULL) memset(p, 0, size); +> return p; +> } +> +> inline void ProcessPlugins(int n) {} +> +> #define GlobalFreePtr(p) free((void *)(p)) +> +> #define strnicmp(a,b,c) strncasecmp(a,b,c) +> #define wsprintf sprintf +> +> #ifndef FALSE +> #define FALSE false +> #endif +> +> #ifndef TRUE +> #define TRUE true +> #endif +> +52d119 +< |