Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Fix #28 #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,14 +232,14 @@ def run(self):
)
)
elif sys.platform.startswith('darwin'):
sb_include_dirs.append('/System/Library/Frameworks/OpenAL.framework/Versions/A/Headers')
sb_include_dirs.append('/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenAL.framework/Headers')
ext_modules.append(
Extension(
name='sphinxbase._ad_openal',
sources=['swig/sphinxbase/ad_openal.i', 'deps/sphinxbase/src/libsphinxad/ad_openal.c'],
swig_opts=sb_swig_opts,
include_dirs=sb_include_dirs,
extra_objects=['/System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL'],
extra_objects=['/System/Library/Frameworks/OpenAL.framework/OpenAL'],
define_macros=define_macros,
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args
Expand Down