@@ -0,0 +1,19 @@
+--- ruby/extconf.rb.orig 2006-01-02 13:06:18.000000000 +0100
++++ ruby/extconf.rb 2006-01-02 13:13:33.000000000 +0100
+@@ -1,13 +1,13 @@
+ require 'mkmf'
+
++dir_config('estraier', '/usr')
++
+ system('swig -c++ -ruby -o HyperEstraier_wrap.cxx ../HyperEstraier.i')
+ system('cp ../HyperEstraierWrapper.cpp ./')
+
+ $srcdir = 'src'
+
+-$libs += [
+- `estconfig --libs`.chomp,
+- '-lstdc++'].join(" ")
++$libs += '-lstdc++'
+
+ if have_header('estraier.h') and have_library('estraier', 'est_db_open')
+ create_makefile('HyperEstraier')
|