diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-10-26 01:35:24 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-10-26 01:35:24 +0000 |
commit | 9c2af8b4c4e682f46f18a611e36640bc88f63a10 (patch) | |
tree | 091b323ea6776cda34507be24bf17d9d4d361cb4 /korean/hanterm | |
parent | e163238c6820b1341f156acfb92b96096065d8ca (diff) | |
download | ports-9c2af8b4c4e682f46f18a611e36640bc88f63a10.tar.gz ports-9c2af8b4c4e682f46f18a611e36640bc88f63a10.zip |
Notes
Diffstat (limited to 'korean/hanterm')
-rw-r--r-- | korean/hanterm/files/patch-main.c | 12 | ||||
-rw-r--r-- | korean/hanterm/files/patch-misc.c | 22 |
2 files changed, 34 insertions, 0 deletions
diff --git a/korean/hanterm/files/patch-main.c b/korean/hanterm/files/patch-main.c new file mode 100644 index 000000000000..ced16173058e --- /dev/null +++ b/korean/hanterm/files/patch-main.c @@ -0,0 +1,12 @@ +--- main.c.orig Fri Oct 25 12:00:42 2002 ++++ main.c Fri Oct 25 12:01:43 2002 +@@ -224,6 +224,9 @@ + #ifndef linux + #include <sgtty.h> + #endif ++#ifdef __FreeBSD__ ++#define USE_POSIX_WAIT ++#endif + #include <sys/resource.h> + #define HAS_UTMP_UT_HOST + #define HAS_BSD_GROUPS diff --git a/korean/hanterm/files/patch-misc.c b/korean/hanterm/files/patch-misc.c new file mode 100644 index 000000000000..4c53bc6826eb --- /dev/null +++ b/korean/hanterm/files/patch-misc.c @@ -0,0 +1,22 @@ +--- misc.c.orig Tue Jan 8 19:41:11 2002 ++++ misc.c Fri Oct 25 12:10:43 2002 +@@ -904,18 +904,7 @@ + #endif + int n; + { +-#if defined(linux) && defined(__GLIBC__) +- extern const char *const sys_errlist[]; +-#else +-#if (defined(BSD) && (BSD >= 199306)) +- /* in *BSD, should be null because it is already declared */ +-#else +- extern char *sys_errlist[]; +-#endif +-#endif +- extern int sys_nerr; +- +- return ((n >= 0 && n < sys_nerr) ? sys_errlist[n] : "unknown error"); ++ return (strerror(n)); + } + + |