ruby-mdbx/ext/mdbx_ext/extconf.rb
mahlon 65f4f634cb Small changes:
- Add statistics output example
 - Fix various compilation warnings
 - Test/bump ruby version to 3.2
 - Fix failing test under OSX

FossilOrigin-Name: c5c6d745d854082b8704c8da61dcc315dbc3d99b8ceec4a82ebea65e861f10ea
2023-01-05 23:16:57 +00:00

13 lines
267 B
Ruby
Executable file

#!/usr/bin/env ruby
# vim: set noet sta sw=4 ts=4 :
require 'mkmf'
$CFLAGS << ' -Wno-suggest-attribute=format'
have_library( 'mdbx' ) or abort "No mdbx library!"
have_header( 'mdbx.h' ) or abort "No mdbx.h header!"
create_header()
create_makefile( 'mdbx_ext' )