Skip to content

Commit aaccc35

Browse files
committed
disable gvc if >= 2.30
gvc seems to be broken post 2.30, disable it see http://lists.research.att.com/pipermail/graphviz-devel/2012/001544.html
1 parent a6ea330 commit aaccc35

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

configure.ac

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,11 @@ fi
272272
# optional ... use libgvc to draw graphs of workspace dependencies
273273
AC_ARG_WITH([libgvc], AS_HELP_STRING([--without-libgvc], [build without libgvc (default: test)]))
274274

275+
# gvc 2.30 is broken in a number of ways and we can't use it, see for example
276+
# http://lists.research.att.com/pipermail/graphviz-devel/2012/001544.html
277+
275278
if test "x$with_libgvc" != "xno"; then
276-
PKG_CHECK_MODULES(LIBGVC, libgvc,
279+
PKG_CHECK_MODULES(LIBGVC, libgvc < 2.30,
277280
[AC_DEFINE(HAVE_LIBGVC,1,[define if you have libgvc installed.])
278281
with_libgvc=yes
279282
],
@@ -381,6 +384,7 @@ use fftw3 for FFT: $with_fftw3
381384
use gsl for numeric functions: $with_gsl
382385
use libgoffice to show plots: $with_libgoffice
383386
use libgvc to show ws dep graphs: $with_libgvc
387+
(requires gvc < 2.30)
384388
use gtksheet to show matrices: $with_gtksheet
385389
(requires gtk+-2.0 >= 2.18)
386390
use gtkinfobar to show messages: $nip_use_infobar

0 commit comments

Comments
 (0)