updated socket library detection in configure.ac
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-05-03 10:23:25 +09:00
parent 35e8edd783
commit 32d5a3f335
3 changed files with 50 additions and 2 deletions

45
configure vendored
View File

@ -21318,6 +21318,51 @@ then :
SOCKET_LIBS="$SOCKET_LIBS -lsocket"
printf "%s\n" "#define HAVE_CONNECT 1" >>confdefs.h
else $as_nop
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for connect in -lnetwork" >&5
printf %s "checking for connect in -lnetwork... " >&6; }
if test ${ac_cv_lib_network_connect+y}
then :
printf %s "(cached) " >&6
else $as_nop
ac_check_lib_save_LIBS=$LIBS
LIBS="-lnetwork $LIBS"
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
/* Override any GCC internal prototype to avoid an error.
Use char because int might match the return type of a GCC
builtin and then its argument prototype would still apply. */
char connect ();
int
main (void)
{
return connect ();
;
return 0;
}
_ACEOF
if ac_fn_c_try_link "$LINENO"
then :
ac_cv_lib_network_connect=yes
else $as_nop
ac_cv_lib_network_connect=no
fi
rm -f core conftest.err conftest.$ac_objext conftest.beam \
conftest$ac_exeext conftest.$ac_ext
LIBS=$ac_check_lib_save_LIBS
fi
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_network_connect" >&5
printf "%s\n" "$ac_cv_lib_network_connect" >&6; }
if test "x$ac_cv_lib_network_connect" = xyes
then :
SOCKET_LIBS="$SOCKET_LIBS -lnetwork"
printf "%s\n" "#define HAVE_CONNECT 1" >>confdefs.h
fi
fi