> I cannot figure out how to install/use (if possible) the gnu.regexp on > jdk-1.5.0 i386. I got the package, but while being included, it > makes javac complain about unchecked or unsafe operations. > > javac -Xlint:unchecked says: > warning: [unchecked] unchecked call to add(E) as member > of the raw type java.util.Vector <..>
These are warnings, not errors. > So I thought that it would be reasonable to ask before starting > to dig on this deeper as I suspect that it might be OpenBSD > related in sense that gnu.regexp seems to come from gnu. No, they are because the GNU regexp has not been updated for Java 5. One wants to get rid of all such warnings eventually, but they are not a show-stopper. Search and read up on "java 5 generics" for more details.
