Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 May 2011 12:04:37 GMT
From:      Antoine van Gelder <antoine@artifactual.org.za>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/157422: net/rabbitmq port compilation error
Message-ID:  <201105301204.p4UC4bKs054106@red.freebsd.org>
Resent-Message-ID: <201105301210.p4UCA9AG010126@freefall.freebsd.org>

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

>Number:         157422
>Category:       ports
>Synopsis:       net/rabbitmq port compilation error
>Confidential:   no
>Severity:       serious
>Priority:       high
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon May 30 12:10:09 UTC 2011
>Closed-Date:
>Last-Modified:
>Originator:     Antoine van Gelder
>Release:        8.2
>Organization:
>Environment:
FreeBSD phi.7degrees.co.za 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Fri Feb 18 02:24:46 UTC 2011     root@almeida.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC  i386

>Description:
Compiling rabbitmq fails with: 

--
erlc -I include -o ebin -Wall -v +debug_info -Duse_specs -pa ebin src/rabbit_networking.erl
src/rabbit_networking.erl:58: type hostname() undefined
src/rabbit_networking.erl:80: type ip_port() undefined
gmake: *** [ebin/rabbit_networking.beam] Error 1
*** Error code 1

Stop in /usr/ports/net/rabbitmq.



>How-To-Repeat:
cd /usr/ports/net/rabbitmq
make
>Fix:
The problem is being caused by missing type declarations for hostname/0 and ip_port/0 in src/rabbitmq_networking.erl

It looks like the problem has already been fixed in the rabbitmq mercurial repository.

The attached patch sorts it out.

Patch attached with submission follows:

--- src/rabbit_networking.erl.orig	2011-02-03 14:47:35.000000000 +0200
+++ src/rabbit_networking.erl	2011-05-30 13:51:28.000000000 +0200
@@ -52,6 +52,9 @@
 
 -export_type([ip_port/0, hostname/0]).
 
+-type(hostname() :: inet:hostname()).
+-type(ip_port() :: inet:ip_port()).
+
 -type(family() :: atom()).
 -type(listener_config() :: ip_port() |
                            {hostname(), ip_port()} |


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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105301204.p4UC4bKs054106>