Hi, At Fri, 26 Mar 2004 05:25:42 +0900, Ruby Ruby wrote in [ruby-talk:95875]: > ld: 0711-317 ERROR: Undefined symbol: .__eprintf Seems to be used by assert() macro. This patch will disable it.
Index: ext/digest/rmd160/extconf.rb =================================================================== RCS file: /pub/cvs/ruby/src/ruby/ext/digest/rmd160/extconf.rb,v retrieving revision 1.4.2.1 diff -u -2 -p -r1.4.2.1 extconf.rb --- ext/digest/rmd160/extconf.rb 21 Jan 2004 07:01:43 -0000 1.4.2.1 +++ ext/digest/rmd160/extconf.rb 26 Mar 2004 00:50:01 -0000 @@ -4,5 +4,5 @@ require "mkmf" -$CFLAGS << " -DHAVE_CONFIG_H -I#{File.dirname(__FILE__)}/.." +$CPPFLAGS << " -DNDEBUG -DHAVE_CONFIG_H -I#{File.dirname(__FILE__)}/.." $objs = [ "rmd160init.#{$OBJEXT}" ]
-- Nobu Nakada