diff options
author | Tobias C. Berner <tcberner@FreeBSD.org> | 2017-06-26 05:07:58 +0800 |
---|---|---|
committer | Tobias C. Berner <tcberner@FreeBSD.org> | 2017-06-26 05:07:58 +0800 |
commit | 5e373eaa92fd3a243e1bc7a8e3eaf114ab1eeabf (patch) | |
tree | 3291541f3b73432c893dec35f4f23770dd07732a /irc | |
parent | 9c92503171817f96d944009b9ea88d3c083c9a45 (diff) | |
download | freebsd-ports-gnome-5e373eaa92fd3a243e1bc7a8e3eaf114ab1eeabf.tar.gz freebsd-ports-gnome-5e373eaa92fd3a243e1bc7a8e3eaf114ab1eeabf.tar.zst freebsd-ports-gnome-5e373eaa92fd3a243e1bc7a8e3eaf114ab1eeabf.zip |
Make ninja opt-out in cmake.mk
Using ninja instead of make (1) can lead to significant speed ups while building.
Therefore switch from having the ninja generator opt-in to having it opt-out.
Previously cmake-ports that wanted to use ninja could set
CMAKE_NINJA=yes
now, ports that do not work with ninja can set
cmake:<existing args>,noninja
Note, that needing this should be an exception and most often points to a broken
cmake of the port.
The ports using cmake were modified
* removed USES=gmake, if ninja is used
* removed MAKE_ARGS, if ninja is used
* added the cmake-argument noninja if necessary
PR: 219629
PR: 213331
Exp-run by: antoine
Reviewed by: rakuco
Differential Revision: https://reviews.freebsd.org/D10748
Diffstat (limited to 'irc')
-rw-r--r-- | irc/weechat/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/irc/weechat/Makefile b/irc/weechat/Makefile index 04815593a0af..6622148de730 100644 --- a/irc/weechat/Makefile +++ b/irc/weechat/Makefile @@ -16,7 +16,7 @@ LIB_DEPENDS+= libcurl.so:ftp/curl \ libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error -USES= cmake:outsource ncurses tar:xz +USES= cmake:outsource,noninja ncurses tar:xz USE_LDCONFIG= yes CMAKE_ARGS+= -DENABLE_GUILE=no \ |