diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-06-26 20:49:54 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-06-26 20:49:54 +0300 |
commit | 65014fd211dfbd4be48685998cb5a12aaa29c8d2 (patch) | |
tree | 886df71738ce7d62bdc8bf229fb63b01bcce3f0c /src/xz/Makefile.am | |
parent | Rename process_file() to coder_run(). (diff) | |
download | xz-65014fd211dfbd4be48685998cb5a12aaa29c8d2.tar.xz |
Rename process.[hc] to coder.[hc] and io.[hc] to file_io.[hc]
to avoid problems on systems with system headers with those
names.
Diffstat (limited to '')
-rw-r--r-- | src/xz/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xz/Makefile.am b/src/xz/Makefile.am index ff88a839..121a2d1c 100644 --- a/src/xz/Makefile.am +++ b/src/xz/Makefile.am @@ -10,10 +10,12 @@ bin_PROGRAMS = xz xz_SOURCES = \ args.c \ args.h \ + coder.c \ + coder.h \ + file_io.c \ + file_io.h \ hardware.c \ hardware.h \ - io.c \ - io.h \ main.c \ main.h \ message.c \ @@ -21,8 +23,6 @@ xz_SOURCES = \ options.c \ options.h \ private.h \ - process.c \ - process.h \ signals.c \ signals.h \ suffix.c \ |