diff options
author | bsiegert <bsiegert> | 2013-04-02 20:37:55 +0000 |
---|---|---|
committer | bsiegert <bsiegert> | 2013-04-02 20:37:55 +0000 |
commit | 9b6287155bbc009eb1bf9de42ce897e3071f97c1 (patch) | |
tree | 46c2e07e5b3bffb812433f15efdb99c75376a372 /shells | |
parent | 2e37f84ef3af79a4ae2e24d4931be6a73a672fa3 (diff) | |
download | pkgsrc-9b6287155bbc009eb1bf9de42ce897e3071f97c1.tar.gz |
Fix build under MirBSD.
Diffstat (limited to 'shells')
-rw-r--r-- | shells/tcsh/distinfo | 3 | ||||
-rw-r--r-- | shells/tcsh/patches/patch-configure | 17 |
2 files changed, 19 insertions, 1 deletions
diff --git a/shells/tcsh/distinfo b/shells/tcsh/distinfo index 78283ade780..2f679e3c176 100644 --- a/shells/tcsh/distinfo +++ b/shells/tcsh/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.30 2012/10/10 06:07:44 dholland Exp $ +$NetBSD: distinfo,v 1.31 2013/04/02 20:37:55 bsiegert Exp $ SHA1 (tcsh-6.18.01.tar.gz) = eee2035645737197ff8059c84933a75d23cd76f9 RMD160 (tcsh-6.18.01.tar.gz) = ea18bb6d4d6dca2700d74daa2940f67d45a18cb9 @@ -6,4 +6,5 @@ Size (tcsh-6.18.01.tar.gz) = 926872 bytes SHA1 (patch-aa) = eadb2c1f4ad8bab7826c8e07c8edfc68569c74d4 SHA1 (patch-ab) = 8cf26988778b5331360eb1aab98bfcc920c71ac2 SHA1 (patch-ac) = c2a944f9c6857cdd8ba9753e3ce7c496749f8f87 +SHA1 (patch-configure) = 91c2019da8c074bd6f24b84bf798ccd497110727 SHA1 (patch-sh.c) = 9f7a1449a0ff0da5a3af886fcf86bdc551e10732 diff --git a/shells/tcsh/patches/patch-configure b/shells/tcsh/patches/patch-configure new file mode 100644 index 00000000000..5dda08dfe71 --- /dev/null +++ b/shells/tcsh/patches/patch-configure @@ -0,0 +1,17 @@ +$NetBSD: patch-configure,v 1.1 2013/04/02 20:37:55 bsiegert Exp $ + +Add support for MirBSD systems. +--- configure.orig Tue Mar 5 20:51:17 2013 ++++ configure +@@ -2801,6 +2801,11 @@ case "${host}" in + tcsh_config_file=bsd4.4 + ;; + ++ ## MirBSD systems ++ *-*-mirbsd*) ++ tcsh_config_file=bsd4.4 ++ ;; ++ + ## OpenBSD systems + *-*-openbsd*) + tcsh_config_file=bsd4.4 |