diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-30 12:06:46 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-10-30 12:06:46 -0500 |
commit | de9980a5ac444080cdd43bf3d744d6923363c05b (patch) | |
tree | 623988dd1c1e30d48f6b5aa841e203520354ab55 /korundum | |
parent | 17ec98326a48e4cf51dae6516be6198a1bc5a486 (diff) | |
download | tdebindings-de9980a5ac444080cdd43bf3d744d6923363c05b.tar.gz tdebindings-de9980a5ac444080cdd43bf3d744d6923363c05b.zip |
Fix build on Ruby 1.9.x without pkgconfig file.
Diffstat (limited to 'korundum')
-rw-r--r-- | korundum/rubylib/korundum/configure.in.in | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/korundum/rubylib/korundum/configure.in.in b/korundum/rubylib/korundum/configure.in.in index 18299977..e1a84710 100644 --- a/korundum/rubylib/korundum/configure.in.in +++ b/korundum/rubylib/korundum/configure.in.in @@ -13,9 +13,12 @@ else RUBY_VERSION=`$PKGCONFIG ruby --modversion 2>/dev/null` if test -n "$RUBY_VERSION"; then RUBY_CFLAGS=`$PKGCONFIG ruby --cflags` - else + fi + if test -z "$RUBY_VERSION"; then RUBY_VERSION=`$PKGCONFIG ruby-1.9 --modversion 2>/dev/null` - RUBY_CFLAGS=`$PKGCONFIG ruby-1.9 --cflags` + if test -n "$RUBY_VERSION"; then + RUBY_CFLAGS=`$PKGCONFIG ruby-1.9 --cflags` + fi fi if test -z "$RUBY_VERSION"; then # pkgconfig file does not exist but might be 1.9.1: RUBY_VERSION defined in ruby/version.h @@ -26,6 +29,8 @@ else RUBY_TEENY=`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"['TEENY']"@:>@)'` if test "$RUBY_MAJOR" == "1" && test "$RUBY_MINOR" == "9"; then RUBY_VERSION="$RUBY_MAJOR.$RUBY_MINOR.$RUBY_TEENY" + RUBY_CFLAGS="-I`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"rubyhdrdir"@:>@)'`" + RUBY_CFLAGS="$RUBY_CFLAGS/`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"arch"@:>@)'` $RUBY_CFLAGS" fi fi fi @@ -60,9 +65,11 @@ else cflags $RUBY_CFLAGS]) AC_SUBST(RUBY_ARCHDIR) AC_SUBST(RUBY_SITEARCHDIR) + AC_SUBST(RUBY_SITEDIR) AC_SUBST(RUBY_RUBYLIBDIR) + AC_SUBST(RUBY_LIBDIR) AC_SUBST(RUBY_INCLUDEDIR) - AC_SUBST(RUBY_SITEDIR) + AC_SUBST(RUBY_LIBRUBYARG) AC_SUBST(RUBY_CFLAGS) fi |