mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
bump the version number from 1.0.4_beta to 1.0.4
This commit is contained in:
2
README
2
README
@@ -39,7 +39,7 @@ License (GFDL).
|
|||||||
|
|
||||||
|
|
||||||
===============================================================================
|
===============================================================================
|
||||||
FLAC - 1.0.4_beta - Contents
|
FLAC - 1.0.4 - Contents
|
||||||
===============================================================================
|
===============================================================================
|
||||||
|
|
||||||
- Introduction
|
- Introduction
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
# GNU makefile fragment for emulating stuff normally done by configure
|
# GNU makefile fragment for emulating stuff normally done by configure
|
||||||
#
|
#
|
||||||
|
|
||||||
VERSION=\"1.0.4_beta\"
|
VERSION=\"1.0.4\"
|
||||||
|
|
||||||
ORDINALS_H = ../../include/FLAC/ordinals.h
|
ORDINALS_H = ../../include/FLAC/ordinals.h
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
# instead of FLAC__ since autoconf triggers off 'AC_' in strings
|
# instead of FLAC__ since autoconf triggers off 'AC_' in strings
|
||||||
|
|
||||||
AC_INIT(src/flac/main.c)
|
AC_INIT(src/flac/main.c)
|
||||||
AM_INIT_AUTOMAKE(flac, 1.0.4_beta)
|
AM_INIT_AUTOMAKE(flac, 1.0.4)
|
||||||
|
|
||||||
# Function to configure paths for id3lib; search for 'meat' to get to the end.
|
# Function to configure paths for id3lib; search for 'meat' to get to the end.
|
||||||
# adapted from ogg.m4
|
# adapted from ogg.m4
|
||||||
|
|||||||
@@ -844,7 +844,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
HEADER_SEARCH_PATHS = include;
|
HEADER_SEARCH_PATHS = include;
|
||||||
OPTIMIZATION_CFLAGS = "-O3";
|
OPTIMIZATION_CFLAGS = "-O3";
|
||||||
OTHER_CFLAGS = "-DFLAC__VERSION_STRING=\\\\\\\"1.0.4_beta\\\\\\\"";
|
OTHER_CFLAGS = "-DVERSION=\\\\\\\"1.0.4\\\\\\\"";
|
||||||
OTHER_LDFLAGS = "";
|
OTHER_LDFLAGS = "";
|
||||||
OTHER_REZFLAGS = "";
|
OTHER_REZFLAGS = "";
|
||||||
PRODUCT_NAME = flac;
|
PRODUCT_NAME = flac;
|
||||||
@@ -1721,7 +1721,7 @@
|
|||||||
buildSettings = {
|
buildSettings = {
|
||||||
HEADER_SEARCH_PATHS = include;
|
HEADER_SEARCH_PATHS = include;
|
||||||
OPTIMIZATION_CFLAGS = "-O3";
|
OPTIMIZATION_CFLAGS = "-O3";
|
||||||
OTHER_CFLAGS = "-DFLAC__VERSION_STRING=\\\\\\\"1.0.4_beta\\\\\\\"";
|
OTHER_CFLAGS = "-DVERSION=\\\\\\\"1.0.4\\\\\\\"";
|
||||||
OTHER_LDFLAGS = "";
|
OTHER_LDFLAGS = "";
|
||||||
OTHER_REZFLAGS = "";
|
OTHER_REZFLAGS = "";
|
||||||
PRODUCT_NAME = metaflac;
|
PRODUCT_NAME = metaflac;
|
||||||
|
|||||||
@@ -21,10 +21,10 @@
|
|||||||
|
|
||||||
!IFDEF DEBUG
|
!IFDEF DEBUG
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -DFLAC__HAS_OGG -YX /Od /D "_DEBUG" $<
|
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DFLAC__HAS_OGG -YX /Od /D "_DEBUG" $<
|
||||||
!else
|
!else
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -DFLAC__HAS_OGG -YX -DNODEBUG $<
|
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DFLAC__HAS_OGG -YX -DNODEBUG $<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
C_FILES= \
|
C_FILES= \
|
||||||
|
|||||||
@@ -22,10 +22,10 @@ NASM=nasmw
|
|||||||
|
|
||||||
!IFDEF DEBUG
|
!IFDEF DEBUG
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) /D "_LIB" /D FLAC__CPU_IA32 /D FLAC__HAS_NASM /D NO_VFORK /D FLAC__OVERFLOW_DETECT /GX $(cdebug) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $<
|
$(cc) /D "_LIB" -DVERSION=\"1.0.4\" -DFLAC__CPU_IA32 -DFLAC__HAS_NASM -DFLAC__OVERFLOW_DETECT /GX $(cdebug) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $<
|
||||||
!else
|
!else
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) /D "_LIB" /D FLAC__CPU_IA32 /D FLAC__HAS_NASM /D NO_VFORK /O2 $(crelease) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX -DNODEBUG $<
|
$(cc) /D "_LIB" -DVERSION=\"1.0.4\" -DFLAC__CPU_IA32 -DFLAC__HAS_NASM /O2 $(crelease) $(cflags) /I ".\include" /I "..\..\include" -DSTRICT -YX -DNODEBUG $<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
C_FILES= \
|
C_FILES= \
|
||||||
|
|||||||
@@ -19,10 +19,10 @@
|
|||||||
|
|
||||||
!IFDEF DEBUG
|
!IFDEF DEBUG
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX /Od /D "_DEBUG" $<
|
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -YX /Od /D "_DEBUG" $<
|
||||||
!else
|
!else
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX -DNODEBUG $<
|
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -YX -DNODEBUG $<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
C_FILES= \
|
C_FILES= \
|
||||||
|
|||||||
@@ -19,10 +19,10 @@
|
|||||||
|
|
||||||
!IFDEF DEBUG
|
!IFDEF DEBUG
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) /GX $(cdebug) $(cflags) $(cvarsdll) /I "..\..\include" /I ".\include" /I ".." -DSTRICT -DVERSION=\"1.0.4_beta\" -YX /Od /D "_DEBUG" $<
|
$(cc) /GX $(cdebug) $(cflags) $(cvarsdll) /I "..\..\include" /I ".\include" /I ".." -DSTRICT -DVERSION=\"1.0.4\" -YX /Od /D "_DEBUG" $<
|
||||||
!else
|
!else
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) /O2 $(crelease) $(cflags) $(cvarsdll) /I "..\..\include" /I ".\include" /I ".." -DSTRICT -DVERSION=\"1.0.4_beta\" -YX -DNODEBUG $<
|
$(cc) /O2 $(crelease) $(cflags) $(cvarsdll) /I "..\..\include" /I ".\include" /I ".." -DSTRICT -DVERSION=\"1.0.4\" -YX -DNODEBUG $<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
C_FILES= \
|
C_FILES= \
|
||||||
|
|||||||
@@ -21,10 +21,10 @@ SUFFIXES = .cc
|
|||||||
|
|
||||||
!IFDEF DEBUG
|
!IFDEF DEBUG
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX /Od /D "_DEBUG" $<
|
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4\" -YX /Od /D "_DEBUG" $<
|
||||||
!else
|
!else
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX -DNODEBUG $<
|
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4\" -YX -DNODEBUG $<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!IFDEF DEBUG
|
!IFDEF DEBUG
|
||||||
|
|||||||
@@ -19,10 +19,10 @@
|
|||||||
|
|
||||||
!IFDEF DEBUG
|
!IFDEF DEBUG
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) $(cdebug) $(cflags) /I "..\libFLAC\include" /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX /Od /D "_DEBUG" $<
|
$(cc) $(cdebug) $(cflags) /I "..\libFLAC\include" /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4\" -YX /Od /D "_DEBUG" $<
|
||||||
!else
|
!else
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) /O2 $(crelease) $(cflags) /I "..\libFLAC\include" /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX -DNODEBUG $<
|
$(cc) /O2 $(crelease) $(cflags) /I "..\libFLAC\include" /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4\" -YX -DNODEBUG $<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
C_FILES= \
|
C_FILES= \
|
||||||
|
|||||||
@@ -21,10 +21,10 @@ SUFFIXES = .cc
|
|||||||
|
|
||||||
!IFDEF DEBUG
|
!IFDEF DEBUG
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX /Od /D "_DEBUG" $<
|
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4\" -YX /Od /D "_DEBUG" $<
|
||||||
!else
|
!else
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX -DNODEBUG $<
|
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4\" -YX -DNODEBUG $<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
!IFDEF DEBUG
|
!IFDEF DEBUG
|
||||||
|
|||||||
@@ -19,10 +19,10 @@
|
|||||||
|
|
||||||
!IFDEF DEBUG
|
!IFDEF DEBUG
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX /Od /D "_DEBUG" $<
|
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4\" -YX /Od /D "_DEBUG" $<
|
||||||
!else
|
!else
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX -DNODEBUG $<
|
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4\" -YX -DNODEBUG $<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
C_FILES= \
|
C_FILES= \
|
||||||
|
|||||||
@@ -19,10 +19,10 @@
|
|||||||
|
|
||||||
!IFDEF DEBUG
|
!IFDEF DEBUG
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX /Od /D "_DEBUG" $<
|
$(cc) $(cdebug) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4\" -YX /Od /D "_DEBUG" $<
|
||||||
!else
|
!else
|
||||||
.c.obj:
|
.c.obj:
|
||||||
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4_beta\" -YX -DNODEBUG $<
|
$(cc) /O2 $(crelease) $(cflags) /I "..\..\include" /I ".\include" -DSTRICT -DVERSION=\"1.0.4\" -YX -DNODEBUG $<
|
||||||
!endif
|
!endif
|
||||||
|
|
||||||
C_FILES= \
|
C_FILES= \
|
||||||
|
|||||||
Reference in New Issue
Block a user