]> git.notmuchmail.org Git - notmuch/blob - bindings/ruby/extconf.rb
test: add another known broken test for uncaught DatabaseModifiedError
[notmuch] / bindings / ruby / extconf.rb
1 #!/usr/bin/env ruby
2 # coding: utf-8
3 # Copyright 2010, 2011, 2012 Ali Polatel <alip@exherbo.org>
4 # Distributed under the terms of the GNU General Public License v3
5
6 require 'mkmf'
7
8 $INCFLAGS = "#{ENV['EXTRA_INCFLAGS']} #{$INCFLAGS}"
9 $LDFLAGS = "#{ENV['EXTRA_LDFLAGS']} #{$LDFLAGS}"
10
11 if not ENV['LIBNOTMUCH']
12   exit 1
13 end
14
15 $LOCAL_LIBS = ENV['LIBNOTMUCH']
16
17 # Create Makefile
18 dir_config('notmuch')
19 create_makefile('notmuch')