From cvs-return-62484-archive-asf-public=cust-asf.ponee.io@httpd.apache.org Fri Jan 26 16:00:33 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 8BFCC180657 for ; Fri, 26 Jan 2018 16:00:33 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 7C217160C3E; Fri, 26 Jan 2018 15:00:33 +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 BA4A3160C20 for ; Fri, 26 Jan 2018 16:00:32 +0100 (CET) Received: (qmail 56641 invoked by uid 500); 26 Jan 2018 15:00:31 -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 56632 invoked by uid 99); 26 Jan 2018 15:00:31 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 26 Jan 2018 15:00:31 +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 5939F3A0162 for ; Fri, 26 Jan 2018 15:00:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1822305 - /httpd/httpd/trunk/modules/lua/config.m4 Date: Fri, 26 Jan 2018 15:00:28 -0000 To: cvs@httpd.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20180126150030.5939F3A0162@svn01-us-west.apache.org> Author: jorton Date: Fri Jan 26 15:00:28 2018 New Revision: 1822305 URL: http://svn.apache.org/viewvc?rev=1822305&view=rev Log: * modules/lua/config.m4: Link mod_lua against -lcrypt if available, since mk_password_hash() can use crypt(). Modified: httpd/httpd/trunk/modules/lua/config.m4 Modified: httpd/httpd/trunk/modules/lua/config.m4 URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/lua/config.m4?rev=1822305&r1=1822304&r2=1822305&view=diff ============================================================================== --- httpd/httpd/trunk/modules/lua/config.m4 (original) +++ httpd/httpd/trunk/modules/lua/config.m4 Fri Jan 26 15:00:28 2018 @@ -104,7 +104,7 @@ APACHE_MODULE(lua, Apache Lua Framework, CHECK_LUA() if test "x$enable_lua" != "xno" ; then APR_ADDTO(MOD_INCLUDES, [$LUA_CFLAGS]) - APR_ADDTO(MOD_LUA_LDADD, [$LUA_LIBS]) + APR_ADDTO(MOD_LUA_LDADD, [$LUA_LIBS $CRYPT_LIBS]) fi ])