diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index ecfc72d14..83098b6ed 100644 --- a/configure.ac +++ b/configure.ac @@ -752,13 +752,6 @@ AC_LINK_IFELSE( [AC_DEFINE(HAVE_ATOMIC, 1, [Define to 1 if you have '__atomic' functions.])] ) -# Check for '__sync' compiler builtin atomic functions. -AC_LINK_IFELSE( - [AC_LANG_PROGRAM([[#include <stdint.h>]], - [[int val = 0; __sync_add_and_fetch(&val, 1);]])], - [AC_DEFINE(HAVE_SYNC_ATOMIC, 1, [Define to 1 if you have '__sync' functions.])] -) - # Prepare CFLAG_VISIBILITY to be used where needed gl_VISIBILITY() |