Displaying 20 results from an estimated 400 matches similar to: "Fwd: Re: flac-1.0.3_beta released [64-bit friendly?]"
2004 Sep 10
2
flac-1.0.3_beta released
On Tue, 11 Jun 2002 11:51:33 +0400
Andrey Astafiev <andrei@tvcell.ru> wrote:
> flac-1.0.3_beta compilation breaks for me with message:
I had the same experience, too. I think that a cause is in configure and
configure.in files. Therefore, let's rebuild these files.
I took the following, and solved the problem.
$ cd flac-1.0.3_beta
$ automake
$ autoconf
$ ./configure ;make
--
2002 May 01
3
upgrading to 1.5.0/uninstalling 1.4.1 on Linux
Hi folks:
I have a feeling this must be a FAQ, but I did not find the answer in R
Installation and Administration manual. Please point me to the right place
to look for answer to this question if it's already answered.
I am running 1.4.1 on an Alpha PCA56 (aka 164SX) running Redhat Linux 7.1
(kernel 2.4.19-pre4). I built 1.4.1 from sources and it is installed in
/usr/local (the
2006 Jun 09
1
SBC/ATT Supertrunk configuration
I have what my SBC/ATT representative calls a "Supertrunk," but he can't
tell me the specifics I need to know to configure Asterisk to work with
it.
By fiddling about, I've come up with the "almost working" configuration
below. This works except that it takes about 4 seconds from when the
console says the line is answered until it plays my prompt.
Watching the
2012 Feb 03
1
[PATCH] Include inttypes.h for PRIu64
---
examples/c/decode/file/main.c | 3 +++
examples/c/encode/file/main.c | 3 +++
src/metaflac/operations.c | 3 +++
src/metaflac/operations_shorthand_cuesheet.c | 3 +++
src/metaflac/operations_shorthand_streaminfo.c | 3 +++
src/share/grabbag/cuesheet.c | 3 +++
src/test_libFLAC/encoders.c
2017 Jan 19
4
[PATCH] Fix cppcheck warnings
---
src/libFLAC/bitreader.c | 4 ++--
src/libFLAC/bitwriter.c | 4 ++--
src/plugin_xmms/plugin.c | 2 +-
src/share/utf8/charset.c | 1 +
src/test_libFLAC++/encoders.cpp | 8 ++++----
src/test_libFLAC/decoders.c | 4 ++--
src/test_libFLAC/encoders.c | 8 ++++----
7 files changed, 16 insertions(+), 15 deletions(-)
diff --git a/src/libFLAC/bitreader.c
2014 Nov 25
0
flac-1.3.1pre1
On Nov 25 00:43:22, mle+la at mega-nerd.com wrote:
> http://downloads.xiph.org/releases/flac/beta/
> Please test.
Running 'make fullcheck' fails for me like this:
$ pwd
/home/hans/src/flac-1.3.1pre1/test
$ make fullcheck
FLAC__TEST_LEVEL=1 FLAC__TEST_WITH_VALGRIND=no ./test_libFLAC.sh
/bin/sh: ./test_libFLAC.sh: No such file or directory
*** Error 1 in
2017 Jan 15
0
[PATCH 2/2] Only compile and run tests when running 'make check'
---
src/test_grabbag/cuesheet/Makefile.am | 2 +-
src/test_grabbag/picture/Makefile.am | 2 +-
src/test_libFLAC++/Makefile.am | 2 +-
src/test_libFLAC/Makefile.am | 2 +-
src/test_seeking/Makefile.am | 2 +-
src/test_streams/Makefile.am | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/test_grabbag/cuesheet/Makefile.am
2012 Dec 03
0
[PATCH 3/5] Hide symbols with gcc.
With gcc >= 4 and ELF, set default visibility to hidden and make visible
only the symbols with FLAC_API or FLACPP_API.
A convenience libFLAC-static.la is created for test_libFLAC as it
depends on the hidden symbols.
---
configure.ac | 8 +++++++-
include/FLAC++/export.h | 13 +++++++++----
include/FLAC/export.h | 13 +++++++++----
src/libFLAC/Makefile.am | 10
2013 Apr 21
0
[PATCH] Reduce valgrind num-callers to 50
My Valgrind doesn't run, saying it doesn't support showing more
than 50 entries of a stack trace
---
test/test_bins.sh | 4 ++--
test/test_flac.sh | 8 ++++----
test/test_grabbag.sh | 8 ++++----
test/test_libFLAC++.sh | 2 +-
test/test_libFLAC.sh | 2 +-
test/test_metaflac.sh | 12 ++++++------
test/test_seeking.sh | 12 ++++++------
2012 Dec 04
0
[PATCH] Update FSF address.
---
COPYING.GPL | 43 +++++++++++-----------
doc/Makefile.am | 6 +--
doc/Makefile.lite | 6 +--
examples/c/decode/file/Makefile.am | 6 +--
examples/c/decode/file/Makefile.lite | 6 +--
examples/c/decode/file/main.c | 6 +--
2007 Apr 16
0
Patch : Fix includes
Hi all,
Below is a patch that fixes a couple of instances where a function
is used before it has been prototyped.
There was a little subtlty involved here because the file
include/test_libs_common/metadata_utils.h had the #include guard
the same as that of /src/test_libFLAC/metadata.h meaning that
only the first one included would actually do anthing.
Patch below.
Cheers,
Erik
diff -u -r1.4
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
Hello,
This is a patch to allow building of the project using MSYS, MinGW, and
MinGW-w64 with the following invocation:
make -f Makefile.lite libFLAC libFLAC++ flac metaflac test_libs_common
test_libFLAC test_libFLAC++ test_grabbag test_seeking test_streams utils
examples
This patch addresses eight points:
1. `uname -p` in MSYS returns "unknown" so we must use `gcc
-dumpmachine`
2007 Jul 14
2
PATCH : Fix missing protoypes
Hi all,
I added -Wmissing-prototypes -Wstrict-prototypes to the CFLAGS and
found that there were a number warnings generated.
The patch below fixes those warnings and adds the two -W flags to
configure.in.
Cheers,
Erik
----------------------8<----------------------8<----------------------
--- src/metaflac/operations_shorthand.h 1970-01-01 00:00:00 +0000
+++
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
Hello,
This is a patch to allow building of the project using MSYS, MinGW, and
MinGW-w64 with the following invocation:
make -f Makefile.lite libFLAC libFLAC++ flac metaflac test_libs_common
test_libFLAC test_libFLAC++ test_grabbag test_seeking test_streams utils
examples
This patch addresses eight points:
1. `uname -p` in MSYS returns "unknown" so we must use `gcc
-dumpmachine`
2012 Apr 18
3
[PATCH 3/3] export MALLOC_PERTURB_ and MALLOC_CHECK_ in test suite
That enables an special implementation that checks
for common memory errors and will save us from a lot pain.
---
test/test_bins.sh | 2 ++
test/test_flac.sh | 2 ++
test/test_grabbag.sh | 2 ++
test/test_libFLAC++.sh | 2 ++
test/test_libFLAC.sh | 3 +++
test/test_metaflac.sh | 2 ++
test/test_seeking.sh | 2 ++
test/test_streams.sh | 2 ++
8 files
2013 Mar 23
1
MinGW compile/test confirmation needed
Hi all,
I need someone which can use git and the MinGW compiler on windows to
test something for me. Specifically, this:
a) Check out git head, configure using:
./autogen.sh && ./configure && make clean all
and then run the test:
src/test_libFLAC/test_libFLAC.exe
and confirm that fails with:
testing
2012 Feb 07
2
[PATCH] Remove even more CPP hackery
This commit will break OS/2's EMX 0.9d library (GCC 2.8.1) which has been
been replaced by klibc. Considering the age of EMX and lack of testing
and that klibc contains so many improvements I think this is exceptable.
---
include/FLAC/ordinals.h | 17 +++++++++--------
src/flac/main.c | 2 +-
src/libFLAC/metadata_iterators.c | 2 +-
2014 May 24
2
make dllimport/dllexport attributes work with mingw (and others)
On 5/24/14, lvqcl <lvqcl.mail at gmail.com> wrote:
> Ozkan Sezer <sezeroz at gmail.com> ?????(?) ? ????? ?????? Sat, 24 May 2014
> 10:16:15 +0400:
>
>> - changes the _MSC_VER condition to universally _WIN32: MSVC, as well
>> as GCC supports this.
>
> MSYS/MinGW 4.8.3, 4.9.0 can't compile code from git after this patch:
>
> format.c:47:22: error:
2005 Jan 29
2
Patch : fix configure.in and Makefile.am problems.
Note : I'm subscribed to the list. Please don't CC replies to me.
Hi all,
I am trying to compiler current CV head on a PowerPC G3 Debain system.
Debian test has automake 1.9 which is a little more stringent about
errors than 1.8. The following patch has the following fixes.
0) Remove AC_CANNONIAL_HOST because it has already been invoked
earlier
1) Make sure
2004 Sep 10
2
beta 1.0.3 ERROR
The test script doesn't seem to stop on error. I noticed this
in the logs:
++++++ testing level 1 interface
simple iterator on read-only file
generating FLAC file for test
testing 'metadata.flac'... 0... 1... content... PASSED
is writable = 1
ERROR: iterator claims file is writable when it should not be
ERROR during test_libFLAC
FAIL: ./test_libFLAC.sh
Platform is a mobile