diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-12-13 14:07:38 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-12-13 14:07:38 +0000 |
commit | 304b48673a1acf14a5ce111332aa29e3319f792a (patch) | |
tree | 213a1031bfb56d4e22c0d256e2ae93f1a9d5d6db /databases/ruby-interbase/files/patch-extconf.rb | |
parent | upgrade to 0.3.2 (diff) |
add ruby-interbase
Ruby interface to Interbase library
PR: 31869
Submitted by: Sergey Skvortsov <skv@protey.ru>
Diffstat (limited to 'databases/ruby-interbase/files/patch-extconf.rb')
-rw-r--r-- | databases/ruby-interbase/files/patch-extconf.rb | 24 |
1 files changed, 24 insertions, 0 deletions
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") |