From e91187d0a353dfd8893ce8248b4064e5a9bfb783 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 5 Jul 2018 20:05:19 -0400 Subject: [PATCH] build: always check for fork() and clearenv() these are used in places other than quicklaunch and must be correctly detected in order for functionality to be enabled @fix Differential Revision: https://phab.enlightenment.org/D6517 --- configure.ac | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 07d094ea95..182292e06c 100644 --- a/configure.ac +++ b/configure.ac @@ -5562,9 +5562,7 @@ AC_FUNC_ALLOCA AC_CHECK_FUNCS([geteuid getuid getpwent]) -if test "x${want_quicklaunch}" != "xno"; then - AC_CHECK_FUNCS([fork clearenv]) -fi +AC_CHECK_FUNCS([fork clearenv]) build_quicklaunch="no" if test "x${ac_cv_func_fork}" = "xyes" -a "x${efl_func_dlopen}" = "xyes"; then