diff options
author | jlam <jlam@pkgsrc.org> | 2004-11-12 06:39:19 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-11-12 06:39:19 +0000 |
commit | af591191d2b91375c67ab57df64d383e66055294 (patch) | |
tree | ddbacf3026d39d6b23e622ac51745a4f7db32d44 /net/ettercap | |
parent | 675d464c92282081571087f8ad824d1cae9d8414 (diff) | |
download | pkgsrc-af591191d2b91375c67ab57df64d383e66055294.tar.gz |
Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're added
automatically by pthread.buildlink3.mk. Also, factor out the pthread
library out of PTHREAD_LDFLAGS into a standalone variable PTHREAD_LIBS
and use it in packages where necessary (usually the ones that don't
have a GNU configure script).
Diffstat (limited to 'net/ettercap')
-rw-r--r-- | net/ettercap/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ettercap/Makefile b/net/ettercap/Makefile index 14ea3163cf0..c0c4de65225 100644 --- a/net/ettercap/Makefile +++ b/net/ettercap/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.31 2004/10/22 14:10:44 ben Exp $ +# $NetBSD: Makefile,v 1.32 2004/11/12 06:39:20 jlam Exp $ DISTNAME= ettercap-0.6.b PKGREVISION= 2 @@ -20,7 +20,7 @@ USE_BUILDLINK3= yes USE_NCURSES= # putwin() PTHREAD_OPTS+= require MAKE_ENV+= MACHINE_ARCH=${MACHINE_ARCH} -LIBS+= -ldes ${PTHREAD_LDFLAGS} +LIBS+= -ldes BUILD_DIRS= ${WRKSRC} ${WRKSRC}/plugins INSTALL_DIRS= ${WRKSRC} ${WRKSRC}/plugins |