Mercurial > SDL_sound_CoreAudio
annotate decoders/mpglib/Makefile.am @ 520:64ae7ac242b9
Fixed uninitialized buffer in mpglib. (Thanks, Phil!).
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Fri, 06 Jul 2007 11:29:02 +0000 |
parents | a0297d442b6a |
children | 7e08477b0fc1 |
rev | line source |
---|---|
503
a0297d442b6a
From stable branch: fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents:
299
diff
changeset
|
1 if USE_MPGLIB |
261 | 2 noinst_LTLIBRARIES = libmpglib.la |
503
a0297d442b6a
From stable branch: fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents:
299
diff
changeset
|
3 endif |
261 | 4 |
5 INCLUDES = -I$(top_srcdir) | |
266
7507d2c15281
Patched to respect SDL_sound build flags (fixes --enable-debug, etc).
Ryan C. Gordon <icculus@icculus.org>
parents:
261
diff
changeset
|
6 libmpglib_la_CFLAGS = -DLAYER1 -DLAYER2 -DLAYER3 |
261 | 7 |
8 libmpglib_la_SOURCES = \ | |
299
7b1df7526915
Patches for Visual C compatibility.
Ryan C. Gordon <icculus@icculus.org>
parents:
266
diff
changeset
|
9 mpglib_common.c \ |
261 | 10 huffman.h \ |
11 layer1.c \ | |
12 tabinit.c \ | |
13 dct64_i386.c \ | |
14 interface.c \ | |
15 layer2.c \ | |
16 mpg123_sdlsound.h \ | |
17 decode_i386.c \ | |
18 l2tables.h \ | |
19 layer3.c \ | |
20 mpglib_sdlsound.h | |
21 | |
503
a0297d442b6a
From stable branch: fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents:
299
diff
changeset
|
22 EXTRA_DIST = CHANGES README README-sdlsound TODO main.c |
a0297d442b6a
From stable branch: fixed up timidity and mpglib Makefile.am files.
Ryan C. Gordon <icculus@icculus.org>
parents:
299
diff
changeset
|
23 |