From: Felipe Huici Date: Wed, 16 Oct 2019 09:44:52 +0000 (+0200) Subject: Add dependencies to Config.uk X-Git-Tag: RELEASE-0.4~4 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5e711c94ee3339d5f9860b7855de2bb8c21c3ce0;p=unikraft%2Flibs%2Flua.git Add dependencies to Config.uk Select newlib, uktime and ukunistd as hard dependencies. Signed-off-by: Felipe Huici Reviewed-by: Roxana Nicolescu --- diff --git a/Config.uk b/Config.uk index 343a214..b8beab2 100644 --- a/Config.uk +++ b/Config.uk @@ -1,4 +1,12 @@ -config LIBLUA +menuconfig LIBLUA bool "The Lua programming language" default n - depends on HAVE_LIBC + select LIBNEWLIBC + select LIBUKTIME + select UKUNISTD + +if LIBLUA + config LIBLUA_MAIN_FUNCTION + bool "Provide main function" + default y +endif