Skip to content

Commit b69a731

Browse files
committed
Handling windows related issues for the build. upgrading version number
1 parent 991be2a commit b69a731

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SYNOPSIS
2323

2424
VERSION
2525

26-
0.17
26+
0.18
2727

2828
WARNING
2929

@@ -62,7 +62,7 @@ REPOSITORY
6262

6363
COPYRIGHT
6464

65-
Copyright (C) 2013-2022. Vikas N Kumar <[email protected]>. All Rights
65+
Copyright (C) 2013-2025. Vikas N Kumar <[email protected]>. All Rights
6666
Reserved.
6767

6868
LICENSE

alienfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ use Path::Tiny qw(path);
88
if ($^O !~ /freebsd|openbsd|netbsd/i) {
99
plugin 'Probe::CBuilder' => (
1010
lang => 'C',
11-
cflags => $ENV{TALIB_INCLUDES} ? "-I$ENV{TALIB_INCLUDES}": "",
11+
cflags => $ENV{TALIB_INCLUDES} ? "-I$ENV{TALIB_INCLUDES} -I$ENV{TALIB_INCLUDES}/ta-lib": "",
1212
libs => $ENV{TALIB_LIBDIRS} ? "-L$ENV{TALIB_LIBDIRS} -lta-lib -lm" : "-lta-lib -lm",
1313
program => <<'EOF');
14-
#include <ta-lib/ta_libc.h>
14+
#include <ta_libc.h>
1515
int main(int argc, char **argv)
1616
{
1717
TA_Initialize();

lib/Alien/TALib.pm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use strict;
33
use warnings;
44
use parent 'Alien::Base';
55

6-
our $VERSION = '0.17';
6+
our $VERSION = '0.18';
77
$VERSION = eval $VERSION;
88

99
1;
@@ -40,7 +40,7 @@ C<Makefile.PL> file if you're using ExtUtils::MakeMaker.
4040
4141
=head1 VERSION
4242
43-
0.17
43+
0.18
4444
4545
=head1 WARNING
4646
@@ -84,7 +84,7 @@ L<https://github.com/vikasnkumar/Alien-TALib.git>
8484
8585
=head1 COPYRIGHT
8686
87-
Copyright (C) 2013-2022. Vikas N Kumar <[email protected]>. All Rights Reserved.
87+
Copyright (C) 2013-2025. Vikas N Kumar <[email protected]>. All Rights Reserved.
8888
8989
=head1 LICENSE
9090

t/01_basic.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ my $xs = <<'END';
1414
#include "perl.h"
1515
#include "XSUB.h"
1616
17-
#include "ta-lib/ta_libc.h"
17+
#include "ta_libc.h"
1818
1919
const char* version(const char* class) {
2020
return TA_GetVersionString();

0 commit comments

Comments
 (0)