Skip to content

Commit 78f8f2c

Browse files
committed
Merge commit '7d0e8da89c3acb8e78abf09e19a05d846a806531' as 'vendor/ta-lib'
2 parents f2d9b20 + 7d0e8da commit 78f8f2c

File tree

657 files changed

+249397
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

657 files changed

+249397
-0
lines changed

vendor/ta-lib/Makefile.am

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
AUTOMAKE_OPTIONS = foreign 1.4
2+
SUBDIRS = src src/tools
3+
bin_SCRIPTS = ta-lib-config

vendor/ta-lib/autogen.sh

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
echo aclocal
3+
aclocal || exit
4+
echo autoheader
5+
autoheader || exit
6+
echo libtoolize --copy --force
7+
libtoolize --copy --force || exit
8+
echo automake -a -c
9+
automake -a -c || exit
10+
echo autoconf
11+
autoconf || exit

vendor/ta-lib/bin/.cvsignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
gen_code
2+
gen_data
3+
gen_rdata
4+
ta_regtest
5+
ta_sql
6+
ta_yahoo
7+
webfetch

vendor/ta-lib/bin/HOLDER

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Do not erase this file.
2+
Some maintenance tools ignore empty directory. This file prevents this directory to be empty.

vendor/ta-lib/configure.in

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# -*- Autoconf -*-
2+
# Process this file with autoconf to produce a configure script.
3+
4+
AC_PREREQ(2.59)
5+
AC_COPYRIGHT([(c) TicTacTec 2005, 2006])
6+
AC_INIT([ta-lib], [SVN], [http://sourceforge.net/tracker/?group_id=8903&atid=108903])
7+
AC_CONFIG_SRCDIR([src/ta_func/ta_AD.c])
8+
AC_CONFIG_HEADER([include/ta_config.h])
9+
AM_INIT_AUTOMAKE([ta-lib], [SVN])
10+
11+
# Checks for programs.
12+
AC_PROG_CC
13+
AC_PROG_LIBTOOL
14+
15+
# Checks for libraries.
16+
AC_CHECK_LIB([dl], [dlopen])
17+
AC_CHECK_LIB([pthread], [pthread_create])
18+
19+
# Checks for header files.
20+
AC_HEADER_STDC
21+
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])
22+
23+
# Checks for typedefs, structures, and compiler characteristics.
24+
AC_C_CONST
25+
AC_TYPE_SIZE_T
26+
AC_STRUCT_TM
27+
AC_C_VOLATILE
28+
AC_CHECK_TYPES([ptrdiff_t])
29+
30+
# Checks for library functions.
31+
AC_TYPE_SIGNAL
32+
AC_FUNC_STRCOLL
33+
AC_FUNC_STRFTIME
34+
AC_FUNC_STRTOD
35+
AC_FUNC_VPRINTF
36+
AC_CHECK_FUNCS([floor isascii localeconv mblen memmove memset modf pow sqrt strcasecmp strchr strerror strncasecmp strrchr strstr strtol strtoul])
37+
38+
# Versioning:
39+
# Only change this if library is no longer
40+
# ABI compatible with previous version
41+
# (e.g. function declaration changed)
42+
TALIB_LIBRARY_VERSION=0:0:0
43+
44+
AC_SUBST(TALIB_LIBRARY_VERSION)
45+
46+
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])
47+
AC_OUTPUT

vendor/ta-lib/ide/msvc/lib_proj/gen_code/gen_code.dsp

+284
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)