filters/adjust/filter_adjust.c does not compile anymore after http://svn.mythtv.org/trac/changeset/7093 was applied.

A "#ifdef HAVE_STDINT_H" was put around "#include <stdint.h>" without including config.h first. The attached patch addresses this problem.

- Tommi
--- mythtv/filters/adjust/filter_adjust.c.orig	2005-08-23 00:21:53.000000000 +0000
+++ mythtv/filters/adjust/filter_adjust.c	2005-08-23 00:22:01.000000000 +0000
@@ -4,6 +4,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 
+#include "config.h"
 #ifdef HAVE_STDINT_H
 #include <stdint.h>
 #endif
@@ -16,7 +17,6 @@
 
 #ifdef MMX
 
-#include "config.h"
 #include "dsputil.h"
 #include "i386/mmx.h"
 
_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev

Reply via email to