Skip to content

Commit

Permalink
Changes version to 1.18 and fixes build with bzip.
Browse files Browse the repository at this point in the history
  • Loading branch information
amadvance committed Apr 18, 2013
1 parent 873522f commit 3c34a12
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 3 deletions.
6 changes: 6 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
=======================


ADVANCECOMP VERSION 1.18 2013/04
================================

* Fixed build with BZIP.


ADVANCECOMP VERSION 1.17 2013/03
================================

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ([2.65])
AC_INIT([AdvanceCOMP],[1.17])
AC_INIT([AdvanceCOMP],[1.18])
AM_INIT_AUTOMAKE([foreign no-dependencies])
AC_CONFIG_SRCDIR([rezip.cc])
AC_CONFIG_HEADERS([config.h])
Expand Down
5 changes: 5 additions & 0 deletions doc/history.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
.TH "History For AdvanceCOMP" 1
.SH NAME
advcomp \(hy History For AdvanceCOMP
.SH ADVANCECOMP VERSION 1.18 2013/04
.PD 0
.IP \(bu
Fixed build with BZIP.
.PD
.SH ADVANCECOMP VERSION 1.17 2013/03
.PD 0
.IP \(bu
Expand Down
3 changes: 3 additions & 0 deletions doc/history.d
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Name
advcomp - History For AdvanceCOMP

AdvanceCOMP Version 1.18 2013/04
) Fixed build with BZIP.

AdvanceCOMP Version 1.17 2013/03
) Changed to GPL3.
) Added zopfli support. It's enabled using -4, --shrink-insane.
Expand Down
8 changes: 8 additions & 0 deletions doc/history.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
<body>
<center><h2>History For AdvanceCOMP</h2></center>
<h2>
AdvanceCOMP Version 1.18 2013/04
</h2>
<ul>
<li>
Fixed build with BZIP.
</li>
</ul>
<h2>
AdvanceCOMP Version 1.17 2013/03
</h2>
<ul>
Expand Down
6 changes: 6 additions & 0 deletions doc/history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
=======================


ADVANCECOMP VERSION 1.18 2013/04
================================

* Fixed build with BZIP.


ADVANCECOMP VERSION 1.17 2013/03
================================

Expand Down
4 changes: 2 additions & 2 deletions zipsh.cc
Original file line number Diff line number Diff line change
Expand Up @@ -215,11 +215,11 @@ bool zip_entry::shrink(bool standard, shrink_t level)
}

#if USE_BZIP2
if (level != shrink_fast && !standard) {
if (level.level != shrink_fast && !standard) {
unsigned bzip2_level;
unsigned bzip2_workfactor;

switch (level) {
switch (level.level) {
case shrink_normal :
bzip2_level = 6;
bzip2_workfactor = 30;
Expand Down

0 comments on commit 3c34a12

Please sign in to comment.