diff options
author | Jonas Gorski <jogo@openwrt.org> | 2016-01-04 10:56:02 +0100 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2016-01-08 11:48:47 +0100 |
commit | b1a2b9d1eaadcd3a0848f09a4f13d070412d1feb (patch) | |
tree | 20479e1e561b22b1f23172ed08665b46a1bb0587 /net/znc/Makefile | |
parent | 51533dd867fdd7a55398a06c17ea453976ab39a4 (diff) |
znc: enable features/support explicitly
Don't let znc autodetect library presence to avoid random missing
dependencies popping up.
Closes #2193.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
Diffstat (limited to 'net/znc/Makefile')
-rw-r--r-- | net/znc/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/net/znc/Makefile b/net/znc/Makefile index 25fcead13..68c66551d 100644 --- a/net/znc/Makefile +++ b/net/znc/Makefile @@ -277,8 +277,18 @@ CONFIGURE_VARS += \ LIBS="-lstdc++ -lm -lssl -lcrypto $(LIBGCC_S) -lc" CONFIGURE_ARGS += \ - --disable-c-ares \ - --disable-perl + --disable-charset \ + --disable-cyrus \ + --disable-debug \ + --enable-largefile \ + --disable-perl \ + --enable-poll \ + --disable-python \ + --enable-ssl \ + --disable-swig \ + --disable-tcl \ + --enable-tdns \ + --enable-zlib define Build/Configure $(call Build/Configure/Default,) |