diff options
| author | David Bremner <david@tethera.net> | 2015-06-01 09:09:01 +0200 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2015-06-14 08:23:55 +0200 |
| commit | 233b5528cd405de0e0d8c7b3f5d7729614bee8aa (patch) | |
| tree | 69e75ea1c1238de2e49c240e90ba088d8ff68f3c /bindings/ruby/extconf.rb | |
| parent | 53035dafe060f6832909ad54e48277c8d3bd2d1b (diff) | |
build/ruby: use notmuch configure script values for shared lib
This is supposed to help build on systems like MacOS with different
conventions for naming shared libraries. We have already computed the
relevant names, so doing it again in ruby seems like a bad idea.
Diffstat (limited to 'bindings/ruby/extconf.rb')
| -rw-r--r-- | bindings/ruby/extconf.rb | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/bindings/ruby/extconf.rb b/bindings/ruby/extconf.rb index 6d5607e1..ddaa6841 100644 --- a/bindings/ruby/extconf.rb +++ b/bindings/ruby/extconf.rb @@ -14,19 +14,12 @@ 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') +if not ENV['LIBNOTMUCH'] exit 1 end +$LOCAL_LIBS += ENV['LIBNOTMUCH'] + # Create Makefile dir_config('notmuch') create_makefile('notmuch') |
