Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 93FF7200CCA for ; Wed, 5 Jul 2017 00:14:17 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 92248162007; Tue, 4 Jul 2017 22:14:17 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id D020F162005 for ; Wed, 5 Jul 2017 00:14:16 +0200 (CEST) Received: (qmail 31717 invoked by uid 500); 4 Jul 2017 22:14:16 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 31708 invoked by uid 99); 4 Jul 2017 22:14:16 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jul 2017 22:14:16 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 234763A1E95 for ; Tue, 4 Jul 2017 22:14:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1800833 - /httpd/httpd/trunk/modules/lua/mod_lua.h Date: Tue, 04 Jul 2017 22:14:13 -0000 To: cvs@httpd.apache.org From: rjung@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170704221415.234763A1E95@svn01-us-west.apache.org> archived-at: Tue, 04 Jul 2017 22:14:17 -0000 Author: rjung Date: Tue Jul 4 22:14:13 2017 New Revision: 1800833 URL: http://svn.apache.org/viewvc?rev=1800833&view=rev Log: Fix another mod_lua compile error. Compilation now tested against Lus 5.1, 5.2 and 5.3. The libs were compiled with COMPAT flags set, but mod_lua no longer sets them so it should compile and run with non-COMPAT libs as well. Modified: httpd/httpd/trunk/modules/lua/mod_lua.h Modified: httpd/httpd/trunk/modules/lua/mod_lua.h URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/mod_lua.h?rev=1800833&r1=1800832&r2=1800833&view=diff ============================================================================== --- httpd/httpd/trunk/modules/lua/mod_lua.h (original) +++ httpd/httpd/trunk/modules/lua/mod_lua.h Tue Jul 4 22:14:13 2017 @@ -55,7 +55,7 @@ #define luaL_setfuncs_compat(a,b) luaL_register(a,NULL,b) #endif #if LUA_VERSION_NUM > 502 -#define lua_dump(a,b,c,d) lua_dump(a,b,c,d,0) +#define lua_dump(a,b,c) lua_dump(a,b,c,0) #endif /* Create a set of AP_LUA_DECLARE(type), AP_LUA_DECLARE_NONSTD(type) and