From a98b4af282fb2c827477f7e3c0d546fc2296fc3b Mon Sep 17 00:00:00 2001 From: Edwin Groothuis Date: Sat, 23 Nov 2002 23:50:39 +0000 Subject: [PATCH] Bento fix for net/pmf PR: ports/45656 Submitted by: Clement Laforet --- net/pmf/files/patch-ad | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/net/pmf/files/patch-ad b/net/pmf/files/patch-ad index e40f2721b7a0..b345d105b966 100644 --- a/net/pmf/files/patch-ad +++ b/net/pmf/files/patch-ad @@ -1,6 +1,14 @@ --- main.c.orig Sun Sep 22 12:13:43 1991 +++ main.c Fri Feb 11 04:14:00 2000 -@@ -37,7 +37,7 @@ +@@ -15,6 +15,7 @@ + #include + #include + #include ++#include + #include "safe_malloc.h" + #include "str_galore.h" + #include "config.h" +@@ -37,7 +38,7 @@ extern int stop_printing(); extern int continue_printing(); @@ -9,7 +17,7 @@ #endif /* Longjmp buffer, jump there after error() or CTRL-C */ -@@ -58,7 +58,7 @@ +@@ -58,7 +59,7 @@ ldisplay("\n"); ldisplay("%s", rl_line_buffer); rl_redisplay(count, key); @@ -17,4 +25,16 @@ + _rl_last_c_pos = rl_end; } #endif - + +@@ -191,7 +192,11 @@ + #endif + + if (debug && exitval) { ++ #if defined(__FreeBSD__) && (__FreeBSD_version >= 500035) ++ signal(SIGABRT, SIG_DFL); ++ #else + signal(SIGIOT, SIG_DFL); ++ #endif + abort(); + } + else