mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
Update base tcsh version from 6.08.00 to 6.08.02.
Some bugs about dealing with multibyte characters are fixed in tcsh 6.08.02
This commit is contained in:
parent
af95af9e7e
commit
419f47e29a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=15105
@ -3,18 +3,16 @@
|
||||
# Date created: 29 November 1997
|
||||
# Whom: Issei Suzuki <issei@jp.FreeBSD.ORG>
|
||||
#
|
||||
# $Id$
|
||||
# $Id: Makefile,v 1.7 1998/10/10 03:57:25 steve Exp $
|
||||
#
|
||||
|
||||
DISTNAME= tcsh-6.08
|
||||
PKGNAME= ja-tcsh-6.08.00
|
||||
DISTNAME= tcsh-6.08.02
|
||||
PKGNAME= ja-tcsh-6.08.02
|
||||
CATEGORIES= japanese shells
|
||||
MASTER_SITES= ftp://ftp.astron.com/pub/tcsh/
|
||||
MASTER_SITES= ftp://ftp.astron.com/pri/
|
||||
|
||||
MAINTAINER= issei@jp.FreeBSD.ORG
|
||||
|
||||
WRKSRC= ${WRKDIR}/tcsh-6.08.00
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
ALL_TARGET= all catalogs
|
||||
INSTALL_TARGET= install install.man
|
||||
|
@ -1 +1 @@
|
||||
MD5 (tcsh-6.08.tar.gz) = e16e0f08b324e67f654ecab554042967
|
||||
MD5 (tcsh-6.08.02.tar.gz) = 72ebe4f11123bf6c4b04e674139e9478
|
||||
|
@ -1,5 +1,5 @@
|
||||
--- config_f.h.orig Sat Sep 19 23:48:08 1998
|
||||
+++ config_f.h Sat Sep 26 23:08:09 1998
|
||||
--- config_f.h.orig Mon Oct 26 00:09:45 1998
|
||||
+++ config_f.h Tue Dec 1 20:20:44 1998
|
||||
@@ -65,7 +65,11 @@
|
||||
* if you don't have <nl_types.h>, you don't want
|
||||
* to define this.
|
||||
@ -13,7 +13,7 @@
|
||||
|
||||
/*
|
||||
* LOGINFIRST Source ~/.login before ~/.cshrc
|
||||
@@ -117,20 +121,29 @@
|
||||
@@ -117,21 +121,29 @@
|
||||
* be used with SHORT_STRINGS
|
||||
*
|
||||
*/
|
||||
@ -22,7 +22,8 @@
|
||||
|
||||
/*
|
||||
* DSPMBYTE add variable "dspmbyte" and display multi-byte string at
|
||||
* only output, when "dspmbyte" is set.
|
||||
* only output, when "dspmbyte" is set. Should be used with
|
||||
* KANJI
|
||||
*/
|
||||
-#undef DSPMBYTE
|
||||
+#if defined(__FreeBSD__) || defined(__OpenBSD__)
|
||||
@ -30,7 +31,6 @@
|
||||
+#else
|
||||
+# undef DSPMBYTE
|
||||
+#endif
|
||||
+
|
||||
|
||||
/*
|
||||
* MBYTEDEBUG when "dspmbyte" is changed, set multi-byte checktable to
|
||||
@ -38,7 +38,7 @@
|
||||
* (use for multi-byte table check)
|
||||
*/
|
||||
-#undef MBYTEDEBUG
|
||||
+#if defined(__FreeBSD__) || defined(__OpenBSD__)
|
||||
+#if defined(__FreeBSD__)
|
||||
+# define MBYTEDEBUG
|
||||
+#else
|
||||
+# undef MBYTEDEBUG
|
||||
|
Loading…
Reference in New Issue
Block a user