Donald R Laster Jr <don_sfw <at> dlaster.com> writes: > > Folks, > > I am trying to build gcc 4.2.1 on a Solaris 8 system and it keeps complaining about this file being missing > > constructors_destructor_fn_imps.hpp > > Within the tree the file does exist > > find ./ -name hash_load_check_resize_trigger_imp.hpp -print Hi. Try to find files with hp extenstion. Not hpp. Use somethings like this: find PATH -name hash_load_check_resize_trigger_imp.hp Now rename the hp files to hpp files: mv constructors_destructor_fn_imps.hp \ constructors_destructor_fn_imps.hpp RAF