bu5hm4n pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=473dda76a1299c38431e783e7b71092ef3c0d990

commit 473dda76a1299c38431e783e7b71092ef3c0d990
Author: Mike Blumenkrantz <[email protected]>
Date:   Tue Apr 30 15:09:59 2019 -0400

    meson: do not build emotion generic loader on windows
    
    this is not supported
    
    Reviewed-by: Marcel Hollerbach <[email protected]>
    Differential Revision: https://phab.enlightenment.org/D8732
---
 meson.build                     | 4 +++-
 src/modules/emotion/meson.build | 5 ++++-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/meson.build b/meson.build
index e7cc475895..2595461c62 100644
--- a/meson.build
+++ b/meson.build
@@ -439,7 +439,9 @@ if get_option('eolian-bootstrap') == false
   subdir(join_paths('src', 'bin', 'efl'))
 
   subdir(join_paths('src', 'generic', 'evas'))
-  subdir(join_paths('src', 'generic', 'emotion'))
+  if sys_windows == false
+    subdir(join_paths('src', 'generic', 'emotion'))
+  endif
 
   bindings = get_option('bindings')
   bindings_order = ['luajit', 'cxx', 'mono']
diff --git a/src/modules/emotion/meson.build b/src/modules/emotion/meson.build
index f16eaec262..0090ea7492 100644
--- a/src/modules/emotion/meson.build
+++ b/src/modules/emotion/meson.build
@@ -1,11 +1,14 @@
 emotion_loaders = [
-'generic',
 'gstreamer',
 'gstreamer1',
 'libvlc',
 'xine'
 ]
 
+if sys_windows == false
+  emotion_loaders += 'generic'
+endif
+
 foreach emotion_loader : emotion_loaders
   generic_src = []
   generic_deps = []

-- 


Reply via email to