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

« back to all changes in this revision

Viewing changes to common/gst-autogen.sh

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2012-05-21 11:14:06 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120521111406-1wfas0o9fdaxjyo8
Tags: 0.11.91-1
* New upstream release, "I will give you five magic beans!":
  + debian/libgstreamer.symbols:
    - Update symbols file.
* debian/libgstreamer-dev.install:
  + Don't ship useless .la file for the core plugins.
  + Don't ship .a and .la files for the library.
* debian/control.in:
  + Update debhelper dependency version and Standards-Version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
 
217
217
}
218
218
 
219
 
autoconf_2_52d_check ()
220
 
{
221
 
  # autoconf 2.52d has a weird issue involving a yes:no error
222
 
  # so don't allow it's use
223
 
  test -z "$NOCHECK" && {
224
 
    ac_version=`$autoconf --version|head -n 1|sed 's/^[a-zA-Z\.\ ()]*//;s/ .*$//'`
225
 
    if test "$ac_version" = "2.52d"; then
226
 
      echo "autoconf 2.52d has an issue with our current build."
227
 
      echo "We don't know who's to blame however.  So until we do, get a"
228
 
      echo "regular version.  RPM's of a working version are on the gstreamer site."
229
 
      exit 1
230
 
    fi
231
 
  }
232
 
  return 0
233
 
}
234
 
libtool_2_2_gettext_check ()
235
 
{
236
 
  # libtool 2.2 needs autopoint 0.17 or higher
237
 
  version_compare LIBTOOLIZE 2 2 0
238
 
  if test $? -eq 0
239
 
  then
240
 
    version_compare AUTOPOINT 0 17 0
241
 
    if test $? -ne 0
242
 
    then
243
 
      echo "libtool 2.2 requires autopoint 0.17 or higher"
244
 
      return 1
245
 
    fi
246
 
  fi
247
 
  return 0
248
 
}
249
 
 
250
 
 
251
219
die_check ()
252
220
{
253
221
  # call with $DIE