[configure] Remove mcs endianess check (it shouldn't be needed)
authorMarek Safar <marek.safar@gmail.com>
Mon, 20 Feb 2017 16:23:39 +0000 (17:23 +0100)
committerMarek Safar <marek.safar@gmail.com>
Tue, 21 Feb 2017 10:57:44 +0000 (11:57 +0100)
configure.ac

index 387b6d297ba5a3c1834e439291b5bf1276538ea0..e204fbe091904301e57f5b98a9647ef5bda578a9 100644 (file)
@@ -767,8 +767,6 @@ AC_ARG_ENABLE(system-aot, [  --enable-system-aot  Enable the Ahead-Of-Time compi
 
 DISABLED_FEATURES=none
 csc_compiler=default
-endian=unknown
-AC_C_BIGENDIAN([endian=big],[endian=little],[endian=unknown])
 AC_MSG_CHECKING([CSharp compiler to use])
 AC_ARG_WITH(csc, [  --with-csc=mcs,roslyn,default      Configures the CSharp compiler to use],[
    if test x$withval = xmcs; then
@@ -782,15 +780,6 @@ AC_ARG_WITH(csc, [  --with-csc=mcs,roslyn,default      Configures the CSharp com
    fi
 ],[csc_compiler=default])
 
-if test $csc_compiler = default; then
-   if test $endian = big; then
-      csc_compiler=mcs
-   elif test $endian = little; then
-      csc_compiler=roslyn
-   else
-      csc_compiler=mcs
-   fi
-fi
 AC_MSG_RESULT($csc_compiler)
 
 #