From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jun 17 22:00:09 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D14F31065671 for ; Tue, 17 Jun 2008 22:00:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 386078FC1A for ; Tue, 17 Jun 2008 22:00:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m5HM08ZH036852 for ; Tue, 17 Jun 2008 22:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m5HM086S036846; Tue, 17 Jun 2008 22:00:08 GMT (envelope-from gnats) Date: Tue, 17 Jun 2008 22:00:08 GMT Message-Id: <200806172200.m5HM086S036846@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Sven Klose Cc: Subject: Re: ports/124674: [patch] www/mod_lisp2: FIX: Generates incorrect LoadModule directive in apache22's httpd.conf X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sven Klose List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jun 2008 22:00:09 -0000 The following reply was made to PR ports/124674; it has been noted by GNATS. From: Sven Klose To: edwin@FreeBSD.org Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/124674: [patch] www/mod_lisp2: FIX: Generates incorrect LoadModule directive in apache22's httpd.conf Date: Tue, 17 Jun 2008 18:00:27 +0200 This is a multi-part message in MIME format. --------------010407000409050009080701 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit I messed up. Here's a more sane version of the fix. --------------010407000409050009080701 Content-Type: text/plain; name="mod_lisp2.shar.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="mod_lisp2.shar.txt" # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # mod_lisp2 # mod_lisp2/Makefile # mod_lisp2/distinfo # mod_lisp2/pkg-descr # mod_lisp2/files # mod_lisp2/files/patch-aa # echo c - mod_lisp2 mkdir -p mod_lisp2 > /dev/null 2>&1 echo x - mod_lisp2/Makefile sed 's/^X//' >mod_lisp2/Makefile << 'END-of-mod_lisp2/Makefile' X# Ports collection makefile for: mod_lisp2 X# Date created: Tue Jul 17 2007 X# Whom: vl X# X# $FreeBSD: ports/www/mod_lisp2/Makefile,v 1.1 2007/07/29 11:54:15 pav Exp $ X# X XPORTNAME= mod_lisp2 XPORTVERSION= 1.3.1 XCATEGORIES= www XMASTER_SITES= http://freebsd.minira.nl/ X XMAINTAINER= viktor.leis@googlemail.com XCOMMENT= Apache2 module for use with Common Lisp X XUSE_APACHE= 20+ XAP_FAST_BUILD= YES XAP_GENPLIST= YES X X.include END-of-mod_lisp2/Makefile echo x - mod_lisp2/distinfo sed 's/^X//' >mod_lisp2/distinfo << 'END-of-mod_lisp2/distinfo' XMD5 (mod_lisp2-1.3.1.tar.gz) = a5cb746e793b65e5801c8b77dbde023d XSHA256 (mod_lisp2-1.3.1.tar.gz) = 5af4bb8fd46b5f62266e46fcf037015ddc9d24ed4d212cc08fd383110a4d6c20 XSIZE (mod_lisp2-1.3.1.tar.gz) = 7972 END-of-mod_lisp2/distinfo echo x - mod_lisp2/pkg-descr sed 's/^X//' >mod_lisp2/pkg-descr << 'END-of-mod_lisp2/pkg-descr' Xmod_lisp is an Apache 2 module for writing web applications in Common XLisp. It is distributed with a BSD-style license. X XWWW: http://www.fractalconcept.com/asp/html/mod_lisp.html END-of-mod_lisp2/pkg-descr echo c - mod_lisp2/files mkdir -p mod_lisp2/files > /dev/null 2>&1 echo x - mod_lisp2/files/patch-aa sed 's/^X//' >mod_lisp2/files/patch-aa << 'END-of-mod_lisp2/files/patch-aa' X--- mod_lisp2.c.orig 2008-06-17 17:51:40.000000000 +0200 X+++ mod_lisp2.c 2008-06-17 17:53:20.000000000 +0200 X@@ -153,7 +153,7 @@ X #include X #include X X-module AP_MODULE_DECLARE_DATA lisp_module; X+module AP_MODULE_DECLARE_DATA lisp2_module; X /* Work out the version of the apache portable runtime (APR) we're X * compiling against... with version 1.2.2 some of the interfaces X * changed a bit. */ X@@ -576,7 +576,7 @@ X lisp_handler (request_rec * r) X { X lisp_cfg_t * cfg X- = (ap_get_module_config ((r->per_dir_config), (&lisp_module))); X+ = (ap_get_module_config ((r->per_dir_config), (&lisp2_module))); X int content_length = (-1); X int keep_socket_p = 0; X apr_socket_t * socket; X@@ -942,7 +942,7 @@ X ap_hook_handler (lisp_handler, 0, 0, APR_HOOK_MIDDLE); X } X X-module AP_MODULE_DECLARE_DATA lisp_module = X+module AP_MODULE_DECLARE_DATA lisp2_module = X { X STANDARD20_MODULE_STUFF, X lisp_create_dir_config, /* create per-directory config structures */ END-of-mod_lisp2/files/patch-aa exit --------------010407000409050009080701--