summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEskil Heyn Olsen <eskil@src.gnome.org>2000-01-15 17:21:10 +0000
committerEskil Heyn Olsen <eskil@src.gnome.org>2000-01-15 17:21:10 +0000
commit39cfdd72f3d2f936476ea8d0d40ee0f13d45601a (patch)
treeadf6092d8e4664c9dbc0ae2189e002746f32baa9
parentd2953e251bd1d386a146b636e3bb3c1f550f417c (diff)
downloadgnome-common-39cfdd72f3d2f936476ea8d0d40ee0f13d45601a.tar.gz
PILOT_LINK_HOOK now check pilot-link version. GNOME_PILOT_CHECK defaults
* gnome-pilot.m4: PILOT_LINK_HOOK now check pilot-link version. GNOME_PILOT_CHECK defaults to requiring 0.9.3. svn path=/trunk/; revision=1062
-rw-r--r--macros/ChangeLog5
-rw-r--r--macros/gnome-pilot.m448
2 files changed, 48 insertions, 5 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index a36bdd0..6a830d3 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,8 @@
+2000-01-15 Eskil Heyn Olsen <deity@eskil.dk>
+
+ * gnome-pilot.m4: PILOT_LINK_HOOK now check pilot-link version.
+ GNOME_PILOT_CHECK defaults to requiring 0.9.3.
+
2000-01-09 Martin Baulig <martin@home-of-linux.org>
* gnome-libgtop-check.m4: Applied patch from R. Bernstein
diff --git a/macros/gnome-pilot.m4 b/macros/gnome-pilot.m4
index da5ccb6..e49b209 100644
--- a/macros/gnome-pilot.m4
+++ b/macros/gnome-pilot.m4
@@ -50,11 +50,45 @@ AC_DEFUN([PILOT_LINK_HOOK],[
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
+
+ AC_ARG_ENABLE(pilotlinktest,
+ [ --enable-pilotlinktest Test for correct version of pilot-link],
+ [testplversion=$enableval],
+ [ testplversion=yes ]
+ )
+ if test x$testplversion = xyes; then
+ 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/'`
+ AC_TRY_RUN(
+ [
+ #include <pi-version.h>
+ int main(int argc,char *argv[]) {
+ if (PILOT_LINK_VERSION == $pl_ve) {
+ if (PILOT_LINK_MAJOR == $pl_ma) {
+ if (PILOT_LINK_MINOR >= $pl_mi) {
+ exit(0);
+ }
+ } else if (PILOT_LINK_MAJOR > $pl_ma) {
+ exit(0);
+ }
+ } else if (PILOT_LINK_VERSION > $pl_ve) {
+ exit(0);
+ }
+ exit(1);
+ }
+ ],
+ [AC_MSG_RESULT(yes)],
+ [AC_MSG_ERROR("pilot-link >= $1 required")],
+ [AC_MSG_WARN("No action taken for crosscompile")]
+ )
+ fi
])
AC_DEFUN([PILOT_LINK_CHECK],[
- PILOT_LINK_HOOK([],nofailure)
+ PILOT_LINK_HOOK($1,[],nofailure)
])
AC_DEFUN([GNOME_PILOT_HOOK],[
@@ -68,18 +102,22 @@ AC_DEFUN([GNOME_PILOT_HOOK],[
])
AM_CONDITIONAL(HAVE_GNOME_PILOT,test x$gnome_cv_pilot_found = xyes)
if test x$gnome_cv_pilot_found = xyes; then
- PILOT_LINK_CHECK
+ PILOT_LINK_CHECK(($1)
GNOME_PILOT_CFLAGS=`gnome-pilot-config --cflags client conduitmgmt`
GNOME_PILOT_LIBS=`gnome-pilot-config --libs client conduitmgmt`
- $1
+ $2
else
- if test x$2 = xfailure; then
+ if test x$3 = xfailure; then
AC_MSG_ERROR(Gnome-pilot not installed or installation problem)
fi
fi
])
AC_DEFUN([GNOME_PILOT_CHECK],[
- GNOME_PILOT_HOOK([],nofailure)
+ if test x$1 = x; then
+ GNOME_PILOT_HOOK(0.9.3,[],nofailure)
+ else
+ GNOME_PILOT_HOOK($1,[],nofailure)
+ fi
])