summaryrefslogtreecommitdiff
path: root/devel/dwarves/files/patch-pglobal.c
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 /devel/dwarves/files/patch-pglobal.c
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
Notes
Notes: svn path=/head/; revision=453966
Diffstat (limited to 'devel/dwarves/files/patch-pglobal.c')
-rw-r--r--devel/dwarves/files/patch-pglobal.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/devel/dwarves/files/patch-pglobal.c b/devel/dwarves/files/patch-pglobal.c
deleted file mode 100644
index c443daf6827c..000000000000
--- a/devel/dwarves/files/patch-pglobal.c
+++ /dev/null
@@ -1,38 +0,0 @@
---- pglobal.c.orig 2016-06-30 19:30:28 UTC
-+++ pglobal.c
-@@ -8,7 +8,6 @@
- */
-
- #include <argp.h>
--#include <malloc.h>
- #include <search.h>
- #include <stdio.h>
- #include <stdlib.h>
-@@ -92,7 +91,7 @@ static void extvar__add(const struct var
- nodep = tsearch(gvar, &tree, extvar__compare);
- if (nodep == NULL)
- oom("tsearch");
-- else if (*nodep != gvar)
-+ else if (*nodep != gvar) {
- if (gvar->var->declaration) {
- gvar->next = (*nodep)->next;
- (*nodep)->next = gvar;
-@@ -100,6 +99,7 @@ static void extvar__add(const struct var
- gvar->next = *nodep;
- *nodep = gvar;
- }
-+ }
- }
- }
-
-@@ -315,7 +315,10 @@ int main(int argc, char *argv[])
- twalk(tree, function_action__walk);
- }
-
-+#if 0
-+ /* Our search.h doesn't implement tdestroy; leak for now. */
- tdestroy(tree, free_node);
-+#endif
- rc = EXIT_SUCCESS;
- out_cus_delete:
- cus__delete(cus);