diff options
author | joerg <joerg@pkgsrc.org> | 2005-12-30 13:01:57 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-12-30 13:01:57 +0000 |
commit | bba10096af72532deb687cb4dbb9aa9c2c842d65 (patch) | |
tree | 7c3ea861ffbed74a9c8dd3f39fe290a26958b4c9 /www/ruby-fcgi | |
parent | 76e112c218e8f87d51c1cbed7895841c00c52df9 (diff) | |
download | pkgsrc-bba10096af72532deb687cb4dbb9aa9c2c842d65.tar.gz |
Fix errno.
Diffstat (limited to 'www/ruby-fcgi')
-rw-r--r-- | www/ruby-fcgi/distinfo | 3 | ||||
-rw-r--r-- | www/ruby-fcgi/patches/patch-aa | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/www/ruby-fcgi/distinfo b/www/ruby-fcgi/distinfo index f9bca8161f5..7a7c5917590 100644 --- a/www/ruby-fcgi/distinfo +++ b/www/ruby-fcgi/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2005/04/11 15:42:25 taca Exp $ +$NetBSD: distinfo,v 1.5 2005/12/30 13:01:57 joerg Exp $ SHA1 (ruby/ruby-fcgi-0.8.6.tar.gz) = f72d43b69aa7d10a535b30870afe279758944333 RMD160 (ruby/ruby-fcgi-0.8.6.tar.gz) = 2617c7b07ac552f61287762644f34535e9404789 Size (ruby/ruby-fcgi-0.8.6.tar.gz) = 16077 bytes +SHA1 (patch-aa) = 0a4c7e25dcaad0fcc044aef96db89fae837a9067 diff --git a/www/ruby-fcgi/patches/patch-aa b/www/ruby-fcgi/patches/patch-aa new file mode 100644 index 00000000000..9f2c3b0cf70 --- /dev/null +++ b/www/ruby-fcgi/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.3 2005/12/30 13:01:57 joerg Exp $ + +--- ext/fcgi/fcgi.c.orig 2005-12-30 12:59:27.000000000 +0000 ++++ ext/fcgi/fcgi.c +@@ -164,7 +164,6 @@ static VALUE fcgi_finish(VALUE self) + + #define CHECK_STREAM_ERROR(stream) {\ + int err = FCGX_GetError(stream);\ +- extern int errno; \ + if (err) {\ + if (err > 0) {\ + errno = err;\ |