Skip to content

Commit

Permalink
Merge commit '3bc0ad4ae0b7ec05c848c6fc6fbf083d7b1d4fe1' as 'vendor/ta…
Browse files Browse the repository at this point in the history
…-lib'
  • Loading branch information
mckelvin committed Feb 7, 2017
2 parents c553531 + 3bc0ad4 commit 81be22e
Show file tree
Hide file tree
Showing 657 changed files with 249,397 additions and 0 deletions.
3 changes: 3 additions & 0 deletions vendor/ta-lib/Makefile.am
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
11 changes: 11 additions & 0 deletions vendor/ta-lib/autogen.sh
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
7 changes: 7 additions & 0 deletions vendor/ta-lib/bin/.cvsignore
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
2 changes: 2 additions & 0 deletions vendor/ta-lib/bin/HOLDER
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.
47 changes: 47 additions & 0 deletions vendor/ta-lib/configure.in
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
284 changes: 284 additions & 0 deletions vendor/ta-lib/ide/msvc/lib_proj/gen_code/gen_code.dsp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 81be22e

Please sign in to comment.