From db005cd335dbdecbf2e555c92a40d6ffdea0ca96 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Sun, 26 Sep 2004 22:55:15 +0000 Subject: "" svn path=/trunk/; revision=2055 --- externals/grill/flext/source/flatom.cpp | 1 + externals/grill/flext/source/flbind.cpp | 4 ++-- externals/grill/flext/source/flext.h | 2 +- externals/grill/flext/source/flqueue.cpp | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) (limited to 'externals/grill/flext/source') diff --git a/externals/grill/flext/source/flatom.cpp b/externals/grill/flext/source/flatom.cpp index 593a58b5..c4c2161c 100644 --- a/externals/grill/flext/source/flatom.cpp +++ b/externals/grill/flext/source/flatom.cpp @@ -13,6 +13,7 @@ WARRANTIES, see the file, "license.txt," in this distribution. */ #include "flext.h" +#include // for memcpy #if FLEXT_SYS != FLEXT_SYS_JMAX int flext::CmpAtom(const t_atom &a,const t_atom &b) diff --git a/externals/grill/flext/source/flbind.cpp b/externals/grill/flext/source/flbind.cpp index ce775de0..6e4d4f92 100644 --- a/externals/grill/flext/source/flbind.cpp +++ b/externals/grill/flext/source/flbind.cpp @@ -35,7 +35,7 @@ void flext_base::SetupBindProxy() #elif FLEXT_SYS == FLEXT_SYS_MAX pxbnd_class = new t_class; - pxbnd_class->c_sym = sym__; + pxbnd_class->c_sym = const_cast(sym__); pxbnd_class->c_freelist = &px_freelist; pxbnd_class->c_freefun = NULL; pxbnd_class->c_size = sizeof(pxbnd_object); @@ -43,7 +43,7 @@ void flext_base::SetupBindProxy() pxbnd_class->c_noinlet = 1; px_messlist[0].m_sym = (t_symbol *)pxbnd_class; - px_messlist[1].m_sym = sym_anything; + px_messlist[1].m_sym = const_cast(sym_anything); px_messlist[1].m_fun = (method)pxbnd_object::px_method; px_messlist[1].m_type[0] = A_GIMME; px_messlist[1].m_type[1] = 0; diff --git a/externals/grill/flext/source/flext.h b/externals/grill/flext/source/flext.h index 41996a0d..8d8f6e74 100644 --- a/externals/grill/flext/source/flext.h +++ b/externals/grill/flext/source/flext.h @@ -26,7 +26,7 @@ WARRANTIES, see the file, "license.txt," in this distribution. #define FLEXT_VERSION 407 //! \brief flext version string -#define FLEXT_VERSTR "0.4.7pre" +#define FLEXT_VERSTR "0.4.7" //! @} diff --git a/externals/grill/flext/source/flqueue.cpp b/externals/grill/flext/source/flqueue.cpp index 10943030..d3bc9a13 100755 --- a/externals/grill/flext/source/flqueue.cpp +++ b/externals/grill/flext/source/flqueue.cpp @@ -18,7 +18,7 @@ WARRANTIES, see the file, "license.txt," in this distribution. #include "flext.h" #include "flinternal.h" - +#include // for memcpy #ifdef FLEXT_THREADS //! Thread id of message queue thread -- cgit v1.2.1