for changelog.
This commit is contained in:
fgsch 2006-02-09 11:31:11 +00:00
parent b8ac92a800
commit bcfa2d78b3
7 changed files with 30 additions and 43 deletions

View File

@ -1,13 +1,12 @@
# $OpenBSD: Makefile,v 1.52 2006/01/12 11:40:13 espie Exp $
# $OpenBSD: Makefile,v 1.53 2006/02/09 11:31:11 fgsch Exp $
# $NetBSD: Makefile,v 1.2 1998/08/23 20:48:03 frueauf Exp $
COMMENT= "PDP, IBM 1401, Nova and other CPUs simulator"
DISTNAME= simh-3.5.1
PKGNAME= $(DISTNAME)p1
DISTNAME= simh-3.5.2
CATEGORIES= emulators
MASTER_SITES= http://simh.trailing-edge.com/sources/
DISTFILES= simhv35-1.zip
DISTFILES= simhv35-2.zip
HOMEPAGE= http://simh.trailing-edge.com/
@ -37,7 +36,6 @@ do-install:
${INSTALL_PROGRAM} $${f} ${PREFIX}/bin/simh-$${f}; \
done;
${INSTALL_DATA_DIR} ${PREFIX}/lib/simh/vax
${INSTALL_DATA} ${WRKDIST}/VAX/ka655.bin ${PREFIX}/lib/simh/vax
${INSTALL_DATA} ${WRKDIST}/VAX/ka655x.bin ${PREFIX}/lib/simh/vax
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/simh
${INSTALL_DATA} ${WRKBUILD}/*.txt ${WRKBUILD}/*/*.txt \

View File

@ -1,4 +1,4 @@
MD5 (simhv35-1.zip) = ead371c802d6a7feba99031bf55895fe
RMD160 (simhv35-1.zip) = f71aff82ee4de4384dbf63eeeee5f1ffcce5ba97
SHA1 (simhv35-1.zip) = 958475b934f709c370d87709bf529bc0dfdfd4d0
SIZE (simhv35-1.zip) = 2236017
MD5 (simhv35-2.zip) = e3d2a168f2da62e10e0013f1f9111d82
RMD160 (simhv35-2.zip) = 27d3a95689aed7f0781137dbf158ba87716d04b3
SHA1 (simhv35-2.zip) = f0a3926ee0a4d0f275df3fa092f9982bd4521479
SIZE (simhv35-2.zip) = 2259795

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-VAX_vax_sysdev_c,v 1.2 2005/10/24 15:53:26 fgsch Exp $
--- VAX/vax_sysdev.c.orig Thu Sep 22 16:55:16 2005
+++ VAX/vax_sysdev.c Mon Oct 24 12:16:10 2005
@@ -52,6 +52,10 @@
$OpenBSD: patch-VAX_vax_sysdev_c,v 1.3 2006/02/09 11:31:11 fgsch Exp $
--- VAX/vax_sysdev.c.orig Tue Oct 25 20:23:06 2005
+++ VAX/vax_sysdev.c Wed Feb 8 18:40:52 2006
@@ -53,6 +53,10 @@
#include "vax_defs.h"
@ -12,7 +12,7 @@ $OpenBSD: patch-VAX_vax_sysdev_c,v 1.2 2005/10/24 15:53:26 fgsch Exp $
#define UNIT_V_NODELAY (UNIT_V_UF + 0) /* ROM access equal to RAM access */
#define UNIT_NODELAY (1u << UNIT_V_NODELAY)
@@ -1518,10 +1522,10 @@ conpc = 0;
@@ -1519,10 +1523,10 @@ conpc = 0;
conpsl = PSL_IS | PSL_IPL1F | CON_PWRUP;
if (rom == NULL) return SCPE_IERR;
if (*rom == 0) { /* no boot? */

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-scp_c,v 1.10 2005/10/24 15:53:26 fgsch Exp $
--- scp.c.orig Thu Sep 22 16:31:12 2005
+++ scp.c Mon Oct 24 12:16:55 2005
@@ -628,7 +628,10 @@ while (stat != SCPE_EXIT) {
$OpenBSD: patch-scp_c,v 1.11 2006/02/09 11:31:11 fgsch Exp $
--- scp.c.orig Wed Jan 18 15:33:00 2006
+++ scp.c Wed Feb 8 18:40:52 2006
@@ -631,7 +631,10 @@ while (stat != SCPE_EXIT) {
else if (sim_vm_read != NULL) /* sim routine? */
cptr = (*sim_vm_read) (cbuf, CBUFSIZE, stdin);
else cptr = read_line (cbuf, CBUFSIZE, stdin); /* read command line */

View File

@ -1,12 +1,12 @@
$OpenBSD: patch-sim_ether_c,v 1.6 2005/12/21 02:24:56 fgsch Exp $
--- sim_ether.c.orig Wed Dec 21 02:13:18 2005
+++ sim_ether.c Wed Dec 21 02:13:57 2005
@@ -656,7 +656,7 @@ t_stat eth_open(ETH_DEV* dev, char* name
/* are they trying to use device description? */
savname = eth_getname_bydesc(name, temp);
if (savname == 0) /* didn't translate */
- return SCPE_OPENERR;
+ savname = name;
$OpenBSD: patch-sim_ether_c,v 1.7 2006/02/09 11:31:11 fgsch Exp $
--- sim_ether.c.orig Tue Dec 27 13:26:54 2005
+++ sim_ether.c Wed Feb 8 18:42:28 2006
@@ -727,7 +727,7 @@ t_stat eth_open(ETH_DEV* dev, char* name
/* probably is not ethX and has no description */
savname = eth_getname_byname(name, temp);
if (savname == 0) /* didn't translate */
- return SCPE_OPENERR;
+ savname = name;
}
}
/* attempt to connect device */

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-sim_sock_c,v 1.6 2005/10/24 15:53:26 fgsch Exp $
--- sim_sock.c.orig Fri Aug 26 22:46:50 2005
+++ sim_sock.c Mon Oct 24 12:17:46 2005
@@ -191,7 +191,8 @@ return newsock;
SOCKET sim_accept_conn (SOCKET master, uint32 *ipaddr)
{
int32 sta, err;
-#if defined (macintosh) || defined (__linux) || defined (__APPLE__)
+#if defined (macintosh) || defined (__linux) || defined (__APPLE__) ||\
+ defined (__OpenBSD__)
socklen_t size;
#elif defined (_WIN32) || defined (__EMX__) ||\
(defined (__ALPHA) && defined (__unix__))

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.18 2005/10/24 15:53:26 fgsch Exp $
@comment $OpenBSD: PLIST,v 1.19 2006/02/09 11:31:11 fgsch Exp $
bin/simh-altair
bin/simh-altairz80
bin/simh-eclipse
@ -23,9 +23,9 @@ bin/simh-pdp9
bin/simh-s3
bin/simh-sds
bin/simh-vax
bin/simh-vax780
lib/simh/
lib/simh/vax/
lib/simh/vax/ka655.bin
lib/simh/vax/ka655x.bin
share/doc/simh/
share/doc/simh/0readme_35.txt
@ -60,4 +60,6 @@ share/doc/simh/simh_doc.txt
share/doc/simh/simh_faq.txt
share/doc/simh/simh_swre.txt
share/doc/simh/system3.txt
share/doc/simh/vax780_bugs.txt
share/doc/simh/vax780_doc.txt
share/doc/simh/vax_doc.txt