diff options
author | Jeremy Huddleston Sequoia <[email protected]> | 2015-02-11 02:32:33 -0800 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-05-20 21:56:32 +0100 |
commit | 06ff751f97fbeb62a23936cd8f9c54733920d082 (patch) | |
tree | 324665aae37da71c949b18afc47a15ddad0219ba /src/mesa/drivers/osmesa | |
parent | 31cd2d75dc3844e40143f649fe383de17c152a13 (diff) |
darwin: Fix install name of libOSMesa
Passing -module to glibtool causes the resulting library to be called
libSomething.so rather than libSomething.dylib on darwin.
Regardless if libOSMesa is a library or a module, it has been used as
the former for quite some time. Update the build to reflect that and
resolve the naming issue.
Cc: "10.5 10.6" <[email protected]>
Signed-off-by: Jeremy Huddleston Sequoia <[email protected]>
[Emil Velikov: Tweak the commit message.]
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/drivers/osmesa')
-rw-r--r-- | src/mesa/drivers/osmesa/Makefile.am | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/drivers/osmesa/Makefile.am b/src/mesa/drivers/osmesa/Makefile.am index 9a388d64cd5..46332e16bd1 100644 --- a/src/mesa/drivers/osmesa/Makefile.am +++ b/src/mesa/drivers/osmesa/Makefile.am @@ -39,7 +39,6 @@ nodist_EXTRA_lib@OSMESA_LIB@_la_SOURCES = dummy.cpp lib@OSMESA_LIB@_la_SOURCES = osmesa.c lib@OSMESA_LIB@_la_LDFLAGS = \ - -module \ -no-undefined \ -version-number @OSMESA_VERSION@ \ $(GC_SECTIONS) \ |