Author: byterock
Date: Wed Jul 2 09:44:55 2008
New Revision: 11477
Modified:
dbd-oracle/trunk/Changes
dbd-oracle/trunk/Makefile.PL
Log:
quick fix for Makefile.PL
Modified: dbd-oracle/trunk/Changes
==============================================================================
--- dbd-oracle/trunk/Changes (original)
+++ dbd-oracle/trunk/Changes Wed Jul 2 09:44:55 2008
@@ -1,4 +1,5 @@
=head1 Changes in DBD-Oracle 1.22(svn rev xxxx) 2008
+ Fix for hpux 11.23 linker error unrecognized argument on the Makefile from
someone on CPAN forum
Added fetch by piece for lobs, fixed persistent lobs and changed to pod to
reflect the changes
Added comment to POD on case sensitivity of ORACLE environment variables
suggested by Gerhard Lausser
Added patch to fix a number of harmless, but annoying, GCC warnings from
Eric Simon
Modified: dbd-oracle/trunk/Makefile.PL
==============================================================================
--- dbd-oracle/trunk/Makefile.PL (original)
+++ dbd-oracle/trunk/Makefile.PL Wed Jul 2 09:44:55 2008
@@ -1788,7 +1788,8 @@
"\t\$(NMEDIT) -R ./hints/macos_bundle.syms
\$(INST_DYNAMIC) || true\n";
}
elsif ($os eq 'hpux') {
- $m =~ s/LD_RUN_PATH=(\S+)\s+(\S+)/$2 -Wl,+b$1/;
+ $m =~ "s/LD_RUN_PATH=(\S+)\s+(\S+)/$2 -Wl,+b $1/";
+
}
return ($m);
}