diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2009-02-16 09:28:35 -0800 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2009-02-16 09:28:35 -0800 |
commit | 252671f6ebd739a3ab2e53db441f076b5b702208 (patch) | |
tree | fb5714ebd0b675fb5e1eaf84620cbbea7f38c3aa /configure.ac | |
parent | 9d49802b7a3a1e292965098da41c459fabf84cc4 (diff) |
autoconf: Always enable glew
Maybe this should turn into an option (--disable-glew), but for now just
enable glew all the time.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 36b58598dc..2d48ccf63a 100644 --- a/configure.ac +++ b/configure.ac @@ -409,7 +409,7 @@ esac dnl dnl Driver specific build directories dnl -SRC_DIRS="mesa egl" +SRC_DIRS="mesa egl glew" GLU_DIRS="sgi" WINDOW_SYSTEM="" GALLIUM_DIRS="auxiliary drivers state_trackers" @@ -1006,7 +1006,7 @@ if test "x$enable_glut" = xyes && test "$mesa_driver" = osmesa; then fi if test "x$enable_glut" = xyes; then - SRC_DIRS="$SRC_DIRS glut/glx glew" + SRC_DIRS="$SRC_DIRS glut/glx" GLUT_CFLAGS="" if test "x$GCC" = xyes; then GLUT_CFLAGS="-fexceptions" |