]> granicus.if.org Git - python/commitdiff
remove configure check for 'volatile' (#3281)
authorBenjamin Peterson <benjamin@python.org>
Mon, 4 Sep 2017 17:09:12 +0000 (10:09 -0700)
committerGitHub <noreply@github.com>
Mon, 4 Sep 2017 17:09:12 +0000 (10:09 -0700)
This is a required feature is C99, which we require.

configure
configure.ac
pyconfig.h.in

index a6f7d2bd7f0d9e1ba8aef7e61229e74a552f6506..c242ac48266fc9310687a488e7eaa6d07d872c66 100755 (executable)
--- a/configure
+++ b/configure
@@ -13543,32 +13543,6 @@ $as_echo "#define const /**/" >>confdefs.h
 fi
 
 
-works=no
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working volatile" >&5
-$as_echo_n "checking for working volatile... " >&6; }
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h.  */
-
-int
-main ()
-{
-volatile int x; x = 0;
-  ;
-  return 0;
-}
-_ACEOF
-if ac_fn_c_try_compile "$LINENO"; then :
-  works=yes
-else
-
-$as_echo "#define volatile /**/" >>confdefs.h
-
-
-fi
-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $works" >&5
-$as_echo "$works" >&6; }
-
 works=no
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working signed char" >&5
 $as_echo_n "checking for working signed char... " >&6; }
index a5da830e89623c46b263e38532c3785ff0d1ef0b..af1cb8cdd463b7250aea4ad49a3372c27d3d6260 100644 (file)
@@ -4080,14 +4080,6 @@ fi
 AC_C_CHAR_UNSIGNED
 AC_C_CONST
 
-works=no
-AC_MSG_CHECKING(for working volatile)
-AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[volatile int x; x = 0;]])],
-  [works=yes],
-  [AC_DEFINE(volatile, , [Define to empty if the keyword does not work.])]
-)
-AC_MSG_RESULT($works)
-
 works=no
 AC_MSG_CHECKING(for working signed char)
 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[signed char c;]])],
index 0dd05aa65b8a4f81a28227621047fc3bdba3778a..64b5f0371bd1de04d4360c57ffcd0f8751cc30a9 100644 (file)
 /* Define to 1 if you have the `sched_setscheduler' function. */
 #undef HAVE_SCHED_SETSCHEDULER
 
+/* Define to 1 if you have the `select' function. */
+#undef HAVE_SELECT
+
 /* Define to 1 if you have the `sem_getvalue' function. */
 #undef HAVE_SEM_GETVALUE
 
 /* Define to `int' if <sys/types.h> doesn't define. */
 #undef uid_t
 
-/* Define to empty if the keyword does not work. */
-#undef volatile
-
 
 /* Define the macros needed if on a UnixWare 7.x system. */
 #if defined(__USLC__) && defined(__SCO_VERSION__)