1/* config.h.in.  Generated from configure.in by autoheader.  */
2/* config.h
3 *
4 *  id3tool:  An editor for ID3 tags.
5 *  Copyright (C) 1999-2000  Christopher Collins
6 *
7 *  This program is free software; you can redistribute it and/or modify
8 *  it under the terms of the GNU General Public License as published by
9 *  the Free Software Foundation; either version 2 of the License, or
10 *  (at your option) any later version.
11 *
12 *  This program is distributed in the hope that it will be useful,
13 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 *  GNU General Public License for more details.
16 *
17 *  You should have received a copy of the GNU General Public License
18 *  along with this program; if not, write to the Free Software
19 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20*/
21
22#ifndef _CONFIG_H
23#define _CONFIG_H
24
25/* Version Symbols */
26#undef PACKAGE
27#undef VERSION
28
29/* Define if you have the ANSI C header files.  */
30#undef STDC_HEADERS
31
32/* Define if you have the strdup function.  */
33#undef HAVE_STRDUP
34
35/* Define if you have the <unistd.h> header file.  */
36#undef HAVE_UNISTD_H
37
38
39/* Define to 1 if you have the `getopt_long' function. */
40#undef HAVE_GETOPT_LONG
41
42/* Define to 1 if you have the <inttypes.h> header file. */
43#undef HAVE_INTTYPES_H
44
45/* Define to 1 if you have the <memory.h> header file. */
46#undef HAVE_MEMORY_H
47
48/* Define to 1 if you have the <stdint.h> header file. */
49#undef HAVE_STDINT_H
50
51/* Define to 1 if you have the <stdlib.h> header file. */
52#undef HAVE_STDLIB_H
53
54/* Define to 1 if you have the `strcasecmp' function. */
55#undef HAVE_STRCASECMP
56
57/* Define to 1 if you have the `strdup' function. */
58#undef HAVE_STRDUP
59
60/* Define to 1 if you have the `stricmp' function. */
61#undef HAVE_STRICMP
62
63/* Define to 1 if you have the <strings.h> header file. */
64#undef HAVE_STRINGS_H
65
66/* Define to 1 if you have the <string.h> header file. */
67#undef HAVE_STRING_H
68
69/* Define to 1 if you have the <sys/stat.h> header file. */
70#undef HAVE_SYS_STAT_H
71
72/* Define to 1 if you have the <sys/types.h> header file. */
73#undef HAVE_SYS_TYPES_H
74
75/* Define to 1 if you have the <unistd.h> header file. */
76#undef HAVE_UNISTD_H
77
78/* Name of package */
79#undef PACKAGE
80
81/* Define to the address where bug reports for this package should be sent. */
82#undef PACKAGE_BUGREPORT
83
84/* Define to the full name of this package. */
85#undef PACKAGE_NAME
86
87/* Define to the full name and version of this package. */
88#undef PACKAGE_STRING
89
90/* Define to the one symbol short name of this package. */
91#undef PACKAGE_TARNAME
92
93/* Define to the version of this package. */
94#undef PACKAGE_VERSION
95
96/* Define to 1 if you have the ANSI C header files. */
97#undef STDC_HEADERS
98
99/* Version number of package */
100#undef VERSION
101/*=======================================================================*/
102/*                    DO NOT EDIT BELOW THIS POINT!!!!                   */
103/*=======================================================================*/
104
105#ifndef HAVE_STRDUP
106extern char *	my_strdup (char *strin);
107#define strdup(x) my_strdup(x)
108#endif
109
110#ifndef HAVE_STRCASECMP
111#ifdef HAVE_STRICMP
112#define strcasecmp(x,y) stricmp(x,y)
113#else
114#define strcasecmp(x,y) strcmp(x,y)
115#endif /* HAVE_STRICMP */
116#endif /* HAVE_STRCASECMP */
117
118#ifndef HAVE_GETOPT_LONG
119#include "bsd_getopt.h"
120#endif
121
122#endif
123