diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-09-07 04:41:13 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-09-07 04:41:13 +0000 |
commit | 2fc854b7bd7510ec592fea5a47c2c163a91b1781 (patch) | |
tree | 6bcd084cd2bc36e3e8a2764244007453e21274e0 /devel/ddd/files/patch-strsignal.c | |
parent | upgrade to 0.8.9 (diff) |
Fix build on -current.
Submitted by: kan
PR: ports/42454
Notes
Notes:
svn path=/head/; revision=65771
Diffstat (limited to 'devel/ddd/files/patch-strsignal.c')
-rw-r--r-- | devel/ddd/files/patch-strsignal.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/devel/ddd/files/patch-strsignal.c b/devel/ddd/files/patch-strsignal.c new file mode 100644 index 000000000000..ea358a9e9142 --- /dev/null +++ b/devel/ddd/files/patch-strsignal.c @@ -0,0 +1,17 @@ +--- libiberty/strsignal.c.orig Wed Sep 4 12:32:03 2002 ++++ libiberty/strsignal.c Wed Sep 4 12:32:52 2002 +@@ -236,6 +236,7 @@ + same name, it differs from other implementations in that it is dynamically + initialized rather than statically initialized. */ + ++#ifndef __FreeBSD__ + #ifndef HAVE_SYS_SIGLIST + + static int sys_nsig; +@@ -252,6 +253,7 @@ + #endif + extern const char * const sys_siglist[]; + ++#endif + #endif + |