Skip to content

Commit ea0f811

Browse files
committed
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. graph-algorithms/edge-addition-planarity-suite#125
1 parent f48da11 commit ea0f811

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)