ruby-changes:36965
From: nobu <ko1@a...>
Date: Sun, 28 Dec 2014 23:17:49 +0900 (JST)
Subject: [ruby-changes:36965] nobu:r49046 (trunk): configure.in: default excluded libraries
nobu 2014-12-28 23:17:42 +0900 (Sun, 28 Dec 2014) New Revision: 49046 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=49046 Log: configure.in: default excluded libraries * configure.in (with-out-ext): exclude never available libraries by default. Modified files: trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 49045) +++ configure.in (revision 49046) @@ -3241,7 +3241,12 @@ AC_ARG_WITH(ext, https://github.com/ruby/ruby/blob/trunk/configure.in#L3241 [pass to --with-ext option of extmk.rb])) AC_ARG_WITH(out-ext, AC_HELP_STRING([--with-out-ext=EXTS], - [pass to --without-ext option of extmk.rb])) + [pass to --without-ext option of extmk.rb]), + [], [ + AS_CASE($target_os, + [mswin*|mingw*], + [as_fn_append ac_configure_args ' --with-out-ext=pty,readline,syslog'], + [as_fn_append ac_configure_args ' --with-out-ext=*win32*'])]) EXTSTATIC= AC_SUBST(EXTSTATIC)dnl AC_ARG_WITH(static-linked-ext, -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/