mirror of
https://gitlab.xiph.org/xiph/ezstream.git
synced 2024-11-03 04:17:18 -05:00
678e161e54
This makes it more likely that installed libogg and libvorbis are found, when the user (or autoconf) specifies a different --prefix. Users who installed their libraries in their homedir now have to set $OGG_PREFIX and $VORBIS_PREFIX, or set their respective --with arguments. Let the snapshot target use distcheck now that it works. git-svn-id: https://svn.xiph.org/trunk/ezstream@12570 0101bb08-14d6-0310-b084-bc0e0c8e3800
96 lines
2.5 KiB
Plaintext
96 lines
2.5 KiB
Plaintext
# Configure paths for libvorbis
|
|
# Jack Moffitt <jack@icecast.org> 10-21-2000
|
|
# updated by Karl Heyes 31-Mar-2003
|
|
# Shamelessly stolen from Owen Taylor and Manish Singh
|
|
|
|
dnl XIPH_PATH_VORBIS([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
|
|
dnl Test for libvorbis, and define VORBIS_CFLAGS VORBIS_LIBS
|
|
dnl VORBIS_VORBISENC_LIBS VORBIS_VORBISFILE_LIBS VORBIS_LDFLAGS
|
|
dnl
|
|
|
|
AC_DEFUN([XIPH_PATH_VORBIS],
|
|
[dnl
|
|
AC_REQUIRE([XIPH_PATH_OGG])
|
|
|
|
dnl Get the cflags and libraries for vorbis
|
|
dnl
|
|
AC_ARG_VAR([VORBIS_PREFIX],[path to Vorbis installation])
|
|
AC_ARG_WITH(vorbis,
|
|
AS_HELP_STRING([--with-vorbis=PREFIX],
|
|
[Prefix where libvorbis is installed (optional)]),
|
|
[vorbis_prefix="$withval"], [
|
|
if test x"$VORBIS_PREFIX" != "x"; then
|
|
vorbis_prefix="$VORBIS_PREFIX"
|
|
else
|
|
vorbis_prefix=/usr/local
|
|
fi
|
|
])
|
|
if test "x$vorbis_prefix" = "xyes"; then
|
|
if test "x$prefix" = "xNONE"; then
|
|
vorbis_prefix="/usr/local"
|
|
else
|
|
vorbis_prefix="$prefix"
|
|
fi
|
|
fi
|
|
|
|
VORBIS_CFLAGS="$OGG_CFLAGS"
|
|
VORBIS_LDFLAGS="$OGG_LDFLAGS"
|
|
if test "x$vorbis_prefix" != "x$ogg_prefix"; then
|
|
XIPH_GCC_WARNING(-I"$vorbis_prefix/include",,
|
|
[VORBIS_CFLAGS="$VORBIS_CFLAGS -I$vorbis_prefix/include"
|
|
VORBIS_LDFLAGS="-L$vorbis_prefix/lib $VORBIS_LDFLAGS"
|
|
])
|
|
fi
|
|
|
|
VORBIS_LIBS="-lvorbis"
|
|
VORBISFILE_LIBS="-lvorbisfile"
|
|
VORBISENC_LIBS="-lvorbisenc"
|
|
|
|
xt_save_LIBS="$LIBS"
|
|
xt_save_LDFLAGS="$LDFLAGS"
|
|
xt_save_CPPFLAGS="$CPPFLAGS"
|
|
CPPFLAGS="$CPPFLAGS $VORBIS_CFLAGS"
|
|
LDFLAGS="$LDFLAGS $VORBIS_LDFLAGS"
|
|
LIBS="$LIBS $VORBIS_LIBS"
|
|
xt_lib_vorbis="not found"
|
|
AC_MSG_CHECKING([for libvorbis])
|
|
AC_TRY_LINK_FUNC(ogg_stream_init, [xt_lib_vorbis=ok],
|
|
[LIBS="$LIBS $OGG_LIBS -lm"
|
|
AC_TRY_LINK_FUNC(vorbis_info_init,
|
|
[xt_lib_vorbis=ok
|
|
VORBIS_LIBS="$VORBIS_LIBS $OGG_LIBS -lm"],
|
|
)
|
|
])
|
|
|
|
AC_MSG_RESULT([$xt_lib_vorbis])
|
|
if test "x$xt_lib_vorbis" = "xok"; then
|
|
#
|
|
# Now check if the installed Vorbis is sufficiently new.
|
|
#
|
|
AC_CHECK_TYPES([struct ovectl_ratemanage_arg],,
|
|
[xt_lib_vorbis="old version found"], [
|
|
#include <vorbis/codec.h>
|
|
#include <vorbis/vorbisenc.h>
|
|
])
|
|
fi
|
|
CPPFLAGS="$xt_save_CPPFLAGS"
|
|
LIBS="$xt_save_LIBS"
|
|
LDFLAGS="$xt_save_LDFLAGS"
|
|
|
|
if test "x$xt_lib_vorbis" = "xok"; then
|
|
ifelse([$1], ,[:], [$1])
|
|
else
|
|
VORBIS_CFLAGS=""
|
|
VORBIS_LDFLAGS=""
|
|
VORBIS_LIBS=""
|
|
VORBISFILE_LIBS=""
|
|
VORBISENC_LIBS=""
|
|
ifelse([$2], ,, [$2])
|
|
fi
|
|
AC_SUBST(VORBIS_CFLAGS)
|
|
AC_SUBST(VORBIS_LDFLAGS)
|
|
AC_SUBST(VORBIS_LIBS)
|
|
AC_SUBST(VORBISFILE_LIBS)
|
|
AC_SUBST(VORBISENC_LIBS)
|
|
])
|