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 1560
Collapse All | Expand All

(-)./qtruby/rubylib/qtruby/configure.in.in.ruby2 (+6 lines)
Lines 21-26 Link Here
21
      fi
21
      fi
22
    fi
22
    fi
23
    if test -z "$RUBY_VERSION"; then
23
    if test -z "$RUBY_VERSION"; then
24
      RUBY_VERSION=`$PKGCONFIG ruby-2.0 --modversion 2>/dev/null`
25
      if test -n "$RUBY_VERSION"; then
26
        RUBY_CFLAGS=`$PKGCONFIG ruby-2.0 --cflags`
27
      fi
28
    fi
29
    if test -z "$RUBY_VERSION"; then
24
      # pkgconfig file does not exist but might be 1.9.1: RUBY_VERSION defined in ruby/version.h
30
      # pkgconfig file does not exist but might be 1.9.1: RUBY_VERSION defined in ruby/version.h
25
      if test -n "$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"rubyhdrdir"@:>@)'"; then
31
      if test -n "$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"rubyhdrdir"@:>@)'"; then
26
        # rubyhdrdir parameter works only in >=1.9.1; this is 1.9.1
32
        # rubyhdrdir parameter works only in >=1.9.1; this is 1.9.1
(-)./korundum/rubylib/korundum/configure.in.in.ruby2 (+6 lines)
Lines 19-24 Link Here
19
      if test -n "$RUBY_VERSION"; then
19
      if test -n "$RUBY_VERSION"; then
20
        RUBY_CFLAGS=`$PKGCONFIG ruby-1.9 --cflags`
20
        RUBY_CFLAGS=`$PKGCONFIG ruby-1.9 --cflags`
21
      fi
21
      fi
22
    fi
23
    if test -z "$RUBY_VERSION"; then
24
      RUBY_VERSION=`$PKGCONFIG ruby-2.0 --modversion 2>/dev/null`
25
      if test -n "$RUBY_VERSION"; then
26
        RUBY_CFLAGS=`$PKGCONFIG ruby-2.0 --cflags`
27
      fi
22
    fi
28
    fi
23
    if test -z "$RUBY_VERSION"; then
29
    if test -z "$RUBY_VERSION"; then
24
      # pkgconfig file does not exist but might be 1.9.1: RUBY_VERSION defined in ruby/version.h
30
      # pkgconfig file does not exist but might be 1.9.1: RUBY_VERSION defined in ruby/version.h

Return to bug 1560