Changeset 98785e7 in freewrt


Ignore:
Timestamp:
Feb 3, 2007, 9:46:05 AM (19 years ago)
Author:
Waldemar Brodkorb <wbx@…>
Children:
99ac30b
Parents:
d3e3be1
Message:

update to 1.2, use fixed-point, no segfault with asterisk, fixes #190

git-svn-id: svn://www.freewrt.org/trunk/freewrt@1837 afb5a338-a214-0410-bd46-81f09a774fd1

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • package/speex/Makefile

    rd3e3be1 r98785e7  
    88
    99PKG_NAME:=              speex
    10 PKG_VERSION:=           1.1.8
     10PKG_VERSION:=           1.2beta1
    1111PKG_RELEASE:=           1
    12 PKG_MD5SUM:=            734892c8ca5e7e835828048a1289a0cc
    13 PKG_SOURCE_URL:=        http://us.speex.org/download
     12PKG_MD5SUM:=            aac2e4ba42122b885c787ea280acb3d9
     13PKG_SOURCE_URL:=        http://downloads.us.xiph.org/releases/speex/
    1414
    1515include ${TOPDIR}/mk/package.mk
     
    1818
    1919CONFIGURE_STYLE:=       gnu
    20 CONFIGURE_ARGS+=        --disable-oggtest
     20CONFIGURE_ENV+=         LIBS="-lnotimpl"
     21CONFIGURE_ARGS+=        --disable-oggtest --enable-fixed-point
    2122BUILD_STYLE:=           auto
    2223INSTALL_STYLE:=         auto
  • toolchain/libnotimpl/files/math.c

    rd3e3be1 r98785e7  
    1212}
    1313
     14float floorf (float x)
     15{
     16        return (float) floor( (double)x );
     17}
     18
     19float logf (float x)
     20{
     21        return (float) log( (double)x );
     22}
    1423
    1524/* sinf for uClibc
Note: See TracChangeset for help on using the changeset viewer.