diff options
author | Eric Anholt <eric@anholt.net> | 2008-10-06 17:00:08 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2008-10-06 17:26:43 -0700 |
commit | 3a4151b69daa478ac6edf042d604ee41e8429c0d (patch) | |
tree | fff1ba0ece972c7b593a01ae7f3bc9681d63aae5 /Makefile.am | |
parent | 3621183cf4acef23414e8d69c34b1e587f52ec67 (diff) |
Fix driver build against server 1.4.2.
This disables UXA and DRM modesetting pre-1.5, due to privates handling
issues.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 5db07de9..896427f3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -19,7 +19,12 @@ # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. AUTOMAKE_OPTIONS = foreign -SUBDIRS = uxa src man + +if BUILD_UXA +UXA_DIR = uxa +endif + +SUBDIRS = $(UXA_DIR) src man EXTRA_DIST = README DISTCLEANFILES = doltcompile |