Rolf Sponsel wrote:
> Now I'm stuck on another issue when installing the pfil[.pkg] package
> with pkgadd. Please see the included commands and output below. I once
...
> > Jul 17 12:33:15 somehost unix: pseudo-device: devinfo0
> > Jul 17 12:33:15 somehost unix: devinfo0 is /pseudo/[EMAIL PROTECTED]
> > Jul 17 12:33:16 somehost unix: /kernel/drv/pfil: undefined symbol
> 'ire_refrele'
You might try changing SunOS/qif.c, because this is the only place where
ire_refrele can still occur in Solaris 7:
*** SunOS/qif.c.ORI Mon Apr 17 09:32:04 2006
--- SunOS/qif.c Mon Jul 17 14:53:05 2006
***************
*** 1028,1034 ****
--- 1028,1036 ----
if (dir) {
il = ire_to_ill(dir);
+ #if SOLARIS2 >= 8
ire_refrele(dir);
+ #endif
if (il != NULL)
return qif_fromill(il);
}
CAVEAT: This is a formal guess by looking at pkt.c; I do not know the actual
meaning and have no documentation about the ire kernel functions.
DARREN, please help!