diff options
Diffstat (limited to 'src/libmad/version.c')
-rw-r--r-- | src/libmad/version.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/libmad/version.c b/src/libmad/version.c index ca9e71518..8fc70f408 100644 --- a/src/libmad/version.c +++ b/src/libmad/version.c @@ -1,6 +1,6 @@ /* * libmad - MPEG audio decoder library - * Copyright (C) 2000-2001 Robert Leslie + * Copyright (C) 2000-2004 Underbit Technologies, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - * $Id: version.c,v 1.1 2002/04/30 18:46:58 miguelfreitas Exp $ + * $Id: version.c,v 1.2 2004/04/22 00:23:27 miguelfreitas Exp $ */ # ifdef HAVE_CONFIG_H @@ -32,6 +32,16 @@ char const mad_copyright[] = "Copyright (C) " MAD_PUBLISHYEAR " " MAD_AUTHOR; char const mad_author[] = MAD_AUTHOR " <" MAD_EMAIL ">"; char const mad_build[] = "" +# if defined(DEBUG) + "DEBUG " +# elif defined(NDEBUG) + "NDEBUG " +# endif + +# if defined(EXPERIMENTAL) + "EXPERIMENTAL " +# endif + # if defined(FPM_64BIT) "FPM_64BIT " # elif defined(FPM_INTEL) @@ -78,14 +88,4 @@ char const mad_build[] = "" # if defined(OPT_STRICT) "OPT_STRICT " # endif - -# if defined(EXPERIMENTAL) - "EXPERIMENTAL " -# endif - -# if defined(DEBUG) - "DEBUG " -# elif defined(NDEBUG) - "NDEBUG " -# endif ; |