mesa: drop use of shared variant (#20453)
Mesa no longer supports building static libraries so it doesn't even make sense to add the variant.
This commit is contained in:
parent
594512bdb3
commit
8755d577c9
1 changed files with 0 additions and 4 deletions
|
@ -198,7 +198,6 @@ def libs(self):
|
||||||
if libs_to_seek:
|
if libs_to_seek:
|
||||||
return find_libraries(list(libs_to_seek),
|
return find_libraries(list(libs_to_seek),
|
||||||
root=self.spec.prefix,
|
root=self.spec.prefix,
|
||||||
shared='+shared' in self.spec,
|
|
||||||
recursive=True)
|
recursive=True)
|
||||||
return LibraryList()
|
return LibraryList()
|
||||||
|
|
||||||
|
@ -206,19 +205,16 @@ def libs(self):
|
||||||
def osmesa_libs(self):
|
def osmesa_libs(self):
|
||||||
return find_libraries('libOSMesa',
|
return find_libraries('libOSMesa',
|
||||||
root=self.spec.prefix,
|
root=self.spec.prefix,
|
||||||
shared='+shared' in self.spec,
|
|
||||||
recursive=True)
|
recursive=True)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def glx_libs(self):
|
def glx_libs(self):
|
||||||
return find_libraries('libGL',
|
return find_libraries('libGL',
|
||||||
root=self.spec.prefix,
|
root=self.spec.prefix,
|
||||||
shared='+shared' in self.spec,
|
|
||||||
recursive=True)
|
recursive=True)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def gl_libs(self):
|
def gl_libs(self):
|
||||||
return find_libraries('libGL',
|
return find_libraries('libGL',
|
||||||
root=self.spec.prefix,
|
root=self.spec.prefix,
|
||||||
shared='+shared' in self.spec,
|
|
||||||
recursive=True)
|
recursive=True)
|
||||||
|
|
Loading…
Reference in a new issue