diff options
author | Peter Teichman <teichman@src.gnome.org> | 2000-01-24 08:38:25 +0800 |
---|---|---|
committer | Peter Teichman <teichman@src.gnome.org> | 2000-01-24 08:38:25 +0800 |
commit | acbc330e55ee077330aeb4889eba42c5d33cdc93 (patch) | |
tree | 342728a492d2d67dec7e7057e55fbee1119bdd56 /macros/gnome-pilot.m4 | |
parent | 708de9037e2eea0c4cc7696a196f11e91386c1dc (diff) | |
download | gsoc2013-evolution-acbc330e55ee077330aeb4889eba42c5d33cdc93.tar gsoc2013-evolution-acbc330e55ee077330aeb4889eba42c5d33cdc93.tar.gz gsoc2013-evolution-acbc330e55ee077330aeb4889eba42c5d33cdc93.tar.bz2 gsoc2013-evolution-acbc330e55ee077330aeb4889eba42c5d33cdc93.tar.lz gsoc2013-evolution-acbc330e55ee077330aeb4889eba42c5d33cdc93.tar.xz gsoc2013-evolution-acbc330e55ee077330aeb4889eba42c5d33cdc93.tar.zst gsoc2013-evolution-acbc330e55ee077330aeb4889eba42c5d33cdc93.zip |
i broke the version-checking macro for other distribs in my last commit.
* gnome-pilot.m4: i broke the version-checking macro for other
distribs in my last commit. fixing that now.
svn path=/trunk/; revision=1612
Diffstat (limited to 'macros/gnome-pilot.m4')
-rw-r--r-- | macros/gnome-pilot.m4 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/macros/gnome-pilot.m4 b/macros/gnome-pilot.m4 index 862b4ef153..16e081a366 100644 --- a/macros/gnome-pilot.m4 +++ b/macros/gnome-pilot.m4 @@ -33,7 +33,6 @@ AC_DEFUN([PILOT_LINK_HOOK],[ else AC_MSG_ERROR("Unable to find libpisock. Try ftp://ryeham.ee.ryerson.ca/pub/PalmOS/.") fi - piversion_include="pi-version.h" AC_SUBST(PISOCK_INCLUDEDIR) AC_SUBST(PISOCK_LIBDIR) fi @@ -59,6 +58,10 @@ AC_DEFUN([PILOT_LINK_HOOK],[ [ testplversion=yes ] ) + if test x$piversion_include = x; then + piversion_include="pi-version.h" + fi + 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/'` |