Steve Kreyer wrote:
Hi, I'm new to gnu autoconfig.
I have problems to use the AC_CHECK_HEADERS macro. I want to check for headerfiles such as arpa/inet.h sys/socket.h, netinet/in.h and thread.h
Now the checking for arpa/inet.h went well, but sys/socket.h, netinet/in.h and thread.h failed, but this headers are installed (sys/socket.h netinet/in.h in /usr/include and thread.h in /usr/local/include)
AC_CHECK_HEADERS([$(threadpath)/thread.h, sys/socket.h, netinet/in.h, arpa/inet.h])
Try this:
AC_CHECK_HEADERS([$(threadpath)/thread.h sys/socket.h netinet/in.h arpa/inet.h])
Read the docu! -- =^..^=
_______________________________________________ Autoconf mailing list Autoconf@xxxxxxx http://lists.gnu.org/mailman/listinfo/autoconf