Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Jun 2013 10:15:47 GMT
From:      John Marino <draco@marino.st>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/179439: ftp/rexx-curl: probable fix provided
Message-ID:  <201306091015.r59AFlHC013248@oldred.freebsd.org>
Resent-Message-ID: <201306091020.r59AK0i6090303@freefall.freebsd.org>

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

>Number:         179439
>Category:       ports
>Synopsis:       ftp/rexx-curl: probable fix provided
>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:   Sun Jun 09 10:20:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     John Marino
>Release:        
>Organization:
>Environment:
>Description:
I was surprised that rexx-curl got marked broken.  It built fine on dragonfly.
Looking at our patch-configure and the errors freebsd is seeing on this port, I think freebsd needs the value of LD_RXLIB1 that DragonFly has.

I suggest that somebody create a patch for configure that updates LD_RXLIB1 to the same value as shown for DragonFly in the attached patch and see if that fixes the port for FreeBSD.
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

--- configure.orig	2005-07-28 11:01:07.000000000 +0000
+++ configure
@@ -6240,6 +6240,10 @@ case "$target" in
 		LD_RXLIB1="${CC} -shared"
 		LD_RXTRANSLIB1="$LD_RXLIB1"
 		;;
+	*dragonfly*)
+		LD_RXLIB1="${CC} -shared"
+		LD_RXTRANSLIB1="$LD_RXLIB1"
+		;;
 	*freebsd*)
 		LD_RXLIB1="ld -Bdynamic -Bshareable"
 		LD_RXTRANSLIB1="$LD_RXLIB1"


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



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