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

« back to all changes in this revision

Viewing changes to common/m4/gst-args.m4

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2012-06-08 09:38:04 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120608093804-q9gzihfevul7nqtc
Tags: 0.11.92-1
* debian/control.in:
  + Update automake, autoconf and libtool build dependencies.
* New upstream release, "High Hopes":
  + debian/libgstreamer.symbols:
    - Update symbols file.
* debian/gst-codec-info.c:
  + Updated for API changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
    dnl if gcov is used, we do not want default -O2 CFLAGS
112
112
    if test "x$GST_GCOV_ENABLED" = "xyes"
113
113
    then
114
 
      CFLAGS="-O0"
 
114
      CFLAGS="$CFLAGS -O0"
115
115
      AC_SUBST(CFLAGS)
116
 
      CXXFLAGS="-O0"
 
116
      CXXFLAGS="$CXXFLAGS -O0"
117
117
      AC_SUBST(CXXFLAGS)
118
 
      FFLAGS="-O0"
 
118
      FFLAGS="$FFLAGS -O0"
119
119
      AC_SUBST(FFLAGS)
120
 
      CCASFLAGS="-O0"
 
120
      CCASFLAGS="$CCASFLAGS -O0"
121
121
      AC_SUBST(CCASFLAGS)
122
122
      AC_MSG_NOTICE([gcov enabled, setting CFLAGS and friends to $CFLAGS])
123
123
    fi