chuannguyen / gladstone

Automatically exported from code.google.com/p/gladstone
Other
0 stars 0 forks source link

Does not build on Mac OS X #3

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,

I'm trying to build gladstone : http://code.google.com/p/gladstone/

Although my PKG_CONFIG_PATH seems to be OK, still the configure script
of gladstone is failing by complaining that it can't find the
gstreamer development files.

[1] arif@dev:~/src/gladstone$echo $PKG_CONFIG_PATH
/Library/Frameworks/GStreamer.framework/Versions/1.0/lib/pkgconfig:/Library/Fram
eworks/GStreamer.framework/Versions/1.0/share/pkgconfig

[2] arif@dev:~/src/gladstone$./configure
.......................
........................
checking for GST... no
configure: error: you need gstreamer development packages installed !
  configure failed

This not a "issue" i guess…but as there is no mailing list, i had to post it 
here…

Another thing is, i have read in a mailing list discussion over streamer-dev 
that there are patches which improves the reference codec. Are those patches 
included into gladstone?

Original issue reported on code.google.com by aft...@gmail.com on 16 Feb 2014 at 6:03

GoogleCodeExporter commented 8 years ago
This patch solves the issue :

diff --git a/configure.ac b/configure.ac
index 240502c..c572cf3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,9 +1,9 @@
 AC_INIT

 dnl versions of gstreamer and plugins-base
-GST_MAJORMINOR=0.10
-GST_REQUIRED=0.10.0
-GSTPB_REQUIRED=0.10.0
+GST_MAJORMINOR=1.0
+GST_REQUIRED=1.0.0
+GSTPB_REQUIRED=1.0.0

 dnl fill in your package name and version here
 dnl the fourth (nano) number should be 0 for a release, 1 for CVS,

Original comment by aft...@gmail.com on 16 Feb 2014 at 6:59