configure.ac : Fix typo, FLAC_CLFAGS -> FLAC_CFLAGS.

This commit is contained in:
Erik de Castro Lopo 2012-01-26 16:21:52 +11:00
parent a779d3f91a
commit e0671a836c
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2012-01-26 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* configure.ac
Fix typo, FLAC_CLFAGS -> FLAC_CFLAGS. Thanks to Jeremy Friesner.
2012-01-21 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
* src/sndfile.c src/ogg.c

View File

@ -1,4 +1,4 @@
# Copyright (C) 1999-2011 Erik de Castro Lopo (erikd AT mega-nerd DOT com).
# Copyright (C) 1999-2012 Erik de Castro Lopo <erikd@mega-nerd.com>.
dnl Require autoconf version
AC_PREREQ(2.57)
@ -308,7 +308,7 @@ if test -n "$PKG_CONFIG" ; then
PKG_CHECK_MOD_VERSION(FLAC, flac >= 1.2.1, ac_cv_flac=yes, ac_cv_flac=no)
# Make sure the FLAC_CFLAGS value is sane.
FLAC_CFLAGS=`echo $FLAC_CLFAGS | $SED "s/FLAC$//"`
FLAC_CFLAGS=`echo $FLAC_CFLAGS | $SED "s/FLAC$//"`
PKG_CHECK_MOD_VERSION(OGG, ogg >= 1.1.3, ac_cv_ogg=yes, ac_cv_ogg=no)