After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 330266 - libavutil Makefile INCLUDES missing ALTIVEC_CFLAGS
libavutil Makefile INCLUDES missing ALTIVEC_CFLAGS
Status: RESOLVED DUPLICATE of bug 320238
Product: GStreamer
Classification: Platform
Component: gst-libav
0.10.0
Other Linux
: Normal normal
: NONE
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-02-07 13:27 UTC by Joseph Sacco
Modified: 2006-02-07 14:35 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Joseph Sacco 2006-02-07 13:27:34 UTC
Both the 0.8 and 0.10 branches of gst-ffmpeg require the patch shown below in order to compile using gcc-3.4.4 on a PPC that supports alitivec.

[see the other Makefiles in subdirectories of gst-libs/ext/ffmpeg]

-Joseph

===============================================================================


--- gst-ffmpeg-0.8.7/gst-libs/ext/ffmpeg/libavutil/Makefile.am- 2006-02-06 22:18:21.000000000 -0500
+++ gst-ffmpeg-0.8.7/gst-libs/ext/ffmpeg/libavutil/Makefile.am  2006-02-06 22:17:20.000000000 -0500
@@ -2,7 +2,8 @@
        -I$(top_srcdir)/libavcodec \
        -DHAVE_AV_CONFIG_H=1 \
        $(GPROF_FLAGS) \
-       $(WARNERR_FLAGS)
+       $(WARNERR_FLAGS) \
+       $(ALTIVEC_CFLAGS)

 LDADD = \
        $(GPROF_FLAGS) \
--- gst-ffmpeg-0.8.7/gst-libs/ext/ffmpeg/libavutil/Makefile.in- 2006-02-06 22:18:33.000000000 -0500
+++ gst-ffmpeg-0.8.7/gst-libs/ext/ffmpeg/libavutil/Makefile.in  2006-02-06 22:17:00.000000000 -0500
@@ -565,7 +565,8 @@
        -I$(top_srcdir)/libavcodec \
        -DHAVE_AV_CONFIG_H=1 \
        $(GPROF_FLAGS) \
-       $(WARNERR_FLAGS)
+       $(WARNERR_FLAGS) \
+       $(ALTIVEC_CFLAGS)

 LDADD = \
        $(GPROF_FLAGS) \
Comment 1 Edward Hervey 2006-02-07 13:34:49 UTC
This is already fixed in gst-ffmpeg 0.10/0.8 cvs (in fact it's fixed in the ffmpeg mirror we use with gst-ffmpeg).
Comment 2 Joseph Sacco 2006-02-07 14:04:02 UTC
Edward,

Great!!!

-Joseph
Comment 3 Andy Wingo 2006-02-07 14:35:49 UTC

*** This bug has been marked as a duplicate of 320238 ***