diff options
author | Eric Anholt <[email protected]> | 2010-08-22 17:34:18 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-08-22 17:36:51 -0700 |
commit | 639cdd3782c40c422c33c907949376c735d9340c (patch) | |
tree | 30914b597b3fa15ffe443cb37a41779bcef61673 /configs/autoconf.in | |
parent | 8ffc3572281c24d1f97b3c119117918dca80f53e (diff) |
mesa: AC_SUBST the talloc libs/cflags so the ./configure results are saved.
I had used pkg-config from the Makefile because I didn't want to screw
around with the non-autoconf build, but that doesn't work because the
PKG_CONFIG_PATH or TALLOC_LIBS/TALLOC_CFLAGS that people set at
configure time needs to be respected and may not be present at build
time.
Bug #29585
Diffstat (limited to 'configs/autoconf.in')
-rw-r--r-- | configs/autoconf.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configs/autoconf.in b/configs/autoconf.in index c7611a6f781..305a3a4c3f7 100644 --- a/configs/autoconf.in +++ b/configs/autoconf.in @@ -34,6 +34,9 @@ LLVM_LIBS = @LLVM_LIBS@ GLW_CFLAGS = @GLW_CFLAGS@ GLUT_CFLAGS = @GLUT_CFLAGS@ +TALLOC_LIBS = @TALLOC_LIBS@ +TALLOC_FLAGS = @TALLOC_CFLAGS@ + # dlopen DLOPEN_LIBS = @DLOPEN_LIBS@ |