aboutsummaryrefslogtreecommitdiffstats
path: root/macros/gnome-pilot.m4
diff options
context:
space:
mode:
authorJP Rosevear <jpr@ximian.com>2001-03-02 09:33:29 +0800
committerJP Rosevear <jpr@src.gnome.org>2001-03-02 09:33:29 +0800
commit50ef074887b43f43dad3edb120d9abf30092c681 (patch)
tree1c697274bb760736acbcb55664d18789c4b0ad82 /macros/gnome-pilot.m4
parent9646d80f42844f280e7f4aabb9ce433ae028da1c (diff)
downloadgsoc2013-evolution-50ef074887b43f43dad3edb120d9abf30092c681.tar
gsoc2013-evolution-50ef074887b43f43dad3edb120d9abf30092c681.tar.gz
gsoc2013-evolution-50ef074887b43f43dad3edb120d9abf30092c681.tar.bz2
gsoc2013-evolution-50ef074887b43f43dad3edb120d9abf30092c681.tar.lz
gsoc2013-evolution-50ef074887b43f43dad3edb120d9abf30092c681.tar.xz
gsoc2013-evolution-50ef074887b43f43dad3edb120d9abf30092c681.tar.zst
gsoc2013-evolution-50ef074887b43f43dad3edb120d9abf30092c681.zip
quote a test and make sure incdir is always set so 'cat' works
2001-03-01 JP Rosevear <jpr@ximian.com> * gnome-pilot.m4: quote a test and make sure incdir is always set so 'cat' works svn path=/trunk/; revision=8469
Diffstat (limited to 'macros/gnome-pilot.m4')
-rw-r--r--macros/gnome-pilot.m43
1 files changed, 2 insertions, 1 deletions
diff --git a/macros/gnome-pilot.m4 b/macros/gnome-pilot.m4
index 07c310f456..17d03ba824 100644
--- a/macros/gnome-pilot.m4
+++ b/macros/gnome-pilot.m4
@@ -24,6 +24,7 @@ AC_DEFUN([PILOT_LINK_HOOK],[
ifelse([$1], [], :, [$1])
else
PISOCK_CFLAGS="-I$withval/include"
+ incdir="$withval/include"
PISOCK_LIBS="-L$withval/lib -lpisock"
AC_MSG_CHECKING("for existance of $withval/lib/libpisock.so")
if test -r $withval/lib/libpisock.so; then
@@ -52,7 +53,7 @@ AC_DEFUN([PILOT_LINK_HOOK],[
])
fi
- if test x$PISOCK_LIBS = x; then
+ 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/.") ])
fi