source:
freewrt/package/icecast/patches/01-icecast-2.3.0-tremor.patch@
d419478
| Last change on this file since d419478 was 475ad56, checked in by , 20 years ago | |
|---|---|
|
|
| File size: 4.3 KB | |
-
icecast-2.3.0.
diff -rNu icecast-2.3.0.old/configure icecast-2.3.0.new/configure
old new 21967 21967 if test "${xt_cv_lib_ogg+set}" = set; then 21968 21968 echo $ECHO_N "(cached) $ECHO_C" >&6 21969 21969 else 21970 OGG_LIBS="-l ogg"21970 OGG_LIBS="-lvorbisidec" 21971 21971 21972 21972 # 21973 21973 # check if the installed Ogg is sufficiently new. … … 22033 22033 cat confdefs.h >>conftest.$ac_ext 22034 22034 cat >>conftest.$ac_ext <<_ACEOF 22035 22035 /* end confdefs.h. */ 22036 #include < ogg/ogg.h>22036 #include <tremor/ogg.h> 22037 22037 int 22038 22038 main () 22039 22039 { … … 22188 22188 22189 22189 fi 22190 22190 22191 VORBIS_LIBS="-lvorbis "22192 VORBISFILE_LIBS="-lvorbis file"22193 VORBISENC_LIBS="-lvorbis enc"22191 VORBIS_LIBS="-lvorbisidec" 22192 VORBISFILE_LIBS="-lvorbisidec" 22193 VORBISENC_LIBS="-lvorbisidec" 22194 22194 22195 22195 xt_save_LIBS="$LIBS" 22196 22196 xt_save_LDFLAGS="$LDFLAGS" … … 22327 22327 cat >>conftest.$ac_ext <<_ACEOF 22328 22328 /* end confdefs.h. */ 22329 22329 22330 #include <vorbis/codec.h> 22331 #include <vorbis/vorbisenc.h> 22330 #include <tremor/ivorbiscodec.h> 22332 22331 22333 22332 22334 22333 int 22335 22334 main () 22336 22335 { 22336 /* 22337 22337 if ((struct ovectl_ratemanage_arg *) 0) 22338 22338 return 0; 22339 22339 if (sizeof (struct ovectl_ratemanage_arg)) 22340 22340 return 0; 22341 */ 22341 22342 ; 22342 22343 return 0; 22343 22344 } -
src/format_flac.c
diff -rNu icecast-2.3.0.old/src/format_flac.c icecast-2.3.0.new/src/format_flac.c
old new 18 18 #endif 19 19 20 20 #include <stdlib.h> 21 #include < ogg/ogg.h>21 #include <tremor/ogg.h> 22 22 #include <string.h> 23 23 24 24 typedef struct source_tag source_t; -
src/format_midi.c
diff -rNu icecast-2.3.0.old/src/format_midi.c icecast-2.3.0.new/src/format_midi.c
old new 18 18 #endif 19 19 20 20 #include <stdlib.h> 21 #include < ogg/ogg.h>21 #include <tremor/ogg.h> 22 22 #include <string.h> 23 23 24 24 typedef struct source_tag source_t; -
src/format_ogg.c
diff -rNu icecast-2.3.0.old/src/format_ogg.c icecast-2.3.0.new/src/format_ogg.c
old new 24 24 #include <stdlib.h> 25 25 #include <string.h> 26 26 27 #include < ogg/ogg.h>27 #include <tremor/ogg.h> 28 28 29 29 #include "refbuf.h" 30 30 #include "source.h" -
src/format_ogg.h
diff -rNu icecast-2.3.0.old/src/format_ogg.h icecast-2.3.0.new/src/format_ogg.h
old new 18 18 #ifndef __FORMAT_OGG_H__ 19 19 #define __FORMAT_OGG_H__ 20 20 21 #include < ogg/ogg.h>21 #include <tremor/ogg.h> 22 22 #include "refbuf.h" 23 23 #include "format.h" 24 24 -
src/format_speex.c
diff -rNu icecast-2.3.0.old/src/format_speex.c icecast-2.3.0.new/src/format_speex.c
old new 18 18 #endif 19 19 20 20 #include <stdlib.h> 21 #include < ogg/ogg.h>21 #include <tremor/ogg.h> 22 22 #include <speex/speex_header.h> 23 23 24 24 typedef struct source_tag source_t; -
src/format_theora.c
diff -rNu icecast-2.3.0.old/src/format_theora.c icecast-2.3.0.new/src/format_theora.c
old new 18 18 #endif 19 19 20 20 #include <stdlib.h> 21 #include < ogg/ogg.h>21 #include <tremor/ogg.h> 22 22 #include <theora/theora.h> 23 23 24 24 typedef struct source_tag source_t; -
src/format_vorbis.c
diff -rNu icecast-2.3.0.old/src/format_vorbis.c icecast-2.3.0.new/src/format_vorbis.c
old new 18 18 #endif 19 19 20 20 #include <stdlib.h> 21 #include < ogg/ogg.h>22 #include < vorbis/codec.h>21 #include <tremor/ogg.h> 22 #include <tremor/ivorbiscodec.h> 23 23 #include <memory.h> 24 24 #include <string.h> 25 25 -
icecast-2.3.0.
diff -rNu icecast-2.3.0.old/src/source.c icecast-2.3.0.new/src/source.c
old new 19 19 #include <stdlib.h> 20 20 #include <string.h> 21 21 #include <sys/types.h> 22 #include < ogg/ogg.h>22 #include <tremor/ogg.h> 23 23 #include <errno.h> 24 24 25 25 #ifndef _WIN32
Note:
See TracBrowser
for help on using the repository browser.
