summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2002-05-15 16:19:25 +0000
committerJP Rosevear <jpr@src.gnome.org>2002-05-15 16:19:25 +0000
commitc81581c186792d605e56aeec8d4e5a4f8a00c772 (patch)
tree357cb4dbc758e5f228ec04c99a1b2afbde62d909
parent9a7d203157be47cfedbb18196baae4ea7c38c08b (diff)
downloadshared-mime-info-c81581c186792d605e56aeec8d4e5a4f8a00c772.tar.gz
Fix quoting for AC_MSG_*
2002-05-15 JP Rosevear <jpr@ximian.com> * gnome-pilot.m4: Fix quoting for AC_MSG_* svn path=/trunk/; revision=2442
-rw-r--r--macros/ChangeLog4
-rw-r--r--macros/gnome-pilot.m416
2 files changed, 12 insertions, 8 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index 02fc9dc4..c3796fe2 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,7 @@
+2002-05-15 JP Rosevear <jpr@ximian.com>
+
+ * gnome-pilot.m4: Fix quoting for AC_MSG_*
+
2002-03-10 Sebastian Rittau <srittau@jroger.in-berlin.de>
* Makefile.am:
diff --git a/macros/gnome-pilot.m4 b/macros/gnome-pilot.m4
index d8ce9606..7f5b0f31 100644
--- a/macros/gnome-pilot.m4
+++ b/macros/gnome-pilot.m4
@@ -28,9 +28,9 @@ AC_DEFUN([PILOT_LINK_HOOK],[
PISOCK_LIBS="-L$withval/lib -lpisock"
AC_MSG_CHECKING("for existance of $withval/lib/libpisock.so")
if test -r $withval/lib/libpisock.so; then
- AC_MSG_RESULT("yes")
+ AC_MSG_RESULT(yes)
else
- AC_MSG_ERROR("Unable to find libpisock. Try ftp://ryeham.ee.ryerson.ca/pub/PalmOS/.")
+ AC_MSG_ERROR([Unable to find libpisock. Try http://www.pilot-link.org.])
fi
fi
])
@@ -47,14 +47,14 @@ AC_DEFUN([PILOT_LINK_HOOK],[
incdir="$prefix/include"
PISOCK_LIBS="-L$prefix/lib -lpisock"
fi ],
- AC_MSG_ERROR("Unable to find pi-version.h"))
+ AC_MSG_ERROR([Unable to find pi-version.h]))
])
])
fi
if test "x$PISOCK_LIBS" = "x"; then
AC_CHECK_LIB(pisock, pi_accept, [ PISOCK_LIBS=-lpisock ],
- [ AC_MSG_ERROR("Unable to find libpisock. Try ftp://ryeham.ee.ryerson.ca/pub/PalmOS/.") ])
+ [ AC_MSG_ERROR([Unable to find libpisock. Try http://www.pilot-link.org.]) ])
fi
AC_ARG_ENABLE(pilotlinktest,
@@ -75,7 +75,7 @@ AC_DEFUN([PILOT_LINK_HOOK],[
PILOT_LINK_VERSION="$pi_version.$pi_major.$pi_minor$pi_patch"
if test x$testplversion = xyes; then
- AC_MSG_CHECKING(for pilot-link version >= $1)
+ AC_MSG_CHECKING([for pilot-link version >= $1])
pl_ve=`echo $1|sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
pl_ma=`echo $1|sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
pl_mi=`echo $1|sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
@@ -99,9 +99,9 @@ AC_DEFUN([PILOT_LINK_HOOK],[
return 1;
}
],
- [AC_MSG_RESULT(yes (found $PILOT_LINK_VERSION))],
- [AC_MSG_ERROR("pilot-link >= $1 required")],
- [AC_MSG_WARN("No action taken for crosscompile")]
+ [AC_MSG_RESULT([yes (found $PILOT_LINK_VERSION)])],
+ [AC_MSG_ERROR([pilot-link >= $1 required])],
+ [AC_MSG_WARN([No action taken for crosscompile])]
)
CFLAGS="$CFLAGS_save"
fi