version.c

00001 /*
00002  * libmad - MPEG audio decoder library
00003  * Copyright (C) 2000-2003 Underbit Technologies, Inc.
00004  *
00005  * This program is free software; you can redistribute it and/or modify
00006  * it under the terms of the GNU General Public License as published by
00007  * the Free Software Foundation; either version 2 of the License, or
00008  * (at your option) any later version.
00009  *
00010  * This program is distributed in the hope that it will be useful,
00011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013  * GNU General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU General Public License
00016  * along with this program; if not, write to the Free Software
00017  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00018  *
00019  * $Id: version.c,v 1.1 2003/08/31 19:00:17 gabest Exp $
00020  */
00021 
00022 # ifdef HAVE_CONFIG_H
00023 #  include "config.h"
00024 # endif
00025 
00026 # include "global.h"
00027 
00028 # include "version.h"
00029 
00030 char const mad_version[]   = "MPEG Audio Decoder " MAD_VERSION;
00031 char const mad_copyright[] = "Copyright (C) " MAD_PUBLISHYEAR " " MAD_AUTHOR;
00032 char const mad_author[]    = MAD_AUTHOR " <" MAD_EMAIL ">";
00033 
00034 char const mad_build[] = ""
00035 # if defined(DEBUG)
00036   "DEBUG "
00037 # elif defined(NDEBUG)
00038   "NDEBUG "
00039 # endif
00040 
00041 # if defined(EXPERIMENTAL)
00042   "EXPERIMENTAL "
00043 # endif
00044 
00045 # if defined(FPM_64BIT)
00046   "FPM_64BIT "
00047 # elif defined(FPM_INTEL)
00048   "FPM_INTEL "
00049 # elif defined(FPM_ARM)
00050   "FPM_ARM "
00051 # elif defined(FPM_MIPS)
00052   "FPM_MIPS "
00053 # elif defined(FPM_SPARC)
00054   "FPM_SPARC "
00055 # elif defined(FPM_PPC)
00056   "FPM_PPC "
00057 # elif defined(FPM_DEFAULT)
00058   "FPM_DEFAULT "
00059 # endif
00060 
00061 # if defined(ASO_IMDCT)
00062   "ASO_IMDCT "
00063 # endif
00064 # if defined(ASO_INTERLEAVE1)
00065   "ASO_INTERLEAVE1 "
00066 # endif
00067 # if defined(ASO_INTERLEAVE2)
00068   "ASO_INTERLEAVE2 "
00069 # endif
00070 # if defined(ASO_ZEROCHECK)
00071   "ASO_ZEROCHECK "
00072 # endif
00073 
00074 # if defined(OPT_SPEED)
00075   "OPT_SPEED "
00076 # elif defined(OPT_ACCURACY)
00077   "OPT_ACCURACY "
00078 # endif
00079 
00080 # if defined(OPT_SSO)
00081   "OPT_SSO "
00082 # endif
00083 
00084 # if defined(OPT_DCTO)  /* never defined here */
00085   "OPT_DCTO "
00086 # endif
00087 
00088 # if defined(OPT_STRICT)
00089   "OPT_STRICT "
00090 # endif
00091 ;

Generated on Tue Dec 13 14:47:49 2005 for guliverkli by  doxygen 1.4.5