hal: Branch 'master'

Danny Kukawka dkukawka at kemper.freedesktop.org
Thu Nov 15 12:35:32 PST 2007


 configure.in |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 1852641290ec7c0f75e85ba8ef794c0e74923677
Author: Michael E Brown <Michael_E_Brown at dell.com>
Date:   Thu Nov 15 21:35:26 2007 +0100

    fix version check code for libmsbios in configure.in
    
    This patch fixes the version check for libsmbios. It currently
    fails if the major bumps (which I am planning to do shortly).

diff --git a/configure.in b/configure.in
index d2b273f..fc5a691 100644
--- a/configure.in
+++ b/configure.in
@@ -405,7 +405,8 @@ if test "$LIB_SMBIOS" = "yes" ; then
 
         if ( sscanf( LIBSMBIOS_RELEASE_VERSION , "%d.%d.%d", &major, &minor, &micro ) == 3 ) {
 	    if ((major == 0 && minor == 13 && micro >= 4) ||
-               (major >= 0 && minor > 13)) {
+               (major == 0 && minor > 13) ||
+               (major >= 0)) {
 		return 0;
 	    }
 	}


More information about the hal-commit mailing list