Blame m4/vorbis.m4

Packit 971217
# Configure paths for libvorbis
Packit 971217
# Jack Moffitt <jack@icecast.org> 10-21-2000
Packit 971217
# Shamelessly stolen from Owen Taylor and Manish Singh
Packit 971217
# thomasvs added check for vorbis_bitrate_addblock which is new in rc3
Packit 971217
# thomasvs added check for OV_ECTL_RATEMANAGE_SET which is new in 1.0 final
Packit 971217
Packit 971217
dnl XIPH_PATH_VORBIS([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
Packit 971217
dnl Test for libvorbis, and define VORBIS_CFLAGS and VORBIS_LIBS
Packit 971217
dnl
Packit 971217
AC_DEFUN([XIPH_PATH_VORBIS],
Packit 971217
[dnl 
Packit 971217
dnl Get the cflags and libraries
Packit 971217
dnl
Packit 971217
AC_ARG_WITH(vorbis,[  --with-vorbis=PFX   Prefix where libvorbis is installed (optional)], vorbis_prefix="$withval", vorbis_prefix="")
Packit 971217
AC_ARG_WITH(vorbis-libraries,[  --with-vorbis-libraries=DIR   Directory where libvorbis library is installed (optional)], vorbis_libraries="$withval", vorbis_libraries="")
Packit 971217
AC_ARG_WITH(vorbis-includes,[  --with-vorbis-includes=DIR   Directory where libvorbis header files are installed (optional)], vorbis_includes="$withval", vorbis_includes="")
Packit 971217
AC_ARG_ENABLE(vorbistest, [  --disable-vorbistest       Do not try to compile and run a test Vorbis program],, enable_vorbistest=yes)
Packit 971217
Packit 971217
  if test "x$vorbis_libraries" != "x" ; then
Packit 971217
    VORBIS_LIBS="-L$vorbis_libraries"
Packit 971217
  elif test "x$vorbis_prefix" != "x" ; then
Packit 971217
    VORBIS_LIBS="-L$vorbis_prefix/lib"
Packit 971217
  elif test "x$prefix" != "xNONE"; then
Packit 971217
    VORBIS_LIBS="-L$prefix/lib"
Packit 971217
  fi
Packit 971217
Packit 971217
  VORBIS_LIBS="$VORBIS_LIBS -lvorbis -lm"
Packit 971217
  VORBISFILE_LIBS="-lvorbisfile"
Packit 971217
  VORBISENC_LIBS="-lvorbisenc"
Packit 971217
Packit 971217
  if test "x$vorbis_includes" != "x" ; then
Packit 971217
    VORBIS_CFLAGS="-I$vorbis_includes"
Packit 971217
  elif test "x$vorbis_prefix" != "x" ; then
Packit 971217
    VORBIS_CFLAGS="-I$vorbis_prefix/include"
Packit 971217
  elif test "x$prefix" != "xNONE"; then
Packit 971217
    VORBIS_CFLAGS="-I$prefix/include"
Packit 971217
  fi
Packit 971217
Packit 971217
Packit 971217
  AC_MSG_CHECKING(for Vorbis)
Packit 971217
  no_vorbis=""
Packit 971217
Packit 971217
Packit 971217
  if test "x$enable_vorbistest" = "xyes" ; then
Packit 971217
    ac_save_CFLAGS="$CFLAGS"
Packit 971217
    ac_save_LIBS="$LIBS"
Packit 971217
    CFLAGS="$CFLAGS $VORBIS_CFLAGS $OGG_CFLAGS"
Packit 971217
    LIBS="$LIBS $VORBIS_LIBS $VORBISENC_LIBS $OGG_LIBS"
Packit 971217
dnl
Packit 971217
dnl Now check if the installed Vorbis is sufficiently new.
Packit 971217
dnl
Packit 971217
      rm -f conf.vorbistest
Packit 971217
      AC_TRY_RUN([
Packit 971217
#include <stdio.h>
Packit 971217
#include <stdlib.h>
Packit 971217
#include <string.h>
Packit 971217
#include <vorbis/codec.h>
Packit 971217
#include <vorbis/vorbisenc.h>
Packit 971217
Packit 971217
int main ()
Packit 971217
{
Packit 971217
    vorbis_block 	vb;
Packit 971217
    vorbis_dsp_state	vd;
Packit 971217
    vorbis_info		vi;
Packit 971217
Packit 971217
    vorbis_info_init (&vi;;
Packit 971217
    vorbis_encode_init (&vi, 2, 44100, -1, 128000, -1);
Packit 971217
    vorbis_analysis_init (&vd, &vi;;
Packit 971217
    vorbis_block_init (&vd, &vb;;
Packit 971217
    /* this function was added in 1.0rc3, so this is what we're testing for */
Packit 971217
    vorbis_bitrate_addblock (&vb;;
Packit 971217
Packit 971217
    /* this define was added in 1.0 final */
Packit 971217
#ifdef OV_ECTL_RATEMANAGE_SET
Packit 971217
    system("touch conf.vorbistest");
Packit 971217
    return 0;
Packit 971217
#else
Packit 971217
    return -1;
Packit 971217
#endif
Packit 971217
}
Packit 971217
Packit 971217
],, no_vorbis=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
Packit 971217
       CFLAGS="$ac_save_CFLAGS"
Packit 971217
       LIBS="$ac_save_LIBS"
Packit 971217
  fi
Packit 971217
Packit 971217
  if test "x$no_vorbis" = "x" ; then
Packit 971217
     AC_MSG_RESULT(yes)
Packit 971217
     ifelse([$1], , :, [$1])     
Packit 971217
  else
Packit 971217
     AC_MSG_RESULT(no)
Packit 971217
     if test -f conf.vorbistest ; then
Packit 971217
       :
Packit 971217
     else
Packit 971217
       echo "*** Could not run Vorbis test program, checking why..."
Packit 971217
       CFLAGS="$CFLAGS $VORBIS_CFLAGS"
Packit 971217
       LIBS="$LIBS $VORBIS_LIBS $OGG_LIBS"
Packit 971217
       AC_TRY_LINK([
Packit 971217
#include <stdio.h>
Packit 971217
#include <vorbis/codec.h>
Packit 971217
],     [ return 0; ],
Packit 971217
       [ echo "*** The test program compiled, but did not run. This usually means"
Packit 971217
       echo "*** that the run-time linker is not finding Vorbis or finding the wrong"
Packit 971217
       echo "*** version of Vorbis. If it is not finding Vorbis, you'll need to set your"
Packit 971217
       echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
Packit 971217
       echo "*** to the installed location  Also, make sure you have run ldconfig if that"
Packit 971217
       echo "*** is required on your system"
Packit 971217
       echo "***"
Packit 971217
       echo "*** If you have an old version installed, it is best to remove it, although"
Packit 971217
       echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
Packit 971217
       [ echo "*** The test program failed to compile or link. See the file config.log for the"
Packit 971217
       echo "*** exact error that occured. This usually means Vorbis was incorrectly installed"
Packit 971217
       echo "*** or that you have moved Vorbis since it was installed." ])
Packit 971217
       CFLAGS="$ac_save_CFLAGS"
Packit 971217
       LIBS="$ac_save_LIBS"
Packit 971217
     fi
Packit 971217
     VORBIS_CFLAGS=""
Packit 971217
     VORBIS_LIBS=""
Packit 971217
     VORBISFILE_LIBS=""
Packit 971217
     VORBISENC_LIBS=""
Packit 971217
     ifelse([$2], , :, [$2])
Packit 971217
  fi
Packit 971217
  AC_SUBST(VORBIS_CFLAGS)
Packit 971217
  AC_SUBST(VORBIS_LIBS)
Packit 971217
  AC_SUBST(VORBISFILE_LIBS)
Packit 971217
  AC_SUBST(VORBISENC_LIBS)
Packit 971217
  rm -f conf.vorbistest
Packit 971217
])