# HG changeset patch # User michael # Date 1004378860 0 # Node ID b44113f46c968262fa919e684cc3f65632f23467 # Parent cc9d3fd626f081de71e369fa566b7ccceef7124f cant compile on non x86 bugfix diff -r cc9d3fd626f0 -r b44113f46c96 postproc/rgb2rgb.c --- a/postproc/rgb2rgb.c Mon Oct 29 18:00:45 2001 +0000 +++ b/postproc/rgb2rgb.c Mon Oct 29 18:07:40 2001 +0000 @@ -1,7 +1,9 @@ #include #include "../config.h" #include "rgb2rgb.h" +#ifdef HAVE_MMX #include "mmx.h" +#endif #include "../mmx_defs.h" void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size) diff -r cc9d3fd626f0 -r b44113f46c96 postproc/rgb2rgb_template.c --- a/postproc/rgb2rgb_template.c Mon Oct 29 18:00:45 2001 +0000 +++ b/postproc/rgb2rgb_template.c Mon Oct 29 18:07:40 2001 +0000 @@ -1,7 +1,9 @@ #include #include "../config.h" #include "rgb2rgb.h" +#ifdef HAVE_MMX #include "mmx.h" +#endif #include "../mmx_defs.h" void rgb24to32(uint8_t *src,uint8_t *dst,uint32_t src_size)