ports/121378: ushare should link to pthread in FreeBSD 7.0+

Josh Carroll josh.carroll at gmail.com
Wed Mar 5 04:10:01 UTC 2008


>Number:         121378
>Category:       ports
>Synopsis:       ushare should link to pthread in FreeBSD 7.0+
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Wed Mar 05 04:10:00 UTC 2008
>Closed-Date:
>Last-Modified:
>Originator:     Josh Carroll
>Release:        7.0-RELEASE
>Organization:
n/a
>Environment:
FreeBSD pflog.net 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Tue Feb 26 01:20:52 EST 2008     root at pflog.net:/usr/obj/usr/src/sys/PFLOG  amd64

>Description:
I have been tracking a problem with ushare when run on amd64/FreeBSD 7.0-RELEASE. Namely, when it is started with -D, it never listens on the upnp port/socket, and appears to hang in a pthread call.

I filed a PR against libthr, but it turns out the solution is simply to compile ushare with -lpthread (or -pthread). This is done for other FreeBSD releases, so I am requesting that:

.if ${OSVERSION} < 700042
CFLAGS+=    ${PTHREAD_LIBS}
.endif

Be removed, so that all versions include -pthread:

CFLAGS+=    ${PTHREAD_LIBS}

I have tested this and recompiling with the above changes fixes ushare when it is run as a daemon.

Thanks!
Josh
>How-To-Repeat:
- build and install ushare on amd64/FreeBSD 7.0
- run ushare -D
- note the lack of listening socket in sockstat -4l output
>Fix:
The attached patch file just comments out the

Patch attached with submission follows:

--- Makefile	2008-03-04 23:02:05.000000000 -0500
+++ Makefile.new	2008-03-04 23:03:53.000000000 -0500
@@ -29,9 +29,7 @@
 
 .include <bsd.port.pre.mk>
 
-.if ${OSVERSION} < 700042
 CFLAGS+=	${PTHREAD_LIBS}
-.endif
 
 do-install:
 	${INSTALL_SCRIPT} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin


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



More information about the freebsd-ports-bugs mailing list