1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-12 03:00:28 +00:00
freebsd-ports/net/pmf/files/patch-ad
Martin Wilke 9753d885d2 - Use termios.h instead of sgtty.h
PR:             110875
Submitted by:   Ed Schouten <ed@fxq.nl>
2007-03-27 07:38:14 +00:00

44 lines
919 B
Plaintext

--- main.c.orig Sun Sep 22 12:13:43 1991
+++ main.c Fri Feb 11 04:14:00 2000
@@ -12,9 +12,9 @@
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
-#include <sgtty.h>
#include <signal.h>
#include <setjmp.h>
+#include <sys/param.h>
#include "safe_malloc.h"
#include "str_galore.h"
#include "config.h"
@@ -37,7 +38,7 @@
extern int stop_printing();
extern int continue_printing();
- extern int last_c_pos;
+ extern int _rl_last_c_pos;
#endif
/* Longjmp buffer, jump there after error() or CTRL-C */
@@ -58,7 +59,7 @@
ldisplay("\n");
ldisplay("%s", rl_line_buffer);
rl_redisplay(count, key);
- last_c_pos = rl_end;
+ _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