From 90ab739ae488eeb1aee00d1b0609f605c26041ad Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 16 Oct 2017 05:00:21 +0000 Subject: [PATCH] configure.ac: fix SOEXT on Windows * configure.ac (SOEXT): shoud be "dll" on Windows. [ruby-core:83208] [Bug #14002] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60190 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ce73acd928..1f3c422e30 100644 --- a/configure.ac +++ b/configure.ac @@ -3593,11 +3593,12 @@ AS_IF([test "$dln_a_out_works" = yes], [ DLEXT=bundle], [cygwin*|mingw*|*djgpp*], [ LOAD_RELATIVE=1 + SOEXT=dll DLEXT=so], [ DLEXT=so]) ]) -: ${SOEXT='$(DLEXT)'} +: ${SOEXT="${DLEXT}"} AC_SUBST(SOEXT) AS_IF([test "$rb_cv_dlopen:$load_relative" = yes:yes], [ AS_IF([test "$ac_cv_func_dladdr" = yes], [