* [gentoo-commits] gentoo-x86 commit in games-emulation/dosbox/files: dosbox-0.72+gcc-4.3.patch
@ 2008-06-13 16:34 Diego Petteno (flameeyes)
0 siblings, 0 replies; 3+ messages in thread
From: Diego Petteno (flameeyes) @ 2008-06-13 16:34 UTC (permalink / raw
To: gentoo-commits
flameeyes 08/06/13 16:34:57
Added: dosbox-0.72+gcc-4.3.patch
Log:
Add patch to build with gcc 4.3 from bug #218320, thanks to Peter Alfredsen (loki_val). Make alsa USE flag work again (bug #225919).
(Portage version: 2.1.5.5)
Revision Changes Path
1.1 games-emulation/dosbox/files/dosbox-0.72+gcc-4.3.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/dosbox/files/dosbox-0.72+gcc-4.3.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/dosbox/files/dosbox-0.72+gcc-4.3.patch?rev=1.1&content-type=text/plain
Index: dosbox-0.72+gcc-4.3.patch
===================================================================
diff -ur /tmp/dosbox-0.72/src/dos/cdrom_image.cpp dosbox-0.72/src/dos/cdrom_image.cpp
--- /tmp/dosbox-0.72/src/dos/cdrom_image.cpp 2007-08-22 13:54:35.000000000 +0200
+++ dosbox-0.72/src/dos/cdrom_image.cpp 2008-03-06 21:30:00.000000000 +0100
@@ -23,7 +23,7 @@
#include <cstdio>
#include <fstream>
#include <iostream>
-#include <limits.h>
+#include <limits>
#include <sstream>
#include <vector>
#include <sys/stat.h>
diff -ur /tmp/dosbox-0.72/src/hardware/gameblaster.cpp dosbox-0.72/src/hardware/gameblaster.cpp
--- /tmp/dosbox-0.72/src/hardware/gameblaster.cpp 2007-01-10 11:17:37.000000000 +0100
+++ dosbox-0.72/src/hardware/gameblaster.cpp 2008-03-06 21:31:32.000000000 +0100
@@ -24,6 +24,7 @@
#include "hardware.h"
#include "setup.h"
#include "pic.h"
+#include <cstring>
#define LEFT 0x00
#define RIGHT 0x01
diff -ur /tmp/dosbox-0.72/src/hardware/tandy_sound.cpp dosbox-0.72/src/hardware/tandy_sound.cpp
--- /tmp/dosbox-0.72/src/hardware/tandy_sound.cpp 2007-06-29 20:21:12.000000000 +0200
+++ dosbox-0.72/src/hardware/tandy_sound.cpp 2008-03-06 21:32:02.000000000 +0100
@@ -28,6 +28,7 @@
#include "setup.h"
#include "pic.h"
#include "dma.h"
+#include <cstring>
#define DAC_CLOCK 3570000
#define MAX_OUTPUT 0x7fff
diff -ur /tmp/dosbox-0.72/src/shell/shell_cmds.cpp dosbox-0.72/src/shell/shell_cmds.cpp
--- /tmp/dosbox-0.72/src/shell/shell_cmds.cpp 2007-08-17 19:58:46.000000000 +0200
+++ dosbox-0.72/src/shell/shell_cmds.cpp 2008-03-06 21:32:47.000000000 +0100
@@ -27,6 +27,7 @@
#include "regs.h"
#include "../dos/drives.h"
#include "support.h"
+#include <cstdlib>
static SHELL_Cmd cmd_list[]={
{ "CHDIR", 1, &DOS_Shell::CMD_CHDIR, "SHELL_CMD_CHDIR_HELP"},
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-emulation/dosbox/files: dosbox-0.72+gcc-4.3.patch
@ 2008-11-17 20:34 Diego Petteno (flameeyes)
0 siblings, 0 replies; 3+ messages in thread
From: Diego Petteno (flameeyes) @ 2008-11-17 20:34 UTC (permalink / raw
To: gentoo-commits
flameeyes 08/11/17 20:34:37
Modified: dosbox-0.72+gcc-4.3.patch
Log:
Fix patch with absolute paths.
(Portage version: 2.2_rc14/cvs/Linux 2.6.27-gentoo-r2 x86_64)
Revision Changes Path
1.2 games-emulation/dosbox/files/dosbox-0.72+gcc-4.3.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/dosbox/files/dosbox-0.72+gcc-4.3.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/dosbox/files/dosbox-0.72+gcc-4.3.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/games-emulation/dosbox/files/dosbox-0.72+gcc-4.3.patch?r1=1.1&r2=1.2
Index: dosbox-0.72+gcc-4.3.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/dosbox/files/dosbox-0.72+gcc-4.3.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- dosbox-0.72+gcc-4.3.patch 13 Jun 2008 16:34:57 -0000 1.1
+++ dosbox-0.72+gcc-4.3.patch 17 Nov 2008 20:34:37 -0000 1.2
@@ -1,6 +1,6 @@
diff -ur /tmp/dosbox-0.72/src/dos/cdrom_image.cpp dosbox-0.72/src/dos/cdrom_image.cpp
---- /tmp/dosbox-0.72/src/dos/cdrom_image.cpp 2007-08-22 13:54:35.000000000 +0200
-+++ dosbox-0.72/src/dos/cdrom_image.cpp 2008-03-06 21:30:00.000000000 +0100
+--- a/dosbox-0.72/src/dos/cdrom_image.cpp 2007-08-22 13:54:35.000000000 +0200
++++ b/dosbox-0.72/src/dos/cdrom_image.cpp 2008-03-06 21:30:00.000000000 +0100
@@ -23,7 +23,7 @@
#include <cstdio>
#include <fstream>
@@ -11,8 +11,8 @@
#include <vector>
#include <sys/stat.h>
diff -ur /tmp/dosbox-0.72/src/hardware/gameblaster.cpp dosbox-0.72/src/hardware/gameblaster.cpp
---- /tmp/dosbox-0.72/src/hardware/gameblaster.cpp 2007-01-10 11:17:37.000000000 +0100
-+++ dosbox-0.72/src/hardware/gameblaster.cpp 2008-03-06 21:31:32.000000000 +0100
+--- a//dosbox-0.72/src/hardware/gameblaster.cpp 2007-01-10 11:17:37.000000000 +0100
++++ b/dosbox-0.72/src/hardware/gameblaster.cpp 2008-03-06 21:31:32.000000000 +0100
@@ -24,6 +24,7 @@
#include "hardware.h"
#include "setup.h"
@@ -22,8 +22,8 @@
#define LEFT 0x00
#define RIGHT 0x01
diff -ur /tmp/dosbox-0.72/src/hardware/tandy_sound.cpp dosbox-0.72/src/hardware/tandy_sound.cpp
---- /tmp/dosbox-0.72/src/hardware/tandy_sound.cpp 2007-06-29 20:21:12.000000000 +0200
-+++ dosbox-0.72/src/hardware/tandy_sound.cpp 2008-03-06 21:32:02.000000000 +0100
+--- a/dosbox-0.72/src/hardware/tandy_sound.cpp 2007-06-29 20:21:12.000000000 +0200
++++ b/dosbox-0.72/src/hardware/tandy_sound.cpp 2008-03-06 21:32:02.000000000 +0100
@@ -28,6 +28,7 @@
#include "setup.h"
#include "pic.h"
@@ -33,8 +33,8 @@
#define DAC_CLOCK 3570000
#define MAX_OUTPUT 0x7fff
diff -ur /tmp/dosbox-0.72/src/shell/shell_cmds.cpp dosbox-0.72/src/shell/shell_cmds.cpp
---- /tmp/dosbox-0.72/src/shell/shell_cmds.cpp 2007-08-17 19:58:46.000000000 +0200
-+++ dosbox-0.72/src/shell/shell_cmds.cpp 2008-03-06 21:32:47.000000000 +0100
+--- a/dosbox-0.72/src/shell/shell_cmds.cpp 2007-08-17 19:58:46.000000000 +0200
++++ b/dosbox-0.72/src/shell/shell_cmds.cpp 2008-03-06 21:32:47.000000000 +0100
@@ -27,6 +27,7 @@
#include "regs.h"
#include "../dos/drives.h"
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in games-emulation/dosbox/files: dosbox-0.72+gcc-4.3.patch
@ 2009-08-18 23:14 Michael Sterrett (mr_bones_)
0 siblings, 0 replies; 3+ messages in thread
From: Michael Sterrett (mr_bones_) @ 2009-08-18 23:14 UTC (permalink / raw
To: gentoo-commits
mr_bones_ 09/08/18 23:14:31
Removed: dosbox-0.72+gcc-4.3.patch
Log:
old
(Portage version: 2.1.6.13/cvs/Linux i686)
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-08-18 23:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-13 16:34 [gentoo-commits] gentoo-x86 commit in games-emulation/dosbox/files: dosbox-0.72+gcc-4.3.patch Diego Petteno (flameeyes)
-- strict thread matches above, loose matches on Subject: below --
2008-11-17 20:34 Diego Petteno (flameeyes)
2009-08-18 23:14 Michael Sterrett (mr_bones_)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox