bump version info

This commit is contained in:
Josh Coalson 2004-03-16 18:18:04 +00:00
parent 287ba3ac64
commit 3e2a733863
5 changed files with 7 additions and 7 deletions

2
README
View File

@ -40,7 +40,7 @@ Documentation License (see COPYING.FDL).
===============================================================================
FLAC - CVS-20031217 - Contents
FLAC - CVS-20040316 - Contents
===============================================================================
- Introduction

View File

@ -35,6 +35,6 @@ all default: $(DEFAULT_BUILD)
# GNU makefile fragment for emulating stuff normally done by configure
#
VERSION=\"CVS-20031217\"
VERSION=\"CVS-20040316\"
CONFIG_CFLAGS=-DHAVE_INTTYPES_H

View File

@ -19,7 +19,7 @@
# instead of FLAC__ since autoconf triggers off 'AC_' in strings
AC_INIT(src/flac/main.c)
AM_INIT_AUTOMAKE(flac, CVS-20031217)
AM_INIT_AUTOMAKE(flac, CVS-20040316)
# Don't automagically regenerate autoconf/automake generated files unless
# explicitly requested. Eases autobuilding -mdz

View File

@ -844,7 +844,7 @@
buildSettings = {
HEADER_SEARCH_PATHS = include;
OPTIMIZATION_CFLAGS = "-O3";
OTHER_CFLAGS = "-DVERSION=\\\\\\\"CVS-20031217\\\\\\\" -DHAVE_INTTYPES_H";
OTHER_CFLAGS = "-DVERSION=\\\\\\\"CVS-20040316\\\\\\\" -DHAVE_INTTYPES_H";
OTHER_LDFLAGS = "";
OTHER_REZFLAGS = "";
PRODUCT_NAME = flac;
@ -1721,7 +1721,7 @@
buildSettings = {
HEADER_SEARCH_PATHS = include;
OPTIMIZATION_CFLAGS = "-O3";
OTHER_CFLAGS = "-DVERSION=\\\\\\\"CVS-20031217\\\\\\\" -DHAVE_INTTYPES_H";
OTHER_CFLAGS = "-DVERSION=\\\\\\\"CVS-20040316\\\\\\\" -DHAVE_INTTYPES_H";
OTHER_LDFLAGS = "";
OTHER_REZFLAGS = "";
PRODUCT_NAME = metaflac;

View File

@ -49,9 +49,9 @@ FLAC_API const char *FLAC__VERSION_STRING = VERSION;
#if defined _MSC_VER || defined __MINW32__
/* yet one more hack because of MSVC6: */
FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC CVS 20031217";
FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC CVS 20040316";
#else
FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " VERSION " 20031217";
FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " VERSION " 20040316";
#endif
FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };