From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Nov 27 05:20:02 2009 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 103341065672 for ; Fri, 27 Nov 2009 05:20:02 +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 E19598FC14 for ; Fri, 27 Nov 2009 05:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAR5K1Pn058437 for ; Fri, 27 Nov 2009 05:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAR5K17Y058436; Fri, 27 Nov 2009 05:20:01 GMT (envelope-from gnats) Resent-Date: Fri, 27 Nov 2009 05:20:01 GMT Resent-Message-Id: <200911270520.nAR5K17Y058436@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, "RandomUser" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BB31106566B for ; Fri, 27 Nov 2009 05:13:41 +0000 (UTC) (envelope-from rannumgen@globaleyes.net) Received: from MX1.ll.net (mail.globaleyes.net [209.131.230.155]) by mx1.freebsd.org (Postfix) with ESMTP id E80018FC26 for ; Fri, 27 Nov 2009 05:13:40 +0000 (UTC) Received: from FreeBSD2.LocalNET10 (pool-98-115-162-189.chi01.btas.verizon.net [98.115.162.189]) by MX1.ll.net (Vircom SMTPRS 4.4.571.23) with ESMTP id for ; Thu, 26 Nov 2009 23:13:37 -0600 Message-Id: <1259298821.28411@FreeBSD2.LocalNET10> Date: Thu, 26 Nov 2009 23:13:41 -0600 From: "RandomUser" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: Subject: ports/140921: news/suck (4.3.2) fails to find "dbz.h" and "libinn.h" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Nov 2009 05:20:02 -0000 >Number: 140921 >Category: ports >Synopsis: news/suck (4.3.2) fails to find "dbz.h" and "libinn.h" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Nov 27 05:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: RandomUser >Release: FreeBSD 6.4-STABLE i386 >Organization: >Environment: System: FreeBSD 6.4-STABLE #1: Thu Nov 26 16:01:23 CST 2009 inn-2.5.0 (inn-CURRENT-20061123) >Description: make -DSUCK_WITH_INN -DNEWSBIN . . . cc -c -march=prescott -O2 -pipe -DNO_CONFIGDATA -fno-strict-aliasing -I/usr/local/include -DHAVE_LIBSSL -I. -I. -I/usr/local/include -DHAVE_CONFIG_H -DSUCK_VERSION=\"4.3.2\" ssort.c cc -c -I/usr/local/news/include -march=prescott -O2 -pipe -DNO_CONFIGDATA -fno-strict-aliasing -I. -I. -I/usr/local/include -DHAVE_CONFIG_H -DSUCK_VERSION=\"4.3.2\" -DUSE_INN23 -DDO_TAGGED_HASH chkhistory_db.c chkhistory_db.c:87:20: libinn.h: No such file or directory chkhistory_db.c:88:17: dbz.h: No such file or directory chkhistory_db.c: In function `open_history': chkhistory_db.c:174: error: syntax error before "opt" chkhistory_db.c:177: error: `opt' undeclared (first use in this function) chkhistory_db.c:177: error: (Each undeclared identifier is reported only once chkhistory_db.c:177: error: for each function it appears in.) chkhistory_db.c:177: error: `INCORE_MEM' undeclared (first use in this function) chkhistory_db.c: In function `check_history': chkhistory_db.c:228: error: syntax error before "msgid_hash" chkhistory_db.c:230: error: `msgid_hash' undeclared (first use in this function) gmake: *** [chkhistory_db.o] Error 1 *** Error code 1 Stop in /ad4/usrports/news/suck. >How-To-Repeat: >Fix: --- patch-ae begins here --- --- chkhistory_db.c.orig 2003-03-25 15:38:16.000000000 -0600 +++ chkhistory_db.c 2009-11-26 23:03:54.000000000 -0600 @@ -67,7 +67,7 @@ #endif #ifdef USE_DBZ -#include +#include #define close_history() dbmclose() #endif @@ -75,8 +75,8 @@ #include #include #include -#include -#include +#include +#include #define close_history() dbzclose() #endif #ifdef USE_INN23 @@ -84,8 +84,8 @@ #ifndef NO_CONFIGDATA #include #endif -#include -#include +#include +#include #define close_history() dbzclose() #define USE_INN2 /* we need the rest of the inn2 code, only the includes are different */ #endif --- patch-ae ends here --- >Release-Note: >Audit-Trail: >Unformatted: