Hi - not sure who to direct this at
I've just had a build problem where 'nzt.h' and 'ociextp.h' were missing
during make.
This occured as the find_headers() function in Makefile.PL did not RE match
the files and so does not return 'rdbms/public' as an include path (building
on HPUX11).
I therefore modified the find_headers() line from:
return unless /^o(ci...|ratypes)\.h$/i;
to:
return unless /^\w+\.h$/i;
which allieviated the problem. Is this a common problem and if so could
this be integrated into DBD::Oracle's Makefile.PL if required?
many thanks
Roger Foskett