diff options
author | Eric Anholt <[email protected]> | 2012-06-12 13:37:58 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-06-21 10:10:46 -0700 |
commit | 37c3cbe053809c7d615f86cde0599175c6d83545 (patch) | |
tree | 8b0c8dfa29ab3879474ebc7fd8b061399bb344f2 /configs | |
parent | 4113ac6a0f13338ee5f9c5fa0be13f37b515108d (diff) |
dricore: Turn it into a normal library.
Our intention is still that it's not abi stable, so make the package
version number get included in the library name. Now you can parallel
install dricore-using drivers from multiple mesa versions. We can put
it into lib now that we're following library versioning rules
(assuming that ABIs don't change within a single Mesa point release).
LD_LIBRARY_PATH still doesn't work with a non-/, non-/usr prefix
because libtool uses rpath instead of runpath for nonstandard
prefixes.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/current.in | 4 | ||||
-rw-r--r-- | configs/default | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/configs/current.in b/configs/current.in index 6deedaa5e5a..f4858bdfa60 100644 --- a/configs/current.in +++ b/configs/current.in @@ -41,8 +41,6 @@ LLVM_LIBS = @LLVM_LIBS@ LLVM_INCLUDEDIR = @LLVM_INCLUDEDIR@ GLW_CFLAGS = @GLW_CFLAGS@ GLX_TLS = @GLX_TLS@ -DRI_CFLAGS = @DRI_CFLAGS@ -DRI_CXXFLAGS = @DRI_CXXFLAGS@ # dlopen DLOPEN_LIBS = @DLOPEN_LIBS@ @@ -124,8 +122,6 @@ GALLIUM_DRIVERS = $(foreach DIR,$(GALLIUM_DRIVERS_DIRS),$(TOP)/src/gallium/drive # Driver specific build vars DRI_DIRS = @DRI_DIRS@ -DRICORE_LIBS = @DRICORE_LIBS@ -DRICORE_LIB_DEPS = @DRICORE_LIB_DEPS@ EGL_PLATFORMS = @EGL_PLATFORMS@ EGL_CLIENT_APIS = @EGL_CLIENT_APIS@ diff --git a/configs/default b/configs/default index bf67d347fe4..734b2f62e89 100644 --- a/configs/default +++ b/configs/default @@ -83,9 +83,6 @@ GLESv2_LIB_GLOB = $(GLESv2_LIB_NAME)* VG_LIB_GLOB = $(VG_LIB_NAME)* GLAPI_LIB_GLOB = $(GLAPI_LIB_NAME)* -DRI_CFLAGS = $(CFLAGS) -DRI_CXXFLAGS = $(CXXFLAGS) - # Optional assembly language optimization files for libGL MESA_ASM_FILES = |