summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2014-04-18 10:32:23 +0200
committerSebastian Dröge <sebastian@centricular.com>2014-04-18 10:32:23 +0200
commitec132ae118bead13312f126a1f6e5709a2429ff6 (patch)
tree32d9b041e909ba93182f71c88355dbb21f7d7cc4
parente9f4f44f129aedad37b8b441831406181fb91271 (diff)
Release 0.4.19orc-0.4.19
-rw-r--r--RELEASE9
-rw-r--r--configure.ac4
-rw-r--r--orc/orcbytecodes.h3
-rw-r--r--orc/orcfunctions.c24
4 files changed, 23 insertions, 17 deletions
diff --git a/RELEASE b/RELEASE
index 17c18c1..0c32056 100644
--- a/RELEASE
+++ b/RELEASE
@@ -1,3 +1,12 @@
+0.4.19
+======
+
+Maintenance release:
+
+ - Fix out-of-tree builds (Edward Hervey)
+ - Fix many memory leaks, compiler warnings and coverity warnings (Tim-Philipp Müller,
+ Olivier Crête, Todd Agulnick, Sebastian Dröge, Vincent Penquerc'h, Edward Hervey)
+ - Documentation fix for mulhsw, mulhuw (William Manley)
0.4.18
======
diff --git a/configure.ac b/configure.ac
index 3ee8a90..8f792ef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.58])
-AC_INIT(orc,0.4.18.1)
+AC_INIT(orc,0.4.19)
dnl don't forget to update libversion
AS_NANO(ORC_GIT=no,ORC_GIT=yes)
@@ -17,7 +17,7 @@ dnl - library source changed -> increment REVISION
dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
dnl - interfaces added -> increment AGE
dnl - interfaces removed -> AGE = 0
-ORC_LIBVERSION="18:0:18"
+ORC_LIBVERSION="19:0:19"
AC_SUBST(ORC_LIBVERSION)
AC_LIBTOOL_WIN32_DLL
AC_LIBTOOL_TAGS([])
diff --git a/orc/orcbytecodes.h b/orc/orcbytecodes.h
index c71f57b..cea1ff4 100644
--- a/orc/orcbytecodes.h
+++ b/orc/orcbytecodes.h
@@ -1,9 +1,6 @@
/* autogenerated by generate-bytecode */
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
#include <math.h>
#include <orc/orc.h>
diff --git a/orc/orcfunctions.c b/orc/orcfunctions.c
index cd09ec3..1e8b6ca 100644
--- a/orc/orcfunctions.c
+++ b/orc/orcfunctions.c
@@ -190,12 +190,12 @@ orc_memcpy (void * ORC_RESTRICT d1, const void * ORC_RESTRICT s1, int n)
OrcProgram *p;
#if 1
- static const orc_uint8 bc[] = {
- 1, 9, 10, 111, 114, 99, 95, 109, 101, 109, 99, 112, 121, 11, 1, 1,
- 12, 1, 1, 42, 0, 4, 2, 0,
- };
- p = orc_program_new_from_static_bytecode (bc);
- orc_program_set_backup_function (p, _backup_orc_memcpy);
+ static const orc_uint8 bc[] = {
+ 1, 9, 10, 111, 114, 99, 95, 109, 101, 109, 99, 112, 121, 11, 1, 1,
+ 12, 1, 1, 42, 0, 4, 2, 0,
+ };
+ p = orc_program_new_from_static_bytecode (bc);
+ orc_program_set_backup_function (p, _backup_orc_memcpy);
#else
p = orc_program_new ();
orc_program_set_name (p, "orc_memcpy");
@@ -287,12 +287,12 @@ orc_memset (void * ORC_RESTRICT d1, int p1, int n)
OrcProgram *p;
#if 1
- static const orc_uint8 bc[] = {
- 1, 9, 10, 111, 114, 99, 95, 109, 101, 109, 115, 101, 116, 11, 1, 1,
- 16, 1, 42, 0, 24, 2, 0,
- };
- p = orc_program_new_from_static_bytecode (bc);
- orc_program_set_backup_function (p, _backup_orc_memset);
+ static const orc_uint8 bc[] = {
+ 1, 9, 10, 111, 114, 99, 95, 109, 101, 109, 115, 101, 116, 11, 1, 1,
+ 16, 1, 42, 0, 24, 2, 0,
+ };
+ p = orc_program_new_from_static_bytecode (bc);
+ orc_program_set_backup_function (p, _backup_orc_memset);
#else
p = orc_program_new ();
orc_program_set_name (p, "orc_memset");