summaryrefslogtreecommitdiff
path: root/m4/evil_windows.m4
diff options
context:
space:
mode:
authorVincent Torri <vincent.torri@univ-evry.fr>2015-01-23 17:18:23 +0100
committerCedric BAIL <cedric@osg.samsung.com>2015-01-24 12:33:27 +0100
commit546d87c8b5de547a6ecbe579a08910981deac8a0 (patch)
tree18ecef5788a4cfb5623bafe852adc61a5787a799 /m4/evil_windows.m4
parentc6e70107dcaff51ca782ed747fbc574e3ab9bb62 (diff)
downloadefl-546d87c8b5de547a6ecbe579a08910981deac8a0.tar.gz
autotools: remove some Windows CE bits.
We actually do not support Windows CE and don't plan to. Let's remove that from our configure. Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
Diffstat (limited to 'm4/evil_windows.m4')
-rw-r--r--m4/evil_windows.m414
1 files changed, 5 insertions, 9 deletions
diff --git a/m4/evil_windows.m4 b/m4/evil_windows.m4
index 12c8ff8c04..c59e95dfd3 100644
--- a/m4/evil_windows.m4
+++ b/m4/evil_windows.m4
@@ -12,23 +12,19 @@ AC_DEFUN([EFL_SELECT_WINDOWS_VERSION],
dnl configure option
AC_ARG_WITH([windows-version],
- [AC_HELP_STRING([--with-windows-version], [select the target Windows version (xp, vista or win7) @<:@default=xp@:>@])],
+ [AC_HELP_STRING([--with-windows-version], [select the target Windows version (xp, vista or win7) @<:@default=win7@:>@])],
[
if test "x${with_windows_version}" = "xvista" ; then
_winver="vista"
else
- if test "x${with_windows_version}" = "xwin7" ; then
- _winver="win7"
+ if test "x${with_windows_version}" = "xxp" ; then
+ _winver="xp"
else
- if test "x${with_windows_version}" = "ce" ; then
- _winver="ce"
- else
- _winver="xp"
- fi
+ _winver="win7"
fi
fi
],
- [_winver="xp"])
+ [_winver="win7"])
AC_MSG_CHECKING([which Windows version to target])
AC_MSG_RESULT([${_winver}])