initial stab at finding mysql headers easier
This commit is contained in:
parent
e8b1a18522
commit
db454d3f15
|
@ -1,9 +1,11 @@
|
||||||
# encoding: UTF-8
|
# encoding: UTF-8
|
||||||
|
|
||||||
require 'mkmf'
|
require 'mkmf'
|
||||||
|
|
||||||
dir_config('mysql')
|
dir_config('mysql')
|
||||||
|
|
||||||
have_header('mysql/mysql.h')
|
if !have_header('mysql.h') && !have_header('mysql/mysql.h')
|
||||||
|
raise 'MySQL headers not found, maybe try manually specifying --with-mysql=/path/to/mysql/installation'
|
||||||
|
end
|
||||||
|
|
||||||
$CFLAGS << ' -Wall -Wextra -funroll-loops'
|
$CFLAGS << ' -Wall -Wextra -funroll-loops'
|
||||||
# $CFLAGS << ' -O0 -ggdb3'
|
# $CFLAGS << ' -O0 -ggdb3'
|
||||||
|
@ -15,5 +17,5 @@ if have_library('mysqlclient')
|
||||||
|
|
||||||
create_makefile('mysql2_ext')
|
create_makefile('mysql2_ext')
|
||||||
else
|
else
|
||||||
puts 'libmysql not found, maybe try manually specifying --with-mysql-lib to find it?'
|
raise 'libmysql not found, maybe try manually specifying --with-mysql-lib=/path/to/mysql/libs'
|
||||||
end
|
end
|
Loading…
Reference in New Issue