多线程perl下安装DBD::Oracle包DBD-Oracle-1.21的问题

多线程perl下安装DBD::Oracle包DBD-Oracle-1.21的问题

已安装多线程perl5.8.8,下载和安装了DBI-1.604,然后下载DBD-Oracle-1.21,安装时运行perl Makefile.PL时,提示下面的错误:
WARNING: Oracle is built with multi-threading libraries
         You will most likely need to rebuild perl from sources
         with the following libraries: -lcl -lpthread
WARNING: Stripped `cat /database/ORACLE/u01/app/oracle/product/9.0.2/lib32/sysliblist`
         from link command, because it contains libraries not
         compiled with +z or +Z (PIC) causing link to fail.
         Furthermore, we should have already grabbed these libraries


似乎DBD::Oracle只能安装在非多线程版本的perl下,并且用-lcl -lpthread做参数安装perl.
请大侠们指点一下,多线程perl和DBD::Oracle难道不兼容的???
米有人回答呀.
多线程版本perl如下:perl -V
...
usethreads=define use5005threads=undef useithreads=define usemultiplicity=define
...

我查看了文件README.hpux.txt
有下面的说明:
Note that is important to build a B<non>-threaded Perl, but linked with
-lcl and -lpthread.   Since Oracle on HP uses libpthread, everything that
dynamically loads it (such as DBD-Oracle) must be built/linked
with '-lpthread -lcl'.  (When used with Apache, it and any associated
modules must also be built this way - otherwise all it does is core
dump when loading DBD::Oracle).


是不是表示多线程perl不能装DBD::Oracle

惨了.