bu5hm4n pushed a commit to branch master.

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

commit f6563234730ceb18805ef3416d71bf7ea558034b
Author: Mike Blumenkrantz <[email protected]>
Date:   Fri Apr 26 09:06:47 2019 -0400

    meson: conditionally compile ecore_pipe_simple_example for windows
    
    windows does not have fork() so this cannot be built
    
    Reviewed-by: Marcel Hollerbach <[email protected]>
    Differential Revision: https://phab.enlightenment.org/D8726
---
 src/examples/ecore/meson.build | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/examples/ecore/meson.build b/src/examples/ecore/meson.build
index c0b42959fa..c4d11c7a7d 100644
--- a/src/examples/ecore/meson.build
+++ b/src/examples/ecore/meson.build
@@ -7,7 +7,6 @@ examples = [
   'ecore_file_download_example',
   'ecore_idler_example',
   'ecore_job_example',
-  'ecore_pipe_simple_example',
   'ecore_poller_example',
   'ecore_thread_example',
   'ecore_time_functions_example',
@@ -15,6 +14,10 @@ examples = [
   'ecore_getopt_example'
 ]
 
+if config_h.has('HAVE_FORK')
+  examples += 'ecore_pipe_simple_example'
+endif
+
 gnutls = dependency('gnutls', required : false)
 if gnutls.found()
 examples += ['ecore_fd_handler_gnutls_example']

-- 


Reply via email to