diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-02-26 10:09:38 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-02-26 10:09:38 +0000 |
commit | c34fa140d0c16ce688e42947a8668049ce22cdb7 (patch) | |
tree | a33f768a8cdc09adec4cc4e9a678b781ffa48adb /gst/goom/goomsl.c | |
parent | c99b95d8cb9f95cd0cec8ad736f139b6029d13c9 (diff) |
configure.ac: Detect and indicate if GCC inline assembly syntax is available.
Original commit message from CVS:
* configure.ac:
Detect and indicate if GCC inline assembly syntax is
available.
* gst/goom/Makefile.am:
* gst/goom/convolve_fx.c:
* gst/goom/flying_stars_fx.c:
* gst/goom/goom_config.h:
* gst/goom/goom_core.c:
* gst/goom/goomsl.c:
* gst/goom/ifs.c:
* gst/goom/mmx.c:
* gst/goom/plugin_info.c:
* gst/goom/xmmx.c:
Fix various GCC-isms, and only build the inline assembly
with compilers that support GCC inline assembly.
Fix a couple of other warnings shown with Forte.
Diffstat (limited to 'gst/goom/goomsl.c')
-rw-r--r-- | gst/goom/goomsl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/goom/goomsl.c b/gst/goom/goomsl.c index 6d3254ae..759be102 100644 --- a/gst/goom/goomsl.c +++ b/gst/goom/goomsl.c @@ -2,6 +2,7 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> +#include <glib.h> #include "goomsl.h" #include "goomsl_private.h" #include "goomsl_yacc.h" @@ -465,7 +466,6 @@ gsl_instr_validate (Instruction * _this) default: return VALIDATE_TODO; } - return VALIDATE_ERROR; } /* }}} */ /*************/ |