From e990086711a397a30245e90ecd6d941b7ae14d8d Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 19 May 2012 06:02:43 +0000 Subject: [PATCH] static-linked-ext: no ext/libext.a * configure.in: no ext/libext.a, an archive library cannot be made from other archive libraries. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35719 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 1d020e8333..6777571fba 100644 --- a/configure.in +++ b/configure.in @@ -2421,7 +2421,7 @@ AC_ARG_WITH(static-linked-ext, [AS_CASE([$withval],[yes],[STATIC=;EXTSTATIC=static])]) if test x"$EXTSTATIC" = xstatic; then ENCOBJS='enc/encinit.$(OBJEXT) enc/libenc.$(LIBEXT) enc/libtrans.$(LIBEXT)' - EXTOBJS='ext/extinit.$(OBJEXT) ext/libext.$(LIBEXT)' + EXTOBJS='ext/extinit.$(OBJEXT)' AC_DEFINE_UNQUOTED(EXTSTATIC, 1) fi AC_SUBST(ENCOBJS)