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>
This commit is contained in:
Vincent Torri 2015-01-23 17:18:23 +01:00 committed by Cedric BAIL
parent c6e70107dc
commit 546d87c8b5
2 changed files with 5 additions and 30 deletions

View File

@ -12,23 +12,19 @@ AC_DEFUN([EFL_SELECT_WINDOWS_VERSION],
dnl configure option dnl configure option
AC_ARG_WITH([windows-version], 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 if test "x${with_windows_version}" = "xvista" ; then
_winver="vista" _winver="vista"
else else
if test "x${with_windows_version}" = "xwin7" ; then if test "x${with_windows_version}" = "xxp" ; then
_winver="win7" _winver="xp"
else else
if test "x${with_windows_version}" = "ce" ; then _winver="win7"
_winver="ce"
else
_winver="xp"
fi
fi fi
fi fi
], ],
[_winver="xp"]) [_winver="win7"])
AC_MSG_CHECKING([which Windows version to target]) AC_MSG_CHECKING([which Windows version to target])
AC_MSG_RESULT([${_winver}]) AC_MSG_RESULT([${_winver}])

View File

@ -1,21 +0,0 @@
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#ifdef HAVE_EVIL
# include <Evil.h>
#endif
#include "Ecore.h"
#include "ecore_private.h"
void
_ecore_exe_init(void)
{
}
void
_ecore_exe_shutdown(void)
{
}