From: caro Date: Mon, 18 Jan 2010 18:16:50 +0000 (+0000) Subject: add stub Windows CE ecore_exe. Will be filled later X-Git-Tag: build/2012-07-04.173327~2265 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d0366bfef5440ed975f48814f49258aa3dc04e7a;p=profile%2Fivi%2Fecore.git add stub Windows CE ecore_exe. Will be filled later git-svn-id: http://svn.enlightenment.org/svn/e/trunk/ecore@45296 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/lib/ecore/Makefile.am b/src/lib/ecore/Makefile.am index cd72d32..af7d471 100644 --- a/src/lib/ecore/Makefile.am +++ b/src/lib/ecore/Makefile.am @@ -43,10 +43,18 @@ libecore_la_SOURCES += ecore_exe_win32.c else +if ECORE_HAVE_WINCE + +libecore_la_SOURCES += ecore_exe_wince.c + +else + libecore_la_SOURCES += ecore_exe.c endif +endif + libecore_la_LIBADD = @dlopen_libs@ @EINA_LIBS@ @EVIL_LIBS@ @GLIB_LIBS@ @WIN32_LIBS@ @LTLIBINTL@ @EFL_PTHREAD_LIBS@ -lm libecore_la_LDFLAGS = -no-undefined @lt_enable_auto_import@ -version-info @version_info@ @ecore_release_info@ diff --git a/src/lib/ecore/ecore_exe_wince.c b/src/lib/ecore/ecore_exe_wince.c new file mode 100644 index 0000000..2b2e60a --- /dev/null +++ b/src/lib/ecore/ecore_exe_wince.c @@ -0,0 +1,24 @@ +/* + * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 + */ + +#ifdef HAVE_CONFIG_H +# include +#endif + +#ifdef HAVE_EVIL +# include +#endif + +#include "Ecore.h" +#include "ecore_private.h" + +void +_ecore_exe_init(void) +{ +} + +void +_ecore_exe_shutdown(void) +{ +}