From 014b308bbd88d63dc0c1fa7d1554508425a6dedf Mon Sep 17 00:00:00 2001 From: Laurent Rineau Date: Wed, 2 Mar 2011 11:37:13 +0000 Subject: [PATCH] Bump the SONAME of CGAL-3.8. I have seen that at least CGAL::Random in CGAL-3.8 is not binary compatible with CGAL::Random in CGAL-3.7 (there is a new field). --- Installation/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Installation/CMakeLists.txt b/Installation/CMakeLists.txt index c75b373d4fe..f60d1b5851a 100644 --- a/Installation/CMakeLists.txt +++ b/Installation/CMakeLists.txt @@ -72,9 +72,10 @@ message( STATUS "CGAL_BUILD_VERSION=${CGAL_BUILD_VERSION}" ) # CGAL-3.6.1 : 5.0.0 (should have been 5.0.1) # CGAL-3.7 : 6.0.0 (certainly: some types have been turned from int to # std::size_t, which is different on some platforms) +# CGAL-3.8 : 7.0.0 (At least CGAL::Random has changed its member fields.) -set( CGAL_SONAME_VERSION "6" CACHE STRING "soname-version" ) -set( CGAL_SOVERSION "6.0.0" CACHE STRING "soversion" ) +set( CGAL_SONAME_VERSION "7" CACHE STRING "soname-version" ) +set( CGAL_SOVERSION "7.0.0" CACHE STRING "soversion" ) mark_as_advanced(CGAL_SONAME_VERSION) mark_as_advanced(CGAL_SOVERSION)