From owner-freebsd-ports Sat Apr 17 12:32:27 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id B183C1521B for ; Sat, 17 Apr 1999 12:32:24 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA15062; Sat, 17 Apr 1999 12:30:01 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: by hub.freebsd.org (Postfix, from userid 32767) id 1C0F3150C6; Sat, 17 Apr 1999 12:30:43 -0700 (PDT) Message-Id: <19990417193043.1C0F3150C6@hub.freebsd.org> Date: Sat, 17 Apr 1999 12:30:43 -0700 (PDT) From: jobaldwi@vt.edu To: freebsd-gnats-submit@freebsd.org X-Send-Pr-Version: www-1.0 Subject: ports/11191: [Patch]Fix for cccc port in /usr/ports/devel Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 11191 >Category: ports >Synopsis: [Patch]Fix for cccc port in /usr/ports/devel >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Apr 17 12:30:01 PDT 1999 >Closed-Date: >Last-Modified: >Originator: John Baldwin >Release: 3.1-STABLE >Organization: >Environment: FreeBSD john.baldwin.cx 3.1-STABLE FreeBSD 3.1-STABLE #14: Sun Apr 4 16:45:39 EDT 1999 root@john.baldwin.cx:/usr/source/src/sys/compile/JOHN i386 >Description: The port is currently marked as broken. It is broken because it attempts to include sys/signal.h instead of signal.h. Under 3.0+, at least, including only sys/signal.h results in a parse error because 'size_t' is undefined. >How-To-Repeat: cd /usr/ports/devel/cccc; make (After commenting out BROKEN= line in Makefile) >Fix: Replace the current patches/patch-ab file with this one, which causes the compile to include signal.h instead of sys/signal.h *** cccc.h.orig Sun Aug 10 12:52:24 1997 --- cccc.h Sat Apr 17 14:26:46 1999 *************** *** 20,27 **** --- 20,32 ---- #else + #ifdef __FreeBSD__ + #define SIGNAL_HEADER + #define DEFAULT_LIBDIR "/usr/local/share/cccc" + #else #define SIGNAL_HEADER #define DEFAULT_LIBDIR "/usr/local/lib/cccc" + #endif #endif >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message