1. 11 Dec, 2016 1 commit
    • Kouhei Sutou's avatar
      Support pkg-config in mrbgem.rake · 237d26fd
      Kouhei Sutou authored
      Example usage:
      
          MRuby::Gem::Specification.new('mruby-onig-regexp') do |spec|
            # ...
            if spec.search_package('onigmo')
              # Use onigmo.h when onigmo.pc exist.
              spec.cc.defines += ["HAVE_ONIGMO_H"]
            elsif spec.search_package('oniguruma')
              # Use oniguruma.h when oniguruma.pc exist.
              spec.cc.defines += ["HAVE_ONIGURUMA_H"]
            else
              # Use bundled Onigmo otherwise.
              # ...
            end
          end
      237d26fd
  2. 10 Dec, 2016 8 commits
  3. 09 Dec, 2016 2 commits
  4. 08 Dec, 2016 9 commits
  5. 07 Dec, 2016 10 commits
  6. 06 Dec, 2016 3 commits
  7. 05 Dec, 2016 1 commit
  8. 04 Dec, 2016 2 commits
  9. 03 Dec, 2016 4 commits