From 304b48673a1acf14a5ce111332aa29e3319f792a Mon Sep 17 00:00:00 2001 From: Ying-Chieh Liao Date: Thu, 13 Dec 2001 14:07:38 +0000 Subject: add ruby-interbase Ruby interface to Interbase library PR: 31869 Submitted by: Sergey Skvortsov --- databases/ruby-interbase/files/patch-extconf.rb | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 databases/ruby-interbase/files/patch-extconf.rb (limited to 'databases/ruby-interbase/files/patch-extconf.rb') diff --git a/databases/ruby-interbase/files/patch-extconf.rb b/databases/ruby-interbase/files/patch-extconf.rb new file mode 100644 index 000000000000..e6771c0e9026 --- /dev/null +++ b/databases/ruby-interbase/files/patch-extconf.rb @@ -0,0 +1,24 @@ +--- extconf.rb.orig Wed May 12 19:19:36 1999 ++++ extconf.rb Fri Nov 9 10:14:03 2001 +@@ -1,5 +1,19 @@ + require 'mkmf' ++INTERBASEDIR = "/usr/interbase" + +-have_library("gdslib", "isc_attach_database") or +- have_library("gds", "isc_attach_database") ++incdir = with_config("interbase-include-dir") ++if incdir then ++ $CFLAGS += "-I#{incdir}" ++else ++ $CFLAGS = "-I#{INTERBASEDIR}/include" ++end ++ ++libdir = with_config("interbase-lib-dir") ++if libdir then ++ $LDFLAGS += "-L#{libdir}" ++else ++ $LDFLAGS = "-L#{INTERBASEDIR}/lib" ++end ++ ++$libs = "-lgds" + create_makefile("interbase") -- cgit v1.2.3