diff options
author | Brian Paul <brianp@vmware.com> | 2013-02-26 08:49:34 -0700 |
---|---|---|
committer | Andreas Boll <andreas.boll.dev@gmail.com> | 2013-04-19 21:26:48 +0200 |
commit | 4088317ab48ab67d61699cbd600ed248659c0b6a (patch) | |
tree | e2fe69e1347b1305f9e83f8152343dacb2580b17 | |
parent | 7be1c3e3bb6f4723b7eb89942e9fce39057369cf (diff) |
configure: remove FEATURE_GL/ES1/ES2
Not used anymore.
v2: Andreas Boll <andreas.boll.dev@gmail.com>
- split patch into two patches
-rw-r--r-- | configure.ac | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac index 50e60f623b..cdc8fd9144 100644 --- a/configure.ac +++ b/configure.ac @@ -677,17 +677,6 @@ if test "x$enable_opengl" = xno -a \ fi API_DEFINES="" -if test "x$enable_opengl" = xno; then - API_DEFINES="$API_DEFINES -DFEATURE_GL=0" -else - API_DEFINES="$API_DEFINES -DFEATURE_GL=1" -fi -if test "x$enable_gles1" = xyes; then - API_DEFINES="$API_DEFINES -DFEATURE_ES1=1" -fi -if test "x$enable_gles2" = xyes; then - API_DEFINES="$API_DEFINES -DFEATURE_ES2=1" -fi AC_SUBST([API_DEFINES]) AM_CONDITIONAL(HAVE_OPENGL, test "x$enable_opengl" = xyes) @@ -946,7 +935,7 @@ DRI_DIRS="" case "$with_dri_drivers" in no) ;; yes) - # classic DRI drivers require FEATURE_GL to build + # classic DRI drivers if test "x$enable_opengl" = xyes; then DRI_DIRS="yes" fi |