From 3cd397346d7ac74a7220f121ecdff9343ac36960 Mon Sep 17 00:00:00 2001 From: Marco van Zwetselaar Date: Tue, 30 Aug 2022 16:44:02 +0300 Subject: [PATCH 1/4] git ignore build products --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 217e2bf7..db33ecc3 100755 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,7 @@ tags test-driver ylwrap compile +CMakeFiles +CMakeCache.txt +*.cmake +*.so From 4df61b30db6bd31dd5181c14e8a16bd67c610908 Mon Sep 17 00:00:00 2001 From: Marco van Zwetselaar Date: Tue, 30 Aug 2022 16:45:42 +0300 Subject: [PATCH 2/4] Add readline.c dependency to nutils library --- src/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0bcc6293..66fdd7b5 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -40,6 +40,7 @@ add_library(nutils set.c to_newick.c concat.c + readline.c ) # simple cases From df19bf28d83f15a343e9f6d2777230061b3e969a Mon Sep 17 00:00:00 2001 From: Marco van Zwetselaar Date: Tue, 30 Aug 2022 16:46:49 +0300 Subject: [PATCH 3/4] Fix compilation error on address_parser_status --- src/address_parser_status.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/address_parser_status.h b/src/address_parser_status.h index f149d778..6d74f18a 100755 --- a/src/address_parser_status.h +++ b/src/address_parser_status.h @@ -13,4 +13,4 @@ enum address_parser_status_type { * returns either \c NULL or the top-level enode of the address, so we need to * use an extern variable to convey its status. */ -enum address_parser_status_type address_parser_status; +extern enum address_parser_status_type address_parser_status; From b41304be891678ab1efceb095a8f4ff043f5dcab Mon Sep 17 00:00:00 2001 From: Marco van Zwetselaar Date: Tue, 30 Aug 2022 16:48:02 +0300 Subject: [PATCH 4/4] git ignore binary tests/test_set --- tests/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/.gitignore b/tests/.gitignore index d3a286d6..32e74bf6 100755 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -22,6 +22,7 @@ test_order_tree test_readline test_rnode test_rnode_iterator +test_set test_subtree test_svg_graph_radial test_to_newick