View | Details | Raw Unified | Return to bug 74303
Collapse All | Expand All

(-)dosbox/Makefile (-2 / +1 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	dosbox
8
PORTNAME=	dosbox
9
PORTVERSION=	0.62
9
PORTVERSION=	0.63
10
PORTREVISION=	1
11
CATEGORIES=	emulators
10
CATEGORIES=	emulators
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
13
MASTER_SITE_SUBDIR=	${PORTNAME}
12
MASTER_SITE_SUBDIR=	${PORTNAME}
(-)dosbox/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
MD5 (dosbox-0.62.tar.gz) = 80b10f438119f9d83b44dcf175493dcb
1
MD5 (dosbox-0.63.tar.gz) = 629413e41224ae9cdd115fdafd55cbdc
2
SIZE (dosbox-0.62.tar.gz) = 633259
2
SIZE (dosbox-0.63.tar.gz) = 648762
(-)dosbox/files/patch-src::dos::cdrom.h (-13 lines)
Lines 1-13 Link Here
1
--- src/dos/cdrom.h.orig	Mon Oct 25 21:57:27 2004
2
+++ src/dos/cdrom.h	Mon Oct 25 21:59:27 2004
3
@@ -4,8 +4,9 @@
4
 
5
 #define MAX_ASPI_CDROM	5
6
 
7
-#include <string.h>
8
+#include <string>
9
 #include <iostream>
10
+#include <fstream>
11
 #include <vector>
12
 #include "dosbox.h"
13
 #include "mem.h"
(-)dosbox/files/patch-src::dos::cdrom_image.cpp (-13 / +4 lines)
Lines 1-20 Link Here
1
--- src/dos/cdrom_image.cpp.orig	Mon Oct 25 22:00:14 2004
1
--- src/dos/cdrom_image.cpp.orig	Tue Oct  5 21:55:03 2004
2
+++ src/dos/cdrom_image.cpp	Mon Oct 25 22:00:52 2004
2
+++ src/dos/cdrom_image.cpp	Tue Nov 23 21:11:08 2004
3
@@ -23,7 +23,7 @@
3
@@ -23,7 +23,7 @@
4
 #include <cstdio>
4
 #include <cstdio>
5
 #include <fstream>
5
 #include <fstream>
6
 #include <iostream>
6
 #include <iostream>
7
-#include <limits>
7
-#include <limits.h>
8
+/* #include <limits> */
8
+/* #include <limits.h> */
9
 #include <sstream>
9
 #include <sstream>
10
 #include <vector>
10
 #include <vector>
11
 #include <sys/stat.h>
11
 #include <sys/stat.h>
12
@@ -572,7 +572,7 @@
13
 	if (stat(filename.c_str(), &test) == 0) return true;
14
 	
15
 	// check if file with path relative to cue file exists
16
-#if not defined(WIN32)
17
+#if !defined(WIN32)
18
 	string tmpstr(pathname + "/" + filename);
19
 	if (stat(tmpstr.c_str(), &test) == 0) {
20
 		filename = tmpstr;

Return to bug 74303