summaryrefslogtreecommitdiff
path: root/sysutils/mbmon/files/patch-testsmb.c
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2014-01-31 00:24:59 +0000
committerRene Ladan <rene@FreeBSD.org>2014-01-31 00:24:59 +0000
commit51ff9e2a8796ca8ee19856008be108e729c21bba (patch)
treeb00148478cef49a1549371392e7170e2b992c603 /sysutils/mbmon/files/patch-testsmb.c
parentBump PORTREVISION for previous commit. (diff)
Remove expired ports:
20140130 multimedia/kino: Not developed since 2009, declared dead 05.08.2013 on there website. 2014-01-31 x11-drivers/xf86-video-imstt: Broken, unsupported and unmaintained upstream. 2014-01-31 x11-drivers/xf86-video-via: Broken, not supported upstream. 2014-01-31 multimedia/vdr-plugin-softdevice: Broken after ffmpeg update (not sure it ever worked) 2014-01-31 sysutils/mbmon: Use sysutils/xmbmon instead. This port will be removed soon 2014-01-31 dns/bind96: EOL in January 2014, consider moving to Bind 9.8 or 9.9 2014-01-31 x11-drivers/xf86-video-nouveau: Not supported, missing kernel support. use the nvidia driver.
Diffstat (limited to 'sysutils/mbmon/files/patch-testsmb.c')
-rw-r--r--sysutils/mbmon/files/patch-testsmb.c44
1 files changed, 0 insertions, 44 deletions
diff --git a/sysutils/mbmon/files/patch-testsmb.c b/sysutils/mbmon/files/patch-testsmb.c
deleted file mode 100644
index 52d6d6cf7934..000000000000
--- a/sysutils/mbmon/files/patch-testsmb.c
+++ /dev/null
@@ -1,44 +0,0 @@
-$FreeBSD$
-
---- testsmb.c Thu Aug 12 07:34:48 2004
-+++ testsmb.c Fri Dec 30 23:11:29 2005
-@@ -105,8 +105,9 @@
- case ID_AMD756:
- case ID_AMD766:
- case ID_AMD768:
-+ case ID_AMD8111_1:
- smbus = &smbus_amd;
-- fprintf(stderr, "AMD756/766/768 found.\n");
-+ fprintf(stderr, "AMD756/766/768/8111 found.\n");
- break;
- case ID_NFORCE:
- smbus = &smbus_amd;
-@@ -116,9 +117,9 @@
- smbus = &smbus_ali;
- fprintf(stderr, "ALi M1535D+ found.\n");
- break;
-- case ID_AMD8111:
-+ case ID_AMD8111_2:
- smbus = &smbus_amd8;
-- fprintf(stderr, "AMD8111 found.\n");
-+ fprintf(stderr, "AMD8111 SMBus 2.0 found.\n");
- break;
- case ID_NFORCE2:
- smbus = &smbus_amd8;
-@@ -126,7 +127,7 @@
- break;
- default:
- fprintf(stderr, "No known SMBus(I2C) chip found.\n");
-- goto exit;
-+ continue;
- }
-
- if(OpenIO() == -1) return -1;
-@@ -141,7 +142,6 @@
- }
-
- CloseIO();
--exit:
- ; /* dummy statment for gcc 3.4 or after */
-
- } /* endo of Big loop for smb_base candidates */