Solved 'sys/seq.h' not found

I needed seq.h
I downloaded it which exist on 12.2-RELEASE.
But make buildworld did not work.
It says another errors.

12.2-RELEASE which is rollbacked from 13.0-RELEASE can not upgrade to 13.0-RELEASE again?
 
Your attached log doesn't show the error line in your message. In any case, for some reason your buildworld is picking up filedesc.h from your /usr/include/sys.

I tried this on a fresh install of a 12.2-STABLE in a VM and didn't see any problem. Make sure you have /bin:/sbin:/usr/bin:/usr/sbin *first* in your path when you do a buildworld. And blow away /usr/obj/usr completely before you start.

Another thing you can try is to run the whole thing under ktrace such as ktrace -di make buildworld and then use kdump to see what other files were accessed before the one that failed. This is slower but you will get a better idea of what is going on.
 
Back
Top