Sha256: 9980c2c5308676ae4672ed72e3da39d8ddc7e537cb411c93fca5a63f818b7275
Contents?: true
Size: 533 Bytes
Versions: 9
Compression:
Stored size: 533 Bytes
Contents
#!/usr/bin/ruby require 'mkmf' $CFLAGS = "-DHAVE_INTTYPES_H" Config::CONFIG['CC'] = 'g++' Config::CONFIG['CPP'] = 'g++' if !have_library('mimetic') puts <<-ERROR Cannot find mimetic headers or libraries. Try sudo apt-get install libmimetic-dev on debian flavors of linux. ERROR exit 1 end if !have_library('pcrecpp') puts <<-ERROR Cannot find pcrecpp headers or libraries from pcre3. Try sudo apt-get install libpcre3-dev on debian flavors of linux. ERROR exit 1 end create_makefile('mimetic')
Version data entries
9 entries across 9 versions & 1 rubygems