summaryrefslogtreecommitdiff
path: root/lang/ruby19/files/patch-cont.c
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2012-02-25 15:25:49 +0000
committerSteve Wills <swills@FreeBSD.org>2012-02-25 15:25:49 +0000
commitb056987a7e2f5da0e60cec61eb65724904e0db5c (patch)
tree77f3491d5ff9b3829aa50a67237f8d158a109d53 /lang/ruby19/files/patch-cont.c
parentUpgrade to 2.7.4. (diff)
- Update lang/ruby18 to p385
- Update lang/ruby19 to p125 Changes: http://www.ruby-forum.com/topic/3663807#1047121 http://www.ruby-lang.org/en/news/2012/02/16/ruby-1-9-3-p125-is-released/ PR: ports/165223 Submitted by: swills (myself) Reviewed by: pgollucci Approved by: portmgr
Notes
Notes: svn path=/head/; revision=292221
Diffstat (limited to '')
-rw-r--r--lang/ruby19/files/patch-cont.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lang/ruby19/files/patch-cont.c b/lang/ruby19/files/patch-cont.c
index 3a18d265e3a8..e1323213601d 100644
--- a/lang/ruby19/files/patch-cont.c
+++ b/lang/ruby19/files/patch-cont.c
@@ -1,11 +1,11 @@
---- cont.c.orig 2011-11-18 03:37:32.000000000 -0800
-+++ cont.c 2011-11-18 03:38:22.000000000 -0800
+--- cont.c.orig 2012-02-16 22:31:17.691397569 -0500
++++ cont.c 2012-02-16 22:31:31.507395417 -0500
@@ -15,7 +15,7 @@
#include "gc.h"
#include "eval_intern.h"
--#if ((defined(_WIN32) && _WIN32_WINNT >= 0x0400) || defined(HAVE_SETCONTEXT)) && !defined(__NetBSD__) && !defined(sun) && !defined(FIBER_USE_NATIVE)
-+#if ((defined(_WIN32) && _WIN32_WINNT >= 0x0400) || defined(HAVE_SETCONTEXT)) && !defined(__NetBSD__) && !defined(__FreeBSD__) && !defined(sun) && !defined(FIBER_USE_NATIVE)
+-#if ((defined(_WIN32) && _WIN32_WINNT >= 0x0400) || (defined(HAVE_GETCONTEXT) && defined(HAVE_SETCONTEXT))) && !defined(__NetBSD__) && !defined(sun) && !defined(FIBER_USE_NATIVE)
++#if ((defined(_WIN32) && _WIN32_WINNT >= 0x0400) || (defined(HAVE_GETCONTEXT) && defined(HAVE_SETCONTEXT))) && !defined(__NetBSD__) && !defined(__FreeBSD__) && !defined(sun) && !defined(FIBER_USE_NATIVE)
#define FIBER_USE_NATIVE 1
/* FIBER_USE_NATIVE enables Fiber performance improvement using system