diff options
author | Alexander Nedotsukov <bland@FreeBSD.org> | 2004-04-09 19:25:59 +0000 |
---|---|---|
committer | Alexander Nedotsukov <bland@FreeBSD.org> | 2004-04-09 19:25:59 +0000 |
commit | 51885eb02aa437bf422ac96441c9705283e95540 (patch) | |
tree | 9344b7f6440d60943f6c1570d8ce25bb146bfee5 | |
parent | Fix build on AMD64 (diff) |
Remove PTHREAD_LIBS form CONFIGURE_ENV.
This library do not make any direct or indirect pthreads use. Moreother
it's danger to have library forcibly linked to pthreads and don't have
this dependency declared in .pc file.
Notes
Notes:
svn path=/head/; revision=106607
-rw-r--r-- | x11-toolkits/libgnomeprintui/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-toolkits/libgnomeprintui/Makefile b/x11-toolkits/libgnomeprintui/Makefile index f7496a9fc5ab..601d9f2a2e2d 100644 --- a/x11-toolkits/libgnomeprintui/Makefile +++ b/x11-toolkits/libgnomeprintui/Makefile @@ -7,7 +7,7 @@ PORTNAME= libgnomeprintui PORTVERSION= 2.6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/2.6 @@ -29,6 +29,6 @@ INSTALLS_SHLIB= yes USE_LIBTOOL_VER=13 USE_BISON= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" + LIBS="-L${LOCALBASE}/lib" .include <bsd.port.mk> |