[mcs] Accept and ignore command line args supported by csc ..
[mono.git] / configure.ac
index 93bd2ec3afcf2576805f2c59d339e240137be16d..5da2a242f3a7c68dc908294676b129a701670c0f 100644 (file)
@@ -1,7 +1,7 @@
 # Process this file with autoconf to produce a configure script.
 #AC_PREREQ([2.62])
 
-AC_INIT(mono, [4.3.2],
+AC_INIT(mono, [4.3.3],
         [http://bugzilla.xamarin.com/enter_bug.cgi?classification=Mono])
 
 AC_CONFIG_SRCDIR([README.md])
@@ -1182,20 +1182,6 @@ if test x$host_win32 = xno; then
                AC_MSG_RESULT(no)
        ])
 
-       dnl ****************************************************************
-       dnl *** Check for SCHED_BATCH                                    ***
-       dnl ****************************************************************
-       AC_MSG_CHECKING(for SCHED_BATCH)
-       AC_TRY_COMPILE([#include <sched.h>], [
-                       int policy = SCHED_BATCH;
-                       return 0;
-       ], [
-               # Yes, we have it...
-               AC_MSG_RESULT(yes)
-               AC_DEFINE(HAVE_SCHED_BATCH, 1, [Have HAVE_SCHED_BATCH])
-       ], [
-               AC_MSG_RESULT(no)
-       ])
 
        dnl ******************************************************************
        dnl *** Check for large file support                               ***