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

(-)config_office-orig/configure.in (+13 lines)
Lines 1715-1720 if test "$_os" = "Linux"; then Link Here
1715
				ENABLE_MONO=YES
1687
				ENABLE_MONO=YES
1716
				CSC=$GMCS
1688
				CSC=$GMCS
1717
				AC_MSG_RESULT([yes])
1689
				AC_MSG_RESULT([yes])
1690
                              AC_PATH_PROG(GMCS, gmcs, no)
1691
                              AC_PATH_PROG(MKBUNDLE2, mkbundle2, no)
1692
                              GMCS_VERSION=`$GMCS --version | cut -d" " -f5`
1693
				if test "`echo $GMCS_VERSION | cut -d"." -f1`" -gt "1" || \
1694
			       test "`echo $GMCS_VERSION | cut -d"." -f1`" = "1" -a \
1695
		    		    "`echo $GMCS_VERSION | cut -d"." -f2`" -ge "3" || \
1696
			       test "`echo $GMCS_VERSION | cut -d"." -f1`" = "1" -a \
1697
			            "`echo $GMCS_VERSION | cut -d"." -f2`" = "2" -a \
1698
		                    "`echo $GMCS_VERSION | cut -d"." -f3`" -ge "3"; then
1699
			        ENABLE_MONO_CLIMAKER=YES
1700
				AC_MSG_NOTICE([mono is up-to-date enough - building mono climaker])
1701
			    fi
1718
			else
1702
			else
1719
				if test -n "$enable_mono" ; then
1703
				if test -n "$enable_mono" ; then
1720
					AC_MSG_ERROR([no, gmcs >= 1.1.8 is needed.])
1704
					AC_MSG_ERROR([no, gmcs >= 1.1.8 is needed.])
Lines 1735-1740 AC_SUBST(AL) Link Here
1735
AC_SUBST(ENABLE_MONO)
1715
AC_SUBST(ENABLE_MONO)
1736
AC_SUBST(MONO_CFLAGS)
1716
AC_SUBST(MONO_CFLAGS)
1737
AC_SUBST(MONO_LIBS)
1717
AC_SUBST(MONO_LIBS)
1718
AC_SUBST(ENABLE_MONO_CLIMAKER)
1738
1719
1739
dnl ===================================================================
1720
dnl ===================================================================
1740
dnl Check if stdc headers are available excluding windows.
1721
dnl Check if stdc headers are available excluding windows.
(-)config_office-orig/set_soenv.in (+1 lines)
Lines 1630-1635 ToFile( "MKDEPENDSOLVER", "TRUE", Link Here
1630
ToFile( "Platform dependent constant values.", $empty, "c" );
1627
ToFile( "Platform dependent constant values.", $empty, "c" );
1631
ToFile( "SOLAR_JAVA",        $SOLAR_JAVA,        "e" );
1628
ToFile( "SOLAR_JAVA",        $SOLAR_JAVA,        "e" );
1632
ToFile( "ENABLE_MONO",       "@ENABLE_MONO@",    "e" );
1629
ToFile( "ENABLE_MONO",       "@ENABLE_MONO@",    "e" );
1630
ToFile( "ENABLE_MONO_CLIMAKER",       "@ENABLE_MONO_CLIMAKER@",    "e" );
1633
ToFile( "CSC",               "@CSC@",            "e" );
1631
ToFile( "CSC",               "@CSC@",            "e" );
1634
ToFile( "AL",                "@AL@",             "e" );
1632
ToFile( "AL",                "@AL@",             "e" );
1635
ToFile( "CSC_PATH",          "@CSC_PATH@",       "e" );
1633
ToFile( "CSC_PATH",          "@CSC_PATH@",       "e" );

Return to issue 76642