aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/makefile
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-05-13 10:25:36 +0000
committerlloyd <[email protected]>2009-05-13 10:25:36 +0000
commit8a8169535702de9fd244de6409ed58ddca69452a (patch)
tree06d22ae099abac81bf0638fe704f8d99a04dcdfe /src/build-data/makefile
parentab95c45f134b08e68fe57a7e3f5c4bfbaaf25d11 (diff)
Allow for the shared library soname to stay fixed even when the version
number increments, for stable releases that don't affect binary compat.
Diffstat (limited to 'src/build-data/makefile')
-rw-r--r--src/build-data/makefile/unix.in6
-rw-r--r--src/build-data/makefile/unix_shr.in13
2 files changed, 6 insertions, 13 deletions
diff --git a/src/build-data/makefile/unix.in b/src/build-data/makefile/unix.in
index b97c50a4f..4025eed29 100644
--- a/src/build-data/makefile/unix.in
+++ b/src/build-data/makefile/unix.in
@@ -12,11 +12,7 @@ LINK_TO = @{var:link_to}
##################################################
# Version Numbers #
##################################################
-MAJOR = @{var:version_major}
-MINOR = @{var:version_minor}
-PATCH = @{var:version_patch}
-
-VERSION = $(MAJOR).$(MINOR).$(PATCH)
+VERSION = @{var:version}
##################################################
# Installation Settings #
diff --git a/src/build-data/makefile/unix_shr.in b/src/build-data/makefile/unix_shr.in
index f98b10f2b..fec3a3654 100644
--- a/src/build-data/makefile/unix_shr.in
+++ b/src/build-data/makefile/unix_shr.in
@@ -14,11 +14,8 @@ LINK_TO = @{var:link_to}
##################################################
# Version Numbers #
##################################################
-MAJOR = @{var:version_major}
-MINOR = @{var:version_minor}
-PATCH = @{var:version_patch}
-
-VERSION = $(MAJOR).$(MINOR).$(PATCH)
+VERSION = @{var:version}
+SO_VERSION = @{var:so_version}
##################################################
# Installation Settings #
@@ -70,8 +67,8 @@ LIBRARIES = $(STATIC_LIB) $(SHARED_LIB)
LIBNAME = @{var:lib_prefix}libbotan
STATIC_LIB = $(LIBNAME).a
-SHARED_LIB = $(LIBNAME)-$(MAJOR).$(MINOR).$(PATCH).@{var:so_suffix}
-SONAME = $(LIBNAME)-$(MAJOR).$(MINOR).$(PATCH).@{var:so_suffix}
+SHARED_LIB = $(LIBNAME)-$(SO_VERSION).@{var:so_suffix}
+SONAME = $(LIBNAME)-$(SO_VERSION).@{var:so_suffix}
SYMLINK = libbotan.@{var:so_suffix}
@@ -88,7 +85,7 @@ all: $(LIBRARIES)
# Link Commands #
##################################################
$(CHECK): $(LIBRARIES) $(CHECKOBJS)
- $(CXX) $(CHECKOBJS) -L. -lbotan-@{var:version} $(LINK_TO) -o $(CHECK)
+ $(CXX) $(CHECKOBJS) -L. -lbotan $(LINK_TO) -o $(CHECK)
$(STATIC_LIB): $(LIBOBJS)
$(RM) $(STATIC_LIB)