Skip to content

Commit

Permalink
Bump libclamav.so version to 13:0:1 (aka 12.1.0)
Browse files Browse the repository at this point in the history
Also remove libclamav.map versioning.

Resolves: #1304
  • Loading branch information
micahsnyder committed Dec 16, 2024
1 parent fd9890a commit e1b4f9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ set(PACKAGE_URL "https://www.clamav.net/")
HexVersion(PACKAGE_VERSION_NUM ${PROJECT_VERSION_MAJOR} ${PROJECT_VERSION_MINOR} ${PROJECT_VERSION_PATCH})

# libtool library versioning rules: http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
set(LIBCLAMAV_CURRENT 12)
set(LIBCLAMAV_REVISION 3)
set(LIBCLAMAV_AGE 0)
set(LIBCLAMAV_CURRENT 13)
set(LIBCLAMAV_REVISION 0)
set(LIBCLAMAV_AGE 1)

math(EXPR LIBCLAMAV_SOVERSION "${LIBCLAMAV_CURRENT} - ${LIBCLAMAV_AGE}")
set(LIBCLAMAV_VERSION "${LIBCLAMAV_SOVERSION}.${LIBCLAMAV_AGE}.${LIBCLAMAV_REVISION}")
Expand Down
14 changes: 1 addition & 13 deletions libclamav/libclamav.map
Original file line number Diff line number Diff line change
Expand Up @@ -59,28 +59,16 @@ CLAMAV_PUBLIC {
cl_hash_destroy;
cl_engine_stats_enable;
lsig_sub_matched;
};
CLAMAV_0.104.0 {
global:
cl_engine_set_clcb_engine_compile_progress;
cl_engine_set_clcb_engine_free_progress;
cl_engine_set_clcb_sigload_progress;
} CLAMAV_PUBLIC;
CLAMAV_1.0.0 {
global:
cl_cvdunpack;
cl_engine_set_clcb_file_inspection;
} CLAMAV_0.104.0;
CLAMAV_1.1.0 {
global:
cl_cvdgetage;
cl_engine_set_clcb_vba;
} CLAMAV_1.0.0;
CLAMAV_1.5.0 {
global:
cl_cvdunpack_ex;
cl_cvdverify_ex;
} CLAMAV_1.1.0;
};
CLAMAV_PRIVATE {
global:
cli_sigperf_print;
Expand Down

0 comments on commit e1b4f9e

Please sign in to comment.