summaryrefslogtreecommitdiff
path: root/archivers/bzip/files
diff options
context:
space:
mode:
authorAndreas Klemm <andreas@FreeBSD.org>1996-09-28 12:34:45 +0000
committerAndreas Klemm <andreas@FreeBSD.org>1996-09-28 12:34:45 +0000
commit173535b87e7828ee4c1332f29bed9fa433b7d8a9 (patch)
tree984771cbc5e9ec26ce2e8920e7520901a0d216dd /archivers/bzip/files
parentAdded NO_CDROM to Makefile, because of restrictive copyright. (diff)
- use INSTALL_PROGRAM and INSTALL_MAN in Makefile
- add patch-ac to silence bzip when doing compression, bzip version info now only with -v or -V - changed comment in COMMENT. bzip compresses better than gzip, but speed is much slower, so it's not generally better as gzip where speed matters !
Notes
Notes: svn path=/head/; revision=3892
Diffstat (limited to 'archivers/bzip/files')
-rw-r--r--archivers/bzip/files/patch-ac27
1 files changed, 27 insertions, 0 deletions
diff --git a/archivers/bzip/files/patch-ac b/archivers/bzip/files/patch-ac
new file mode 100644
index 000000000000..b56d85c0af6b
--- /dev/null
+++ b/archivers/bzip/files/patch-ac
@@ -0,0 +1,27 @@
+--- bzip.c.orig Sat Sep 28 03:32:05 1996
++++ bzip.c Sat Sep 28 03:37:53 1996
+@@ -3132,11 +3132,6 @@
+ signal (SIGBUS, mySIGSEGVorSIGBUScatcher);
+ #endif
+
+- if ( ! (argc > 1 && strcmp ( "-Q", argv[1] ) == 0) )
+- fprintf ( stderr,
+- "BZIP, a block-sorting file compressor. "
+- "Version 0.21, 25-August-96.\n" );
+-
+ #if DEBUG
+ if ( ! (argc > 1 && strcmp ( "-Q", argv[1] ) == 0) )
+ fprintf ( stderr, "BZIP: *** compiled with debugging ON ***\n" );
+@@ -3206,6 +3201,12 @@
+ exit ( 1 );
+ break;
+ }
++
++ if (verbose) {
++ fprintf ( stderr,
++ "BZIP, a block-sorting file compressor. "
++ "Version 0.21, 25-August-96.\n" );
++ }
+
+ if ( opMode == OM_FILE_TO_STDOUT && numFileNames != 1) {
+ fprintf ( stderr, "%s: Option -c requires you to supply exactly one filename.\n",