summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2012-09-06 16:17:21 -0700
committerMatt Turner <mattst88@gmail.com>2012-09-06 16:20:18 -0700
commit058fb0071639d076a850dd29120a232fe7fdbce6 (patch)
treebaa50845a76f814104ace802cb539141f55a0ca0
parent78a34d868d3c8704a57aa2fb934233ca6c880a5f (diff)
build: Disable building of d3d1x
It's broken and unmaintained, and I'm tired of seeing bug reports about it.
-rw-r--r--configure.ac12
1 files changed, 7 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 6e67ec039e9..f7f1605a403 100644
--- a/configure.ac
+++ b/configure.ac
@@ -563,11 +563,13 @@ AC_ARG_ENABLE([xa],
[enable build of the XA X Acceleration API @<:@default=no@:>@])],
[enable_xa="$enableval"],
[enable_xa=no])
-AC_ARG_ENABLE([d3d1x],
- [AS_HELP_STRING([--enable-d3d1x],
- [enable support for Direct3D 10 & 11 low-level API @<:@default=no@:>@])],
- [enable_d3d1x="$enableval"],
- [enable_d3d1x=no])
+dnl Broken, unmaintained. Don't want to see bug reports about it without patches.
+enable_d3d1x=no
+dnl AC_ARG_ENABLE([d3d1x],
+dnl [AS_HELP_STRING([--enable-d3d1x],
+dnl [enable support for Direct3D 10 & 11 low-level API @<:@default=no@:>@])],
+dnl [enable_d3d1x="$enableval"],
+dnl [enable_d3d1x=no])
AC_ARG_ENABLE([gbm],
[AS_HELP_STRING([--enable-gbm],
[enable gbm library @<:@default=auto@:>@])],