File tree Expand file tree Collapse file tree 3 files changed +13
-16
lines changed
Expand file tree Collapse file tree 3 files changed +13
-16
lines changed Original file line number Diff line number Diff line change 1- November 29 , 2016
1+ December 5 , 2016
22 - Release 2.40.0
33 - number rounding added to SVG renderer (same as PS and TK rounding) to
44 aid regression testing.
55 - additional regressson test framework, used in Travis CI builds. (Erwin
66 Janssen)
7+ - PHP7 support (requires swig-3.0.11 or later)
78 - Allow user to specify clustering algorithm in gvmap.
89 - Add Sierpinski graph generator to gvgen
910 - Extensive code cleanup (Erwin Janssen)
Original file line number Diff line number Diff line change @@ -2177,20 +2177,16 @@ AC_ARG_WITH(pangocairo,
21772177if test "x$with_pangocairo" != "xyes"; then
21782178 use_pangocairo="No (disabled)"
21792179else
2180- if test "x$use_cairo" != "xYes"; then
2181- use_pangocairo="No (missing cairo support)"
2182- else
2183- # require at least the version available on centos5 (fc6 has 1.14.10)
2184- PKG_CHECK_MODULES(PANGOCAIRO, [ pangocairo >= 1.14.9] ,[
2185- use_pangocairo="Yes"
2186- AC_DEFINE_UNQUOTED ( HAVE_PANGOCAIRO ,1 ,
2187- [ Define if you have the pangocairo library] )
2188- AC_SUBST ( [ PANGOCAIRO_CFLAGS] )
2189- AC_SUBST ( [ PANGOCAIRO_LIBS] )
2190- ] ,[
2191- use_pangocairo="No (pangocairo library not available)"
2192- ] )
2193- fi
2180+ # require at least the version available on centos5 (fc6 has 1.14.10)
2181+ PKG_CHECK_MODULES(PANGOCAIRO, [ pangocairo >= 1.14.9] ,[
2182+ use_pangocairo="Yes"
2183+ AC_DEFINE_UNQUOTED ( HAVE_PANGOCAIRO ,1 ,
2184+ [ Define if you have the pangocairo library] )
2185+ AC_SUBST ( [ PANGOCAIRO_CFLAGS] )
2186+ AC_SUBST ( [ PANGOCAIRO_LIBS] )
2187+ ] ,[
2188+ use_pangocairo="No (pangocairo library not available)"
2189+ ] )
21942190fi
21952191AM_CONDITIONAL(WITH_PANGOCAIRO, [ test "x$use_pangocairo" = "xYes"] )
21962192
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ BuildRequires: golang >= 1.2 gcc-go swig >= 3.0.2
169169%if %fedora <= 24
170170%define PHP 1
171171BuildRequires: php-devel
172- # disable PHP7 in fc25 until swig supports it
172+ # disable PHP7 in fc25 until swig supports it - requires swig-3.0.11
173173%endif
174174%endif
175175
You can’t perform that action at this time.
0 commit comments