minor changes
[libogc.git] / libmad / version.c
blob40f9002e6d8ae1d74526b25b9c01652b685c115c
1 /*
2 * libmad - MPEG audio decoder library
3 * Copyright (C) 2000-2003 Underbit Technologies, Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 # ifdef HAVE_CONFIG_H
22 # include "config.h"
23 # endif
25 # include "global.h"
27 # include "version.h"
29 s8 const mad_version[] = "MPEG Audio Decoder " MAD_VERSION;
30 s8 const mad_copyright[] = "Copyright (C) " MAD_PUBLISHYEAR " " MAD_AUTHOR;
31 s8 const mad_author[] = MAD_AUTHOR " <" MAD_EMAIL ">";
33 s8 const mad_build[] = ""
34 # if defined(DEBUG)
35 "DEBUG "
36 # elif defined(NDEBUG)
37 "NDEBUG "
38 # endif
40 # if defined(EXPERIMENTAL)
41 "EXPERIMENTAL "
42 # endif
44 # if defined(FPM_64BIT)
45 "FPM_64BIT "
46 # elif defined(FPM_INTEL)
47 "FPM_INTEL "
48 # elif defined(FPM_ARM)
49 "FPM_ARM "
50 # elif defined(FPM_MIPS)
51 "FPM_MIPS "
52 # elif defined(FPM_SPARC)
53 "FPM_SPARC "
54 # elif defined(FPM_PPC)
55 "FPM_PPC "
56 # elif defined(FPM_DEFAULT)
57 "FPM_DEFAULT "
58 # endif
60 # if defined(ASO_IMDCT)
61 "ASO_IMDCT "
62 # endif
63 # if defined(ASO_INTERLEAVE1)
64 "ASO_INTERLEAVE1 "
65 # endif
66 # if defined(ASO_INTERLEAVE2)
67 "ASO_INTERLEAVE2 "
68 # endif
69 # if defined(ASO_ZEROCHECK)
70 "ASO_ZEROCHECK "
71 # endif
73 # if defined(OPT_SPEED)
74 "OPT_SPEED "
75 # elif defined(OPT_ACCURACY)
76 "OPT_ACCURACY "
77 # endif
79 # if defined(OPT_SSO)
80 "OPT_SSO "
81 # endif
83 # if defined(OPT_DCTO) /* never defined here */
84 "OPT_DCTO "
85 # endif
87 # if defined(OPT_STRICT)
88 "OPT_STRICT "
89 # endif