aboutsummaryrefslogtreecommitdiffhomepage
path: root/bindings
diff options
context:
space:
mode:
authorGravatar Felipe Contreras <felipe.contreras@gmail.com>2012-05-25 15:08:17 +0200
committerGravatar Felipe Contreras <felipe.contreras@gmail.com>2012-05-25 15:11:31 +0200
commit35cb1c95cc8afa964900d29c813349ad8e24e7a8 (patch)
tree88556d59a27150ae588c84683fbe9d08d6678490 /bindings
parent2f1a11268f2d230d0b3786a158b238e45090b768 (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>
Diffstat (limited to 'bindings')
-rw-r--r--bindings/ruby/defs.h2
-rw-r--r--bindings/ruby/extconf.rb24
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')