forked from bertiniteam/b2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request bertiniteam#32 from ofloveandhate/develop
bug fixes and compile improvements
- Loading branch information
Showing
8 changed files
with
39 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ | |
#define BERTINI_NODE_BASE_HPP | ||
|
||
|
||
|
||
#include "bertini2/config.h" | ||
|
||
#include <iostream> | ||
#include <string> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
|
||
|
||
|
||
|
||
|
||
#we're building pybertini, version 1.0.alpha2, and the corresponding email is dan brake's | ||
#we're building pybertini, version 1.0.alpha2, and the corresponding email is daniel brake's | ||
AC_INIT([pybertini], [1.0.alpha2], [[email protected]],[pybertini], [http://github.com/bertiniteam/b2]) | ||
|
||
|
||
|
@@ -14,6 +9,9 @@ AC_PREREQ([2.68]) | |
# | ||
AC_CONFIG_AUX_DIR([config]) | ||
|
||
#ensure that minieigen got cloned... i wish git recursed by default, but it doesn't. | ||
AC_CHECK_FILE([./minieigen/src/common.hpp],[],[AC_MSG_ERROR([it appears you didn't recurse when cloning b2, so you don't have minieigen in this directory. to get it, simply run `git submodule update --init'.])]) | ||
|
||
# turn on the keeping of produced objects in their folders. this is for non-recursive make | ||
# and autotools | ||
# see Recursive Make Considered Harmful, and any number of demos. | ||
|
@@ -78,7 +76,7 @@ AC_SEARCH_LIBS([mpfr_get_version],[mpfr], [],[ | |
AX_EIGEN | ||
|
||
|
||
AX_BOOST_BASE([1.55],, [AC_MSG_ERROR([bertini2 needs Boost at least 1.55, but it was not found in your system])]) | ||
AX_BOOST_BASE([1.56],, [AC_MSG_ERROR([bertini2 needs Boost at least 1.56, but it was not found in your system])]) | ||
AX_BOOST_SYSTEM | ||
AX_BOOST_FILESYSTEM | ||
AX_BOOST_CHRONO | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters