diff options
author | Martin Storsjo <martin@martin.st> | 2013-07-27 02:26:23 +0300 |
---|---|---|
committer | Martin Storsjo <martin@martin.st> | 2013-07-27 18:54:00 +0300 |
commit | f6aebfd48733366a6f915b4a6bdb31d9df15bac3 (patch) | |
tree | 912fd7d8aed7179c7aca05596b09bb380908c4d2 | |
parent | 59ff381ee464da358c0a48b10b10bd3650533886 (diff) | |
download | ODR-AudioEnc-f6aebfd48733366a6f915b4a6bdb31d9df15bac3.tar.gz ODR-AudioEnc-f6aebfd48733366a6f915b4a6bdb31d9df15bac3.tar.bz2 ODR-AudioEnc-f6aebfd48733366a6f915b4a6bdb31d9df15bac3.zip |
Bump the version number, add a changelog entryv0.1.2
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +0.1.2 + - Fix a few more crashes + - Include dependency libs (such as -lm) in the pkg-config file + 0.1.1 - Updated to a new upstream version from Android 4.2, fixing a lot of crashes - Cleanup of autotools usage diff --git a/configure.ac b/configure.ac index 82e3237..4fd969e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ dnl -*- Autoconf -*- dnl Process this file with autoconf to produce a configure script. -AC_INIT([fdk-aac], [0.1.1], [http://sourceforge.net/projects/opencore-amr/]) +AC_INIT([fdk-aac], [0.1.2], [http://sourceforge.net/projects/opencore-amr/]) AC_CONFIG_AUX_DIR(.) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([tar-ustar foreign]) @@ -26,7 +26,7 @@ AC_CHECK_LIB([m], [sin]) dnl soname version to use dnl goes by ‘current[:revision[:age]]’ with the soname ending up as dnl current.age.revision -FDK_AAC_VERSION=0:2:0 +FDK_AAC_VERSION=0:3:0 AS_IF([test x$enable_shared = xyes], [LIBS_PRIVATE=$LIBS], [LIBS_PUBLIC=$LIBS]) AC_SUBST(FDK_AAC_VERSION) |