diff options
-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 |