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

Version Path
pony-express-0.9.2 ext/pony-express/extconf.rb
pony-express-0.8.3 ext/extconf.rb
pony-express-0.8.2 ext/extconf.rb
pony-express-0.8.1 ext/extconf.rb
pony-express-0.8.0 ext/extconf.rb
pony-express-0.7.0 ext/extconf.rb
pony-express-0.6.8 ext/extconf.rb
pony-express-0.6.7 ext/extconf.rb
pony-express-0.6.6 ext/extconf.rb