]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/ruby/extconf.rb
build/ruby: use notmuch configure script values for shared lib
[notmuch] / bindings / ruby / extconf.rb
index 6d5607e168228bf7c12949fe9bb10d0800629d4d..ddaa6841e5ff2d507c65501f6d81dd00f9e942fe 100644 (file)
@@ -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')