From: oetiker Date: Sat, 1 Nov 2008 09:09:07 +0000 (+0000) Subject: do not create the lua makefile if lua is not to be compiled. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=e24f30f4e76ab14aaad8b6c4657f87a656add2a3;p=rrdtool-all.git do not create the lua makefile if lua is not to be compiled. git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@1641 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/program/configure.ac b/program/configure.ac index f08b4e97..77c20d51 100644 --- a/program/configure.ac +++ b/program/configure.ac @@ -879,7 +879,9 @@ AC_CONFIG_FILES([bindings/Makefile]) AC_CONFIG_FILES([bindings/tcl/Makefile]) AC_CONFIG_FILES([bindings/tcl/ifOctets.tcl]) AC_CONFIG_FILES([Makefile]) -AC_CONFIG_FILES([bindings/lua/Makefile]) +if test "$enable_lua" = "yes"; then + AC_CONFIG_FILES([bindings/lua/Makefile]) +fi AC_CONFIG_COMMANDS([default],[[ chmod +x examples/*.pl]],[[]]) AC_OUTPUT