From c408215a24a67cb6b5fcc3dde507859e01f349e4 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 16 Jun 2017 15:03:09 -0400 Subject: [PATCH] build: add flag to disable elua build times are already insanely long, every little bit helps @feature --- configure.ac | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 8e7de1256c..539dbc0a40 100644 --- a/configure.ac +++ b/configure.ac @@ -5030,9 +5030,18 @@ EFL_LIB_END([Ethumb_Client]) #### End of Ethumb_Client #### Elua - +AC_ARG_ENABLE([elua], + [AS_HELP_STRING([--enable-elua],[enable ELUA support. @<:@default=enabled@:>@])], + [ + if test "x${enableval}" = "xyes" ; then + want_elua="yes" + else + want_elua="no" + fi + ], + [want_elua="yes"]) have_elua="yes" -if test "${want_lua_old}" = "yes"; then +if test "${want_lua_old}" = "yes" -o "x$want_elua" = "xno"; then have_elua="no" fi