summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorChristian Weisgerber <naddy@FreeBSD.org>2002-10-05 16:34:42 +0000
committerChristian Weisgerber <naddy@FreeBSD.org>2002-10-05 16:34:42 +0000
commit004568ebc8393a3549a2ebc6bfa847b5748bbd79 (patch)
treeb594531c9d752e83da9b3f87a3538ff64656b42e /shells
parentUpdate to 1.1.9. (diff)
Update to release 2002-09-22.
PR: 43423 Submitted by: Joe Kelsey <joek@zircon.staff.flyingcroc.net>
Notes
Notes: svn path=/head/; revision=67334
Diffstat (limited to 'shells')
-rw-r--r--shells/ksh93/Makefile3
-rw-r--r--shells/ksh93/distinfo4
-rw-r--r--shells/ksh93/files/patch-src_cmd_ksh93_sh_path.c35
-rw-r--r--shells/ksh93/files/patch-src_lib_libast_comp_conf.sh13
-rw-r--r--shells/ksh93/files/patch-src_lib_libast_sfio_sfhdr.h16
5 files changed, 3 insertions, 68 deletions
diff --git a/shells/ksh93/Makefile b/shells/ksh93/Makefile
index 2f32d4781953..78c08c989879 100644
--- a/shells/ksh93/Makefile
+++ b/shells/ksh93/Makefile
@@ -6,8 +6,7 @@
PORTNAME= ksh93
PORTVERSION= ${VERSION:S/-//g}
-PORTREVISION= 2
-VERSION= 2002-06-28
+VERSION= 2002-09-22
CATEGORIES= shells
MASTER_SITES= http://www.research.att.com/~gsf/download/tgz/
DISTNAME= ${PORTNAME}-${VERSION}
diff --git a/shells/ksh93/distinfo b/shells/ksh93/distinfo
index a1ebd16bcc3c..28b91ae728c1 100644
--- a/shells/ksh93/distinfo
+++ b/shells/ksh93/distinfo
@@ -1,2 +1,2 @@
-MD5 (ksh93/INIT.2002-06-28.tgz) = 9478dd6ca2c9c56887e41011299e72e0
-MD5 (ksh93/ast-ksh.2002-06-28.tgz) = 36dee42ef33643d6566985b56c753ce0
+MD5 (ksh93/INIT.2002-09-22.tgz) = af7d833378390fb328bd385fa0948506
+MD5 (ksh93/ast-ksh.2002-09-22.tgz) = 5a3b4295b22b66019113bfb6cc9d14ad
diff --git a/shells/ksh93/files/patch-src_cmd_ksh93_sh_path.c b/shells/ksh93/files/patch-src_cmd_ksh93_sh_path.c
deleted file mode 100644
index 2d035e09fee4..000000000000
--- a/shells/ksh93/files/patch-src_cmd_ksh93_sh_path.c
+++ /dev/null
@@ -1,35 +0,0 @@
-
-$FreeBSD$
-
---- src/cmd/ksh93/sh/path.c.orig Mon Mar 11 19:50:16 2002
-+++ src/cmd/ksh93/sh/path.c Tue Aug 20 12:51:15 2002
-@@ -1081,6 +1081,9 @@
- {
- register const char *cp;
- Pathcomp_t *old=0;
-+ int offset = staktell();
-+ char *savptr;
-+
- if(!path && type!=PATH_PATH)
- return(first);
- if(type!=PATH_FPATH)
-@@ -1088,6 +1091,8 @@
- old = first;
- first = 0;
- }
-+ if(offset)
-+ savptr = stakfreeze(0);
- if(path) while(*(cp=path))
- {
- if(*cp==':')
-@@ -1117,6 +1122,10 @@
- first = (void*)path_addpath((Pathcomp_t*)first,cp,PATH_FPATH);
- path_delete(old);
- }
-+ if(offset)
-+ stakset(savptr,offset);
-+ else
-+ stakseek(0);
- return(first);
- }
-
diff --git a/shells/ksh93/files/patch-src_lib_libast_comp_conf.sh b/shells/ksh93/files/patch-src_lib_libast_comp_conf.sh
deleted file mode 100644
index d832c5744596..000000000000
--- a/shells/ksh93/files/patch-src_lib_libast_comp_conf.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-
-$FreeBSD$
-
---- src/lib/libast/comp/conf.sh.orig Fri Jul 19 03:26:02 2002
-+++ src/lib/libast/comp/conf.sh Fri Jul 19 03:26:45 2002
-@@ -627,6 +627,7 @@
- cat <<!
- printf("#undef ${macro}\n");
- printf("#define ${macro} ${fmt}\n", ${var});
-+
- !
- case $minmax in
- "") cat <<!
diff --git a/shells/ksh93/files/patch-src_lib_libast_sfio_sfhdr.h b/shells/ksh93/files/patch-src_lib_libast_sfio_sfhdr.h
deleted file mode 100644
index 9e153615b13b..000000000000
--- a/shells/ksh93/files/patch-src_lib_libast_sfio_sfhdr.h
+++ /dev/null
@@ -1,16 +0,0 @@
-
-$FreeBSD$
-
---- src/lib/libast/sfio/sfhdr.h.orig Tue Dec 4 21:58:08 2001
-+++ src/lib/libast/sfio/sfhdr.h Tue Dec 4 21:58:52 2001
-@@ -521,8 +521,8 @@
- #define SFSETLOCALE(dp,tp) \
- do if (*(dp) == 0) { \
- Lc_numeric_t* lv = (Lc_numeric_t*)LCINFO(AST_LC_NUMERIC)->data; \
-- *(dp) = lv->decimal; \
-- *(tp) = lv->thousand; \
-+ *(dp) = lv ? lv->decimal : '.'; \
-+ *(tp) = lv ? lv->thousand: '\0'; \
- } while (0)
- #else
- #if _lib_locale