Sha256: 0feae5cacb4ae6f2c9c4f5f1febdb1498530beaba8f390a1616ac48651247a8c
Contents?: true
Size: 564 Bytes
Versions: 7
Compression:
Stored size: 564 Bytes
Contents
# re2 (http://github.com/mudge/re2) # Ruby bindings to re2, an "efficient, principled regular expression library" # # Copyright (c) 2010, Paul Mucur (http://mucur.name) # Released under the BSD Licence, please see LICENSE.txt require 'mkmf' incl, lib = dir_config("re2", "/usr/local/include", "/usr/local/lib") $CFLAGS << " -Wall -Wextra -funroll-loops" have_library("stdc++") if have_library("re2") create_makefile("re2") else abort "You must have re2 installed and specified with --with-re2-dir, please see http://code.google.com/p/re2/wiki/Install" end
Version data entries
7 entries across 7 versions & 1 rubygems