summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoerg <joerg>2005-12-30 13:01:57 +0000
committerjoerg <joerg>2005-12-30 13:01:57 +0000
commite1a6725de96b74a6605b2a6be5bc246d88436a08 (patch)
tree7c3ea861ffbed74a9c8dd3f39fe290a26958b4c9
parent5d9da712c1e327105b3a389a33d402bc1f767d1c (diff)
downloadpkgsrc-e1a6725de96b74a6605b2a6be5bc246d88436a08.tar.gz
Fix errno.
-rw-r--r--www/ruby-fcgi/distinfo3
-rw-r--r--www/ruby-fcgi/patches/patch-aa12
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;\