# HG changeset patch # User Andreas Schwab # Date 1072262725 0 # Node ID 86da44f1219f7202cfbb4a7ef8c9b27ceacc3783 # Parent a07a0bae1990759cb6d85c4a84cf0a2c1d871c82 (PKG_CHECK_MODULES): Fix quoting. diff -r a07a0bae1990 -r 86da44f1219f configure.in --- a/configure.in Wed Dec 24 10:35:24 2003 +0000 +++ b/configure.in Wed Dec 24 10:45:25 2003 +0000 @@ -1845,7 +1845,7 @@ dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not) dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page dnl also defines GSTUFF_PKG_ERRORS on error -AC_DEFUN(PKG_CHECK_MODULES, [ +AC_DEFUN([PKG_CHECK_MODULES], [ succeeded=no if test -z "$PKG_CONFIG"; then @@ -1893,7 +1893,7 @@ if test $succeeded = yes; then ifelse([$3], , :, [$3]) else - ifelse([$4], , AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.]), [$4]) + ifelse([$4], , [AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.])], [$4]) fi ])