Changeset 4802

Show
Ignore:
Timestamp:
09/18/07 21:35:28 (6 years ago)
Author:
khali
Message:

Synchronize the sensord version with the lm-sensors version. We're
using the same version number for sensord since October 2002!

Location:
lm-sensors/branches/lm-sensors-3.0.0
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/branches/lm-sensors-3.0.0/CHANGES

    r4782 r4802  
    5353               Add missing shell declarations 
    5454               Update URI 
     55  Program sensord: Syncronize the version with lm-sensors 
    5556  Program sensors: Drop all the chip-specific support 
    5657                   Fix alignment of alarm for one-limit temperatures 
  • lm-sensors/branches/lm-sensors-3.0.0/prog/sensord/args.c

    r4706 r4802  
    2929#include "sensord.h" 
    3030#include "lib/error.h" 
     31#include "version.h" 
    3132 
    3233#define MAX_CHIP_NAMES 32 
     
    232233        break; 
    233234      case 'v': 
    234         printf ("sensord version %s\n", version); 
     235        printf ("sensord version %s\n", LM_VERSION); 
    235236        exit (EXIT_SUCCESS); 
    236237        break; 
  • lm-sensors/branches/lm-sensors-3.0.0/prog/sensord/sensord.h

    r4709 r4802  
    2020 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
    2121 */ 
    22  
    23 #define version "0.6.3" 
    2422 
    2523#include "lib/sensors.h"