Compile DBD::Oracle with Oracle 10g XE + Bugzilla
If you are like me and want to compile DBD::Oracle to use with Bugzilla and your installation of Oracle 10g XE, simply type the following command from the bugzilla/ root directory:
ORACLE_SID=XE
ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
LD_LIBRARY_PATH=$ORACLE_HOME/lib
./install-module.pl DBD::Oracle
Of course, you must have installed oracle-xe-univ-10.2.0.1-1.0.i386.rpm already. This should save you a few headaches to make it work.
I just found xiaoou blog post about the same topic:
http://xiaoouwu.blogspot.com/2008/11/bugzilla-32-with-oracle-howto.html
Nice information about DBD compilation of Oracle for perl. Thanks for sharing.