From: Oliver Kurth Date: Mon, 26 Feb 2018 20:29:03 +0000 (-0800) Subject: Remove GLIBC_VERSION_NN macros X-Git-Tag: stable-10.3.0~119 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cbdbeef4b6c3454f58e9733079140edcc30fdb2a;p=thirdparty%2Fopen-vm-tools.git Remove GLIBC_VERSION_NN macros No existing usages. Astute observers will note we currently use glibc-2.5 minimum (so all but one of these macros are ALWAYS defined). --- diff --git a/open-vm-tools/lib/include/vm_basic_defs.h b/open-vm-tools/lib/include/vm_basic_defs.h index b36250d10..643dedb14 100644 --- a/open-vm-tools/lib/include/vm_basic_defs.h +++ b/open-vm-tools/lib/include/vm_basic_defs.h @@ -565,29 +565,6 @@ typedef int pid_t; #endif #endif -#if defined __linux__ && !defined __KERNEL__ && !defined MODULE && \ - !defined VMM && !defined FROBOS && !defined __ANDROID__ -#include -#if __GLIBC_PREREQ(2, 1) && !defined GLIBC_VERSION_21 -#define GLIBC_VERSION_21 -#endif -#if __GLIBC_PREREQ(2, 2) && !defined GLIBC_VERSION_22 -#define GLIBC_VERSION_22 -#endif -#if __GLIBC_PREREQ(2, 3) && !defined GLIBC_VERSION_23 -#define GLIBC_VERSION_23 -#endif -#if __GLIBC_PREREQ(2, 4) && !defined GLIBC_VERSION_24 -#define GLIBC_VERSION_24 -#endif -#if __GLIBC_PREREQ(2, 5) && !defined GLIBC_VERSION_25 -#define GLIBC_VERSION_25 -#endif -#if __GLIBC_PREREQ(2, 12) && !defined GLIBC_VERSION_212 -#define GLIBC_VERSION_212 -#endif -#endif - /* * Convenience definitions of unicode characters. */