From: Andreas Schwab Date: Wed, 24 Dec 2003 10:45:25 +0000 (+0000) Subject: (PKG_CHECK_MODULES): Fix quoting. X-Git-Tag: ttn-vms-21-2-B4~8187 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f60d0e8f8fa4bec56b8956be3a92ffbed9957d1d;p=emacs.git (PKG_CHECK_MODULES): Fix quoting. --- diff --git a/configure.in b/configure.in index 34f7836e0da..aa8bbeb065b 100644 --- a/configure.in +++ b/configure.in @@ -1845,7 +1845,7 @@ dnl This function defintion taken from Gnome 2.0 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 @@ AC_DEFUN(PKG_CHECK_MODULES, [ 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 ])