[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

gEDA-cvs: branch: master updated (1.3.0-20071229-5-gb9ffb46)



The branch, master has been updated
       via  b9ffb4675fbca6e92a4f713c28486e74dcbbeef4 (commit)
      from  2f7e3ae60480743a8268d392272d05bd77dd75c8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


=========
 Summary
=========

 gattrib/configure.ac   |    5 +++--
 gnetlist/configure.ac  |    5 +++--
 gsymcheck/configure.ac |    5 +++--
 libgeda/configure.ac   |    5 +++--
 utils/configure.ac     |    5 +++--
 5 files changed, 15 insertions(+), 10 deletions(-)


=================
 Commit Messages
=================

commit b9ffb4675fbca6e92a4f713c28486e74dcbbeef4
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Date:   Tue Jan 1 15:42:13 2008 +0000

    Fix configure checks for Guile.
    
    Quote variables to protect them and alter version test logic so that
    it doesn't think version 2.1 is older than 1.8.

:100644 100644 0b28819... dfd9636... M	gattrib/configure.ac
:100644 100644 7a2184a... c1d9535... M	gnetlist/configure.ac
:100644 100644 c1588f1... 3575c95... M	gsymcheck/configure.ac
:100644 100644 38ef275... 268bb35... M	libgeda/configure.ac
:100644 100644 1b320fa... 3383eaf... M	utils/configure.ac

=========
 Changes
=========

commit b9ffb4675fbca6e92a4f713c28486e74dcbbeef4
Author: Peter TB Brett <peter@xxxxxxxxxxxxx>
Date:   Tue Jan 1 15:42:13 2008 +0000

    Fix configure checks for Guile.
    
    Quote variables to protect them and alter version test logic so that
    it doesn't think version 2.1 is older than 1.8.

diff --git a/gattrib/configure.ac b/gattrib/configure.ac
index 0b28819..dfd9636 100644
--- a/gattrib/configure.ac
+++ b/gattrib/configure.ac
@@ -111,8 +111,9 @@ guile_major=`echo "$GUILE_VERSION" | sed 's/\([[^.]][[^.]]*\).*/\1/'`
 guile_minor=`echo "$GUILE_VERSION" | sed 's/[[^.]][[^.]]*.\([[^.]][[^.]]*\).*/\1/'`
 AC_MSG_RESULT($GUILE_VERSION)
 
-if test $guile_need_major -gt $guile_major \
-   || test $guile_need_minor -gt $guile_minor; then
+if test "$guile_need_major" -gt "$guile_major" \
+   || (test "$guile_need_major" -le "$guile_major" \
+       && test "$guile_need_minor" -gt "$guile_minor"); then
   AC_MSG_ERROR([Guile version >= $guile_need_version is required.])
 fi
 
diff --git a/gnetlist/configure.ac b/gnetlist/configure.ac
index 7a2184a..c1d9535 100644
--- a/gnetlist/configure.ac
+++ b/gnetlist/configure.ac
@@ -153,8 +153,9 @@ guile_major=`echo "$GUILE_VERSION" | sed 's/\([[^.]][[^.]]*\).*/\1/'`
 guile_minor=`echo "$GUILE_VERSION" | sed 's/[[^.]][[^.]]*.\([[^.]][[^.]]*\).*/\1/'`
 AC_MSG_RESULT($GUILE_VERSION)
 
-if test $guile_need_major -gt $guile_major \
-   || test $guile_need_minor -gt $guile_minor; then
+if test "$guile_need_major" -gt "$guile_major" \
+   || (test "$guile_need_major" -le "$guile_major" \
+       && test "$guile_need_minor" -gt "$guile_minor"); then
   AC_MSG_ERROR([Guile version >= $guile_need_version is required.])
 fi
 
diff --git a/gsymcheck/configure.ac b/gsymcheck/configure.ac
index c1588f1..3575c95 100644
--- a/gsymcheck/configure.ac
+++ b/gsymcheck/configure.ac
@@ -65,8 +65,9 @@ guile_major=`echo "$GUILE_VERSION" | sed 's/\([[^.]][[^.]]*\).*/\1/'`
 guile_minor=`echo "$GUILE_VERSION" | sed 's/[[^.]][[^.]]*.\([[^.]][[^.]]*\).*/\1/'`
 AC_MSG_RESULT($GUILE_VERSION)
 
-if test $guile_need_major -gt $guile_major \
-   || test $guile_need_minor -gt $guile_minor; then
+if test "$guile_need_major" -gt "$guile_major" \
+   || (test "$guile_need_major" -le "$guile_major" \
+       && test "$guile_need_minor" -gt "$guile_minor"); then
   AC_MSG_ERROR([Guile version >= $guile_need_version is required.])
 fi
 
diff --git a/libgeda/configure.ac b/libgeda/configure.ac
index 38ef275..268bb35 100644
--- a/libgeda/configure.ac
+++ b/libgeda/configure.ac
@@ -106,8 +106,9 @@ guile_major=`echo "$GUILE_VERSION" | sed 's/\([[^.]][[^.]]*\).*/\1/'`
 guile_minor=`echo "$GUILE_VERSION" | sed 's/[[^.]][[^.]]*.\([[^.]][[^.]]*\).*/\1/'`
 AC_MSG_RESULT($GUILE_VERSION)
 
-if test $guile_need_major -gt $guile_major \
-   || test $guile_need_minor -gt $guile_minor; then
+if test "$guile_need_major" -gt "$guile_major" \
+   || (test "$guile_need_major" -le "$guile_major" \
+       && test "$guile_need_minor" -gt "$guile_minor"); then
   AC_MSG_ERROR([Guile version >= $guile_need_version is required.])
 fi
 
diff --git a/utils/configure.ac b/utils/configure.ac
index 1b320fa..3383eaf 100644
--- a/utils/configure.ac
+++ b/utils/configure.ac
@@ -102,8 +102,9 @@ guile_major=`echo "$GUILE_VERSION" | sed 's/\([[^.]][[^.]]*\).*/\1/'`
 guile_minor=`echo "$GUILE_VERSION" | sed 's/[[^.]][[^.]]*.\([[^.]][[^.]]*\).*/\1/'`
 AC_MSG_RESULT($GUILE_VERSION)
 
-if test $guile_need_major -gt $guile_major \
-   || test $guile_need_minor -gt $guile_minor; then
+if test "$guile_need_major" -gt "$guile_major" \
+   || (test "$guile_need_major" -le "$guile_major" \
+       && test "$guile_need_minor" -gt "$guile_minor"); then
   AC_MSG_ERROR([Guile version >= $guile_need_version is required.])
 fi
 




_______________________________________________
geda-cvs mailing list
geda-cvs@xxxxxxxxxxxxxx
http://www.seul.org/cgi-bin/mailman/listinfo/geda-cvs