diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2010-08-30 12:41:16 +0100 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-08-30 13:41:39 -0700 |
commit | e637f8b40c426d6ae79e0215fa8865d50326812f (patch) | |
tree | b78741ce6a3347f36234d8d1d9f182defbd85acb /configure.ac | |
parent | 6356303de63c170a63c35f2b1edec76d9f8eba45 (diff) |
Add talloc to osmesa library dependencies
also link osmesa with C++ standard libraries, as it now contains C++ code
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
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 757571a9bf..45188544fb 100644 --- a/configure.ac +++ b/configure.ac @@ -935,12 +935,12 @@ case "$DRIVER_DIRS" in *osmesa*) # only link libraries with osmesa if shared if test "$enable_static" = no; then - OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS" + OSMESA_LIB_DEPS="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS $TALLOC_LIBS" else OSMESA_LIB_DEPS="" fi OSMESA_MESA_DEPS="" - OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS" + OSMESA_PC_LIB_PRIV="-lm -lpthread $SELINUX_LIBS $DLOPEN_LIBS $TALLOC_LIBS" ;; esac AC_SUBST([OSMESA_LIB_DEPS]) |