[vlc-devel] [PATCH 12/12] configure.ac: Do not generate invalid pragmas on MSVC

Hugo Beauzée-Luyssen hugo at beauzee.fr
Thu Oct 23 12:17:52 CEST 2014


---
 configure.ac | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 44e5bdf..9c3c52c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -999,8 +999,13 @@ AS_IF([test "${enable_optimizations}" != "no"], [
   AS_IF([test "${ac_cv_c_fast_math}" = "no"], [VLC_RESTORE_FLAGS])
   AH_BOTTOM([
 #ifndef __FAST_MATH__
-# pragma STDC FENV_ACCESS OFF
-# pragma STDC FP_CONTRACT ON
+# ifndef _MSC_VER
+#  pragma STDC FENV_ACCESS OFF
+#  pragma STDC FP_CONTRACT ON
+# else
+#  pragma fenv_access(off)
+#  pragma fp_contract(on)
+# endif
 #endif
 ])
 
-- 
2.1.1




More information about the vlc-devel mailing list