Hi, I'm sending you this mail because I intend to push some changes in libiodbc2 that would require a change in ruby-odbc.
I've uploaded the new version of libiodbc2 to experimental which would, hopefuly, fix a long standing issue between unixodbc and iodbc, I think the programs that linked against libiodbc2 are not affected, but as I don't use ruby-odbc I can't test it. Sadly, ruby-odbc needs to be patched to find the new location of the iodbc headers. I'm attaching a patch that does this. Please let me know if there is any issue related to libiodbc2 I might have overlooked. Thanks, -- "The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time." -- Tom Cargill Saludos /\/\ /\ >< `/
diff -ru ruby-odbc-0.99994.orig/debian/rules ruby-odbc-0.99994/debian/rules --- ruby-odbc-0.99994.orig/debian/rules 2013-06-08 16:48:08.355536815 +0200 +++ ruby-odbc-0.99994/debian/rules 2013-06-08 16:48:41.710049832 +0200 @@ -17,8 +17,8 @@ configure/ruby-odbc:: for v in $(ruby_ver1.8) $(ruby_ver1.9.1) ; do \ cp -r ext ext$$v; \ - ( cd ext$$v && ([ -e Makefile ] || ruby$$v extconf.rb --enable-dlopen) ); \ - ( cd ext$$v && ([ -e utf8/Makefile ] || ruby$$v -Cutf8 extconf.rb --enable-dlopen) ); \ + ( cd ext$$v && ([ -e Makefile ] || ruby$$v extconf.rb --enable-dlopen --with-odbc-include=/usr/include/iodbc) ); \ + ( cd ext$$v && ([ -e utf8/Makefile ] || ruby$$v -Cutf8 extconf.rb --enable-dlopen --with-odbc-include=/usr/include/iodbc) ); \ done build/ruby-odbc::
signature.asc
Description: Digital signature
_______________________________________________ Pkg-ruby-extras-maintainers mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ruby-extras-maintainers
