diff options
author | sborrill <sborrill> | 2011-12-02 08:46:18 +0000 |
---|---|---|
committer | sborrill <sborrill> | 2011-12-02 08:46:18 +0000 |
commit | db661e5e90980b289cc41d6333fb858ac0604db1 (patch) | |
tree | dcfa91063c2b754157c1aba0960718f27700bfb4 /net | |
parent | 43163bf00028d5bc1e49e9559567ff983f253af3 (diff) | |
download | pkgsrc-db661e5e90980b289cc41d6333fb858ac0604db1.tar.gz |
Update to 20111008.
Includes Makefile patch sent upstream (thanks!).
Changelog (translated by Google from Japanese):
Adjust the duration of the lock, and make additional response
SendTargets.
Added ReadCache / WriteCache as a LUN option for future expansion.
This volatile write cache mode was previously supported with (O_FSYNC)
,but can now be set from the beginning.
It is expected to be stable this year.
New configuration key (LUN option):
# for each LUN number (both enabled by default)
LUN0 Option ReadCache Disable
LUN0 Option WriteCache Disable
Diffstat (limited to 'net')
-rw-r--r-- | net/istgt/Makefile | 4 | ||||
-rw-r--r-- | net/istgt/distinfo | 9 | ||||
-rw-r--r-- | net/istgt/patches/patch-Makefile.in | 28 |
3 files changed, 6 insertions, 35 deletions
diff --git a/net/istgt/Makefile b/net/istgt/Makefile index 1520800476c..e9a762516c9 100644 --- a/net/istgt/Makefile +++ b/net/istgt/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.8 2011/09/17 07:03:57 obache Exp $ +# $NetBSD: Makefile,v 1.9 2011/12/02 08:46:18 sborrill Exp $ # -DISTNAME= istgt-20110907 +DISTNAME= istgt-20111008 CATEGORIES= net MASTER_SITES= http://www.peach.ne.jp/archives/istgt/ diff --git a/net/istgt/distinfo b/net/istgt/distinfo index 0cd6445cbf1..557eb6e333c 100644 --- a/net/istgt/distinfo +++ b/net/istgt/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.5 2011/09/10 15:47:20 sborrill Exp $ +$NetBSD: distinfo,v 1.6 2011/12/02 08:46:18 sborrill Exp $ -SHA1 (istgt-20110907.tar.gz) = a9a43ba63c6d937336da87b85f69640f8a164033 -RMD160 (istgt-20110907.tar.gz) = 2c01d89b74fd5ffc9902a7195abbc75e9fb8dca7 -Size (istgt-20110907.tar.gz) = 231731 bytes -SHA1 (patch-Makefile.in) = 5018e0aa16eb80fcb76140d59b6db117e86ff0f8 +SHA1 (istgt-20111008.tar.gz) = aa7bc47365763bddf82b4fcdffd659b2cb38a77c +RMD160 (istgt-20111008.tar.gz) = 53600cff38ae715edee533914eb5b91a6df8846e +Size (istgt-20111008.tar.gz) = 235227 bytes diff --git a/net/istgt/patches/patch-Makefile.in b/net/istgt/patches/patch-Makefile.in deleted file mode 100644 index 34beada1fd1..00000000000 --- a/net/istgt/patches/patch-Makefile.in +++ /dev/null @@ -1,28 +0,0 @@ -$NetBSD: patch-Makefile.in,v 1.1 2011/09/10 15:47:20 sborrill Exp $ - -Work around missing -C in make. -Fix exit status from make. - ---- Makefile.in.orig 2011-08-31 19:53:08.000000000 +0100 -+++ Makefile.in 2011-09-10 16:17:01.000000000 +0100 -@@ -36,17 +36,17 @@ - - all: - for subdir in $(SUBDIRS); do \ -- $(MAKE) -C $$subdir $@ || exit $?; \ -+ (cd $$subdir; $(MAKE) $@ || exit $$?) || exit $$?; \ - done - - install: - for subdir in $(SUBDIRS); do \ -- $(MAKE) -C $$subdir $@ || exit $?; \ -+ (cd $$subdir; $(MAKE) $@ || exit $$?) || exit $$?; \ - done - - install-doc: - for subdir in doc; do \ -- $(MAKE) -C $$subdir $@; \ -+ (cd $$subdir; $(MAKE) $@ || exit $$?) || exit $$?; \ - done - - |