Changeset 1562
- Timestamp:
- 05/17/09 07:56:44 (3 years ago)
- Files:
-
- branches/libffado-2.0/config.h.in (modified) (2 diffs)
- branches/libffado-2.0/SConstruct (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/libffado-2.0/config.h.in
r1536 r1562 13 13 14 14 /* Define to the full name and version of this package. */ 15 #define PACKAGE_STRING "$PACKAGE $VERSION -$REVISION"15 #define PACKAGE_STRING "$PACKAGE $VERSION$REVISIONSTRING" 16 16 17 17 /* Define to the one symbol short name of this package. */ … … 19 19 20 20 /* Define to the version of this package. */ 21 #define PACKAGE_VERSION "$VERSION -$REVISION"21 #define PACKAGE_VERSION "$VERSION$REVISIONSTRING" 22 22 23 23 /* Define to the version of the cace. */ 24 #define CACHE_VERSION "$VERSION -$REVISION"24 #define CACHE_VERSION "$VERSION$REVISIONSTRING" 25 25 #define CACHEDIR "$CACHEDIR" 26 26 branches/libffado-2.0/SConstruct
r1561 r1562 488 488 env['REVISION'] = '' 489 489 490 env['FFADO_API_VERSION']=FFADO_API_VERSION 490 # avoid the 1.999.41- type of version for exported versions 491 if env['REVISION'] != '': 492 env['REVISIONSTRING'] = '-' + env['REVISION'] 493 else: 494 env['REVISIONSTRING'] = '' 495 496 env['FFADO_API_VERSION'] = FFADO_API_VERSION 491 497 492 498 env['PACKAGE'] = "libffado"
