Displaying 3 results from an estimated 3 matches for "oggflac__streamencoder".
2004 Sep 10
1
Another OS X compile error
...-DHAVE_CONFIG_H -I. -I. -I../.. -I../.. -I./include
-I../../include -g -O2 -O3 -DNDEBUG -Dunix -fomit-frame-pointer
-funroll-loops -finline-functions -Wall -W -Winline
-DFLaC__INLINE=__inline__ -c `test -f 'encode.c' || echo './'`encode.c
encode.c:117: undefined type, found `OggFLAC__StreamEncoder'
encode.c:118: undefined type, found `OggFLAC__StreamEncoder'
encode.c:119: undefined type, found `OggFLAC__StreamEncoder'
cpp-precomp: warning: errors during smart preprocessing, retrying in
basic mode
encode.c:117: parse error before '*' token
encode.c:118: parse error before...
2004 Sep 10
4
OS X compile errors
On Tuesday, January 7, 2003, at 10:15 PM, Josh Coalson wrote:
> I am going to check in a fix soon that will be in flac-1.0.5-beta2.
> In the meantime you can manually add -Dunix to the two assignments
> of OUR_CFLAGS_TAIL in configure.
I tried that fix, ran `make clean; ./configure --prefix=/opt` then:
[TLB:~/Desktop/flac-1.0.5_beta1/flac-1.0.5_beta1] glenn% make
make all-recursive
2005 May 25
0
[PATCH] Fix fuction prototypes/definitions with void argument
...e the identifiers 'setmode',
--- src/libOggFLAC/stream_encoder.c-dist 2005-05-25 16:07:23.000000000 +0200
+++ src/libOggFLAC/stream_encoder.c 2005-05-25 16:07:27.000000000 +0200
@@ -87,7 +87,7 @@ OggFLAC_API const char * const OggFLAC__
* Class constructor/destructor
*
*/
-OggFLAC_API OggFLAC__StreamEncoder *OggFLAC__stream_encoder_new()
+OggFLAC_API OggFLAC__StreamEncoder *OggFLAC__stream_encoder_new(void)
{
OggFLAC__StreamEncoder *encoder;
--- src/libOggFLAC/stream_decoder.c-dist 2005-05-25 16:07:23.000000000 +0200
+++ src/libOggFLAC/stream_decoder.c 2005-05-25 16:07:27.000000000 +0200
@@ -86,7...