Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 06 Feb 2006 12:37:50 +0900
From:      Tod McQuillin <devin@spamcop.net>
To:        FreeBSD-gnats-submit@FreeBSD.org
Cc:        sobomax@FreeBSD.org
Subject:   ports/92873: [PATCH] net/asterisk: [fix build on 4.x]
Message-ID:  <E1F5xCI-0000at-Bm@mail.distalzou.net>
Resent-Message-ID: <200602060340.k163e3Ro052042@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         92873
>Category:       ports
>Synopsis:       [PATCH] net/asterisk: [fix build on 4.x]
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 06 03:40:02 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Tod McQuillin
>Release:        FreeBSD 4.11-STABLE i386
>Organization:
>Environment:
System: FreeBSD plexi.pun-pun.prv 4.11-STABLE FreeBSD 4.11-STABLE #0: Thu Dec 15 19:04:55 JST 2005
>Description:
channels/chan_h323.c fails to compile on FreeBSD 4.x because it includes
sys/socket.h without including sys/types.h first.

Added file(s):
- files/patch-channels::chan_h323.c

Port maintainer (sobomax@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.63
>How-To-Repeat:
>Fix:

--- asterisk-1.2.3.patch begins here ---
Index: files/patch-channels::chan_h323.c
===================================================================
RCS file: files/patch-channels::chan_h323.c
diff -N files/patch-channels::chan_h323.c
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ files/patch-channels::chan_h323.c	6 Feb 2006 03:24:31 -0000
@@ -0,0 +1,10 @@
+--- channels/chan_h323.c-	Mon Feb  6 12:23:34 2006
++++ channels/chan_h323.c	Mon Feb  6 12:23:46 2006
+@@ -31,6 +31,7 @@
+  * \ingroup channel_drivers
+  */
+ 
++#include <sys/types.h>
+ #include <sys/socket.h>
+ #include <sys/signal.h>
+ #include <sys/param.h>
--- asterisk-1.2.3.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E1F5xCI-0000at-Bm>