mirror of https://github.com/MidnightCommander/mc
* configure.in: For Autoconf 2.50+, use AC_SYS_LARGEFILE.
It should be enabled explicitly by giving `--enable-largefile' to configure. * INSTALL: Document it.
This commit is contained in:
parent
29adaeacbf
commit
11715780a8
|
@ -1,3 +1,10 @@
|
|||
2001-06-25 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* configure.in: For Autoconf 2.50+, use AC_SYS_LARGEFILE.
|
||||
It should be enabled explicitly by giving `--enable-largefile'
|
||||
to configure.
|
||||
* INSTALL: Document it.
|
||||
|
||||
2001-06-22 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* extraconf.h: Don't define HAVE_INFOMOUNT_QNX on QNX Neutrino.
|
||||
|
|
5
INSTALL
5
INSTALL
|
@ -141,6 +141,11 @@ installed the gpm package.
|
|||
transparent tar File system manipulation as well nor the
|
||||
networked Midnight Commander file system.
|
||||
|
||||
`--enable-largefile'
|
||||
This option enables support for large files (2 gigabytes and more)
|
||||
on the systems where file operation use 32-bit offsets by default,
|
||||
but support for 64-bit file operations is available.
|
||||
|
||||
You may also tell configure which display manager you want to use with
|
||||
the Midnight Commander. The configure script will use SLang as default,
|
||||
but you can override this by using any of the following flags (please
|
||||
|
|
|
@ -23,6 +23,15 @@ dnl It's needed until Autoconf 2.50 is released.
|
|||
ifdef([AC_PROG_CC_STDC], [AC_PROG_CC_STDC], [AM_PROG_CC_STDC])
|
||||
AC_HEADER_MAJOR
|
||||
AC_C_CONST
|
||||
|
||||
dnl AC_SYS_LARGEFILE is missing in Autoconf-2.13
|
||||
ifelse(AC_ACVERSION, [2.13], [],
|
||||
[dnl Only enable large file support if --enable-largefile was given
|
||||
if test "x$enable_largefile" = xyes; then
|
||||
AC_SYS_LARGEFILE
|
||||
fi
|
||||
])
|
||||
|
||||
AC_CHECK_TOOL(AR, ar, ar)
|
||||
|
||||
AC_CHECK_PROGS(X11_WWW,netscape arena Mosaic chimera)
|
||||
|
|
Loading…
Reference in New Issue