Pugazenthi
New member
C:
#include <stdio.h>
#ifdef USE_TIRPC
#include <tirpc/rpc/types.h>
#else
#include <rpc/types.h>
#endif
@William.Hatheway
This is the include section of rpc_test.c file in tools directory. It checks for the availability of types.h but it fails to include the available
/usr/include/tirpc/rpc/types.h header file. So its a try to compile run_test.c using added path -I/usr/include/tirpc with header search path.
For that i edited in Makefile which i mentioned earlier as
Bash:
@cd tools ; /bin/rm -f rpc_test.exe ; $(SCC) -DUSE_TIRPC -I/usr/include/tirpc rpc_test.c -ltirpc -o rpc_test.exe ; cd ..
So that it creates executable rpc_test.exe and finds the existing types.h file.
Finally it clears the warning in configure result.
As i am interested in simulating vortex following nest, i am confused with these warning.
What's the importance of landuse (type.h related to landuse read from forumn) updatation in vortex following nest.
Last edited: