Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes compilation issues #31

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,7 @@ tags
test-driver
ylwrap
compile
CMakeFiles
CMakeCache.txt
*.cmake
*.so
1 change: 1 addition & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ add_library(nutils
set.c
to_newick.c
concat.c
readline.c
)

# simple cases
Expand Down
2 changes: 1 addition & 1 deletion src/address_parser_status.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
1 change: 1 addition & 0 deletions tests/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down