diff options
author | marino <marino@FreeBSD.org> | 2015-03-25 01:09:58 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-03-25 01:09:58 +0800 |
commit | ce2ad9703644a4533d2cbe4ed4ad08a77246d638 (patch) | |
tree | 8bff0e951ded629b0a9a867dfad08db840b0458a /irc | |
parent | 3a4898cd58932f3e8f185cc796ff3f1ce801b5cd (diff) | |
download | freebsd-ports-gnome-ce2ad9703644a4533d2cbe4ed4ad08a77246d638.tar.gz freebsd-ports-gnome-ce2ad9703644a4533d2cbe4ed4ad08a77246d638.tar.zst freebsd-ports-gnome-ce2ad9703644a4533d2cbe4ed4ad08a77246d638.zip |
5 ports categories: Remove $PTHREAD_LIBS
Categories: irc, x11-clocks, benchmarks, misc, textproc
approved by: PTHREAD blanket
Diffstat (limited to 'irc')
-rw-r--r-- | irc/dxirc/Makefile | 4 | ||||
-rw-r--r-- | irc/epic5/Makefile | 2 | ||||
-rw-r--r-- | irc/netwalker-ircc/Makefile | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/irc/dxirc/Makefile b/irc/dxirc/Makefile index cebdfc32fee1..86de41e955db 100644 --- a/irc/dxirc/Makefile +++ b/irc/dxirc/Makefile @@ -17,8 +17,8 @@ LIB_DEPENDS= libFOX-1.6.so:${PORTSDIR}/x11-toolkits/fox16 USE_XORG= xft USES= gmake pkgconfig GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} -LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS} +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -lpthread -L${LOCALBASE}/lib OPTIONS_DEFINE= NLS TRAY IPV6 SSL LUA ENCHANT NOTIFY DOCS OPTIONS_DEFAULT= TRAY SSL LUA diff --git a/irc/epic5/Makefile b/irc/epic5/Makefile index 6388be5b5d72..b02bd6c0ac91 100644 --- a/irc/epic5/Makefile +++ b/irc/epic5/Makefile @@ -50,7 +50,7 @@ CONFIGURE_ARGS+= --without-perl .if ${PORT_OPTIONS:MRUBY} USE_RUBY= yes CONFIGURE_ARGS+= --with-ruby -LDFLAGS+= ${PTHREAD_LIBS} +LDFLAGS+= -lpthread .else CONFIGURE_ARGS+= --without-ruby .endif diff --git a/irc/netwalker-ircc/Makefile b/irc/netwalker-ircc/Makefile index 42fc7f63e513..3759c74ae5c0 100644 --- a/irc/netwalker-ircc/Makefile +++ b/irc/netwalker-ircc/Makefile @@ -13,7 +13,7 @@ LICENSE= GPLv2 USES= tar:tgz -LDFLAGS+= -lncurses ${PTHREAD_LIBS} +LDFLAGS+= -lncurses -lpthread post-patch: @${SED} -e "s|%%PREFIX%%|${PREFIX}|g" \ |