diff options
author | Chia-I Wu <[email protected]> | 2010-01-21 17:58:28 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-01-26 11:03:54 +0800 |
commit | 146931769c75978c58ac0088e8ab630fc41074ec (patch) | |
tree | ac730ac643d0ce39fd9ff86ae0c3d5b9fc840647 /configure.ac | |
parent | a6342afe502fe52190be4d97df58eb3406b70246 (diff) |
glx: Build GLX normally.
GLX was built specially and before Mesa core because libglapi.a could
not be built with IN_DRI_DRIVER defined. This is no longer the case
since 6e99e6ddbf488f6955e34ef0bc438fdcb4d90f74.
It works fine in my (limited) testing with both direct and indirect
rendering. I also compare the outputs after preprocessing (gcc -E) with
or without this commit, and they are identical.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 6f8b76d7ca9..10e0bd47aba 100644 --- a/configure.ac +++ b/configure.ac @@ -445,7 +445,7 @@ xlib) GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS xlib" ;; dri) - CORE_DIRS="glx/x11 $CORE_DIRS" + SRC_DIRS="$SRC_DIRS glx/x11" DRIVER_DIRS="dri" WINDOW_SYSTEM="dri" GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS drm" |