By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1070
Collapse All | Expand All

(-)a/qtruby/rubylib/qtruby/configure.in.in (-2 / +7 lines)
Lines 12-20 else Link Here
12
    RUBY_VERSION=`$PKGCONFIG ruby --modversion 2>/dev/null`
12
    RUBY_VERSION=`$PKGCONFIG ruby --modversion 2>/dev/null`
13
    if test -n "$RUBY_VERSION"; then
13
    if test -n "$RUBY_VERSION"; then
14
      RUBY_CFLAGS=`$PKGCONFIG ruby --cflags`
14
      RUBY_CFLAGS=`$PKGCONFIG ruby --cflags`
15
    else
15
    fi
16
    if test -z "$RUBY_VERSION"; then
16
      RUBY_VERSION=`$PKGCONFIG ruby-1.9 --modversion 2>/dev/null`
17
      RUBY_VERSION=`$PKGCONFIG ruby-1.9 --modversion 2>/dev/null`
17
      RUBY_CFLAGS=`$PKGCONFIG ruby-1.9 --cflags`
18
      if test -n "$RUBY_VERSION"; then
19
        RUBY_CFLAGS=`$PKGCONFIG ruby-1.9 --cflags`
20
      fi
18
    fi
21
    fi
19
    if test -z "$RUBY_VERSION"; then
22
    if test -z "$RUBY_VERSION"; then
20
      # pkgconfig file does not exist but might be 1.9.1: RUBY_VERSION defined in ruby/version.h
23
      # pkgconfig file does not exist but might be 1.9.1: RUBY_VERSION defined in ruby/version.h
Lines 25-30 else Link Here
25
        RUBY_TEENY=`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"['TEENY']"@:>@)'`
28
        RUBY_TEENY=`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"['TEENY']"@:>@)'`
26
        if test "$RUBY_MAJOR" == "1" && test "$RUBY_MINOR" == "9"; then
29
        if test "$RUBY_MAJOR" == "1" && test "$RUBY_MINOR" == "9"; then
27
          RUBY_VERSION="$RUBY_MAJOR.$RUBY_MINOR.$RUBY_TEENY"
30
          RUBY_VERSION="$RUBY_MAJOR.$RUBY_MINOR.$RUBY_TEENY"
31
          RUBY_CFLAGS="-I`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"rubyhdrdir"@:>@)'`"
32
          RUBY_CFLAGS="$RUBY_CFLAGS/`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"arch"@:>@)'` $RUBY_CFLAGS"
28
        fi
33
        fi
29
      fi
34
      fi
30
    fi
35
    fi

Return to bug 1070