| CODENOTIFIER | HelpYou are not signed inSign in |
Project: OGG Vorbis
Revision: 14831
Author: erikd
Date: 03 May 2008 19:13:19
Changes:Remove redundant (and incorrect when cross compiling) check for pkg-config.
Files:| ... | ...@@ -203,13 +203,7 @@ | |
| 203 | 203 | AC_CHECK_LIB(pthread, pthread_create, pthread_lib="-lpthread", :) |
| 204 | 204 | |
| 205 | 205 | HAVE_OGG=no |
| 206 | dnl first check through pkg-config | |
| 207 | dnl check for pkg-config itself so we don't try the m4 macro without pkg-config | |
| 208 | AC_CHECK_PROG(HAVE_PKG_CONFIG, pkg-config, yes) | |
| 209 | if test "x$HAVE_PKG_CONFIG" = "xyes" | |
| 210 | then | |
| 211 | PKG_CHECK_MODULES(OGG, ogg >= 1.0, HAVE_OGG=yes, HAVE_OGG=no) | |
| 212 | fi | |
| 206 | PKG_CHECK_MODULES(OGG, ogg >= 1.0, HAVE_OGG=yes, HAVE_OGG=no) | |
| 213 | 207 | if test "x$HAVE_OGG" = "xno" |
| 214 | 208 | then |
| 215 | 209 | dnl fall back to the old school test |