From d5597f47e78e206d901e9525beff1279151c9cec Mon Sep 17 00:00:00 2001 From: J. Ali Harlow Date: Thu, 13 Aug 2009 07:08:45 +0100 Subject: [PATCH] Fix a bug causing libtool versioning to be ignored. This bug meant that razor 0.1 was recorded as interface 0 rather than the intended interface 1. razor 0.2 will use interface 1. --- librazor/Makefile.am | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/librazor/Makefile.am b/librazor/Makefile.am index b39ce30..9caddee 100644 --- a/librazor/Makefile.am +++ b/librazor/Makefile.am @@ -41,7 +41,8 @@ endif librazor_la_LIBADD = $(ZLIB_LIBS) types/libtypes.la $(LUA_LIBS) \ ../gl/libgnu.la $(EXTRA_LIBS) -librazor_la_LDFLAGS = -no-undefined +librazor_la_LDFLAGS = -no-undefined \ + -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) if HAVE_LUA test_lua_SOURCES = test-lua.c -- 1.7.1