mirror of
https://gitee.com/openharmony/third_party_libsnd
synced 2024-11-23 09:59:54 +00:00
Minor updates in preparation for 1.0.10 release.
This commit is contained in:
parent
cc9a323928
commit
54f4cfd1a2
12
ChangeLog
12
ChangeLog
@ -1,3 +1,15 @@
|
||||
2004-06-14 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
|
||||
|
||||
* configure.ac
|
||||
Bump version to 1.0.10 ready for release.
|
||||
|
||||
* Makefile.am
|
||||
Remove redundant files (check_libsndfile.py libsndfile_version_convert.py)
|
||||
from distribution tarball.
|
||||
|
||||
* tests/header_test.tpl
|
||||
Fix uninitialised variable.
|
||||
|
||||
2004-05-23 Erik de Castro Lopo <erikd AT mega-nerd DOT com>
|
||||
|
||||
* src/wav.c
|
||||
|
@ -2,8 +2,8 @@
|
||||
|
||||
SUBDIRS = man doc Win32 MacOS9 Octave src examples tests
|
||||
DIST_SUBDIRS = $(SUBDIRS)
|
||||
EXTRA_DIST = reconfigure.mk acinclude.m4 libsndfile.spec.in sndfile.pc.in \
|
||||
check_libsndfile.py libsndfile_version_convert.py Make.bat
|
||||
EXTRA_DIST = reconfigure.mk acinclude.m4 libsndfile.spec.in \
|
||||
sndfile.pc.in Make.bat
|
||||
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
|
@ -3,7 +3,7 @@
|
||||
dnl Require autoconf version
|
||||
AC_PREREQ(2.53)
|
||||
|
||||
AC_INIT(libsndfile,1.0.10pre8,erikd@mega-nerd.com)
|
||||
AC_INIT(libsndfile,1.0.10,erikd@mega-nerd.com)
|
||||
AC_CONFIG_SRCDIR([src/sndfile.c])
|
||||
AC_CANONICAL_TARGET([])
|
||||
AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION)
|
||||
|
@ -382,7 +382,7 @@ extra_header_test (const char *filename, int filetype)
|
||||
SF_INFO sfinfo ;
|
||||
sf_count_t frames ;
|
||||
short buffer [8] ;
|
||||
int k ;
|
||||
int k = 0 ;
|
||||
|
||||
print_test_name ("extra_header_test", filename) ;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user