aboutsummaryrefslogtreecommitdiffstats
path: root/win32
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-21 03:26:59 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-21 03:26:59 +0000
commitf1ed4b713b2a6adf1cca30eaf0f7874ea4f1577a (patch)
tree167fabb88de9eac314f144e6229bc486ace1c30b /win32
parent9cda5bba1b1665e00bebc85fcf8a62e27aff53bc (diff)
downloadruby-f1ed4b713b2a6adf1cca30eaf0f7874ea4f1577a.tar.gz
configure.ac: add --disable-fiber-coroutine option
* configure.ac: add --disable-fiber-coroutine option, and disable it on x86-mingw32 for now. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65899 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r--win32/Makefile.sub6
1 files changed, 3 insertions, 3 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub
index fbc7903061..9157ea5bf1 100644
--- a/win32/Makefile.sub
+++ b/win32/Makefile.sub
@@ -293,10 +293,10 @@ DLNOBJ = dln.obj
COROUTINE_H = coroutine/Win64/Context.h
!elseif "$(ARCH)" == "i386"
COROUTINE_H = coroutine/Win32/Context.h
+!else
+COROUTINE_H =
!endif
-!if defined(COROUTINE_H)
-MISSING = $(MISSING) $(COROUTINE_H:.h=.obj)
-!endif
+COROUTINE_OBJ = $(COROUTINE_H:.h=.obj)
ARFLAGS = -machine:$(MACHINE) -out:
LD = $(CC)