diff options
author | George Sapountzis <[email protected]> | 2008-04-18 17:34:24 +0300 |
---|---|---|
committer | George Sapountzis <[email protected]> | 2008-04-23 11:12:30 +0300 |
commit | 32a2a095f4d8e3be7fa2807cb436bd09e8eb5a75 (patch) | |
tree | 79a7f3b191cd6370d357a2da243edcf24068b59e /configure.ac | |
parent | b3efd35f4bdd62cf36b6f59be602fa8781db9b89 (diff) |
glcore: build from mesa
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 8566384e0c8..8f5f0a7cef3 100644 --- a/configure.ac +++ b/configure.ac @@ -387,6 +387,7 @@ xlib) GL_LIB_DEPS="$X_LIBS -lX11 -lXext" fi GL_LIB_DEPS="$GL_LIB_DEPS $SELINUX_LIBS -lm -lpthread" + GLCORE_LIB_DEPS="" # if static, move the external libraries to the programs # and empty the libraries for libGL @@ -418,13 +419,16 @@ dri) # need DRM libs, -lpthread, etc. GL_LIB_DEPS="$GL_LIB_DEPS $LIBDRM_LIBS -lm -lpthread $DLOPEN_LIBS" + GLCORE_LIB_DEPS="-lm -lpthread $DLOPEN_LIBS" ;; osmesa) # No libGL for osmesa GL_LIB_DEPS="" + GLCORE_LIB_DEPS="" ;; esac AC_SUBST(GL_LIB_DEPS) +AC_SUBST(GLCORE_LIB_DEPS) dnl dnl More X11 setup |