Skip to content

Commit c05ced3

Browse files
committed
update the libtool version after new api additions.
1 parent 77daf50 commit c05ced3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,14 @@ add_library(modplug ${LIB_TYPE}
124124
if (BUILD_SHARED_LIBS)
125125
if(APPLE)
126126
target_link_libraries(modplug -Wl,-undefined,error)
127-
target_link_libraries(modplug -Wl,-compatibility_version,2.0.0)
128-
target_link_libraries(modplug -Wl,-current_version,2.0.0)
127+
target_link_libraries(modplug -Wl,-compatibility_version,3.0.0)
128+
target_link_libraries(modplug -Wl,-current_version,3.0.0)
129129
else()
130130
if(HAVE_NO_UNDEFINED)
131131
target_link_libraries(modplug -Wl,--no-undefined)
132132
endif()
133133
set_target_properties(modplug PROPERTIES
134-
VERSION 1.0.0 SOVERSION 1)
134+
VERSION 1.1.0 SOVERSION 1)
135135
endif()
136136
if(MATH_LIB)
137137
target_link_libraries(modplug m)

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ AC_TYPE_UINT32_T
8787
AC_TYPE_INT64_T
8888
AC_TYPE_UINT64_T
8989

90-
MODPLUG_LIBRARY_VERSION=1:0:0
90+
MODPLUG_LIBRARY_VERSION=2:0:1
9191

9292
AC_SUBST(MODPLUG_LIBRARY_VERSION)
9393

0 commit comments

Comments
 (0)