From b1922fb220cab5b4685eb6c6f53ecc1be221f553 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 19 Feb 2020 18:19:01 +0100 Subject: [PATCH] Fix libreadline detection This fixes building and bundling the "luasession" commandline tool, regression was introduced in 2e9ac80e99 (waf py2/3) --- tools/luadevel/wscript | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/luadevel/wscript b/tools/luadevel/wscript index 7cf7803889..c3c4d90aa6 100755 --- a/tools/luadevel/wscript +++ b/tools/luadevel/wscript @@ -22,6 +22,7 @@ def configure(conf): header_name='stdio.h readline/readline.h', lib='readline', uselib_store='READLINE', + define_name='HAVE_READLINE', mandatory=False) autowaf.configure(conf)