diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2019-02-01 11:04:17 +0000 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2019-02-01 14:25:35 +0000 |
commit | f7c560c311d0ba0da94346e17c8b20f40a0ed152 (patch) | |
tree | af5f63aceb78ff1b153f3727f8adab6ee4e1d653 /src/lib/eina/meson.build | |
parent | 36286a23fe97e3667c1106116d1edbc301c7a9ba (diff) |
replace hton and ntoh family functions with ones defined in eina
Summary: This fixes especially the execution of edje_cc on Windows
Test Plan: execution of edje_cc
Reviewers: cedric, raster
Subscribers: #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D7834
Diffstat (limited to '')
-rw-r--r-- | src/lib/eina/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/eina/meson.build b/src/lib/eina/meson.build index 245c9cd8fa..2599845c08 100644 --- a/src/lib/eina/meson.build +++ b/src/lib/eina/meson.build | |||
@@ -349,7 +349,10 @@ if sys_osx == true | |||
349 | if cc.has_header_symbol('mach/task.h', 'semaphore_create') | 349 | if cc.has_header_symbol('mach/task.h', 'semaphore_create') |
350 | eina_config.set('EINA_HAVE_OSX_SEMAPHORE', 1) | 350 | eina_config.set('EINA_HAVE_OSX_SEMAPHORE', 1) |
351 | endif | 351 | endif |
352 | endif | ||
352 | 353 | ||
354 | if host_machine.endian() == 'big' | ||
355 | eina_config.set('EINA_HAVE_WORDS_BIGENDIAN', '1') | ||
353 | endif | 356 | endif |
354 | 357 | ||
355 | eina_config_file = configure_file( | 358 | eina_config_file = configure_file( |