root/trunk/libffado/version.h.in

Revision 2755, 0.8 kB (checked in by jwoithe, 6 years ago)

version.h: remove possible trailing dash from version number defines.

Even after the changes in r2754, an unversioned source tree or a lack of
svnversion on the build system will cause version.h to include entries like

#define PACKAGE_VERSION "2.4.999-"

This patch from Orcan Ogetbil gets rid of the trailing dash. The use of
REVISIONSTRING rather than REVISION mirrors how ffado-diag obtains its
revision number.

Line 
1 /* version.h.in. */
2 #ifndef VERSION_H
3 #define VERSION_H
4
5 /* Name of package */
6 #define PACKAGE $PACKAGE
7
8 /* Define to the address where bug reports for this package should be sent. */
9 #define PACKAGE_BUGREPORT "<ffado-devel@lists.sf.net>"
10
11 /* Define to the full name of this package. */
12 #define PACKAGE_NAME "$PACKAGE"
13
14 /* Define to the full name and version of this package. */
15 #define PACKAGE_STRING "$PACKAGE $VERSION$REVISIONSTRING"
16
17 /* Define to the one symbol short name of this package. */
18 #define PACKAGE_TARNAME "$PACKAGE"
19
20 /* Define to the version of this package. */
21 #define PACKAGE_VERSION "$VERSION$REVISIONSTRING"
22
23 /* Define to the version of the cace. */
24 #define CACHE_VERSION "$VERSION$REVISIONSTRING"
25
26 /* Define to the api version */
27 #define FFADO_API_VERSION $FFADO_API_VERSION
28
29 #endif /* VERSION_H */
Note: See TracBrowser for help on using the browser.