Revert "efl_debugd: only compile this on Linux."

This reverts commit eafe0c74e1.

It is not needed anymore as the daemon is now portable.
This commit is contained in:
Daniel Zaoui 2017-06-09 01:30:15 +03:00
parent ae50dec3e5
commit 8250b06d91
2 changed files with 1 additions and 2 deletions

View File

@ -267,7 +267,6 @@ AM_CONDITIONAL([HAVE_WIN32], [test "x${have_win32}" = "xyes"])
AM_CONDITIONAL([HAVE_WINDOWS], [test "x${have_windows}" = "xyes"])
AM_CONDITIONAL([HAVE_PS3], [test "x${have_ps3}" = "xyes"])
AM_CONDITIONAL([HAVE_LINUX], [test "x${have_linux}" = "xyes"])
AM_CONDITIONAL([HAVE_FREEBSD], [test "x${have_freebsd}" = "xyes"])
AM_CONDITIONAL([HAVE_OSX], [test "x${have_darwin}" = "xyes"])
AM_CONDITIONAL([HAVE_X86_64], [test "x${host_cpu}" = "xx86_64"])

View File

@ -168,7 +168,7 @@ bin_PROGRAMS += bin/efl/efl_debug
# macOS/windows without commenting out most of the code. So, instead of
# having an efl_debugd that won't do anything on macOS, we just wont't
# compile it, until we've made it cross-platform.
if HAVE_LINUX
if !HAVE_OSX
bin_PROGRAMS += bin/efl/efl_debugd
endif