About ephoto on Windows, once the ecore_con branch is pushed, and some
modifications in build and code, see attached screenshot
diff:
1) Evl must be linked
2) lstat() does not exist on windows, switch to stat() on Windows
Here is the diff, modify it as you like
diff --git a/configure.ac b/configure.ac
index 13c3707..35cb7ac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -53,18 +53,13 @@ fi
AM_CONDITIONAL([HAVE_PO], [test "x${have_po}" = "xyes"])
-PKG_CHECK_MODULES([EFL], [
- eina >= 1.18.0
- evas >= 1.18.0
- ecore >= 1.18.0
- ecore-file >= 1.18.0
- ecore-ipc >= 1.18.0
- edje >= 1.18.0
- eo >= 1.18.0
- eio >= 1.18.0
- elementary >= 1.18.0
- efreet-mime >= 1.18.0
-])
+requirements="eina >= 1.18.0 evas >= 1.18.0 ecore >= 1.18.0 ecore-file >=
1.18.0 ecore-ipc >= 1.18.0 edje >= 1.18.0 eo >= 1.18.0 eio >= 1.18.0
elementary >= 1.18.0 efreet-mime >= 1.18.0"
+
+if test "x${have_win32}" = "xyes" ; then
+ requirements="${requirements} evil"
+fi
+
+PKG_CHECK_MODULES([EFL], [${requirements}])
AC_CHECK_FUNCS([nice])
diff --git a/src/bin/ephoto_file.c b/src/bin/ephoto_file.c
index 708ef46..453f262 100644
--- a/src/bin/ephoto_file.c
+++ b/src/bin/ephoto_file.c
@@ -744,7 +744,11 @@ _delete_thread_cb(void *data, Ecore_Thread *et
EINA_UNUSED)
int ret;
struct stat s;
+#ifdef _WIN32
+ if (stat(file, &s))
+#else
if (lstat(file, &s))
+#endif
{
if (S_ISLNK(s.st_mode))
{
Vincent
On Mon, Jan 9, 2017 at 4:57 PM, Stephen Houston <smhousto...@gmail.com>
wrote:
> Following in the footsteps of Boris with Terminology, I would also like to
> get Ephoto final released. We have been on beta 2 for a while now. Please
> respond to this mail or file tickets on phab with any questions, comments,
> queries, or ponders you have with Ephoto right now. Suggestions,
> compliments, and harsh criticism welcome. Assuming it fits the timeline, I
> would like to release this week.
>
> Thanks,
> Stephen
> ------------------------------------------------------------
> ------------------
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, SlashDot.org! http://sdm.link/slashdot
> _______________________________________________
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel