1. 04 1月, 2017 5 次提交
  2. 03 1月, 2017 15 次提交
  3. 02 1月, 2017 1 次提交
  4. 31 12月, 2016 1 次提交
  5. 30 12月, 2016 1 次提交
  6. 29 12月, 2016 4 次提交
  7. 28 12月, 2016 5 次提交
  8. 27 12月, 2016 7 次提交
  9. 23 12月, 2016 1 次提交
    • Sebastian Kemper's avatar
      FS-9840 mod_avmd: Fix implicit declaration warning · 8c94e6f5
      Sebastian Kemper 提交于
      Fix the following compile-time warning:
      
      making all mod_avmd
      make[7]: Entering directory '/home/sk/tmp/lede/build_dir/target-mips_24kc_musl-1.1.15/freeswitch-1.8.0/src/mod/applications/mod_avmd'
        CC       mod_avmd_la-mod_avmd.lo
      mod_avmd.c: In function 'avmd_process_sample':
      mod_avmd.c:49:19: error: implicit declaration of function '__isinf' [-Werror=implicit-function-declaration]
       #define ISINF(x) (__isinf(x))
                         ^
      mod_avmd.c:2038:33: note: in expansion of macro 'ISINF'
               if (ISNAN(amplitude) || ISINF(amplitude)) {
                                       ^
      cc1: all warnings being treated as errors
      Makefile:682: recipe for target 'mod_avmd_la-mod_avmd.lo' failed
      
      Fix this by adding the declaration for __isinf(), the same is done for
      __isnan() already
      Signed-off-by: 's avatarSebastian Kemper <sebastian_ml@gmx.net>
      8c94e6f5