Rewrite glibc version check

This commit is contained in:
Martin Kroeker 2018-08-26 11:18:02 +02:00 committed by GitHub
parent 5991d1a6cd
commit b902a40986
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 2 deletions

View File

@ -73,8 +73,17 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "common.h" #include "common.h"
#if defined(USE_TLS) && ( !defined(__GLIBC_PREREQ) || (defined(__GLIBC_PREREQ) && __GLIBC_PREREQ(2,20))) #if defined(USE_TLS)
#warning "using tls version of memory.c" #define COMPILE_TLS
#if defined(__GLIBC_PREREQ)
#if !__GLIBC_PREREQ(2,20))
#undef COMPILE_TLS
#endif
#endif
#endif
#if defined(COMPILE_TLS)
#include <errno.h> #include <errno.h>
#if defined(OS_WINDOWS) && !defined(OS_CYGWIN_NT) #if defined(OS_WINDOWS) && !defined(OS_CYGWIN_NT)