2010-05-22 07:45:40 +02:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
# coding: utf-8
|
2012-05-07 17:02:45 +02:00
|
|
|
# Copyright 2010, 2011, 2012 Ali Polatel <alip@exherbo.org>
|
2010-05-22 07:45:40 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v3
|
|
|
|
|
|
|
|
require 'mkmf'
|
|
|
|
|
2013-05-20 14:24:23 +02:00
|
|
|
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
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
# Create Makefile
|
|
|
|
dir_config('notmuch')
|
|
|
|
create_makefile('notmuch')
|