mirror of
https://github.com/gflags/gflags.git
synced 2025-04-04 21:15:05 +00:00
fix: Change SOVERSION to <major>.<minor> for 2.x release versions
This commit is contained in:
commit
45341954bc
1 changed files with 6 additions and 1 deletions
|
@ -111,7 +111,12 @@ version_numbers (
|
|||
if (GFLAGS_SOVERSION)
|
||||
set (PACKAGE_SOVERSION "${GFLAGS_SOVERSION}")
|
||||
else ()
|
||||
set (PACKAGE_SOVERSION "${PACKAGE_VERSION_MAJOR}")
|
||||
# TODO: Change default SOVERSION back to PACKAGE_VERSION_MAJOR with the
|
||||
# next increase of major version number (i.e., 3.0.0 -> SOVERSION 3)
|
||||
# The <major>.<minor> SOVERSION should be used for the 2.x releases
|
||||
# versions only which temporarily broke the API by changing the default
|
||||
# namespace from "google" to "gflags".
|
||||
set (PACKAGE_SOVERSION "${PACKAGE_VERSION_MAJOR}.${PACKAGE_VERSION_MINOR}")
|
||||
endif ()
|
||||
|
||||
# when gflags is included as subproject (e.g., as Git submodule/subtree) in the source
|
||||
|
|
Loading…
Add table
Reference in a new issue