mirror of
https://github.com/ckolivas/lrzip.git
synced 2026-01-07 00:50:00 +01:00
Reinstate version 0.571 update without new conf tools.
This commit is contained in:
parent
53afca6fe9
commit
57564d6c59
|
|
@ -22,9 +22,6 @@ only or to stdout).
|
|||
* Clean up and simplify the times displayed component. It could potentially
|
||||
show thousands of seconds.
|
||||
|
||||
MARCH 2011, Michael Blumenkrantz
|
||||
* Updated autotools/conf build system.
|
||||
|
||||
FEBRUARY 2011, version 0.570 Con Kolivas
|
||||
* Change the lzo testing to a bool on/off instead of taking a parameter.
|
||||
* Clean up the messy help output.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
lrzip-0.571
|
||||
|
||||
A new build configuration system.
|
||||
Avoid spurious errors on failing to mmap a file.
|
||||
Fee space will now be checked to ensure there is enough room for the
|
||||
compressed or decompressed file and lrzip will abort unless the -f option is
|
||||
|
|
|
|||
22
configure
vendored
22
configure
vendored
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
# Guess values for system-dependent variables and create Makefiles.
|
||||
# Generated by GNU Autoconf 2.67 for lrzip 0.570.
|
||||
# Generated by GNU Autoconf 2.67 for lrzip 0.571.
|
||||
#
|
||||
# Report bugs to <kernel@kolivas.org>.
|
||||
#
|
||||
|
|
@ -551,9 +551,9 @@ MAKEFLAGS=
|
|||
|
||||
# Identity of this package.
|
||||
PACKAGE_NAME='lrzip'
|
||||
PACKAGE_TARNAME='lrzip-0.570'
|
||||
PACKAGE_VERSION='0.570'
|
||||
PACKAGE_STRING='lrzip 0.570'
|
||||
PACKAGE_TARNAME='lrzip-0.571'
|
||||
PACKAGE_VERSION='0.571'
|
||||
PACKAGE_STRING='lrzip 0.571'
|
||||
PACKAGE_BUGREPORT='kernel@kolivas.org'
|
||||
PACKAGE_URL=''
|
||||
|
||||
|
|
@ -1221,7 +1221,7 @@ if test "$ac_init_help" = "long"; then
|
|||
# Omit some internal or obsolete options to make the list less imposing.
|
||||
# This message is too long to be a string in the A/UX 3.1 sh.
|
||||
cat <<_ACEOF
|
||||
\`configure' configures lrzip 0.570 to adapt to many kinds of systems.
|
||||
\`configure' configures lrzip 0.571 to adapt to many kinds of systems.
|
||||
|
||||
Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||
|
||||
|
|
@ -1269,7 +1269,7 @@ Fine tuning of the installation directories:
|
|||
--infodir=DIR info documentation [DATAROOTDIR/info]
|
||||
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
|
||||
--mandir=DIR man documentation [DATAROOTDIR/man]
|
||||
--docdir=DIR documentation root [DATAROOTDIR/doc/lrzip-0.570]
|
||||
--docdir=DIR documentation root [DATAROOTDIR/doc/lrzip-0.571]
|
||||
--htmldir=DIR html documentation [DOCDIR]
|
||||
--dvidir=DIR dvi documentation [DOCDIR]
|
||||
--pdfdir=DIR pdf documentation [DOCDIR]
|
||||
|
|
@ -1286,7 +1286,7 @@ fi
|
|||
|
||||
if test -n "$ac_init_help"; then
|
||||
case $ac_init_help in
|
||||
short | recursive ) echo "Configuration of lrzip 0.570:";;
|
||||
short | recursive ) echo "Configuration of lrzip 0.571:";;
|
||||
esac
|
||||
cat <<\_ACEOF
|
||||
|
||||
|
|
@ -1375,7 +1375,7 @@ fi
|
|||
test -n "$ac_init_help" && exit $ac_status
|
||||
if $ac_init_version; then
|
||||
cat <<\_ACEOF
|
||||
lrzip configure 0.570
|
||||
lrzip configure 0.571
|
||||
generated by GNU Autoconf 2.67
|
||||
|
||||
Copyright (C) 2010 Free Software Foundation, Inc.
|
||||
|
|
@ -2014,7 +2014,7 @@ cat >config.log <<_ACEOF
|
|||
This file contains any messages produced by compilers while
|
||||
running configure, to aid debugging if configure makes a mistake.
|
||||
|
||||
It was created by lrzip $as_me 0.570, which was
|
||||
It was created by lrzip $as_me 0.571, which was
|
||||
generated by GNU Autoconf 2.67. Invocation command line was
|
||||
|
||||
$ $0 $@
|
||||
|
|
@ -5325,7 +5325,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||
# report actual input values of CONFIG_FILES etc. instead of their
|
||||
# values after options handling.
|
||||
ac_log="
|
||||
This file was extended by lrzip $as_me 0.570, which was
|
||||
This file was extended by lrzip $as_me 0.571, which was
|
||||
generated by GNU Autoconf 2.67. Invocation command line was
|
||||
|
||||
CONFIG_FILES = $CONFIG_FILES
|
||||
|
|
@ -5387,7 +5387,7 @@ _ACEOF
|
|||
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
||||
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
||||
ac_cs_version="\\
|
||||
lrzip config.status 0.570
|
||||
lrzip config.status 0.571
|
||||
configured by $0, generated by GNU Autoconf 2.67,
|
||||
with options \\"\$ac_cs_config\\"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
AC_INIT([lrzip],[0.570],[kernel@kolivas.org],[lrzip-0.570])
|
||||
AC_INIT([lrzip],[0.571],[kernel@kolivas.org],[lrzip-0.571])
|
||||
AC_CONFIG_HEADER(config.h)
|
||||
# see what our system is!
|
||||
AC_CANONICAL_HOST
|
||||
|
|
|
|||
Loading…
Reference in a new issue