summaryrefslogtreecommitdiff
path: root/audio/mxv/files/patch-ag
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2003-05-06 03:49:05 +0000
committerKris Kennaway <kris@FreeBSD.org>2003-05-06 03:49:05 +0000
commit28e7382123cbc7ef132190c6b3c29b101db38cfc (patch)
treea9d50288bd0e48228abd908a6f7bd8be06c4e7bd /audio/mxv/files/patch-ag
parentPR: 51521 (diff)
As announced on 27 March 2003 in <20030328052350.GA18971@rot13.obsecurity.org>,
remove these ports that have been broken for >4 months (in many cases much longer) with no sign of a fix.
Notes
Notes: svn path=/head/; revision=80201
Diffstat (limited to 'audio/mxv/files/patch-ag')
-rw-r--r--audio/mxv/files/patch-ag22
1 files changed, 0 insertions, 22 deletions
diff --git a/audio/mxv/files/patch-ag b/audio/mxv/files/patch-ag
deleted file mode 100644
index 4e80a1dbf252..000000000000
--- a/audio/mxv/files/patch-ag
+++ /dev/null
@@ -1,22 +0,0 @@
-*** old/settergetter.h Wed Jan 17 03:57:37 1996
---- settergetter.h Mon Jul 12 15:28:20 1999
-***************
-*** 64,69 ****
---- 64,70 ----
- Status (Object::*setfunc)(Type),
- Type (Object::*getfunc)() const)
- : obj(objptr), setter(setfunc), getter(getfunc) {}
-+ ~MethodSetterGetter() {}
- redefined boolean set(Type value) {
- return boolean((obj->*setter)(value));
- }
-***************
-*** 89,94 ****
---- 90,96 ----
- public:
- FunctionSetterGetter(Status (*setfunc)(Type), Type (*getfunc)())
- : setter(setfunc), getter(getfunc) {}
-+ ~FunctionSetterGetter() {}
- redefined boolean set(Type value) { (*setter)(value); return true; }
- redefined Type get() const { return (*getter)(); }
- private: