diff options
author | Matt Messier <mmessier@grapetv.org> | 2007-05-08 19:25:39 -0400 |
---|---|---|
committer | Matt Messier <mmessier@grapetv.org> | 2007-05-08 19:25:39 -0400 |
commit | b85d32719d535166bfbb292037c061e1e0e398d3 (patch) | |
tree | 013c479196a4a1429bad180884e9f99375cba5eb /m4 | |
parent | aa57f140aa3cf28debfa82e2200198ecb6871cfa (diff) | |
download | xine-lib-b85d32719d535166bfbb292037c061e1e0e398d3.tar.gz xine-lib-b85d32719d535166bfbb292037c061e1e0e398d3.tar.bz2 |
Add AC_MSG_RESULT([no]) for test failures so lines don't bunch up
Diffstat (limited to 'm4')
-rw-r--r-- | m4/pkg.m4 | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -136,7 +136,8 @@ installed software in a non-standard prefix. _PKG_TEXT ])], - [$4]) + [AC_MSG_RESULT([no]) + $4]) elif test $pkg_failed = untried; then ifelse([$4], , [AC_MSG_FAILURE(dnl [The pkg-config script could not be found or is too old. Make sure it @@ -146,7 +147,8 @@ path to pkg-config. _PKG_TEXT To get pkg-config, see <http://www.freedesktop.org/software/pkgconfig>.])], - [$4]) + [AC_MSG_RESULT([no]) + $4]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS |