mesa: use #if over #ifdef in the FEATURE_ES1 check to fix a build failure.

mfeatures.h will define FEATURE_ES1 to 0 if it's not defined yet.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=53664

Signed-off-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
Tilman Sauerbeck 2012-08-18 11:51:22 +02:00 committed by Brian Paul
parent 5b542681dc
commit d0ace4e949

View file

@ -1,7 +1,7 @@
#include <stdbool.h>
#include "main/mfeatures.h"
#ifdef FEATURE_ES1
#if FEATURE_ES1
#include "api_loopback.h"
#include "api_exec.h"