-November 29, 2016
+December 5, 2016
- Release 2.40.0
- number rounding added to SVG renderer (same as PS and TK rounding) to
aid regression testing.
- additional regressson test framework, used in Travis CI builds. (Erwin
Janssen)
+ - PHP7 support (requires swig-3.0.11 or later)
- Allow user to specify clustering algorithm in gvmap.
- Add Sierpinski graph generator to gvgen
- Extensive code cleanup (Erwin Janssen)
if test "x$with_pangocairo" != "xyes"; then
use_pangocairo="No (disabled)"
else
- if test "x$use_cairo" != "xYes"; then
- use_pangocairo="No (missing cairo support)"
- else
- # require at least the version available on centos5 (fc6 has 1.14.10)
- PKG_CHECK_MODULES(PANGOCAIRO, [pangocairo >= 1.14.9],[
- use_pangocairo="Yes"
- AC_DEFINE_UNQUOTED(HAVE_PANGOCAIRO,1,
- [Define if you have the pangocairo library])
- AC_SUBST([PANGOCAIRO_CFLAGS])
- AC_SUBST([PANGOCAIRO_LIBS])
- ],[
- use_pangocairo="No (pangocairo library not available)"
- ])
- fi
+ # require at least the version available on centos5 (fc6 has 1.14.10)
+ PKG_CHECK_MODULES(PANGOCAIRO, [pangocairo >= 1.14.9],[
+ use_pangocairo="Yes"
+ AC_DEFINE_UNQUOTED(HAVE_PANGOCAIRO,1,
+ [Define if you have the pangocairo library])
+ AC_SUBST([PANGOCAIRO_CFLAGS])
+ AC_SUBST([PANGOCAIRO_LIBS])
+ ],[
+ use_pangocairo="No (pangocairo library not available)"
+ ])
fi
AM_CONDITIONAL(WITH_PANGOCAIRO, [test "x$use_pangocairo" = "xYes"])