diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2010-01-25 09:03:53 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2010-01-25 09:03:53 +0000 |
commit | b2d3b37495209bc75dbdfcb7ba9eee21a7d1e1dc (patch) | |
tree | ade1b3d6983de547d683dc805d0b755ad8e3aec1 /irc | |
parent | 9f0e9de6dd4b7f5732b6fd5a0c309714115825f3 (diff) | |
download | ports-b2d3b37495209bc75dbdfcb7ba9eee21a7d1e1dc.tar.gz ports-b2d3b37495209bc75dbdfcb7ba9eee21a7d1e1dc.zip |
- mark MAKE_JOBS_UNSAFE
- Drop support for plugins
PR: 140237
Submitted by: Ashish SHUKLA <wahjava@gmail.com>
Jacob Myers <jacob@whotookspaz.org> (maintainer)
Notes
Notes:
svn path=/head/; revision=248520
Diffstat (limited to 'irc')
-rw-r--r-- | irc/conspire/Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/irc/conspire/Makefile b/irc/conspire/Makefile index 6e3c9ce599a9..1217f39c4f83 100644 --- a/irc/conspire/Makefile +++ b/irc/conspire/Makefile @@ -24,7 +24,7 @@ USE_GNOME= gnomehack gtk20 GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_GETTEXT= yes -MAKE_JOBS_SAFE= yes +MAKE_JOBS_UNSAFE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" @@ -33,7 +33,6 @@ MAN1= conspire-bot.1 \ conspire.1 OPTIONS= IPV6 "Enable IPv6 support" off \ - PLUGIN "Enable plugin support" on \ REGEX "Enable regex substitution support" on \ GNUTLS "Enale gnutls support" on \ SOCKS "Build with socks5 support (broken)" off @@ -47,10 +46,6 @@ CONFIGURE_ARGS+=--disable-python CONFIGURE_ARGS+=--enable-ipv6 .endif -.if !defined(WITH_PLUGIN) -CONFIGURE_ARGS+=--disable-plugin -.endif - .if !defined(WITH_REGEX) CONFIGURE_ARGS+=--disable-regex .endif |