mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
Forgot to install the lrzuntar, lrunzip symlinks and the pod based manpages.
Bump version to 0.601.
This commit is contained in:
parent
582c1c859f
commit
2b49ca9d8f
|
|
@ -73,3 +73,12 @@ EXTRA_DIST = \
|
|||
autogen.sh \
|
||||
INSTALL \
|
||||
$(dist_doc_DATA)
|
||||
|
||||
install-exec-hook:
|
||||
$(LN_S) -f @bindir@/lrzip$(EXEEXT) @bindir@/lrunzip
|
||||
$(LN_S) -f @bindir@/lrztar @bindir@/lrzuntar
|
||||
|
||||
|
||||
uninstall-local:
|
||||
rm -f @bindir@/lrunzip
|
||||
rm -f @bindir@/lrzuntar
|
||||
|
|
|
|||
10
configure.ac
10
configure.ac
|
|
@ -2,7 +2,7 @@
|
|||
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
|
||||
m4_define([v_maj], [0])
|
||||
m4_define([v_min], [6])
|
||||
m4_define([v_mic], [00])
|
||||
m4_define([v_mic], [01])
|
||||
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
|
||||
m4_define([v_v], m4_join([], v_min, v_mic))
|
||||
m4_define([v_ver], [v_maj.v_v])
|
||||
|
|
@ -84,6 +84,12 @@ AC_CHECK_SIZEOF(int)
|
|||
AC_CHECK_SIZEOF(long)
|
||||
AC_CHECK_SIZEOF(short)
|
||||
|
||||
if test $ac_cv_sizeof_long != 4 -a "x$ASM" = "xyes" ; then
|
||||
AC_MSG_WARN([64bit arch detected, disabling ASM])
|
||||
ASM=no
|
||||
fi
|
||||
|
||||
|
||||
AC_CACHE_CHECK([for large file support],rzip_cv_HAVE_LARGE_FILES,[
|
||||
AC_RUN_IFELSE([AC_LANG_SOURCE([[
|
||||
#include <stdio.h>
|
||||
|
|
@ -148,7 +154,7 @@ echo
|
|||
echo
|
||||
echo "Configuration Options Summary:"
|
||||
echo
|
||||
echo " ASM................: $ASM"
|
||||
echo " ASM.(32 bit only)..: $ASM"
|
||||
echo " Static binary......: $static"
|
||||
echo
|
||||
echo "Compilation............: make (or gmake)"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,18 @@
|
|||
MAINTAINERCLEANFILES = Makefile.in lrunzip.1 lrztar.1 lrzuntar.1
|
||||
|
||||
man1_MANS = lrzip.1 lrunzip.1.pod lrztar.1.pod lrzuntar.1.pod
|
||||
man1_MANS = lrzip.1 lrunzip.1 lrztar.1 lrzuntar.1
|
||||
man5_MANS = lrzip.conf.5
|
||||
|
||||
EXTRA_DIST = $(man1_MANS) $(man5_MANS)
|
||||
BUILT_SOURCES = lrunzip.1 lrztar.1 lrzuntar.1
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
||||
EXTRA_DIST = lrzip.1 lrunzip.1.pod lrztar.1.pod lrzuntar.1.pod $(man5_MANS)
|
||||
|
||||
lrunzip.1: lrunzip.1.pod
|
||||
pod2man $< $@
|
||||
|
||||
lrztar.1: lrztar.1.pod
|
||||
pod2man $< $@
|
||||
|
||||
lrzuntar.1: lrzuntar.1.pod
|
||||
pod2man $< $@
|
||||
|
|
|
|||
Loading…
Reference in a new issue