diff options
author | asami <asami@FreeBSD.org> | 1996-10-16 08:30:38 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-10-16 08:30:38 +0000 |
commit | 964be8aa897ffde6a3a6ade074f7f59ea8708d0e (patch) | |
tree | 4cd6cf6d0f21b0828dc1919d199bced181482ff7 /www/arena | |
parent | 73013c32f46931f872002f1b66f4227d6b00159f (diff) | |
download | FreeBSD-ports-964be8aa897ffde6a3a6ade074f7f59ea8708d0e.zip FreeBSD-ports-964be8aa897ffde6a3a6ade074f7f59ea8708d0e.tar.gz |
Make this thing compile again by conditionalizing prototype of index().
Ignored by: ache
Diffstat (limited to 'www/arena')
-rw-r--r-- | www/arena/files/patch-ae | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/www/arena/files/patch-ae b/www/arena/files/patch-ae new file mode 100644 index 0000000..a6b2152 --- /dev/null +++ b/www/arena/files/patch-ae @@ -0,0 +1,12 @@ +--- ./Arena/Implementation/icon.c.org Thu Mar 21 07:28:53 1996 ++++ ./Arena/Implementation/icon.c Tue Apr 30 00:22:54 1996 +@@ -46,7 +46,9 @@ + #if defined __QNX__ || (defined(sco) && !defined(sco_os5)) + #define index strchr + #else ++#if !defined(index) + extern char *index(); ++#endif + #endif + + static char basis_64[] = |