mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
173073fbec
- Inhibit multiple patch files to change one file. - Remove PATCH_STRIP definition from the Makefile. - One patch file for each file to be modified.
23 lines
683 B
Plaintext
23 lines
683 B
Plaintext
--- version.c.orig Fri Sep 19 20:27:37 1997
|
|
+++ version.c Fri Sep 19 20:23:43 1997
|
|
@@ -28,6 +28,7 @@
|
|
const char Version[] = "today " __DATE__ " version 2.10B (Àµ¼°ÈÇ)";
|
|
const char RCSid[] ="$Id: version.c,v 1.1 1993/07/25 05:39:46 mori Exp $";
|
|
const char UseLanguage[] =
|
|
+#if !defined(TRANS)
|
|
#if defined(human68k)
|
|
#if defined(__GNUC__)
|
|
"gcc version 1.00 Tool#1(68020) Based on 1.42";
|
|
@@ -47,7 +48,10 @@
|
|
/* by Sun-4/470 SunOS4.1.1+JLE1.1.1 */
|
|
#endif
|
|
#endif
|
|
+#else
|
|
+ "gcc version 2.6.3";
|
|
+#endif
|
|
|
|
#ifdef TRANS
|
|
-const char Modify[] = "Modified for µ¡¼ï̾/OS̾ by °Ü¿¢¼Ô̾";
|
|
+const char Modify[] = "Modified for FreeBSD2.0.5R by pcs51674@asciinet.or.jp";
|
|
#endif
|