mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
* acinclude.m4 (MC_WITH_VFS): Don't link with libnsl
unnecessarily. * configure.ac: Simplified detection of the necessary libraries for socket() and gethostbyname(). Patch provided by Tomasz Kloczko at 2005-06-15 on mc-devel.
This commit is contained in:
parent
fb43472e27
commit
2aae4390da
@ -1,3 +1,12 @@
|
|||||||
|
2005-07-03 Roland Illig <roland.illig@gmx.de>
|
||||||
|
|
||||||
|
* acinclude.m4 (MC_WITH_VFS): Don't link with libnsl
|
||||||
|
unnecessarily.
|
||||||
|
* configure.ac: Simplified detection of the necessary libraries
|
||||||
|
for socket() and gethostbyname().
|
||||||
|
|
||||||
|
Patch provided by Tomasz Kloczko at 2005-06-15 on mc-devel.
|
||||||
|
|
||||||
2005-06-21 Pavel Roskin <proski@gnu.org>
|
2005-06-21 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
* lib/mc.ext.in: Support opening for 7-Zip archives.
|
* lib/mc.ext.in: Support opening for 7-Zip archives.
|
||||||
|
@ -144,7 +144,6 @@ AC_DEFUN([MC_WITH_VFS],[
|
|||||||
|
|
||||||
if test "x$enable_netcode" != xno; then
|
if test "x$enable_netcode" != xno; then
|
||||||
dnl FIXME: network checks should probably be in their own macro.
|
dnl FIXME: network checks should probably be in their own macro.
|
||||||
AC_CHECK_LIB(nsl, main)
|
|
||||||
AC_SEARCH_LIBS(socket, [xnet bsd socket inet], [have_socket=yes])
|
AC_SEARCH_LIBS(socket, [xnet bsd socket inet], [have_socket=yes])
|
||||||
if test x$have_socket = xyes; then
|
if test x$have_socket = xyes; then
|
||||||
AC_SEARCH_LIBS(gethostbyname, [bsd socket inet netinet])
|
AC_SEARCH_LIBS(gethostbyname, [bsd socket inet netinet])
|
||||||
|
27
configure.ac
27
configure.ac
@ -294,31 +294,8 @@ dnl
|
|||||||
dnl Network related functions
|
dnl Network related functions
|
||||||
dnl
|
dnl
|
||||||
|
|
||||||
AC_CHECK_LIB(nsl, t_accept)
|
AC_SEARCH_LIBS([socket], [socket])
|
||||||
AC_CHECK_LIB(socket, socket)
|
AC_SEARCH_LIBS([gethostbyname], [nsl])
|
||||||
|
|
||||||
have_socket=no
|
|
||||||
AC_CHECK_FUNCS(socket, have_socket=yes)
|
|
||||||
if test $have_socket = no; then
|
|
||||||
# socket is not in the default libraries. See if it's in some other.
|
|
||||||
for lib in bsd socket inet; do
|
|
||||||
AC_CHECK_LIB($lib, socket, [
|
|
||||||
LIBS="$LIBS -l$lib"
|
|
||||||
have_socket=yes
|
|
||||||
AC_DEFINE(HAVE_SOCKET)
|
|
||||||
break])
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
have_gethostbyname=no
|
|
||||||
AC_CHECK_FUNC(gethostbyname, [have_gethostbyname=yes])
|
|
||||||
if test $have_gethostbyname = no; then
|
|
||||||
# gethostbyname is not in the default libraries. See if it's in some other.
|
|
||||||
for lib in bsd socket inet; do
|
|
||||||
AC_CHECK_LIB([$lib], [gethostbyname],
|
|
||||||
[LIBS="$LIBS -l$lib"; have_gethostbyname=yes; break])
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
dnl Sequent wants getprocessstats
|
dnl Sequent wants getprocessstats
|
||||||
|
Loading…
Reference in New Issue
Block a user