Skip to content

Commit 03c2f00

Browse files
committed
fix pangocairo breakage from last commit
1 parent 78ea3dc commit 03c2f00

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

ChangeLog

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
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)

configure.ac

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2177,20 +2177,16 @@ AC_ARG_WITH(pangocairo,
21772177
if test "x$with_pangocairo" != "xyes"; then
21782178
use_pangocairo="No (disabled)"
21792179
else
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+
])
21942190
fi
21952191
AM_CONDITIONAL(WITH_PANGOCAIRO, [test "x$use_pangocairo" = "xYes"])
21962192

graphviz.spec.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ BuildRequires: golang >= 1.2 gcc-go swig >= 3.0.2
169169
%if %fedora <= 24
170170
%define PHP 1
171171
BuildRequires: 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

0 commit comments

Comments
 (0)