root/branches/ppalmers-streaming/config.h.in

Revision 609, 0.8 kB (checked in by arnonym, 17 years ago)

Simplify some things.

CACHEDIR is now hardcoded in config.h to be ~/.ffado. Now the sources need code to create the dir if it doesn't exist.

The install target is now depending on bindir, libdir, sharedir and includedir. That way a lot of env.Alias(...) can go away.

Line 
1 /* config.h.in. */
2 #ifndef CONFIG_H
3 #define CONFIG_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"
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
22
23 /* Define to 1 if SSE assembly is available. */
24 /*#define USE_SSE 1*/
25
26 /* Version number of package */
27 #define VERSION "$VERSION"
28
29 #define CACHEDIR "~/.ffado"
30
31 #define LIBDIR "$libdir"
32
33 #define SHAREDIR "$sharedir"
34
35 #endif // CONFIG_H
Note: See TracBrowser for help on using the browser.