diff options
author | Yoichi NAKAYAMA <yoichi@FreeBSD.org> | 2002-03-01 04:16:14 +0000 |
---|---|---|
committer | Yoichi NAKAYAMA <yoichi@FreeBSD.org> | 2002-03-01 04:16:14 +0000 |
commit | ddcb5293b500b7d82448746c7b1dfcad91c007dd (patch) | |
tree | 32488ca5eaa1b778c56e77299dc5dc8f30c0a281 /textproc/coco/files/patch-ag | |
parent | add gps 0.9.1 (diff) |
Add package includes coco & m2ps.
Those commands are included in mule-2.3 but not integrated in
emacs-2x distribution even after merging MULE feature.
(repo-copied from editors/mule-common)
PR: ports/33287
Submitted by: Teruaki Ata <PFA03027@nifty.ne.jp>
Notes
Notes:
svn path=/head/; revision=55366
Diffstat (limited to 'textproc/coco/files/patch-ag')
-rw-r--r-- | textproc/coco/files/patch-ag | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/textproc/coco/files/patch-ag b/textproc/coco/files/patch-ag deleted file mode 100644 index a556bd24f5eb..000000000000 --- a/textproc/coco/files/patch-ag +++ /dev/null @@ -1,34 +0,0 @@ ---- src/m/alpha.h.orig Sat Aug 10 07:03:36 1996 -+++ src/m/alpha.h Sat Jan 16 22:34:10 1999 -@@ -234,7 +234,11 @@ - - #ifndef NOT_C_CODE - /* We need these because pointers are larger than the default ints. */ -+#if !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__OpenBSD__) - #include <alloca.h> -+#else -+#include <stdlib.h> -+#endif - - /* Hack alert! For reasons unknown to mankind the string.h file insists - on defining bcopy etc. as taking char pointers as arguments. With -@@ -299,10 +303,18 @@ - termio and struct termios are mutually incompatible. */ - #define NO_TERMIO - --#ifdef LINUX -+#if defined(LINUX) || \ -+ defined(__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__) - # define TEXT_END ({ extern int _etext; &_etext; }) - # ifndef __ELF__ - # define COFF - # define DATA_END ({ extern int _EDATA; &_EDATA; }) - # endif /* notdef __ELF__ */ - #endif -+ -+#if (defined (__FreeBSD__) || defined (__NetBSD__) || defined (__OpenBSD__)) \ -+ && defined (__ELF__) -+#define HAVE_TEXT_START -+#endif -+ -+ |