mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
525ebb862e
commit
90ab739ae4
1 changed files with 2 additions and 1 deletions
|
@ -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], [
|
||||
|
|
Loading…
Add table
Reference in a new issue