blob: 2d335a9e64fc105ae87cf126a7070efafbabdc7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#ifndef SRC_CONFIG_H_S6A1C09K
#define SRC_CONFIG_H_S6A1C09K
/* package name */
#define PACKAGE "pianobar"
#define VERSION "2014.09.28-dev"
/* Visual C++ name restrict differently */
#ifdef _WIN32
#define restrict __restrict
#endif
/* Visual C++ does not have inline keyword in C */
#ifdef _WIN32
#define inline __inline
#endif
/* Visual C++ does not have strcasecmp */
#ifdef _WIN32
#define strcasecmp _stricmp
#endif
#define CURL_STATICLIB
#endif /* SRC_CONFIG_H_S6A1C09K */
|