View | Details | Raw Unified | Return to issue 66685
Collapse All | Expand All

(-)config_office/configure.in.orig (-2 / +2 lines)
Lines 2074-2080 Link Here
2074
dnl Checks that javac is gcj
2074
dnl Checks that javac is gcj
2075
dnl ===================================================================
2075
dnl ===================================================================
2076
if test "$SOLAR_JAVA" != ""; then
2076
if test "$SOLAR_JAVA" != ""; then
2077
    if test `$JAVACOMPILER --version 2>&1 | grep -c "GCC"` -gt 0; then
2077
    if test "$javacompiler" = "gcj"; then
2078
        JAVACISGCJ="yes"
2078
        JAVACISGCJ="yes"
2079
    fi
2079
    fi
2080
fi
2080
fi
Lines 4624-4630 Link Here
4624
    </project>
4624
    </project>
4625
EOF
4625
EOF
4626
  oldJAVA_HOME=$JAVA_HOME
4626
  oldJAVA_HOME=$JAVA_HOME
4627
  if test "$JDK" = "gcj"; then
4627
  if test "$javacompiler" = "gcj"; then
4628
    JAVA_HOME=; export JAVA_HOME
4628
    JAVA_HOME=; export JAVA_HOME
4629
    ant_cmd="$ANT -Dbuild.compiler=gcj -buildfile conftest.xml 1>&2"
4629
    ant_cmd="$ANT -Dbuild.compiler=gcj -buildfile conftest.xml 1>&2"
4630
  else
4630
  else
(-)hsqldb/makefile.mk.orig (-1 / +1 lines)
Lines 67-73 Link Here
67
# override buildfile
67
# override buildfile
68
ANT_BUILDFILE=build$/build.xml
68
ANT_BUILDFILE=build$/build.xml
69
69
70
.IF "$(JDK)"=="gcj"
70
.IF "$(JAVACISGCJ)"=="yes"
71
JAVA_HOME=
71
JAVA_HOME=
72
.EXPORT : JAVA_HOME
72
.EXPORT : JAVA_HOME
73
BUILD_ACTION=$(ANT) -Dbuild.label="build-$(RSCREVISION)" -Dbuild.compiler=gcj -f $(ANT_BUILDFILE) jar
73
BUILD_ACTION=$(ANT) -Dbuild.label="build-$(RSCREVISION)" -Dbuild.compiler=gcj -f $(ANT_BUILDFILE) jar

Return to issue 66685