diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-01-10 18:45:31 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-01-10 18:45:31 +0000 |
commit | 039cd321a1ba364a3a1a37eaea0604359dd306b9 (patch) | |
tree | faab4f8c97126d34940e034b194c411c12649ab5 /shells | |
parent | e473f67b38d897c854db1afadfc81c67be03fa1c (diff) | |
download | ports-039cd321a1ba364a3a1a37eaea0604359dd306b9.tar.gz ports-039cd321a1ba364a3a1a37eaea0604359dd306b9.zip |
- Fix runtime
PR: ports/91540
Submitted by: Sam Sirlin <swsirlin@earthlink.net>
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=153214
Diffstat (limited to 'shells')
-rw-r--r-- | shells/es/Makefile | 2 | ||||
-rw-r--r-- | shells/es/files/patch-mksignal | 27 |
2 files changed, 13 insertions, 16 deletions
diff --git a/shells/es/Makefile b/shells/es/Makefile index 2ca1e3a0ef2b..9e37bddaf8af 100644 --- a/shells/es/Makefile +++ b/shells/es/Makefile @@ -7,7 +7,7 @@ PORTNAME= es PORTVERSION= 0.9.b1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= shells MASTER_SITES= ftp://ftp.sys.toronto.edu/pub/es/ DISTNAME= es-0.9-beta1 diff --git a/shells/es/files/patch-mksignal b/shells/es/files/patch-mksignal index 17a4051c678b..c2ebcff3bd87 100644 --- a/shells/es/files/patch-mksignal +++ b/shells/es/files/patch-mksignal @@ -1,15 +1,12 @@ -*** mksignal.orig Wed Dec 3 20:59:12 2003 ---- mksignal Wed Dec 3 21:00:50 2003 -*************** -*** 106,111 **** ---- 106,115 ---- - ignore["SIGRTMIN"] = 1 - ignore["SIGSETS"] = 1 - ignore["SIGSTKSZ"] = 1 -+ -+ # FreeBSD 5 added a signal beyond NSIG; es makes too many -+ # assumptions to make this worth fixing. -+ ignore["SIGTHR"] = 1 - - # upper to lowercase translation table: can someone give me an easier - # way to do this that works in ancient versions of awk? +--- mksignal.orig Fri Apr 11 22:54:34 1997 ++++ mksignal Tue Jan 10 19:34:36 2006 +@@ -141,7 +141,9 @@ + lcname = lcname c + } + print "#ifdef", signal ++ print "#if ", signal, " < NSIG" + printf "\t{ %s,\t\"%s\",\t\"%s\" },\n", signal, lcname, mesg[signal] ++ print "#endif" + print "#endif" + } + } |