Skip to content

Commit f762447

Browse files
jengelhjames-d-mitchell
authored andcommitted
build: support for EAPS 4
1 parent ee6f7f2 commit f762447

139 files changed

Lines changed: 31805 additions & 19063 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Makefile.in

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -45,28 +45,32 @@ endif
4545

4646

4747
ifdef WITH_INCLUDED_PLANARITY
48-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphDFSUtils.c
49-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphDrawPlanar.c
50-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphDrawPlanar_Extensions.c
51-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphEmbed.c
52-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphExtensions.c
53-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphIO.c
54-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphIsolator.c
55-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphK23Search.c
56-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphK23Search_Extensions.c
57-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphK33Search.c
58-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphK33Search_Extensions.c
59-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphK4Search.c
60-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphK4Search_Extensions.c
61-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphNonplanar.c
62-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphOuterplanarObstruction.c
63-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphTests.c
64-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/graphUtils.c
65-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/listcoll.c
66-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/planarityRandomGraphs.c
67-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/planaritySpecificGraph.c
68-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/planarityUtils.c
69-
KEXT_SOURCES += $(PLANARITY_SUITE_DIR)/c/stack.c
48+
KEXT_SOURCES += \
49+
$(PLANARITY_SUITE_DIR)/c/graphLib/graphDFSUtils.c \
50+
$(PLANARITY_SUITE_DIR)/c/graphLib/graphUtils.c \
51+
$(PLANARITY_SUITE_DIR)/c/graphLib/extensionSystem/graphExtensions.c \
52+
$(PLANARITY_SUITE_DIR)/c/graphLib/homeomorphSearch/graphK23Search.c \
53+
$(PLANARITY_SUITE_DIR)/c/graphLib/homeomorphSearch/graphK23Search_Extensions.c \
54+
$(PLANARITY_SUITE_DIR)/c/graphLib/homeomorphSearch/graphK33Search.c \
55+
$(PLANARITY_SUITE_DIR)/c/graphLib/homeomorphSearch/graphK33Search_Extensions.c \
56+
$(PLANARITY_SUITE_DIR)/c/graphLib/homeomorphSearch/graphK4Search.c \
57+
$(PLANARITY_SUITE_DIR)/c/graphLib/homeomorphSearch/graphK4Search_Extensions.c \
58+
$(PLANARITY_SUITE_DIR)/c/graphLib/io/g6-api-utilities.c \
59+
$(PLANARITY_SUITE_DIR)/c/graphLib/io/g6-read-iterator.c \
60+
$(PLANARITY_SUITE_DIR)/c/graphLib/io/g6-write-iterator.c \
61+
$(PLANARITY_SUITE_DIR)/c/graphLib/io/graphIO.c \
62+
$(PLANARITY_SUITE_DIR)/c/graphLib/io/strbuf.c \
63+
$(PLANARITY_SUITE_DIR)/c/graphLib/io/strOrFile.c \
64+
$(PLANARITY_SUITE_DIR)/c/graphLib/lowLevelUtils/apiutils.c \
65+
$(PLANARITY_SUITE_DIR)/c/graphLib/lowLevelUtils/listcoll.c \
66+
$(PLANARITY_SUITE_DIR)/c/graphLib/lowLevelUtils/stack.c \
67+
$(PLANARITY_SUITE_DIR)/c/graphLib/planarityRelated/graphDrawPlanar.c \
68+
$(PLANARITY_SUITE_DIR)/c/graphLib/planarityRelated/graphDrawPlanar_Extensions.c \
69+
$(PLANARITY_SUITE_DIR)/c/graphLib/planarityRelated/graphEmbed.c \
70+
$(PLANARITY_SUITE_DIR)/c/graphLib/planarityRelated/graphIsolator.c \
71+
$(PLANARITY_SUITE_DIR)/c/graphLib/planarityRelated/graphNonplanar.c \
72+
$(PLANARITY_SUITE_DIR)/c/graphLib/planarityRelated/graphOuterplanarObstruction.c \
73+
$(PLANARITY_SUITE_DIR)/c/graphLib/planarityRelated/graphTests.c
7074

7175
KEXT_CFLAGS += -I$(PLANARITY_SUITE_DIR) -include extern/eaps_flags.h
7276
else

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ AS_IF([test "x$enable_compile_warnings" != "xno"],
9494

9595
AX_CHECK_PLANARITY
9696
if test "x$with_external_planarity" = xno ; then
97-
PLANARITY_SUITE_DIR=extern/edge-addition-planarity-suite-Version_3.0.1.0
97+
PLANARITY_SUITE_DIR=extern/edge-addition-planarity-suite-Version_4.0.0.0
9898
AC_SUBST(PLANARITY_SUITE_DIR)
9999
fi
100100

extern/eaps_flags.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,7 @@
1414
#pragma GCC diagnostic ignored "-Wstrict-prototypes"
1515
#pragma GCC diagnostic ignored "-Wswitch-default"
1616
#pragma GCC diagnostic ignored "-Wunused-result"
17+
#pragma GCC diagnostic ignored "-Wdeclaration-after-statement"
18+
#pragma GCC diagnostic ignored "-Wredundant-decls"
19+
#pragma GCC diagnostic ignored "-Wnull-dereference"
1720
#endif

extern/edge-addition-planarity-suite-Version_3.0.1.0/.gitignore

Lines changed: 0 additions & 65 deletions
This file was deleted.

extern/edge-addition-planarity-suite-Version_3.0.1.0/.project

Lines changed: 0 additions & 11 deletions
This file was deleted.

extern/edge-addition-planarity-suite-Version_3.0.1.0/Makefile.am

Lines changed: 0 additions & 56 deletions
This file was deleted.

extern/edge-addition-planarity-suite-Version_3.0.1.0/README.md

Lines changed: 0 additions & 89 deletions
This file was deleted.

extern/edge-addition-planarity-suite-Version_3.0.1.0/autogen.sh

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)