summaryrefslogtreecommitdiff
path: root/graphics/robot/files/patch-Robot_history.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 08:56:41 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 08:56:41 +0000
commit9be9c4c1dafe17e16a81322515a375b6574e2bb7 (patch)
tree9ae73276b422d1766d18a0fdeeb964c5f2073690 /graphics/robot/files/patch-Robot_history.c
parentIsolate from src.conf settings such as WITHOUT_PROFILE. (diff)
Remove unmaintained expired ports from graphics
2011-05-01 graphics/cqcam: Upstream disapear and distfile is no more available 2011-05-01 graphics/dc3play: Upstream disapear and distfile is no more available 2011-05-01 graphics/dore: Upstream disapear and distfile is no more available 2011-05-01 graphics/fig2pstricks: Upstream disapear and distfile is no more available 2011-05-01 graphics/geist: Upstream disapear and distfile is no more available 2011-05-01 graphics/gfont: Upstream disapear and distfile is no more available 2011-05-01 graphics/gimp-greycstoration: Superseded by graphics/gimp-gmic-plugin 2011-05-01 graphics/glean: Upstream disapear and distfile is no more available 2011-05-01 graphics/gltk: Upstream disapear and distfile is no more available 2011-05-01 graphics/gridpix: Upstream disapear and distfile is no more available 2011-05-01 graphics/gtkfig: Upstream disapear and distfile is no more available 2011-05-01 graphics/gview: Upstream disapear and distfile is no more available 2011-05-01 graphics/icod: Upstream disapear and distfile is no more available 2011-05-01 graphics/isreal: Upstream disapear and distfile is no more available 2011-05-01 graphics/oglext: Upstream disapear and distfile is no more available 2011-05-01 graphics/ophoto: Upstream disapear and distfile is no more available 2011-05-01 graphics/py-gdchart: Upstream disapear and distfile is no more available 2011-05-01 graphics/py-gdchart2: Upstream disapear and distfile is no more available 2011-05-01 graphics/qglviewer: Upstream disapear and distfile is no more available 2011-05-01 graphics/robot: Upstream disapear and distfile is no more available 2011-05-01 graphics/s3switch: Upstream disapear and distfile is no more available 2011-05-01 graphics/sced: Upstream disapear and distfile is no more available 2011-05-01 graphics/shim: Upstream disapear and distfile is no more available 2011-05-01 graphics/snx101util: Upstream disapear and distfile is no more available 2011-05-01 graphics/tcm: Upstream disapear and distfile is no more available 2011-05-01 graphics/vertex: Upstream disapear and distfile is no more available 2011-05-01 graphics/vvv: Upstream disapear and distfile is no more available 2011-05-01 graphics/xdl: Upstream disapear and distfile is no more available 2011-05-01 graphics/xmms-goom: Upstream disapear and distfile is no more available 2011-05-01 graphics/xmms-infinity: Upstream disapear and distfile is no more available
Notes
Notes: svn path=/head/; revision=273463
Diffstat (limited to 'graphics/robot/files/patch-Robot_history.c')
-rw-r--r--graphics/robot/files/patch-Robot_history.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/graphics/robot/files/patch-Robot_history.c b/graphics/robot/files/patch-Robot_history.c
deleted file mode 100644
index 31d81658e72a..000000000000
--- a/graphics/robot/files/patch-Robot_history.c
+++ /dev/null
@@ -1,29 +0,0 @@
---- Robot/history.c.orig 2009-04-11 22:11:08.000000000 +0200
-+++ Robot/history.c 2009-04-11 22:11:30.000000000 +0200
-@@ -248,7 +248,7 @@
- if (text[i] == '^') {
- index = i;
- strncpy(htext1, text + 1, index - 1);
-- htext1[index - 1] = (char) NULL;
-+ htext1[index - 1] = 0;
- break;
- }
- }
-@@ -258,7 +258,7 @@
- }
- strcpy(htext2, text + index + 1);
- if (htext2[strlen(htext2) - 1] == '^') {
-- htext2[strlen(htext2) - 1] = (char) NULL;
-+ htext2[strlen(htext2) - 1] = 0;
- }
- /* now try to find it in the previous string */
- sprintf(htext3, "%s",
-@@ -271,7 +271,7 @@
- /* think we found the string */
- if (i > 0) {
- strncpy(htext4, htext3, i);
-- htext4[i] = (char) NULL;
-+ htext4[i] = 0;
- }
- else{
- strcpy(htext4, "");