]> git.notmuchmail.org Git - notmuch/blobdiff - bindings/ruby/extconf.rb
test: add another known broken test for uncaught DatabaseModifiedError
[notmuch] / bindings / ruby / extconf.rb
index 6160db26e2ea10286fb16065c2c030ea90a0c07e..ba97670ffb751977cfca922f457e702b20d464fe 100644 (file)
@@ -5,27 +5,15 @@
 
 require 'mkmf'
 
-dir = File.join('..', '..', 'lib')
+$INCFLAGS = "#{ENV['EXTRA_INCFLAGS']} #{$INCFLAGS}"
+$LDFLAGS = "#{ENV['EXTRA_LDFLAGS']} #{$LDFLAGS}"
 
-# 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')
+if not ENV['LIBNOTMUCH']
   exit 1
 end
 
+$LOCAL_LIBS = ENV['LIBNOTMUCH']
+
 # Create Makefile
 dir_config('notmuch')
 create_makefile('notmuch')