diff options
author | Matt Turner <[email protected]> | 2012-01-24 11:34:42 -0500 |
---|---|---|
committer | Matt Turner <[email protected]> | 2012-01-24 11:34:42 -0500 |
commit | 027ce0c493a85c863df88b43f61aea34bcd4cd58 (patch) | |
tree | f845bb4ce46ffe9dfa3e77ed88f51d4e354ade96 /src/glx/indirect.c | |
parent | a208468e04353239f2876cc2013f860b48a4f1c1 (diff) |
Revert "Always build shared glapi"
This reverts commit adefee50d954151f76150af80207081ae3c247d9.
Shared glapi was never tested with --enable-xlib-glx and turns out
to cause a lot of problems.
Conflicts:
configure.ac
Diffstat (limited to 'src/glx/indirect.c')
-rw-r--r-- | src/glx/indirect.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/glx/indirect.c b/src/glx/indirect.c index b8e14add410..a6b0c0d6dac 100644 --- a/src/glx/indirect.c +++ b/src/glx/indirect.c @@ -10672,6 +10672,8 @@ __indirect_glFramebufferTextureLayerEXT(GLenum target, GLenum attachment, } +#ifdef GLX_SHARED_GLAPI + static const struct proc_pair { const char *name; _glapi_proc proc; @@ -10727,6 +10729,8 @@ __indirect_get_proc_address(const char *name) return (pair) ? pair->proc : NULL; } +#endif /* GLX_SHARED_GLAPI */ + #undef FASTCALL #undef NOINLINE |