libm.so.1 (SUNW_1.1) error while building

I am trying to build a product which is depend on system library and getting below error. How to resolve below Error:-

[200 sch14081@Reva /logtrak/sch14081/AA] ldd /finder3/baseline/95/ed/src/lib/libcartoGraphCPP.so
libsunmath.so.1 => /opt/SUNWspro/SC4.2/lib/libsunmath.so.1
libm.so.1 => /usr/lib/libm.so.1
libm.so.1 (SUNW_1.1) => (version not found)
libpthread.so.1 => /usr/lib/libpthread.so.1
libc.so.1 => /usr/lib/libc.so.1
libdl.so.1 => /usr/lib/libdl.so.1
libthread.so.1 => /usr/lib/libthread.so.1
/usr/platform/SUNW,Ultra-5_10/lib/libc_psr.so.1
[

Looks like you have a libm.so.1 file but it is not the version libsunmath.so.1 wants:
Try looking for libm.so.1 files elsewhere, e.g.:
$ grep libm.so.1 /var/sadm/install/contents | grep " f "
Add any other locations into your LD_LIBRARY_PATH before /usr/lib, otherwise check SUNWlibms is okay (pkgchk <pkname> is it?) and for patches to SUNWlibms which may update it.