File gnome-pilot-pisock64bit.patch of Package gnome-pilot
--- acinclude.m4
+++ acinclude.m4 2003/06/04 23:41:12
@@ -10,12 +10,19 @@
else
PISOCK_CFLAGS="-I$withval/include"
incdir="$withval/include"
- PISOCK_LIBS="-L$withval/lib -lpisock -lpisync"
- AC_MSG_CHECKING("for existance of $withval/lib/libpisock.so")
- if test -r $withval/lib/libpisock.so; then
+ AC_MSG_CHECKING("for existance of $withval/lib64/libpisock.so")
+ PISOCK_LIBS="-L$withval/lib64 -lpisock -lpisync"
+ if test -r $withval/lib64/libpisock.so; then
AC_MSG_RESULT(yes)
else
- AC_MSG_ERROR([Unable to find libpisock. Try http://www.pilot-link.org.])
+ AC_MSG_RESULT(no)
+ AC_MSG_CHECKING("for existance of $withval/lib/libpisock.so")
+ PISOCK_LIBS="-L$withval/lib -lpisock -lpisync"
+ if test -r $withval/lib/libpisock.so; then
+ AC_MSG_RESULT(yes)
+ else
+ AC_MSG_ERROR([Unable to find libpisock. Try http://www.pilot-link.org.])
+ fi
fi
fi
])