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

(-)a/configure.in (-2 / +7 lines)
Lines 1548-1556 if test "x$compile_kross" = "xyes" ; then Link Here
1548
      RUBY_VERSION=`$PKGCONFIG ruby --modversion 2>/dev/null`
1548
      RUBY_VERSION=`$PKGCONFIG ruby --modversion 2>/dev/null`
1549
      if test -n "$RUBY_VERSION"; then
1549
      if test -n "$RUBY_VERSION"; then
1550
        RUBY_CFLAGS=`$PKGCONFIG ruby --cflags`
1550
        RUBY_CFLAGS=`$PKGCONFIG ruby --cflags`
1551
      else
1551
      fi
1552
      if test -z "$RUBY_VERSION"; then
1552
        RUBY_VERSION=`$PKGCONFIG ruby-1.9 --modversion 2>/dev/null`
1553
        RUBY_VERSION=`$PKGCONFIG ruby-1.9 --modversion 2>/dev/null`
1553
        RUBY_CFLAGS=`$PKGCONFIG ruby-1.9 --cflags`
1554
        if test -n "$RUBY_VERSION"; then
1555
          RUBY_CFLAGS=`$PKGCONFIG ruby-1.9 --cflags`
1556
        fi
1554
      fi
1557
      fi
1555
      if test -z "$RUBY_VERSION"; then
1558
      if test -z "$RUBY_VERSION"; then
1556
        # pkgconfig file does not exist but might be 1.9.1: RUBY_VERSION defined in ruby/version.h
1559
        # pkgconfig file does not exist but might be 1.9.1: RUBY_VERSION defined in ruby/version.h
Lines 1561-1566 if test "x$compile_kross" = "xyes" ; then Link Here
1561
          RUBY_TEENY=`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"['TEENY']"@:>@)'`
1564
          RUBY_TEENY=`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"['TEENY']"@:>@)'`
1562
          if test "$RUBY_MAJOR" == "1" && test "$RUBY_MINOR" == "9"; then
1565
          if test "$RUBY_MAJOR" == "1" && test "$RUBY_MINOR" == "9"; then
1563
            RUBY_VERSION="$RUBY_MAJOR.$RUBY_MINOR.$RUBY_TEENY"
1566
            RUBY_VERSION="$RUBY_MAJOR.$RUBY_MINOR.$RUBY_TEENY"
1567
            RUBY_CFLAGS="-I`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"rubyhdrdir"@:>@)'`"
1568
            RUBY_CFLAGS="$RUBY_CFLAGS/`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"arch"@:>@)'` $RUBY_CFLAGS"
1564
          fi
1569
          fi
1565
        fi
1570
        fi
1566
      fi
1571
      fi
(-)a/lib/kross/configure.in.in (-2 / +7 lines)
Lines 34-42 if test "x$compile_kross" = "xyes" ; then Link Here
34
      RUBY_VERSION=`$PKGCONFIG ruby --modversion 2>/dev/null`
34
      RUBY_VERSION=`$PKGCONFIG ruby --modversion 2>/dev/null`
35
      if test -n "$RUBY_VERSION"; then
35
      if test -n "$RUBY_VERSION"; then
36
        RUBY_CFLAGS=`$PKGCONFIG ruby --cflags`
36
        RUBY_CFLAGS=`$PKGCONFIG ruby --cflags`
37
      else
37
      fi
38
      if test -z "$RUBY_VERSION"; then
38
        RUBY_VERSION=`$PKGCONFIG ruby-1.9 --modversion 2>/dev/null`
39
        RUBY_VERSION=`$PKGCONFIG ruby-1.9 --modversion 2>/dev/null`
39
        RUBY_CFLAGS=`$PKGCONFIG ruby-1.9 --cflags`
40
        if test -n "$RUBY_VERSION"; then
41
          RUBY_CFLAGS=`$PKGCONFIG ruby-1.9 --cflags`
42
        fi
40
      fi
43
      fi
41
      if test -z "$RUBY_VERSION"; then
44
      if test -z "$RUBY_VERSION"; then
42
        # pkgconfig file does not exist but might be 1.9.1: RUBY_VERSION defined in ruby/version.h
45
        # pkgconfig file does not exist but might be 1.9.1: RUBY_VERSION defined in ruby/version.h
Lines 47-52 if test "x$compile_kross" = "xyes" ; then Link Here
47
          RUBY_TEENY=`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"['TEENY']"@:>@)'`
50
          RUBY_TEENY=`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"['TEENY']"@:>@)'`
48
          if test "$RUBY_MAJOR" == "1" && test "$RUBY_MINOR" == "9"; then
51
          if test "$RUBY_MAJOR" == "1" && test "$RUBY_MINOR" == "9"; then
49
            RUBY_VERSION="$RUBY_MAJOR.$RUBY_MINOR.$RUBY_TEENY"
52
            RUBY_VERSION="$RUBY_MAJOR.$RUBY_MINOR.$RUBY_TEENY"
53
            RUBY_CFLAGS="-I`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"rubyhdrdir"@:>@)'`"
54
            RUBY_CFLAGS="$RUBY_CFLAGS/`$RUBY -r rbconfig -e 'printf("%s",RbConfig::CONFIG@<:@"arch"@:>@)'` $RUBY_CFLAGS"
50
          fi
55
          fi
51
        fi
56
        fi
52
      fi
57
      fi

Return to bug 735