-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes audiostream recipe on Python3 #1495
Conversation
With kivy/audiostream#24 that is been merged, now for me it's ok to merge also this recipe. |
|
||
env['CFLAGS'] += ' -I{jni_path}/{sdl_include}/include -I{jni_path}/{sdl_mixer_include}'.format( | ||
jni_path=join(self.ctx.bootstrap.build_dir, 'jni'), | ||
sdl_include=sdl_include, | ||
sdl_mixer_include=sdl_mixer_include) | ||
env['NDKPLATFORM'] = self.ctx.ndk_platform | ||
env['LIBLINK'] = 'NOTNONE' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you tell us about that line?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Audiostream setup.py checks for env variable 'LIBLINK' in order to set android as build target.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR!
It's already an improvement over what we had before so I'm in for the merge.
Can you simply address that minor question regarding the LIBLINK
environment variable?
If some code comment could help future maintainer to understand why is this, feel free to add it 😉
This PR adds python3 support to audiostream recipe.
Before merging we need to merge kivy/audiostream#24 .