diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2004-02-17 10:06:24 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2004-02-17 10:06:24 +0000 |
commit | 5c3d5d1f4e42a4de8e72b2ce291a98694c46184f (patch) | |
tree | 11ea67566f76c2863c6f79a5adfcccfc61dcd166 /emulators/vba/files | |
parent | FORBIDDEN on 5.x: does not respect PTHREAD_{CFLAGS,LIBS} (diff) |
Update to version 1.7.1: update battery file more often; many bugfixes.
See ChangeLog for complete details.
PR: ports/62645
Submitted by: arundel@gmx.net (maintainer)
Notes
Notes:
svn path=/head/; revision=101172
Diffstat (limited to 'emulators/vba/files')
-rw-r--r-- | emulators/vba/files/patch-aa | 30 | ||||
-rw-r--r-- | emulators/vba/files/patch-ac | 11 | ||||
-rw-r--r-- | emulators/vba/files/patch-ad | 11 |
3 files changed, 33 insertions, 19 deletions
diff --git a/emulators/vba/files/patch-aa b/emulators/vba/files/patch-aa index 39f0b8785d27..1cff2d167f08 100644 --- a/emulators/vba/files/patch-aa +++ b/emulators/vba/files/patch-aa @@ -1,19 +1,11 @@ -*** src/SDL.cpp.orig Sun Jan 11 22:20:00 2004 ---- src/SDL.cpp Sun Jan 11 22:17:23 2004 -*************** -*** 625,631 **** - } - #else - #define SDL_CALL_STRETCHER \ -! asm volatile("call *%%eax"::"a" (stretcher),"S" (src),"D" (dest)) - #endif - #else - #define SDL_CALL_STRETCHER \ ---- 625,631 ---- - } - #else - #define SDL_CALL_STRETCHER \ -! // asm volatile("call *%%eax"::"a" (stretcher),"S" (src),"D" (dest)) - #endif - #else - #define SDL_CALL_STRETCHER \ +--- src/SDL.cpp.orig Sun Feb 8 14:45:01 2004 ++++ src/SDL.cpp Tue Feb 10 14:45:09 2004 +@@ -621,7 +621,7 @@ + } + #else + #define SDL_CALL_STRETCHER \ +- asm volatile("call *%%eax"::"a" (stretcher),"S" (src),"D" (dest)) ++ asm volatile("call *%%eax" : "=a" (stretcher),"=S" (src),"=D" (dest)) + #endif + #else + #define SDL_CALL_STRETCHER \ diff --git a/emulators/vba/files/patch-ac b/emulators/vba/files/patch-ac new file mode 100644 index 000000000000..af879c36de78 --- /dev/null +++ b/emulators/vba/files/patch-ac @@ -0,0 +1,11 @@ +--- src/Makefile.am.orig Sun Feb 1 16:00:46 2004 ++++ src/Makefile.am Tue Feb 10 15:03:25 2004 +@@ -18,7 +18,7 @@ + hq2x.cpp hq2x.h lq2x.h Text.cpp Text.h interp.h + + VisualBoyAdvance_LDADD = gb/libgb.a @VBA_PROF@ @VBA_MMX@ +-VisualBoyAdvance_LDFLAGS = `sdl-config --libs` ++// VisualBoyAdvance_LDFLAGS = ${SDL_CONFIG} + + TestEmu_SOURCES = \ + TestEmu.cpp 2xSaI.cpp pixel.cpp motionblur.cpp admame.cpp \ diff --git a/emulators/vba/files/patch-ad b/emulators/vba/files/patch-ad new file mode 100644 index 000000000000..88f170c6e0e0 --- /dev/null +++ b/emulators/vba/files/patch-ad @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig Sun Feb 1 16:00:50 2004 ++++ src/Makefile.in Tue Feb 10 15:03:46 2004 +@@ -157,7 +157,7 @@ + + + VisualBoyAdvance_LDADD = gb/libgb.a @VBA_PROF@ @VBA_MMX@ +-VisualBoyAdvance_LDFLAGS = `sdl-config --libs` ++// VisualBoyAdvance_LDFLAGS = ${SDL_CONFIG} + + TestEmu_SOURCES = \ + TestEmu.cpp 2xSaI.cpp pixel.cpp motionblur.cpp admame.cpp \ |