diff options
author | Kenneth Graunke <[email protected]> | 2011-01-16 16:01:54 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2011-01-31 10:17:09 -0800 |
commit | d1d8120545b0bd2f7ec48c5f03c77b967b082e04 (patch) | |
tree | f26fd61d842bb696e78161377f1e8e3b10c333ca /configs/default | |
parent | 42fd9c2ebb8a9eecf69d6a7a2bc0d778f49285de (diff) |
Remove talloc from the make and automake build systems.
Diffstat (limited to 'configs/default')
-rw-r--r-- | configs/default | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/configs/default b/configs/default index 9030cf5b9df..b05e9fffc6b 100644 --- a/configs/default +++ b/configs/default @@ -86,9 +86,6 @@ GLESv2_LIB_GLOB = $(GLESv2_LIB_NAME)* VG_LIB_GLOB = $(VG_LIB_NAME)* GLAPI_LIB_GLOB = $(GLAPI_LIB_NAME)* -TALLOC_LIBS = `pkg-config --libs talloc` -TALLOC_CFLAGS = `pkg-config --cflags talloc` - # Optional assembly language optimization files for libGL MESA_ASM_SOURCES = @@ -123,7 +120,7 @@ EGL_CLIENT_APIS = $(GL_LIB) # Library dependencies #EXTRA_LIB_PATH ?= -GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lm -lpthread $(TALLOC_LIBS) +GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lm -lpthread EGL_LIB_DEPS = $(EXTRA_LIB_PATH) -ldl -lpthread OSMESA_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) GLU_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm |