don't have secure_getenv()

Index: thirdparty/openxr/src/common/platform_utils.hpp
--- thirdparty/openxr/src/common/platform_utils.hpp.orig
+++ thirdparty/openxr/src/common/platform_utils.hpp
@@ -95,7 +95,7 @@ static inline int ImplSetEnv(const char* name, const c
 
 static inline char* ImplGetSecureEnv(const char* name) {
 #ifdef HAVE_SECURE_GETENV
-    return secure_getenv(name);
+    return getenv(name);
 #elif defined(HAVE___SECURE_GETENV)
     return __secure_getenv(name);
 #else
