-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '3bc0ad4ae0b7ec05c848c6fc6fbf083d7b1d4fe1' as 'vendor/ta…
…-lib'
- Loading branch information
Showing
657 changed files
with
249,397 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
AUTOMAKE_OPTIONS = foreign 1.4 | ||
SUBDIRS = src src/tools | ||
bin_SCRIPTS = ta-lib-config |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
echo aclocal | ||
aclocal || exit | ||
echo autoheader | ||
autoheader || exit | ||
echo libtoolize --copy --force | ||
libtoolize --copy --force || exit | ||
echo automake -a -c | ||
automake -a -c || exit | ||
echo autoconf | ||
autoconf || exit |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
gen_code | ||
gen_data | ||
gen_rdata | ||
ta_regtest | ||
ta_sql | ||
ta_yahoo | ||
webfetch |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Do not erase this file. | ||
Some maintenance tools ignore empty directory. This file prevents this directory to be empty. |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# -*- Autoconf -*- | ||
# Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ(2.59) | ||
AC_COPYRIGHT([(c) TicTacTec 2005, 2006]) | ||
AC_INIT([ta-lib], [SVN], [http://sourceforge.net/tracker/?group_id=8903&atid=108903]) | ||
AC_CONFIG_SRCDIR([src/ta_func/ta_AD.c]) | ||
AC_CONFIG_HEADER([include/ta_config.h]) | ||
AM_INIT_AUTOMAKE([ta-lib], [SVN]) | ||
|
||
# Checks for programs. | ||
AC_PROG_CC | ||
AC_PROG_LIBTOOL | ||
|
||
# Checks for libraries. | ||
AC_CHECK_LIB([dl], [dlopen]) | ||
AC_CHECK_LIB([pthread], [pthread_create]) | ||
|
||
# Checks for header files. | ||
AC_HEADER_STDC | ||
AC_CHECK_HEADERS([float.h inttypes.h limits.h locale.h stddef.h stdint.h stdlib.h string.h unistd.h wchar.h wctype.h]) | ||
|
||
# Checks for typedefs, structures, and compiler characteristics. | ||
AC_C_CONST | ||
AC_TYPE_SIZE_T | ||
AC_STRUCT_TM | ||
AC_C_VOLATILE | ||
AC_CHECK_TYPES([ptrdiff_t]) | ||
|
||
# Checks for library functions. | ||
AC_TYPE_SIGNAL | ||
AC_FUNC_STRCOLL | ||
AC_FUNC_STRFTIME | ||
AC_FUNC_STRTOD | ||
AC_FUNC_VPRINTF | ||
AC_CHECK_FUNCS([floor isascii localeconv mblen memmove memset modf pow sqrt strcasecmp strchr strerror strncasecmp strrchr strstr strtol strtoul]) | ||
|
||
# Versioning: | ||
# Only change this if library is no longer | ||
# ABI compatible with previous version | ||
# (e.g. function declaration changed) | ||
TALIB_LIBRARY_VERSION=0:0:0 | ||
|
||
AC_SUBST(TALIB_LIBRARY_VERSION) | ||
|
||
AC_CONFIG_FILES([Makefile src/Makefile src/ta_abstract/Makefile src/ta_common/Makefile src/ta_func/Makefile src/tools/Makefile src/tools/gen_code/Makefile src/tools/ta_regtest/Makefile ta-lib-config ta-lib.spec ta-lib.dpkg]) | ||
AC_OUTPUT |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.