c547ab46b9
2006-12-20 version 2.7.3 - BUG: Mysql#query with block is stopped when last query failed. 2006-10-28 version 2.7.2 - BUG: Mysql::Stmt#result_metadata don't return nil. (Thanks to Hidetoshi) - BUG: Mysql#close check mysql_errno. - BUG: multistatement Mysql#query with block ignore error. - extconf.rb for Visual C++. (Thanks to Shugo Maeda) - support MySQL BIT type. - add Mysql::Field::TYPE_BIT, TYPE_NEWDECIMAL.
13 lines
505 B
Text
13 lines
505 B
Text
$NetBSD: patch-aa,v 1.3 2007/01/28 15:21:07 taca Exp $
|
|
|
|
--- extconf.rb.orig 2006-10-29 23:59:44.000000000 +0900
|
|
+++ extconf.rb
|
|
@@ -12,7 +12,7 @@ elsif mc = with_config('mysql-config') t
|
|
$CPPFLAGS += ' ' + cflags
|
|
$libs = libs + " " + $libs
|
|
else
|
|
- inc, lib = dir_config('mysql', '/usr/local')
|
|
+ inc, lib = dir_config('mysql', config['prefix'])
|
|
libs = ['m', 'z', 'socket', 'nsl', 'mygcc']
|
|
while not find_library('mysqlclient', 'mysql_query', lib, "#{lib}/mysql") do
|
|
exit 1 if libs.empty?
|