[前][次][番号順一覧][スレッド一覧]

ruby-changes:48076

From: nobu <ko1@a...>
Date: Mon, 16 Oct 2017 14:00:28 +0900 (JST)
Subject: [ruby-changes:48076] nobu:r60190 (trunk): configure.ac: fix SOEXT on Windows

nobu	2017-10-16 14:00:21 +0900 (Mon, 16 Oct 2017)

  New Revision: 60190

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=60190

  Log:
    configure.ac: fix SOEXT on Windows
    
    * configure.ac (SOEXT): shoud be "dll" on Windows.
      [ruby-core:83208] [Bug #14002]

  Modified files:
    trunk/configure.ac
Index: configure.ac
===================================================================
--- configure.ac	(revision 60189)
+++ configure.ac	(revision 60190)
@@ -3593,11 +3593,12 @@ AS_IF([test "$dln_a_out_works" = yes], [ https://github.com/ruby/ruby/blob/trunk/configure.ac#L3593
 	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], [

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]