Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5958 in orxonox.OLD


Ignore:
Timestamp:
Dec 7, 2005, 1:54:06 PM (18 years ago)
Author:
bensch
Message:

avi_play: configure check for avi_format

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/avi_play/configure.ac

    r5822 r5958  
     1
    12##########################################################################
    23#   orxonox - the future of 3D-vertical-scrollers                        #
     
    648649        echo "vorbisfile library not found."
    649650        echo "please install the vorbisfile library, which can be found at http://www.xiph.org/ogg/vorbis/index.html"
     651        echo "------------------"
     652        exit -1
     653     fi
     654
     655
     656#--------#
     657# FFmpeg #
     658#--------#
     659# checking for FFmpeg-headers
     660  AC_CHECK_HEADERS([avformat.h] ,,
     661      [AC_CHECK_HEADERS([ffmpeg/avformat.h] ,,AC_MSG_ERROR([cannot find FFmpeg header.])]))
     662# checking for vorbisfile-lib
     663  AC_CHECK_LIB([avformat], [main], [FOUND_avformat=yes; LIBS="$LIBS -lavformat"])
     664     if test x$FOUND_avformat != xyes ; then
     665        echo "------------------"
     666        echo "avformat library not found."
     667        echo "please install the FFmpeg library, which can be found at http://ffmpeg.sourceforge.new"
    650668        echo "------------------"
    651669        exit -1
Note: See TracChangeset for help on using the changeset viewer.