/ ext / ssdeep /
ext/ssdeep/extconf.rb
1 require 'mkmf'
2
3 dir_config("ssdeep")
4
5 if not have_header("fuzzy.h") or not have_library("fuzzy", "fuzzy_compare")
6 fail <<-EOM
7 Can't find ssdeep library or headers.
8
9 Try passing --with-ssdeep-dir or --with-sdeep-lib and --with-ssdeep-include
10 options to extconf.
11 EOM
12 end
13
14 create_makefile("ssdeep")