mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 04:22:34 +03:00
* configure.in: Remove check for socketpair(). Add new option
--enable-background. * extraconf.h: Don't define WITH_BACKGROUND.
This commit is contained in:
parent
ec7f14f929
commit
4a02cae0e1
@ -1,3 +1,9 @@
|
||||
2003-10-25 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* configure.in: Remove check for socketpair(). Add new option
|
||||
--enable-background.
|
||||
* extraconf.h: Don't define WITH_BACKGROUND.
|
||||
|
||||
2003-10-14 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* configure.in: Don't check for seekdir() and telldir().
|
||||
|
10
configure.in
10
configure.in
@ -323,8 +323,6 @@ if test $have_gethostbyname = no; then
|
||||
done
|
||||
fi
|
||||
|
||||
AC_CHECK_FUNCS(socketpair)
|
||||
|
||||
dnl
|
||||
dnl Sequent wants getprocessstats
|
||||
dnl
|
||||
@ -580,6 +578,14 @@ linux*)
|
||||
esac
|
||||
|
||||
|
||||
dnl Support for background operations
|
||||
AC_ARG_ENABLE([background],
|
||||
[ --enable-background Support for background file operations [[yes]]])
|
||||
if test "x$enable_background" != xno; then
|
||||
AC_DEFINE(WITH_BACKGROUND, 1 [Define to enable background file operations])
|
||||
fi
|
||||
|
||||
|
||||
dnl
|
||||
dnl User visible support for charset conversion.
|
||||
dnl
|
||||
|
@ -30,10 +30,6 @@ the need to embed this logic into configure.in.
|
||||
# undef USE_EXT2FSLIB
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_SOCKETPAIR
|
||||
# define WITH_BACKGROUND
|
||||
#endif
|
||||
|
||||
#if defined (__QNX__) && !defined(__QNXNTO__) && !defined (HAVE_INFOMOUNT_LIST)
|
||||
# define HAVE_INFOMOUNT_QNX
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user