I’ve seen this before, and I’ve got a workaround, but I’d rather figure out the “right way”.
I’m trying to build wxPython-2.9.4.1 (2.9.4.0 with the 0.1 patch applied) on Ubuntu 12.04.1 LTS and I get:
checking for CAIRO… yes
checking for cairo_push_group… yes
checking for GST… configure: WARNING: GStreamer 0.10 not available, falling back to 0.8
checking for GST… configure: WARNING: GStreamer 0.8/0.10 not available.
configure: error: GStreamer not available
Error running configure
ERROR: failed building wxWidgets
Traceback (most recent call last):
File “build-wxpython.py”, line 378, in
wxbuild.main(wxscript, build_options)
File “/home/steve/Development/wxPython-src-2.9.4.0/build/tools/build-wxwidgets.py”, line 359, in main
“Error running configure”)
File “/home/steve/Development/wxPython-src-2.9.4.0/build/tools/build-wxwidgets.py”, line 74, in exitIfError
raise builder.BuildError(msg)
BuildError
And so… I comment out the --enable-mediactrl:
steve@steve-VirtualBox:~/Development/wxPython-src-2.9.4.0/wxPython$ diff -C 3 …/build/tools/build-wxwidgets.py~ …/build/tools/build-wxwidgets.py
*** …/build/tools/build-wxwidgets.py~ 2012-07-20 22:34:48.000000000 -0600
— …/build/tools/build-wxwidgets.py 2013-01-11 23:43:45.951577878 -0700
···
*** 264,270 ****
“–with-opengl”,
“–enable-sound”,
“–enable-graphics_ctx”,
! “–enable-mediactrl”,
“–enable-display”,
“–enable-geometry”,
“–enable-debug_flag”,
— 264,270 ----
“–with-opengl”,
“–enable-sound”,
“–enable-graphics_ctx”,
! #"–enable-mediactrl",
“–enable-display”,
“–enable-geometry”,
“–enable-debug_flag”,
But… how do I get GStreamer? What package provides it?
thanks!
-steve