1 /* config.h
2  *
3  *  id3tool:  An editor for ID3 tags.
4  *  Copyright (C) 1999-2000  Christopher Collins
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20 
21 #ifndef _CONFIG_H
22 #define _CONFIG_H
23 @TOP@
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 @BOTTOM@
39 /*=======================================================================*/
40 /*                    DO NOT EDIT BELOW THIS POINT!!!!                   */
41 /*=======================================================================*/
42 
43 #ifndef HAVE_STRDUP
44 extern char *	my_strdup (char *strin);
45 #define strdup(x) my_strdup(x)
46 #endif
47 
48 #ifndef HAVE_STRCASECMP
49 #ifdef HAVE_STRICMP
50 #define strcasecmp(x,y) stricmp(x,y)
51 #else
52 #define strcasecmp(x,y) strcmp(x,y)
53 #endif /* HAVE_STRICMP */
54 #endif /* HAVE_STRCASECMP */
55 
56 #ifndef HAVE_GETOPT_LONG
57 #include "bsd_getopt.h"
58 #endif
59 
60 #endif
61