From: SeokYeon Hwang Date: Fri, 1 Jul 2016 05:28:35 +0000 (+0900) Subject: build: add -Wno-error=deprecated-declarations for recent glib X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.1~15^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=826ef1627fe1a57b08669cb7bbd3094f7fedd3a9;p=sdk%2Femulator%2Fqemu.git build: add -Wno-error=deprecated-declarations for recent glib Change-Id: I509ac53971101779915fe5115b22d1959ba411b8 Signed-off-by: SeokYeon Hwang --- diff --git a/configure b/configure index 66d8831b1a..a4facfd0fc 100755 --- a/configure +++ b/configure @@ -4678,7 +4678,7 @@ if test "$yagl" = "yes" ; then if test "$linux" = "yes" ; then LIBS="-lGLU -ldl $LIBS" elif test "$mingw32" = "yes" ; then - LIBS="-lopengl32 -lglu32 $LIBS" + LIBS="-lopengl32 -lgdi32 -lglu32 $LIBS" elif test "$darwin" = "yes" ; then LIBS="-framework OpenGL -framework AGL -framework GLUT $LIBS" else diff --git a/tizen/emulator_configure.sh b/tizen/emulator_configure.sh index c812ffdf44..df17a03ac5 100755 --- a/tizen/emulator_configure.sh +++ b/tizen/emulator_configure.sh @@ -217,6 +217,7 @@ exec ./configure \ --extra-cflags=-Wno-error=format \ --extra-cflags=-Wno-error=format-extra-args \ --extra-cflags=-Wno-error=redundant-decls \ + --extra-cflags=-Wno-error=deprecated-declarations \ --extra-ldflags=-Wl,--large-address-aware \ --cc=gcc \ --audio-drv-list=winwave \