summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorGiWoong Kim <giwoong.kim@samsung.com>2016-01-05 16:40:35 +0900
committerGiWoong Kim <giwoong.kim@samsung.com>2016-01-06 20:05:56 +0900
commit87e81feb0726712a50e1f5c75d4bf967971677b1 (patch)
treed5813a3aa0cb332127a871ec312ff032809a2ac1 /configure
parent346ee8b1ee5cccd871ba7bc2c0a78c4e98d88748 (diff)
downloadqemu-87e81feb0726712a50e1f5c75d4bf967971677b1.tar.gz
qemu-87e81feb0726712a50e1f5c75d4bf967971677b1.tar.bz2
qemu-87e81feb0726712a50e1f5c75d4bf967971677b1.zip
gui: delete deprecated SWT GUI
- maru_sdl, maru_shm options - related source code Change-Id: I5d2444982753e909170af6b5a15eb688d916eadf Signed-off-by: GiWoong Kim <giwoong.kim@samsung.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure25
1 files changed, 0 insertions, 25 deletions
diff --git a/configure b/configure
index f6f3b1d0e5..5cdaaab527 100755
--- a/configure
+++ b/configure
@@ -356,8 +356,6 @@ libtizenusb="no"
# for TIZEN-maru
maru="no"
winver="0x501"
-java_ui="no"
-shm="no"
libav=""
libpng="no"
dxva2=""
@@ -1223,10 +1221,6 @@ for opt do
;;
--winver=*) winver="$optarg"
;;
- --enable-java-ui) java_ui="yes"
- ;;
- --enable-shm) shm="yes"
- ;;
--enable-libav) libav="yes"
;;
--disable-libav) libav="no"
@@ -1479,8 +1473,6 @@ disabled with --disable-FEATURE, default is enabled if available:
TIZEN-maru options:
--enable-maru enable maru board
--winver=WINVER set WINVER
- --enable-java-ui enable java UI
- --enable-shm enable shared memory for framebuffer
--enable-libav enable libav library
--disable-libav disable libav library
--enable-libpng enable png library
@@ -5199,8 +5191,6 @@ echo "maru enabled $maru"
if test "$mingw32" = "yes"; then
echo "WINVER $winver"
fi
-echo "Java UI enabled $java_ui"
-echo "shared framebuffer enabled $shm"
echo "libav support $libav"
echo "libpng support $libpng"
echo "DXVA2 support $dxva2"
@@ -6304,21 +6294,6 @@ fi
if test "$maru" = "yes" ; then
echo "CONFIG_MARU=y" >> $config_host_mak
-# java ui is deprecated
- if test "$java_ui" = "yes" ; then
- if test "$shm" = "yes" || test "$sdl" = "yes" ; then
- echo "CONFIG_JAVA_UI=y" >> $config_host_mak
- else
- error_exit "Java UI is only available with SDL or SHM"
- fi
- fi
- if test "$shm" = "yes" ; then
- if test "$java_ui" = "yes" ; then
- echo "CONFIG_USE_SHM=y" >> $config_host_mak
- else
- error_exit "SHM is only available with Java UI"
- fi
- fi
if test "$libav" = "yes" ; then
echo "CONFIG_LIBAV=y" >> $config_host_mak
echo "LIBAV_CFLAGS=$libav_cflags" >> $config_host_mak