* configure.in: Remove check for socketpair(). Add new option

--enable-background.
* extraconf.h: Don't define WITH_BACKGROUND.
This commit is contained in:
Pavel Roskin 2003-10-25 22:25:51 +00:00
parent ec7f14f929
commit 4a02cae0e1
3 changed files with 14 additions and 6 deletions

View File

@ -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().

View File

@ -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

View File

@ -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