mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-24 20:08:10 +01:00
53035dafe0
In particular this is supposed to help build on systems (presumably using a non-gnu ld) where this flag is not available.
32 lines
715 B
Ruby
32 lines
715 B
Ruby
#!/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}"
|
|
|
|
if ENV['EXTRA_LDFLAGS']
|
|
$LDFLAGS += " " + ENV['EXTRA_LDFLAGS']
|
|
end
|
|
|
|
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')
|