aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings/ruby/extconf.rb
blob: 6160db26e2ea10286fb16065c2c030ea90a0c07e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env ruby
# coding: utf-8
# Copyright 2010, 2011, 2012 Ali Polatel <alip@exherbo.org>
# Distributed under the terms of the GNU General Public License v3

require 'mkmf'

dir = File.join('..', '..', 'lib')

# includes
$INCFLAGS = "-I#{dir} #{$INCFLAGS}"

# make sure there are no undefined symbols
$LDFLAGS += ' -Wl,--no-undefined'

def have_local_library(lib, path, func, headers = nil)
  checking_for checking_message(func, lib) do
    lib = File.join(path, lib)
    if try_func(func, lib, headers)
      $LOCAL_LIBS += lib
    end
  end
end

if not have_local_library('libnotmuch.so', dir, 'notmuch_database_create', 'notmuch.h')
  exit 1
end

# Create Makefile
dir_config('notmuch')
create_makefile('notmuch')