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

ruby-changes:2445

From: ko1@a...
Date: 15 Nov 2007 19:50:46 +0900
Subject: [ruby-changes:2445] usa - Ruby:r13936 (trunk): * ext/curses/extconf.rb: check macro if cannot find func.

usa	2007-11-15 19:50:34 +0900 (Thu, 15 Nov 2007)

  New Revision: 13936

  Modified files:
    trunk/ChangeLog
    trunk/ext/curses/extconf.rb

  Log:
    * ext/curses/extconf.rb: check macro if cannot find func.
    


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=13936&r2=13935
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/curses/extconf.rb?r1=13936&r2=13935

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 13935)
+++ ChangeLog	(revision 13936)
@@ -1,3 +1,7 @@
+Thu Nov 15 19:49:03 2007  NAKAMURA Usaku  <usa@r...>
+
+	* ext/curses/extconf.rb: check macro if cannot find func.
+
 Thu Nov 15 18:04:06 2007  Tanaka Akira  <akr@f...>
 
 	* tool/compile_prelude.rb: fix TMP_RUBY_PREFIX for relative load path
Index: ext/curses/extconf.rb
===================================================================
--- ext/curses/extconf.rb	(revision 13935)
+++ ext/curses/extconf.rb	(revision 13936)
@@ -5,6 +5,7 @@
 dir_config('termcap')
 
 make=false
+headers = []
 have_library("mytinfo", "tgetent") if /bow/ =~ RUBY_PLATFORM
 have_library("tinfo", "tgetent") or have_library("termcap", "tgetent")
 if have_header(*curses=%w"ncurses.h") and have_library("ncurses", "initscr")
@@ -20,7 +21,7 @@
 
 if make
   for f in %w(beep bkgd bkgdset curs_set deleteln doupdate flash getbkgd getnstr init isendwin keyname keypad resizeterm scrl set setscrreg ungetch wattroff wattron wattrset wbkgd wbkgdset wdeleteln wgetnstr wresize wscrl wsetscrreg def_prog_mode reset_prog_mode timeout wtimeout nodelay init_color wcolor_set)
-    have_func(f)
+    have_func(f) || (have_macro(f, curses) && $defs.push(format("-DHAVE_%s", f.upcase)))
   end
   flag = "-D_XOPEN_SOURCE_EXTENDED"
   src = "int test_var[(sizeof(char*)>sizeof(int))*2-1];"

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

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