summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorleot <leot@pkgsrc.org>2019-05-27 13:21:22 +0000
committerleot <leot@pkgsrc.org>2019-05-27 13:21:22 +0000
commitcb6d7609e5b431fe0b35708ccebf1ccee1c2d2ee (patch)
treef4fa42a3436435c7b64978687f416c290606e747 /editors
parentb8828ba4b5b646807cfbc85559cca905b507ed62 (diff)
downloadpkgsrc-cb6d7609e5b431fe0b35708ccebf1ccee1c2d2ee.tar.gz
codeblocks: Avoid gtk2 dependencies
MouseSap and `gtk-notebook' needs gtk2 but including gtk2 bl3 will lead to runtime problems because the same program could not be linked with both GTK+ 2.x and GTK+ 3.
Diffstat (limited to 'editors')
-rw-r--r--editors/codeblocks/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/editors/codeblocks/Makefile b/editors/codeblocks/Makefile
index ea559a077fd..0888e8f4977 100644
--- a/editors/codeblocks/Makefile
+++ b/editors/codeblocks/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2018/11/14 22:21:21 kleink Exp $
+# $NetBSD: Makefile,v 1.13 2019/05/27 13:21:22 leot Exp $
#
DISTNAME= codeblocks_16.01
@@ -18,7 +18,8 @@ USE_LIBTOOL= yes
USE_TOOLS+= pkg-config gmake
USE_LANGUAGES= c c++11
-CONFIGURE_ARGS+= --with-contrib-plugins=AutoVersioning,BrowseTracker,byogames,cbkoders,codesnippets,codestat,dragscroll,envvars,help,keybinder,libfinder,profiler,regex,exporter,symtab
+CONFIGURE_ARGS+= --disable-gtk-notebook
+CONFIGURE_ARGS+= --with-contrib-plugins=AutoVersioning,BrowseTracker,-MouseSap,byogames,cbkoders,codesnippets,codestat,dragscroll,envvars,help,keybinder,libfinder,profiler,regex,exporter,symtab
# wxsmith makes error in build process
CXXFLAGS.Linux+= -std=c++11