mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
0e6b076666
* Remove m4/* files * Reorganize all M4-stuff into m4.include subdur * move doxygen-include.am into doc/doxygen-include.am
14 lines
380 B
Plaintext
14 lines
380 B
Plaintext
AC_DEFUN([AC_REQUIRE_SOCKET],
|
|
[
|
|
AC_SEARCH_LIBS(socket, [xnet bsd socket inet], [have_socket=yes])
|
|
if test x$have_socket = xyes; then
|
|
AC_SEARCH_LIBS(gethostbyname, [bsd socket inet netinet])
|
|
AC_CHECK_MEMBERS([struct linger.l_linger], , , [
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
])
|
|
else
|
|
AC_ERROR([Couldnt find socket functions])
|
|
fi
|
|
])
|