diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-05-17 01:55:00 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-05-17 01:55:00 +0000 |
commit | 0a7aada5d18441b437f5e406a991d963b3613d9a (patch) | |
tree | df282fa1bd14aaffe91f8d82fd6593d5c74e4d65 | |
parent | 7333fbf0f79abe891e386e229a25e4848014c0b5 (diff) |
fix static-linked-ext
* ext/tk/extconf.rb: add -l options to $libs not $LDFLAGS, to be
passed to EXTLIBS in exts.mk.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35671 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ext/tk/extconf.rb | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,7 @@ -Thu May 17 10:39:36 2012 Nobuyoshi Nakada <[email protected]> +Thu May 17 10:54:58 2012 Nobuyoshi Nakada <[email protected]> + + * ext/tk/extconf.rb: add -l options to $libs not $LDFLAGS, to be + passed to EXTLIBS in exts.mk. * enc/encinit.c.erb: use %-lines to adjust indent in the generated file. diff --git a/ext/tk/extconf.rb b/ext/tk/extconf.rb index e7d12ebf9b..155a92f6ab 100644 --- a/ext/tk/extconf.rb +++ b/ext/tk/extconf.rb @@ -1995,7 +1995,8 @@ if TkLib_Config["tcltk-framework"] end end end - $LDFLAGS << ' ' << libs.gsub(/((?:\A|\s)-framework)\s/, '\1=') << ' -ltk -ltcl' + $LDFLAGS << ' ' << libs.gsub(/((?:\A|\s)-framework)\s/, '\1=') + $libs << ' -ltk -ltcl' setup_for_macosx_framework(tclver, tkver) if tcl_cfg_dir && tk_cfg_dir end |