aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2003-12-24 10:45:25 +0000
committerAndreas Schwab2003-12-24 10:45:25 +0000
commitf60d0e8f8fa4bec56b8956be3a92ffbed9957d1d (patch)
tree448a8826fcac4dbf21703cc9ccb0148efdf57a26
parentf26fab360eb3c3d004db6128f43e1c1ba1feef4f (diff)
downloademacs-f60d0e8f8fa4bec56b8956be3a92ffbed9957d1d.tar.gz
emacs-f60d0e8f8fa4bec56b8956be3a92ffbed9957d1d.zip
(PKG_CHECK_MODULES): Fix quoting.
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
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
1845dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not) 1845dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
1846dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page 1846dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
1847dnl also defines GSTUFF_PKG_ERRORS on error 1847dnl also defines GSTUFF_PKG_ERRORS on error
1848AC_DEFUN(PKG_CHECK_MODULES, [ 1848AC_DEFUN([PKG_CHECK_MODULES], [
1849 succeeded=no 1849 succeeded=no
1850 1850
1851 if test -z "$PKG_CONFIG"; then 1851 if test -z "$PKG_CONFIG"; then
@@ -1893,7 +1893,7 @@ AC_DEFUN(PKG_CHECK_MODULES, [
1893 if test $succeeded = yes; then 1893 if test $succeeded = yes; then
1894 ifelse([$3], , :, [$3]) 1894 ifelse([$3], , :, [$3])
1895 else 1895 else
1896 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]) 1896 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])
1897 fi 1897 fi
1898]) 1898])
1899 1899