View | Details | Raw Unified | Return to bug 136037 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-2 / +2 lines)
Lines 13-22 Link Here
13
MASTER_SITE_SUBDIR=	glibc
13
MASTER_SITE_SUBDIR=	glibc
14
DISTNAME=	glibc-linuxthreads-${PORTVERSION}
14
DISTNAME=	glibc-linuxthreads-${PORTVERSION}
15
15
16
MAINTAINER=	ports@FreeBSD.org
16
MAINTAINER=	scjamorim@bsd.com.br
17
COMMENT=	POSIX pthreads implementation using rfork to generate kernel threads
17
COMMENT=	POSIX pthreads implementation using rfork to generate kernel threads
18
18
19
BROKEN=		leaves file on deinstall
19
USE_LDCONFIG=	yes
20
20
21
.if defined(LINUXTHREADS_WRAP_API)
21
.if defined(LINUXTHREADS_WRAP_API)
22
USE_PERL5_BUILD=true
22
USE_PERL5_BUILD=true
(-)pkg-descr (-2 / +3 lines)
Lines 1-11 Link Here
1
LinuxThreads is an POSIX pthreads implementation using "kernel threads".  In
1
LinuxThreads is an POSIX pthreads implementation using "kernel threads".  In
2
this FreeBSD port, a kernel thread is started using rfork (whereas in the
2
this FreeBSD port, a kernel thread is started using rfork (whereas in the
3
original Linux implementation a kernel thread is started using the Linux clone
3
original Linux implementation a kernel thread is started using the Linux clone
4
call).  This implementation provides a so-called one-to-one mapping of threads to
4
call).
5
This implementation provides a so-called one-to-one mapping of threads to
5
kernel schedulable entities. For more information see about the original
6
kernel schedulable entities. For more information see about the original
6
LinuxThreads implementation see:
7
LinuxThreads implementation see:
7
8
8
	http://pauillac.inria.fr/~xleroy/linuxthreads/
9
WWW:	http://pauillac.inria.fr/~xleroy/linuxthreads/
9
10
10
Note that LinuxThreads has been integrated with the GNU C library (glibc) since
11
Note that LinuxThreads has been integrated with the GNU C library (glibc) since
11
version 2.0, so the above URL points to dated information.
12
version 2.0, so the above URL points to dated information.
(-)pkg-plist (-2 / +1 lines)
Lines 4-9 Link Here
4
%%PIC:%%lib/liblthread.so
4
%%PIC:%%lib/liblthread.so
5
%%PIC:%%lib/liblthread.so.%%LTHREADSHMAJOR:%%
5
%%PIC:%%lib/liblthread.so.%%LTHREADSHMAJOR:%%
6
lib/liblgcc_r.a
6
lib/liblgcc_r.a
7
lib/liblgcc_r_pic.a
7
%%GCC4ONLY:%%lib/liblgcc_r_eh.a
8
%%GCC4ONLY:%%lib/liblgcc_r_eh.a
8
%%GCC4ONLY:%%lib/liblgcc_r_eh_p.a
9
%%GCC4ONLY:%%lib/liblgcc_r_eh_p.a
9
%%PROFILE:%%lib/liblgcc_r_p.a
10
%%PROFILE:%%lib/liblgcc_r_p.a
Lines 31-39 Link Here
31
include/pthread/linuxthreads/bits/posix_opt.h
32
include/pthread/linuxthreads/bits/posix_opt.h
32
include/pthread/linuxthreads/bits/sigthread.h
33
include/pthread/linuxthreads/bits/sigthread.h
33
include/pthread/linuxthreads/sys/_pthreadtypes.h
34
include/pthread/linuxthreads/sys/_pthreadtypes.h
34
@exec /sbin/ldconfig -m %D/lib
35
@dirrm include/pthread/linuxthreads/sys
35
@dirrm include/pthread/linuxthreads/sys
36
@dirrm include/pthread/linuxthreads/bits
36
@dirrm include/pthread/linuxthreads/bits
37
@dirrm include/pthread/linuxthreads
37
@dirrm include/pthread/linuxthreads
38
@dirrm include/pthread
38
@dirrm include/pthread
39
@unexec /sbin/ldconfig -R

Return to bug 136037