Im using Linux Mint 21 and I'm trying to build python 2.6.2 I need it for Blender 2.49b. So here is error which Im getting
from /home/slobodan/Python-2.6.2/Modules/nismodule.c:17:
/usr/include/rpc/types.h:189:10: fatal error: misc/abstract_atomic.h: No such file or directory
189 | #include <misc/abstract_atomic.h>
| ^~~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
I have installed libntirpc-dev
and I tried to tell make where my ntirpc
is like suggested here make CFLAGS=-I/usr/include/ntirpc
so it did find #include <rpc/rpc.h>
but it cant find
<misc/abstract_atomic.h>
but I have it on my system
apt-file search misc/abstract_atomic.h
libntirpc-dev: /usr/include/ntirpc/misc/abstract_atomic.h
and make cant find it on my system so what Im doing wrong ?