On Tue, Jul 19, 2011 at 13:56, bert hubert <[email protected]> wrote: > PowerDNS Authoritative Server 3.0-RC3 > > This is fully expected to be the 'real 3.0' release! It can be downloaded > from: > > http://downloads.powerdns.com/releases/pdns-3.0-rc3.tar.gz > http://downloads.powerdns.com/releases/rpm/pdns-static-3.0rc3-1.x86_64.rpm > http://downloads.powerdns.com/releases/deb/pdns-static_3.0-rc3-1_amd64.deb > http://downloads.powerdns.com/releases/rpm/pdns-static-3.0rc3-1.i386.rpm > http://downloads.powerdns.com/releases/deb/pdns-static_3.0-rc3-1_i386.deb > > '3.0-final' is expected later this week, unless blocking issues crop up.
./configure --with-lua doesn't detect lua properly, at least on Fedora rawhide. This seems to fix it: Index: configure.ac =================================================================== --- configure.ac (revision 2244) +++ configure.ac (working copy) @@ -26,7 +26,7 @@ dnl Check for lua AC_MSG_CHECKING(if with lua) -AC_ARG_WITH(lua, AC_HELP_STRING([--with-lua],[lua]), WITH_LUA=$withval],[WITH_LUA=yes]) +AC_ARG_WITH(lua, AC_HELP_STRING([--with-lua],[lua]), [WITH_LUA=$withval],[WITH_LUA=yes]) AC_MSG_RESULT($WITH_LUA) if test "$WITH_LUA" != "no"; then Kind regards, Ruben _______________________________________________ Pdns-dev mailing list [email protected] http://mailman.powerdns.com/mailman/listinfo/pdns-dev
