diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2012-05-25 15:08:17 +0200 |
---|---|---|
committer | David Bremner <bremner@debian.org> | 2012-05-28 10:21:37 -0300 |
commit | 5946aba519ab99207ebf5d2863c60edd6a35bf9e (patch) | |
tree | 2491ec1a8d66105bd1d2b1f5a453502b8c7e54cb /bindings | |
parent | 97527b0a6649e61e72f986ea30914b32274f9ff4 (diff) |
Revert "ruby: Add workarounds to use in-tree build not the installed one"
This reverts commit 82b73ffd7380b85d259eeb91100dd6ac2d14223a.
Only leave the copyright changes.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
(cherry picked from commit 35cb1c95cc8afa964900d29c813349ad8e24e7a8)
Diffstat (limited to 'bindings')
-rw-r--r-- | bindings/ruby/defs.h | 2 | ||||
-rw-r--r-- | bindings/ruby/extconf.rb | 24 |
2 files changed, 4 insertions, 22 deletions
diff --git a/bindings/ruby/defs.h b/bindings/ruby/defs.h index 85d8205e..3f9512ba 100644 --- a/bindings/ruby/defs.h +++ b/bindings/ruby/defs.h @@ -21,8 +21,8 @@ #ifndef DEFS_H #define DEFS_H +#include <notmuch.h> #include <ruby.h> -#include "notmuch.h" VALUE notmuch_rb_cDatabase; VALUE notmuch_rb_cDirectory; diff --git a/bindings/ruby/extconf.rb b/bindings/ruby/extconf.rb index 933f34a9..7b9750f2 100644 --- a/bindings/ruby/extconf.rb +++ b/bindings/ruby/extconf.rb @@ -5,27 +5,9 @@ require 'mkmf' -NOTDIR = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'lib')) -NOTHDR = File.join(NOTDIR, 'notmuch.h') -NOTLIB = File.join(NOTDIR, 'libnotmuch.a') - -unless File.exists? NOTHDR - $stderr.puts "notmuch.h is missing under #{NOTDIR}" - exit 1 -end - -unless File.exists? NOTLIB - $stderr.puts "libnotmuch.a is missing under #{NOTDIR}" - exit 1 -end - -# Small hack to build with in-tree version not the installed one. -# find_header() and friends use standard include/library paths first. -$stderr.puts "Added -I#{NOTDIR} to $INCFLAGS" -$INCFLAGS = "-I#{NOTDIR}".quote + " " + $INCFLAGS -find_header('notmuch.h', NOTDIR) - -$LOCAL_LIBS += NOTLIB +# Notmuch Library +find_header('notmuch.h', '../../lib') +find_library('notmuch', 'notmuch_database_create', '../../lib') # Create Makefile dir_config('notmuch') |