1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

applied a patch by MDOOTSON to resolve #70135

This commit is contained in:
Kenichi Ishigaki 2011-09-16 00:41:58 +00:00
parent d17eda6553
commit 4184d2314c
2 changed files with 10 additions and 0 deletions

View file

@ -4,6 +4,8 @@ Changes for Perl extension DBD-SQLite
- Updated to SQLite 3.7.7.1 (DUNCAND)
- Made util/getsqlite.pl work properly for SQLite 3.7.5+ (ISHIGAKI)
- Cookbook: don't use globals (Yuriy Kaminskiy)
- Resolved #70135 and hopefully other mod_perl/CentOS issues like
#63873 and #47983, with a patch by MDOOTSON++ (ISHIGAKI)
1.33 Mon 20 May 2011
- Production release, no changes from 1.32_04

View file

@ -249,6 +249,14 @@ my @CC_OPTIONS = (
) : () ),
);
# RT #70135: These flags are valid only for gcc/g++
if ($Config{cc} =~ /^g?cc/) {
push @CC_OPTIONS,
CCFLAGS => $Config{ccflags} . ' -Wl,-Bsymbolic',
LDFLAGS => $Config{ldflags} . ' -Wl,-Bsymbolic',
LDDLFLAGS => $Config{lddlflags} . ' -Wl,-Bsymbolic';
}
#####################################################################
# Hand off to ExtUtils::MakeMaker