-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
58 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
# instead of FLAC__ since autoconf triggers off 'AC_' in strings | ||
|
||
AC_PREREQ(2.60) | ||
AC_INIT([flac],[1.4.0],[[email protected]],[flac],[https://www.xiph.org/flac/]) | ||
AC_INIT([flac],[1.4.1],[[email protected]],[flac],[https://www.xiph.org/flac/]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
AC_CONFIG_SRCDIR([src/flac/main.c]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
1. Change version number in | ||
- /configure.ac | ||
- /CMakeLists.txt | ||
- /doc/Doxyfile.in | ||
- /man/flac.md | ||
- /man/metaflac.md | ||
- /test/metaflac-test-files/case07-expect.meta | ||
1. Change version date in | ||
- /src/libFLAC/format.c | ||
- /test/metaflac-test-files/case07-expect.meta | ||
1. Update changelog | ||
1. Check copyright year and update if applicable | ||
1. Check libFLAC and libFLAC++ for interface changes and update | ||
version numbers in include/FLAC/export.h and include/FLAC++/export.h | ||
1. Prepare and check release tarball by running | ||
`git clean -ffxd && ./autogen.sh && ./configure && make distcheck` | ||
1. Check whether release tarball contains api documentation and | ||
generated man pages | ||
1. Prepare Windows release. Instructions are for building with MinGW-w64 | ||
- Take last release as template | ||
- Update readme's if necessary | ||
- Copy changelog and tool documentation | ||
- Unpack tarball and create empty directories build64 and build32 | ||
- Unpack most recent libogg: change | ||
`add_library(ogg ${OGG_HEADERS} ${OGG_SOURCES})` to | ||
`add_library(ogg STATIC ${OGG_HEADERS} ${OGG_SOURCES})` | ||
- Add `-static-libgcc` to FLAC's CFLAGS | ||
- Add `-static-libgcc -static-libstdc++ -Wl,-Bstatic,--whole-archive | ||
-lwinpthread -Wl,-Bdynamic,--no-whole-archive` to FLAC's CXXFLAGS | ||
- Run `CMake -DBUILD_SHARED_LIBS=ON .. && ninja` in both build64 and | ||
build32 in the corresponding build environments | ||
- Check dependencies of flac.exe, metaflac.exe, libFLAC.dll and | ||
libFLAC++.dll, e.g. with objdump -x *.* | grep DLL. | ||
Dependencies should only include KERNEL32.DLL, ADVAPI32.DLL, | ||
msvcrt.dll and libFLAC.dll | ||
- Copy flac.exe, metaflac.exe, libFLAC.dll and libFLAC++.dll of both | ||
builds to proper directories | ||
- Zip directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
reference libFLAC 1.4.0 20220909 | ||
reference libFLAC 1.4.1 20220922 | ||
ARTIST=The_artist_formerly_known_as_the_artist... | ||
ARTIST=Chuck_Woolery | ||
ARTIST=Vern |