diff options
author | Brian <[email protected]> | 2007-07-03 10:03:01 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-03 10:03:01 -0600 |
commit | cc7cee3f4840ca9bb3f8b812ab2888cf5bb80b03 (patch) | |
tree | 41f48ff020cf9dc9f39956065451034a80fc6bc6 /src | |
parent | d7062710cd51d16dc9319b365d152edb225ad093 (diff) |
Revert the version of libOSMesa.so to 6.5.3 to avoid linking issues that were caused by bumping to 7.0
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile index c03c5f80ff2..eadd7f281a6 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -117,17 +117,16 @@ $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME): $(STAND_ALONE_OBJECTS) $(MKLIB_OPTIONS) $(GL_LIB_DEPS) $(STAND_ALONE_OBJECTS) # Make the OSMesa library +# Note: version is kept at 6.5.3 to simplify app/linking issues $(TOP)/$(LIB_DIR)/$(OSMESA_LIB_NAME): $(OSMESA_DRIVER_OBJECTS) $(OSMESA16_OBJECTS) @ if [ "${DRIVER_DIRS}" = "osmesa" ] ; then \ $(TOP)/bin/mklib -o $(OSMESA_LIB) -linker '$(CC)' \ - -major $(MESA_MAJOR) \ - -minor $(MESA_MINOR) -patch $(MESA_TINY) \ + -major 6 -minor 5 -patch 3 \ -install $(TOP)/$(LIB_DIR) $(MKLIB_OPTIONS) \ $(OSMESA_LIB_DEPS) $(OSMESA16_OBJECTS) ; \ else \ $(TOP)/bin/mklib -o $(OSMESA_LIB) -linker '$(CC)' \ - -major $(MESA_MAJOR) \ - -minor $(MESA_MINOR) -patch $(GL_TINY) \ + -major 6 -minor 5 -patch 3 \ -install $(TOP)/$(LIB_DIR) $(MKLIB_OPTIONS) \ $(OSMESA_LIB_DEPS) $(OSMESA_DRIVER_OBJECTS) ; \ fi |