mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1040413 - Do not cast ANDROID_VERSION to int; r=nalexander
Ideally it should be converted to an int. But empty variables need to work. The rest of the tree uses string comparisons. --HG-- extra : rebase_source : 16701034df6b5047bcd7ca529785ee97b76412ed extra : amend_source : 9c1cc54c1820dccae514ad06dac5677710e9a8f0
This commit is contained in:
parent
27213f8307
commit
f0906d7f80
@ -48,7 +48,7 @@ if 'rtsp' in CONFIG['NECKO_PROTOCOLS']:
|
||||
'RtspOmxReader.cpp',
|
||||
]
|
||||
|
||||
if int(CONFIG['ANDROID_VERSION']) >= 16:
|
||||
if CONFIG['ANDROID_VERSION'] >= '16':
|
||||
EXPORTS += [
|
||||
'I420ColorConverterHelper.h',
|
||||
'MediaCodecDecoder.h',
|
||||
|
Loading…
Reference in New Issue
Block a user