Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guillaume Martres
aom-rav1e
Commits
a24e2438
Commit
a24e2438
authored
May 07, 2014
by
Johann
Committed by
Gerrit Code Review
May 07, 2014
Browse files
Merge "Don't try to use getenv on windows phone/rt"
parents
928ff038
20babf6d
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpx_ports/arm_cpudetect.c
View file @
a24e2438
...
...
@@ -12,6 +12,13 @@
#include <string.h>
#include "arm.h"
#ifdef WINAPI_FAMILY
#include <winapifamily.h>
#if !WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
#define getenv(x) NULL
#endif
#endif
static
int
arm_cpu_env_flags
(
int
*
flags
)
{
char
*
env
;
env
=
getenv
(
"VPX_SIMD_CAPS"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment