summaryrefslogtreecommitdiff
path: root/audio/tclmidi/files/patch-tclmUtil.cxx
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2017-11-11 10:30:10 +0000
committerRene Ladan <rene@FreeBSD.org>2017-11-11 10:30:10 +0000
commit325ab7be8bd1ed2ca6d66f55090657a42620938d (patch)
treeefaf3b23acddd7f70c28254ebacb5454b9ad0689 /audio/tclmidi/files/patch-tclmUtil.cxx
parentUpdate devel/py-twilio to version 6.8.4. (diff)
Remove expired ports:
2017-11-04 lang/ats: Unmaintained, outdated, needs lots of refreshment 2017-11-09 games/lordsawar: Broken for more than 6 months 2017-11-09 databases/elixir-ecto_migrate: Broken for more than 6 months 2017-11-09 audio/gspeakers: Broken for more than 6 months 2017-11-09 net/p5-Filesys-SmbClient: Broken for more than 6 months 2017-11-09 audio/tclmidi: Broken for more than 6 months 2017-11-09 security/py-xmlsec: Broken for more than 6 months 2017-11-09 security/samba-virusfilter: Broken for more than 6 months 2017-11-09 textproc/ocaml-pxp: Broken for more than 6 months 2017-11-09 audio/sooperlooper: Broken for more than 6 months 2017-11-09 devel/dwarves: Broken for more than 6 months 2017-11-09 devel/cl-cffi-sbcl: Broken for more than 6 months 2017-11-09 devel/pinba_engine: Broken for more than 6 months 2017-11-09 devel/py-event: Broken for more than 6 months
Diffstat (limited to 'audio/tclmidi/files/patch-tclmUtil.cxx')
-rw-r--r--audio/tclmidi/files/patch-tclmUtil.cxx30
1 files changed, 0 insertions, 30 deletions
diff --git a/audio/tclmidi/files/patch-tclmUtil.cxx b/audio/tclmidi/files/patch-tclmUtil.cxx
deleted file mode 100644
index f0ebd5511152..000000000000
--- a/audio/tclmidi/files/patch-tclmUtil.cxx
+++ /dev/null
@@ -1,30 +0,0 @@
---- tclmUtil.cxx.orig 1996-07-28 19:09:06 UTC
-+++ tclmUtil.cxx
-@@ -31,8 +31,8 @@
- extern "C" {
- #include <tcl.h>
- }
--#include <iostream.h>
--#include <iomanip.h>
-+#include <iostream>
-+#include <iomanip>
- #include <stdlib.h>
- #include <ctype.h>
- #include <string.h>
-@@ -99,12 +99,12 @@ Tclm_ParseDataByte(Tcl_Interp *interp, c
- }
-
- void
--Tclm_PrintData(ostream &buf, const unsigned char *data, long length)
-+Tclm_PrintData(std::ostream &buf, const unsigned char *data, long length)
- {
- long i;
-
-- buf.setf(ios::showbase | ios::internal);
-- buf << hex << setw(4) << setfill('0') << (int)data[0];
-+ buf.setf(std::ios::showbase | std::ios::internal);
-+ buf << std::hex << std::setw(4) << std::setfill('0') << (int)data[0];
- for (i = 1; i < length; i++)
-- buf << " " << hex << setw(4) << setfill('0') << (int)data[i];
-+ buf << " " << std::hex << std::setw(4) << std::setfill('0') << (int)data[i];
- }