Skip to content

Commit

Permalink
aedi: link *zdoom targets with zlib explicitly
Browse files Browse the repository at this point in the history
gzdoom no longer depends on zlib while zmusic still does, but it doesn't pull zlib as dependency
  • Loading branch information
alexey-lysiuk committed Sep 21, 2023
1 parent 6d66739 commit 05e8eb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aedi/target/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ def __init__(self, name=None):

def configure(self, state: BuildState):
pkg_config_args = ['--libs', 'openal', 'sndfile']
linker_flags = ''
linker_flags = f'{state.lib_path}/libz.a '

if state.quasi_glib:
linker_flags = '-lquasi-glib '
linker_flags += '-lquasi-glib '
else:
pkg_config_args.append('glib-2.0')

Expand Down

0 comments on commit 05e8eb3

Please sign in to comment.