diff options
author | JP Rosevear <jpr@ximian.com> | 2002-05-16 00:19:25 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2002-05-16 00:19:25 +0800 |
commit | 74f4231f4eb650f0243ff39ab5a085b1df4f7697 (patch) | |
tree | 1afa3c5cff684ce6b036c0cb3121bfd2d5180d7b | |
parent | aaf8cf4876929facd9566e707adae7812c32dc5d (diff) | |
download | gsoc2013-evolution-74f4231f4eb650f0243ff39ab5a085b1df4f7697.tar gsoc2013-evolution-74f4231f4eb650f0243ff39ab5a085b1df4f7697.tar.gz gsoc2013-evolution-74f4231f4eb650f0243ff39ab5a085b1df4f7697.tar.bz2 gsoc2013-evolution-74f4231f4eb650f0243ff39ab5a085b1df4f7697.tar.lz gsoc2013-evolution-74f4231f4eb650f0243ff39ab5a085b1df4f7697.tar.xz gsoc2013-evolution-74f4231f4eb650f0243ff39ab5a085b1df4f7697.tar.zst gsoc2013-evolution-74f4231f4eb650f0243ff39ab5a085b1df4f7697.zip |
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=16802
-rw-r--r-- | macros/ChangeLog | 4 | ||||
-rw-r--r-- | macros/gnome-pilot.m4 | 16 |
2 files changed, 12 insertions, 8 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog index 02fc9dc429..c3796fe23a 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 d8ce9606ae..7f5b0f31a9 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 |