summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/libmad/version.c
Unidiff
Diffstat (limited to 'core/multimedia/opieplayer/libmad/version.c') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/libmad/version.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/core/multimedia/opieplayer/libmad/version.c b/core/multimedia/opieplayer/libmad/version.c
index fb126f4..4fbef23 100644
--- a/core/multimedia/opieplayer/libmad/version.c
+++ b/core/multimedia/opieplayer/libmad/version.c
@@ -1,15 +1,15 @@
1/* 1/*
2 * libmad - MPEG audio decoder library 2 * libmad - MPEG audio decoder library
3 * Copyright (C) 2000-2001 Robert Leslie 3 * Copyright (C) 2000-2004 Underbit Technologies, Inc.
4 * 4 *
5 * This program is free software; you can redistribute it and/or modify 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 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 7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version. 8 * (at your option) any later version.
9 * 9 *
10 * This program is distributed in the hope that it will be useful, 10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details. 13 * GNU General Public License for more details.
14 * 14 *
15 * You should have received a copy of the GNU General Public License 15 * You should have received a copy of the GNU General Public License
@@ -23,24 +23,34 @@
23# include "libmad_config.h" 23# include "libmad_config.h"
24# endif 24# endif
25 25
26# include "libmad_global.h" 26# include "libmad_global.h"
27 27
28# include "libmad_version.h" 28# include "libmad_version.h"
29 29
30char const mad_version[] = "MPEG Audio Decoder " MAD_VERSION; 30char const mad_version[] = "MPEG Audio Decoder " MAD_VERSION;
31char const mad_copyright[] = "Copyright (C) " MAD_PUBLISHYEAR " " MAD_AUTHOR; 31char const mad_copyright[] = "Copyright (C) " MAD_PUBLISHYEAR " " MAD_AUTHOR;
32char const mad_author[] = MAD_AUTHOR " <" MAD_EMAIL ">"; 32char const mad_author[] = MAD_AUTHOR " <" MAD_EMAIL ">";
33 33
34char const mad_build[] = "" 34char const mad_build[] = ""
35# if defined(DEBUG)
36 "DEBUG "
37# elif defined(NDEBUG)
38 "NDEBUG "
39# endif
40
41# if defined(EXPERIMENTAL)
42 "EXPERIMENTAL "
43# endif
44
35# if defined(FPM_64BIT) 45# if defined(FPM_64BIT)
36 "FPM_64BIT " 46 "FPM_64BIT "
37# elif defined(FPM_INTEL) 47# elif defined(FPM_INTEL)
38 "FPM_INTEL " 48 "FPM_INTEL "
39# elif defined(FPM_ARM) 49# elif defined(FPM_ARM)
40 "FPM_ARM " 50 "FPM_ARM "
41# elif defined(FPM_MIPS) 51# elif defined(FPM_MIPS)
42 "FPM_MIPS " 52 "FPM_MIPS "
43# elif defined(FPM_SPARC) 53# elif defined(FPM_SPARC)
44 "FPM_SPARC " 54 "FPM_SPARC "
45# elif defined(FPM_PPC) 55# elif defined(FPM_PPC)
46 "FPM_PPC " 56 "FPM_PPC "
@@ -69,23 +79,13 @@ char const mad_build[] = ""
69 79
70# if defined(OPT_SSO) 80# if defined(OPT_SSO)
71 "OPT_SSO " 81 "OPT_SSO "
72# endif 82# endif
73 83
74# if defined(OPT_DCTO) /* never defined here */ 84# if defined(OPT_DCTO) /* never defined here */
75 "OPT_DCTO " 85 "OPT_DCTO "
76# endif 86# endif
77 87
78# if defined(OPT_STRICT) 88# if defined(OPT_STRICT)
79 "OPT_STRICT " 89 "OPT_STRICT "
80# endif 90# endif
81
82# if defined(EXPERIMENTAL)
83 "EXPERIMENTAL "
84# endif
85
86# if defined(DEBUG)
87 "DEBUG "
88# elif defined(NDEBUG)
89 "NDEBUG "
90# endif
91; 91;