summaryrefslogtreecommitdiff
path: root/src/config.h
blob: 2de1cfce739d93459959022a15c988da79f9f5b2 (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
27
28
#ifndef SRC_CONFIG_H_S6A1C09K
#define SRC_CONFIG_H_S6A1C09K

/* package name */
#define PACKAGE "pianobar"

#define VERSION "2014.09.28-dev"

#define TITLE   "Pianobar"

/* 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 */