#include <unicode/ucnv.h>
#endif
-#ifdef __GLIBC__
-#include <gnu/libc-version.h>
-#endif
-
#ifdef WIN32
/*
* This Windows file defines StrNCpy. We don't need it here, so we undefine
char *
get_collation_actual_version(char collprovider, const char *collcollate)
{
- char *collversion = NULL;
+ char *collversion;
#ifdef USE_ICU
if (collprovider == COLLPROVIDER_ICU)
}
else
#endif
- if (collprovider == COLLPROVIDER_LIBC)
- {
-#if defined(__GLIBC__)
- /* Use the glibc version because we don't have anything better. */
- collversion = pstrdup(gnu_get_libc_version());
-#endif
- }
+ collversion = NULL;
return collversion;
}