diff options
author | marino <marino@FreeBSD.org> | 2014-11-03 14:58:45 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2014-11-03 14:58:45 +0800 |
commit | 258de4608782d24266b13dd2227dde63ee3992d0 (patch) | |
tree | 1f99f7cc8237887428fe0265188ea84fca982570 /sysutils | |
parent | d0507b7d9d8cb11ad51ae97c2de8f6a494208856 (diff) | |
download | freebsd-ports-gnome-258de4608782d24266b13dd2227dde63ee3992d0.tar.gz freebsd-ports-gnome-258de4608782d24266b13dd2227dde63ee3992d0.tar.zst freebsd-ports-gnome-258de4608782d24266b13dd2227dde63ee3992d0.zip |
sysutils/mcelog: Remove patch for unsupported versions of FreeBSD
PR: 194767
Submitted by: Francois Tigeot
Approved by: maintainer (Jeremy Chadwick)
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/mcelog/files/patch-config.c | 28 |
1 files changed, 3 insertions, 25 deletions
diff --git a/sysutils/mcelog/files/patch-config.c b/sysutils/mcelog/files/patch-config.c index 1819629335be..5dae2b3cd4f3 100644 --- a/sysutils/mcelog/files/patch-config.c +++ b/sysutils/mcelog/files/patch-config.c @@ -1,5 +1,5 @@ ---- config.c.orig 2010-01-20 18:36:52.000000000 -0800 -+++ config.c 2012-09-22 02:32:52.718116009 -0700 +--- config.c.orig 2010-01-21 02:36:52 UTC ++++ config.c @@ -18,6 +18,9 @@ Author: Andi Kleen */ @@ -10,29 +10,7 @@ #include <stdio.h> #include <string.h> #include <ctype.h> -@@ -127,6 +130,21 @@ - return s; - } - -+#if defined(__FreeBSD__) && __FreeBSD_version < 800067 -+/* Provide a stub getline() for older versions of FreeBSD. */ -+static ssize_t getline(char **cp, size_t *lenp, FILE *f) -+{ -+ -+ if (*cp == NULL) { -+ *cp = malloc(4096); -+ *lenp = 4096; -+ } -+ if (fgets(*cp, *lenp, f) == NULL) -+ return (0); -+ return (strlen(*cp)); -+} -+#endif -+ - int parse_config_file(const char *fn) - { - FILE *f; -@@ -304,7 +322,12 @@ +@@ -304,7 +307,12 @@ int config_trigger(const char *header, c s = config_string(header, name); if (s) { /* no $PATH */ |