From 3c3876819252b6e467ddecd8e48ced71cc355a40 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 22 Mar 2009 21:19:21 -0400 Subject: [PATCH] Corrected soname. Apparently we should be using 0 if we add functions. It's only changing or removing symbols that causes an SOVERSION bump. --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c693bb4a..c2ee0eb7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,9 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.4) PROJECT(PhysicsFS) SET(PHYSFS_VERSION 1.1.1) -SET(PHYSFS_SOVERSION 1) + +# Increment this if/when we break backwards compatibility. +SET(PHYSFS_SOVERSION 0) # I hate that they define "WIN32" ... we're about to move to Win64...I hope! IF(WIN32 AND NOT WINDOWS)