Sha256: 7b8fe0b46d9b9439af61e3994dd4ffb3419e5b9ee12b113242fad19e7de481ff

Contents?: true

Size: 391 Bytes

Versions: 1

Compression:

Stored size: 391 Bytes

Contents

# encoding: UTF-8

require 'mkmf'
dir_config('mysql')

have_header('mysql/mysql.h')

$CFLAGS << ' -Wall -Wextra -funroll-loops'
# $CFLAGS << ' -O0 -ggdb3'

if have_library('mysqlclient')
  if RUBY_VERSION =~ /1.9/
    $CFLAGS << ' -DRUBY_19_COMPATIBILITY'
  end

  create_makefile('mysql2_ext')
else
  puts 'libmysql not found, maybe try manually specifying --with-mysql-lib to find it?'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mysql2-0.1.0 ext/extconf.rb