~ubuntu-branches/ubuntu/trusty/gstreamer1.0/trusty-proposed

« back to all changes in this revision

Viewing changes to gst/gstpluginfeature.c

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2012-10-08 09:59:20 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20121008095920-3k2vlenl0zf6lu7i
Tags: 1.0.1-1
* New upstream stable release:
  + debian/libgstreamer.symbols:
    - Add new symbols.

Show diffs side-by-side

added added

removed removed

Lines of Context:
317
317
    GST_DEBUG ("version string '%s' parsed to %d values", ver_str, nscan);
318
318
 
319
319
    if (nscan >= 3) {
320
 
      if (!g_str_has_prefix (PACKAGE_VERSION, "1.")) {
321
 
        /* FIXME 1.0: Remove this before doing the actual 1.0.0 release */
322
 
        if ((major == 0 && minor == 11 && micro >= 90)) {
323
 
          major = 1;
324
 
          minor = 0;
325
 
          micro = 0;
326
 
          nano = 0;
327
 
        }
328
 
      } else {
329
 
        GST_FIXME ("Remove pre-1.0 versions mangling");
330
 
      }
331
 
 
332
320
      if (major > min_major)
333
321
        ret = TRUE;
334
322
      else if (major < min_major)