View | Details | Raw Unified
Collapse All | Expand All

(-) libvorbis-1.0/vorbis.m4 (-3 / +4 lines)
 Lines 54-59    Link Here 
#include <stdlib.h>
#include <stdlib.h>
#include <string.h>
#include <string.h>
#include <vorbis/codec.h>
#include <vorbis/codec.h>
#include <vorbis/vorbisenc.h>
int main ()
int main ()
{
{
 Lines 62-68    Link Here 
    vorbis_info		vi;
    vorbis_info		vi;
    vorbis_info_init (&vi);
    vorbis_info_init (&vi);
    vorbis_encode_init (&vi, 2, 44100, -1, 128, -1);
    vorbis_encode_init (&vi, 2, 44100, -1, 128000, -1);
    vorbis_analysis_init (&vd, &vi);
    vorbis_analysis_init (&vd, &vi);
    vorbis_block_init (&vd, &vb);
    vorbis_block_init (&vd, &vb);
    /* this function was added in 1.0rc3, so this is what we're testing for */
    /* this function was added in 1.0rc3, so this is what we're testing for */
 Lines 86-93    Link Here 
       :
       :
     else
     else
       echo "*** Could not run Vorbis test program, checking why..."
       echo "*** Could not run Vorbis test program, checking why..."
       CFLAGS="$CFLAGS $VORBIS_CFLAGS"
       CFLAGS="$CFLAGS $VORBIS_CFLAGS $OGG_CFLAGS"
       LIBS="$LIBS $VORBIS_LIBS $OGG_LIBS"
       LIBS="$LIBS $VORBIS_LIBS $VORBISENC_LIBS $OGG_LIBS"
       AC_TRY_LINK([
       AC_TRY_LINK([
#include <stdio.h>
#include <stdio.h>
#include <vorbis/codec.h>
#include <vorbis/codec.h>