[haiku-commits] r38554 - haiku/trunk/src/add-ons/media/plugins/ffmpeg/libavutil

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 6 Sep 2010 23:06:28 +0200 (CEST)

Author: stippi
Date: 2010-09-06 23:06:28 +0200 (Mon, 06 Sep 2010)
New Revision: 38554
Changeset: http://dev.haiku-os.org/changeset/38554

Modified:
   haiku/trunk/src/add-ons/media/plugins/ffmpeg/libavutil/common.h
Log:
GCC2 was seeing the wrong "internal.h" header. That's what you get for not
using vendor branches properly... I remember having to make this change
before... GCC2 build goes much further now, investigating next problem.


Modified: haiku/trunk/src/add-ons/media/plugins/ffmpeg/libavutil/common.h
===================================================================
--- haiku/trunk/src/add-ons/media/plugins/ffmpeg/libavutil/common.h     
2010-09-06 19:27:25 UTC (rev 38553)
+++ haiku/trunk/src/add-ons/media/plugins/ffmpeg/libavutil/common.h     
2010-09-06 21:06:28 UTC (rev 38554)
@@ -302,7 +302,7 @@
 #include "mem.h"
 
 #ifdef HAVE_AV_CONFIG_H
-#    include "internal.h"
+#    include "libavutil/internal.h"
 #endif /* HAVE_AV_CONFIG_H */
 
 #endif /* AVUTIL_COMMON_H */


Other related posts:

  • » [haiku-commits] r38554 - haiku/trunk/src/add-ons/media/plugins/ffmpeg/libavutil - superstippi