forked from ssmall41/asynch
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Major rework to optimize the number of mem allocations
- Loading branch information
Samuel Debionne
authored
May 2, 2017
1 parent
d9af112
commit c029bec
Showing
157 changed files
with
16,512 additions
and
23,210 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
SUBDIRS = src forecasters tests tools | ||
SUBDIRS = src tests tools | ||
ACLOCAL_AMFLAGS = -I m4 | ||
|
||
dist_doc_DATA = LICENSE README.md |
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,11 +1,12 @@ | ||
AC_INIT([asynch], [1.2.1], [[email protected]]) | ||
AC_INIT([asynch], [1.3], [[email protected]]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
|
||
AM_INIT_AUTOMAKE([foreign -Wall -Werror]) | ||
|
||
# Check for programms | ||
AX_PROG_CC_MPI([], [], [AC_MSG_FAILURE([MPI compiler requested, but couldn't find MPI.])] ) | ||
AC_PROG_CC_STDC #C99 | ||
AM_PROG_CC_C_O #automake < 1.14 | ||
AM_PROG_AR | ||
AC_PROG_RANLIB | ||
|
||
|
@@ -17,7 +18,7 @@ AX_LIB_POSTGRESQL | |
AM_CONDITIONAL([HAVE_POSTGRESQL], [test "$HAVE_POSTGRESQL" -eq 1]) | ||
|
||
AC_CONFIG_HEADERS([config.h]) | ||
AC_CONFIG_FILES([Makefile src/Makefile forecasters/Makefile tests/Makefile tools/Makefile]) | ||
AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile tools/Makefile]) | ||
|
||
# Checks for packages | ||
PKG_CHECK_MODULES([CHECK], [check], [HAVE_LIBCHECK=1], [HAVE_LIBCHECK=0]) | ||
|
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.