From: Munkyu Im Date: Thu, 30 Jun 2016 11:18:43 +0000 (+0900) Subject: configure: change minimum macosx version X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~15^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a3a46e9c5ffa571754b9f5dfe2a696557ab0d9f;p=sdk%2Femulator%2Fqemu.git configure: change minimum macosx version @rpath is available from macosx 10.5 10.5 version is too low to support tizen sdk. 10.7 version might be the reasonable minimum version. Change-Id: Ic664b62543b154528a63cd53bb38b9e0b72d3b02 Signed-off-by: Munkyu Im --- diff --git a/tizen/emulator_configure.sh b/tizen/emulator_configure.sh index bb6e040602..c812ffdf44 100755 --- a/tizen/emulator_configure.sh +++ b/tizen/emulator_configure.sh @@ -190,7 +190,7 @@ export PKG_CONFIG_PATH=${TIZEN_SDK_DEV_PATH}/lib/pkgconfig else export PKG_CONFIG_PATH=${TIZEN_SDK_DEV_PATH}/lib/pkgconfig:${PKG_CONFIG_PATH} fi - +echo "PKG_CONFIG_PATH:" $PKG_CONFIG_PATH case $targetos in Linux*) cd .. @@ -232,7 +232,8 @@ echo "##### QEMU configuring for emulator" echo "##### QEMU configure append:" $CONFIGURE_APPEND ./configure \ --enable-werror \ - --extra-cflags=-mmacosx-version-min=10.4 \ + --extra-cflags=-mmacosx-version-min=10.7 \ + --extra-cflags=-Wno-deprecated-declarations \ --audio-drv-list=coreaudio \ --enable-shm \ --enable-hax \