diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-11-19 23:52:24 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-11-19 23:52:24 +0200 |
commit | 1880a3927b23f265f63b2adb86fbdb81ea09eb06 (patch) | |
tree | 2fe1b65d21f81b28f46eb707378d97f553e99ee1 /src/xzdec | |
parent | Oh well, big messy commit again. Some highlights: (diff) | |
download | xz-1880a3927b23f265f63b2adb86fbdb81ea09eb06.tar.xz |
Renamed lzma to xz and lzmadec to xzdec. We create symlinks
lzma, unlzma, and lzcat in "make install" for backwards
compatibility with LZMA Utils 4.32.x; I'm not sure if this
should be the default though.
Diffstat (limited to '')
-rw-r--r-- | src/xzdec/Makefile.am (renamed from src/lzmadec/Makefile.am) | 12 | ||||
-rw-r--r-- | src/xzdec/xzdec.c (renamed from src/lzmadec/lzmadec.c) | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/lzmadec/Makefile.am b/src/xzdec/Makefile.am index 650eb1c4..8c8cae80 100644 --- a/src/lzmadec/Makefile.am +++ b/src/xzdec/Makefile.am @@ -12,18 +12,18 @@ ## Lesser General Public License for more details. ## -bin_PROGRAMS = lzmadec +bin_PROGRAMS = xzdec -lzmadec_SOURCES = lzmadec.c -lzmadec_CPPFLAGS = \ +xzdec_SOURCES = xzdec.c +xzdec_CPPFLAGS = \ -I@top_srcdir@/src/common \ -I@top_srcdir@/src/liblzma/api \ -I@top_builddir@/lib -lzmadec_LDFLAGS = -static -lzmadec_LDADD = \ +xzdec_LDFLAGS = -static +xzdec_LDADD = \ @top_builddir@/src/liblzma/liblzma.la \ @LTLIBINTL@ if COND_GNULIB -lzmadec_LDADD += @top_builddir@/lib/libgnu.a +xzdec_LDADD += @top_builddir@/lib/libgnu.a endif diff --git a/src/lzmadec/lzmadec.c b/src/xzdec/xzdec.c index 0b2adb97..e100d049 100644 --- a/src/lzmadec/lzmadec.c +++ b/src/xzdec/xzdec.c @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // -/// \file lzmadec.c +/// \file xzdec.c /// \brief Simple single-threaded tool to uncompress .lzma files // // Copyright (C) 2007 Lasse Collin @@ -151,7 +151,7 @@ set_default_memlimit(void) /// \brief Converts a string to size_t /// -/// This is rudely copied from src/lzma/util.c and modified a little. :-( +/// This is rudely copied from src/xz/util.c and modified a little. :-( /// static size_t str_to_uint64(const char *value) |