HI!<br><br>I was using gstreamer standard distributions from fedora repository, but needed to update them from source code to use latest version of appsrc/sink .<br>My problem is when I link the application against libgstapp with the option of -lgstapp-0.10, I got some link errors. It seems like I am linking to old version of gst-plugins-base library.  Error messages are as follows: ( oops! almost forgot to mentiion this. the code in main.cc is copy of exmplae code &quot;appsink-src.c&quot;);<br>
<br>---------------------------------------------------------------------------------------------------<br>g++ -Wall -g `pkg-config --cflags gstreamer-0.10` `pkg-config --libs gstreamer-0.10` -lgstapp-0.10 -lgstinterfaces-0.10 -c main.cc<br>
g++ -Wall -g `pkg-config --cflags gstreamer-0.10` `pkg-config --libs gstreamer-0.10` -lgstapp-0.10 -lgstinterfaces-0.10  main.o -o appsinktest<br>/usr/local/lib/libgstbase-0.10.so.0: undefined reference to `gst_util_seqnum_next&#39;<br>
/usr/local/lib/libgstbase-0.10.so.0: undefined reference to `gst_message_set_seqnum&#39;<br>/usr/local/lib/libgstbase-0.10.so.0: undefined reference to `gst_event_set_seqnum&#39;<br>/usr/local/lib/libgstbase-0.10.so.0: undefined reference to `gst_event_get_seqnum&#39;<br>
collect2: ld returned 1 exit status<br>make: *** [appsinktest] Error 1<br>---------------------------------------------------------------------------------------------------<br><br>Is there any specific way to install the gstreamer package from source code?<br>
<br>The package I installed from source:<br>1. gstreamer-0.10.23<br>2. gst-plugins-base-0.10.23<br>3. gst-plugins-good-0.10.15  <br>4. gst-plugins-bad-0.10.13<br>5. gst-plugins-ugly-0.10.12<br>6. gst-ffmpeg-0.10.8          <br>
<br><br>Once I did &quot;export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig&quot; <br>What I did for every source package:<br><br>1. &quot;./configure&quot;<br>2. &quot;make&quot;<br>3. &quot;sudo make install&quot;<br><br>Everything was okay. <br>
<br>Am I missing something?<br><br>Thank you in advance!<br><br>Justin<br><br><br><br><br>