Date: Sat, 27 Feb 1999 23:30:02 -0800 (PST) From: Takayuki TAMURA <ttathome@remus.dti.ne.jp> To: freebsd-ports@FreeBSD.org Subject: Re: ports/10192: Update port: editors/emacs20-dl Message-ID: <199902280730.XAA60222@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/10192; it has been noted by GNATS. From: Takayuki TAMURA <ttathome@remus.dti.ne.jp> To: shige@kuis.kyoto-u.ac.jp Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/10192: Update port: editors/emacs20-dl Date: Sun, 28 Feb 1999 16:27:02 +0900 ----Next_Part(Sun_Feb_28_16:21:10_1999_518)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, The breakage of emacs20 and emacs20-dl under 4.0-current concerning `fakemail' is due to missing definition of `BSD_SYSTEM' in "src/s/freebsd.h". Try adding the following to the file as done in the attached patch file rather than resort to -lcompat. #elif __FreeBSD__ == 4 #define BSD_SYSTEM 199901 Regards, -------- Takayuki TAMURA ttathome@remus.dti.ne.jp ----Next_Part(Sun_Feb_28_16:21:10_1999_518)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=emacs20-dl-patch --- editors/emacs20-dl/patches/patch-cb.orig Sat Jan 23 23:28:25 1999 +++ editors/emacs20-dl/patches/patch-cb Sun Feb 28 16:18:23 1999 @@ -1,5 +1,5 @@ --- src/s/freebsd.h.orig Wed Aug 19 16:25:36 1998 -+++ src/s/freebsd.h Sun Jan 3 20:56:02 1999 ++++ src/s/freebsd.h Fri Feb 12 22:27:28 1999 @@ -45,6 +45,13 @@ #define LIBS_SYSTEM -lutil #define LIBS_TERMCAP -ltermcap @@ -32,3 +32,12 @@ #undef LIB_GCC #define LIB_GCC +@@ -109,6 +123,8 @@ + #define BSD_SYSTEM 199306 + #elif __FreeBSD__ == 3 + #define BSD_SYSTEM 199506 ++#elif __FreeBSD__ == 4 ++#define BSD_SYSTEM 199901 + #endif + + #define WAITTYPE int ----Next_Part(Sun_Feb_28_16:21:10_1999_518)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199902280730.XAA60222>