summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2018-07-05 20:05:19 -0400
committerMarcel Hollerbach <mail@marcel-hollerbach.de>2018-07-06 15:51:59 +0200
commite91187d0a353dfd8893ce8248b4064e5a9bfb783 (patch)
treed0693139b6356672732f3ae29b8523ce15c67dc4
parent36fc0ce77ee61c3ebb2529a0f05fcdf0b6986725 (diff)
downloadefl-e91187d0a353dfd8893ce8248b4064e5a9bfb783.tar.gz
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
-rw-r--r--configure.ac4
1 files changed, 1 insertions, 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