Преглед изворни кода

2008-05-31 Andreas Faerber <[email protected]>

	* configure.in (big-arrays): Output fix.
	  Display "no" in absence of --enable-big-arrays.

	This commit is licensed under the MIT X11 license.

svn path=/trunk/mono/; revision=104591
Andreas Färber пре 17 година
родитељ
комит
af490cc32f
2 измењених фајлова са 8 додато и 1 уклоњено
  1. 7 0
      ChangeLog
  2. 1 1
      configure.in

+ 7 - 0
ChangeLog

@@ -1,3 +1,10 @@
+2008-05-31  Andreas Färber  <[email protected]>
+
+	* configure.in (big-arrays): Output fix.
+	  Display "no" in absence of --enable-big-arrays.
+
+	Contributed unter MIT/X11 license.
+
 2008-05-27 Rodrigo Kumpera  <[email protected]>
 
 	* configure.in: Add configure option for big arrays.

+ 1 - 1
configure.in

@@ -1678,7 +1678,7 @@ AC_ARG_ENABLE(nunit-tests, [ --enable-nunit-tests	Run the nunit tests of the cla
 AM_CONDITIONAL(ENABLE_NUNIT_TESTS, [test x$enable_nunit_tests = xyes])
 
 AC_MSG_CHECKING([if big-arrays are to be enabled])
-AC_ARG_ENABLE(big-arrays,  [ --enable-big-arrays	Enable the allocation and indexing of arrays greater than Int32.MaxValue])
+AC_ARG_ENABLE(big-arrays,  [ --enable-big-arrays	Enable the allocation and indexing of arrays greater than Int32.MaxValue], enable_big_arrays=$enableval, enable_big_arrays=no)
 AC_MSG_RESULT($enable_big_arrays)
 if test "x$enable_big_arrays" = "xyes" ; then
 	AC_DEFINE(MONO_BIG_ARRAYS,1,[Enable the allocation and indexing of arrays greater than Int32.MaxValue])