mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1119921 - Fix "$ANDROID_VERSION" comparison tests. r=nalexander
--HG-- extra : amend_source : 50fa678c38bac71807cd09991d1b4239b5f666b9
This commit is contained in:
parent
f67be0ccdd
commit
073710992b
@ -334,7 +334,7 @@ fi
|
|||||||
# Even after dropping 10.6 support, MOZ_PIE would not be useful since it's the
|
# Even after dropping 10.6 support, MOZ_PIE would not be useful since it's the
|
||||||
# default (and clang says the -pie option is not used).
|
# default (and clang says the -pie option is not used).
|
||||||
# On other Unix systems, some file managers (Nautilus) can't start PIE programs
|
# On other Unix systems, some file managers (Nautilus) can't start PIE programs
|
||||||
if test -n "$gonkdir" -a "$ANDROID_VERSION" -ge 16; then
|
if test -n "$gonkdir" && test "$ANDROID_VERSION" -ge 16; then
|
||||||
MOZ_PIE=1
|
MOZ_PIE=1
|
||||||
else
|
else
|
||||||
MOZ_PIE=
|
MOZ_PIE=
|
||||||
|
@ -5085,7 +5085,7 @@ if test -n "$MOZ_WEBRTC"; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
dnl Temporary until webrtc works on gonk-L
|
dnl Temporary until webrtc works on gonk-L
|
||||||
if test -n "$gonkdir" -a "$ANDROID_VERSION" -ge 21; then
|
if test -n "$gonkdir" && test "$ANDROID_VERSION" -ge 21; then
|
||||||
MOZ_WEBRTC=
|
MOZ_WEBRTC=
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user