1#ifndef _CONFIG_H
2#define _CONFIG_H
3
4/* Define if you have the ANSI C header files.  */
5#define STDC_HEADERS
6
7/* Version Symbols */
8#define PACKAGE "id3tool"
9#define VERSION "1.2a"
10
11/* Define if you have the strcasecmp function.  */
12#undef HAVE_STRCASECMP
13
14/* Define if you have the getopt_long function.  */
15#undef HAVE_GETOPT_LONG
16
17/* Define if you have the strdup function.  */
18#define HAVE_STRDUP
19
20/* Define if you have the stricmp function.  */
21#define HAVE_STRICMP
22
23/* Define if you have the <unistd.h> header file.  */
24#undef HAVE_UNISTD_H
25/*=======================================================================*/
26/*                    DO NOT EDIT BELOW THIS POINT!!!!                   */
27/*=======================================================================*/
28
29#ifndef HAVE_STRDUP
30extern char *	my_strdup (char *strin);
31#define strdup(x) my_strdup(x)
32#endif
33
34#ifndef HAVE_STRCASECMP
35#ifdef HAVE_STRICMP
36#define strcasecmp(x,y) stricmp(x,y)
37#else
38#define strcasecmp(x,y) strcmp(x,y)
39#endif /* HAVE_STRICMP */
40#endif /* HAVE_STRCASECMP */
41
42#ifndef HAVE_GETOPT_LONG
43#include "bsd_getopt.h"
44#endif
45
46#endif
47