Skip to content

Commit 696584f

Browse files
author
Release Manager
committed
gh-39111: build/pkgs/planarity/spkg-configure.m4: update header check In the `./configure` test for libplanarity, we should be testing for `planarity/graph.h` instead of `planarity/planarity.h`: 1. `graph.h` is what we actually use in `src/sage/graphs/planarity.pyx`, 2. `planarity.h` is going away in a future version. cf. https://github.com/graph-algorithms/edge-addition-planarity- suite/pull/125 URL: #39111 Reported by: Michael Orlitzky Reviewer(s): Frédéric Chapoton
2 parents 92e640d + ea0f811 commit 696584f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/pkgs/planarity/spkg-configure.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SAGE_SPKG_CONFIGURE([planarity], [
22
AC_LANG_PUSH([C])
3-
AC_CHECK_HEADER([planarity/planarity.h], [
3+
AC_CHECK_HEADER([planarity/graph.h], [
44
AC_CHECK_LIB([planarity], [gp_InitGraph], [
55
AC_MSG_CHECKING([for planarity version 3.0 or later])
66
AC_COMPILE_IFELSE(

0 commit comments

Comments
 (0)