mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
Update to 0.63
PR: ports/74303 Submitted by: Miguel Mendez Approved by: maintainer timeout
This commit is contained in:
parent
8ed1e74326
commit
832dcb8cf4
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=124315
@ -6,8 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= dosbox
|
||||
PORTVERSION= 0.62
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 0.63
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
|
@ -1,2 +1,2 @@
|
||||
MD5 (dosbox-0.62.tar.gz) = 80b10f438119f9d83b44dcf175493dcb
|
||||
SIZE (dosbox-0.62.tar.gz) = 633259
|
||||
MD5 (dosbox-0.63.tar.gz) = 629413e41224ae9cdd115fdafd55cbdc
|
||||
SIZE (dosbox-0.63.tar.gz) = 648762
|
||||
|
@ -1,13 +0,0 @@
|
||||
--- src/dos/cdrom.h.orig Mon Oct 25 21:57:27 2004
|
||||
+++ src/dos/cdrom.h Mon Oct 25 21:59:27 2004
|
||||
@@ -4,8 +4,9 @@
|
||||
|
||||
#define MAX_ASPI_CDROM 5
|
||||
|
||||
-#include <string.h>
|
||||
+#include <string>
|
||||
#include <iostream>
|
||||
+#include <fstream>
|
||||
#include <vector>
|
||||
#include "dosbox.h"
|
||||
#include "mem.h"
|
@ -1,20 +1,11 @@
|
||||
--- src/dos/cdrom_image.cpp.orig Mon Oct 25 22:00:14 2004
|
||||
+++ src/dos/cdrom_image.cpp Mon Oct 25 22:00:52 2004
|
||||
--- src/dos/cdrom_image.cpp.orig Tue Oct 5 21:55:03 2004
|
||||
+++ src/dos/cdrom_image.cpp Tue Nov 23 21:11:08 2004
|
||||
@@ -23,7 +23,7 @@
|
||||
#include <cstdio>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
-#include <limits>
|
||||
+/* #include <limits> */
|
||||
-#include <limits.h>
|
||||
+/* #include <limits.h> */
|
||||
#include <sstream>
|
||||
#include <vector>
|
||||
#include <sys/stat.h>
|
||||
@@ -572,7 +572,7 @@
|
||||
if (stat(filename.c_str(), &test) == 0) return true;
|
||||
|
||||
// check if file with path relative to cue file exists
|
||||
-#if not defined(WIN32)
|
||||
+#if !defined(WIN32)
|
||||
string tmpstr(pathname + "/" + filename);
|
||||
if (stat(tmpstr.c_str(), &test) == 0) {
|
||||
filename = tmpstr;
|
||||
|
Loading…
Reference in New Issue
Block a user