Skip to content

Commit 518bb6e

Browse files
committed
Libarchive 3.5.3dev
1 parent 1b2c437 commit 518bb6e

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ endif()
1818
# RelWithDebInfo : Release build with Debug Info
1919
# MinSizeRel : Release Min Size build
2020
IF(NOT CMAKE_BUILD_TYPE)
21-
SET(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build Type" FORCE)
21+
SET(CMAKE_BUILD_TYPE "Debug" CACHE STRING "Build Type" FORCE)
2222
ENDIF(NOT CMAKE_BUILD_TYPE)
2323
# Set a value type to properly display CMAKE_BUILD_TYPE on GUI if the
2424
# value type is "UNINITIALIZED".

build/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3005002
1+
3005003dev

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ dnl First, define all of the version numbers up front.
44
dnl In particular, this allows the version macro to be used in AC_INIT
55

66
dnl These first two version numbers are updated automatically on each release.
7-
m4_define([LIBARCHIVE_VERSION_S],[3.5.2])
8-
m4_define([LIBARCHIVE_VERSION_N],[3005002])
7+
m4_define([LIBARCHIVE_VERSION_S],[3.5.3dev])
8+
m4_define([LIBARCHIVE_VERSION_N],[3005003])
99

1010
dnl bsdtar and bsdcpio versioning tracks libarchive
1111
m4_define([BSDTAR_VERSION_S],LIBARCHIVE_VERSION_S())

libarchive/archive.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* assert that ARCHIVE_VERSION_NUMBER >= 2012108.
3737
*/
3838
/* Note: Compiler will complain if this does not match archive_entry.h! */
39-
#define ARCHIVE_VERSION_NUMBER 3005002
39+
#define ARCHIVE_VERSION_NUMBER 3005003
4040

4141
#include <sys/stat.h>
4242
#include <stddef.h> /* for wchar_t */
@@ -155,7 +155,7 @@ __LA_DECL int archive_version_number(void);
155155
/*
156156
* Textual name/version of the library, useful for version displays.
157157
*/
158-
#define ARCHIVE_VERSION_ONLY_STRING "3.5.2"
158+
#define ARCHIVE_VERSION_ONLY_STRING "3.5.3dev"
159159
#define ARCHIVE_VERSION_STRING "libarchive " ARCHIVE_VERSION_ONLY_STRING
160160
__LA_DECL const char * archive_version_string(void);
161161

libarchive/archive_entry.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#define ARCHIVE_ENTRY_H_INCLUDED
3131

3232
/* Note: Compiler will complain if this does not match archive.h! */
33-
#define ARCHIVE_VERSION_NUMBER 3005002
33+
#define ARCHIVE_VERSION_NUMBER 3005003
3434

3535
/*
3636
* Note: archive_entry.h is for use outside of libarchive; the

0 commit comments

Comments
 (0)