committed patch to recognize Ogg Vorbis shared libraries in the
configure script, re #42
This commit is contained in:
parent
9b5bdad5b8
commit
20f55cfc8f
|
@ -34,4 +34,5 @@ with contributions by:
|
|||
Pierre Souchay <pierre@souchay.net>
|
||||
Daniel Hazelbaker <daniel@highdesertchurch.com>
|
||||
Alessandro Beretta <alessandro.baretta@radiomaria.org>
|
||||
omroepvenray
|
||||
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
DarkIce next release
|
||||
|
||||
o bugfix: the configure script recognizes Ogg Vorbis shared objects
|
||||
now, not just static libraries. Thanks to omroepvenray.
|
||||
|
||||
07-07-2008 Darkice 0.19 released
|
||||
|
||||
o added mount point option for Darwin Streaming Server
|
||||
|
|
|
@ -89,12 +89,12 @@ AC_ARG_WITH(vorbis-prefix,
|
|||
|
||||
if test "x${USE_VORBIS}" = "xyes" ; then
|
||||
AC_MSG_CHECKING( [for vorbis libraries at ${CONFIG_VORBIS_PREFIX}] )
|
||||
LA_SEARCH_LIB( OGG_LIB_LOC, OGG_INC_LOC, libogg.a, ogg/ogg.h,
|
||||
LA_SEARCH_LIB( OGG_LIB_LOC, OGG_INC_LOC, libogg.a libogg.so, ogg/ogg.h,
|
||||
${CONFIG_VORBIS_PREFIX})
|
||||
LA_SEARCH_LIB( VORBIS_LIB_LOC, VORBIS_INC_LOC, libvorbis.a, vorbis/codec.h,
|
||||
LA_SEARCH_LIB( VORBIS_LIB_LOC, VORBIS_INC_LOC, libvorbis.a libvorbis.so, vorbis/codec.h,
|
||||
${CONFIG_VORBIS_PREFIX})
|
||||
LA_SEARCH_LIB( VORBISENC_LIB_LOC, VORBISENC_INC_LOC,
|
||||
libvorbisenc.a, vorbis/vorbisenc.h,
|
||||
libvorbisenc.a libvorbisenc.so, vorbis/vorbisenc.h,
|
||||
${CONFIG_VORBIS_PREFIX})
|
||||
|
||||
if test "x${OGG_LIB_LOC}" != "x" -a \
|
||||
|
|
|
@ -108,6 +108,7 @@ Developed with contributions by
|
|||
Pierre Souchay <pierre@souchay.net>
|
||||
Daniel Hazelbaker <daniel@highdesertchurch.com>
|
||||
Alessandro Beretta <alessandro.baretta@radiomaria.org>
|
||||
omroepvenray
|
||||
|
||||
.SH LINKS
|
||||
Project homepage:
|
||||
|
|
Loading…
Reference in New Issue