diff options
-rw-r--r-- | configure.ac | 10 | ||||
-rw-r--r-- | libslv2.pc.in | 2 |
2 files changed, 8 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 262acdb..8ef51b7 100644 --- a/configure.ac +++ b/configure.ac @@ -11,13 +11,17 @@ AC_PREREQ(2.59) # # Version history: # 0.0.1 = 0,0,0 -# current svn = 2,0,0 -SLV2_API_CURRENT=3 +# 0.1.0 = 2,0,0 +# 0.2.0 = 3,0,0 +# current svn = 4,0,0 + +SLV2_VERSION="0.3.0" +SLV2_API_CURRENT=4 SLV2_API_REVISION=0 SLV2_API_AGE=0 # SLV2 follows the even/odd minor = stable/development convention -AC_INIT([slv2],[0.3.0],[dave@drobilla.net]) +AC_INIT([slv2],${SLV2_VERSION},[dave@drobilla.net]) AC_CONFIG_AUX_DIR([config]) diff --git a/libslv2.pc.in b/libslv2.pc.in index 48e9ff8..5d30a70 100644 --- a/libslv2.pc.in +++ b/libslv2.pc.in @@ -4,7 +4,7 @@ libdir=@libdir@ includedir=@includedir@ Name: libslv2 -Version: @VERSION@ +Version: @SLV2_VERSION@ Description: Convenience library for hosts to simplify LV2 plugin support Libs: @REDLAND_LIBS@ -L${libdir} -lslv2 Cflags: @REDLAND_CFLAGS@ -I${includedir} |