libOggFLAC++.m4
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:4k
源码类别:

Windows CE

开发平台:

C/C++

  1. # Configure paths for libOggFLAC++
  2. # "Inspired" by ogg.m4
  3. # Caller must first run AM_PATH_LIBOGGFLAC
  4. dnl AM_PATH_LIBOGGFLACPP([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
  5. dnl Test for libOggFLAC++, and define LIBOGGFLACPP_CFLAGS and LIBOGGFLACPP_LIBS
  6. dnl
  7. AC_DEFUN([AM_PATH_LIBOGGFLACPP],
  8. [dnl 
  9. dnl Get the cflags and libraries
  10. dnl
  11. AC_ARG_WITH(libOggFLACPP,[  --with-libOggFLACPP=PFX   Prefix where libOggFLAC++ is installed (optional)], libOggFLACPP_prefix="$withval", libOggFLACPP_prefix="")
  12. AC_ARG_WITH(libOggFLACPP-libraries,[  --with-libOggFLACPP-libraries=DIR   Directory where libOggFLAC++ library is installed (optional)], libOggFLACPP_libraries="$withval", libOggFLACPP_libraries="")
  13. AC_ARG_WITH(libOggFLACPP-includes,[  --with-libOggFLACPP-includes=DIR   Directory where libOggFLAC++ header files are installed (optional)], libOggFLACPP_includes="$withval", libOggFLACPP_includes="")
  14. AC_ARG_ENABLE(libOggFLACPPtest, [  --disable-libOggFLACPPtest       Do not try to compile and run a test libOggFLAC++ program],, enable_libOggFLACPPtest=yes)
  15.   if test "x$libOggFLACPP_libraries" != "x" ; then
  16.     LIBOGGFLACPP_LIBS="-L$libOggFLACPP_libraries"
  17.   elif test "x$libOggFLACPP_prefix" != "x" ; then
  18.     LIBOGGFLACPP_LIBS="-L$libOggFLACPP_prefix/lib"
  19.   elif test "x$prefix" != "xNONE" ; then
  20.     LIBOGGFLACPP_LIBS="-L$libdir"
  21.   fi
  22.   LIBOGGFLACPP_LIBS="$LIBOGGFLACPP_LIBS -lOggFLAC++ $LIBOGGFLAC_LIBS"
  23.   if test "x$libOggFLACPP_includes" != "x" ; then
  24.     LIBOGGFLACPP_CFLAGS="-I$libOggFLACPP_includes"
  25.   elif test "x$libOggFLACPP_prefix" != "x" ; then
  26.     LIBOGGFLACPP_CFLAGS="-I$libOggFLACPP_prefix/include"
  27.   elif test "$prefix" != "xNONE"; then
  28.     LIBOGGFLACPP_CFLAGS="-I$prefix/include"
  29.   fi
  30.   LIBOGGFLACPP_CFLAGS="$LIBOGGFLACPP_CFLAGS $LIBOGGFLAC_CFLAGS"
  31.   AC_MSG_CHECKING(for libOggFLAC++)
  32.   no_libOggFLACPP=""
  33.   if test "x$enable_libOggFLACPPtest" = "xyes" ; then
  34.     ac_save_CFLAGS="$CFLAGS"
  35.     ac_save_CXXFLAGS="$CXXFLAGS"
  36.     ac_save_LIBS="$LIBS"
  37.     CFLAGS="$CFLAGS $LIBOGGFLACPP_CFLAGS"
  38.     CXXFLAGS="$CXXFLAGS $LIBOGGFLACPP_CFLAGS"
  39.     LIBS="$LIBS $LIBOGGFLACPP_LIBS"
  40. dnl
  41. dnl Now check if the installed libOggFLAC++ is sufficiently new.
  42. dnl
  43.       rm -f conf.libOggFLAC++test
  44.       AC_TRY_RUN([
  45. #include <stdio.h>
  46. #include <stdlib.h>
  47. #include <string.h>
  48. #include <OggFLAC++/decoder.h>
  49. int main ()
  50. {
  51.   system("touch conf.libOggFLAC++test");
  52.   return 0;
  53. }
  54. ],, no_libOggFLACPP=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
  55.        CFLAGS="$ac_save_CFLAGS"
  56.        LIBS="$ac_save_LIBS"
  57.   fi
  58.   if test "x$no_libOggFLACPP" = "x" ; then
  59.      AC_MSG_RESULT(yes)
  60.      ifelse([$1], , :, [$1])     
  61.   else
  62.      AC_MSG_RESULT(no)
  63.      if test -f conf.libOggFLAC++test ; then
  64.        :
  65.      else
  66.        echo "*** Could not run libOggFLAC++ test program, checking why..."
  67.        CFLAGS="$CFLAGS $LIBOGGFLACPP_CFLAGS"
  68.        LIBS="$LIBS $LIBOGGFLACPP_LIBS"
  69.        AC_TRY_LINK([
  70. #include <stdio.h>
  71. #include <OggFLAC++/decoder.h>
  72. ],     [ return 0; ],
  73.        [ echo "*** The test program compiled, but did not run. This usually means"
  74.        echo "*** that the run-time linker is not finding libOggFLAC++ or finding the wrong"
  75.        echo "*** version of libOggFLAC++. If it is not finding libOggFLAC++, you'll need to set your"
  76.        echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
  77.        echo "*** to the installed location  Also, make sure you have run ldconfig if that"
  78.        echo "*** is required on your system"
  79.        echo "***"
  80.        echo "*** If you have an old version installed, it is best to remove it, although"
  81.        echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
  82.        [ echo "*** The test program failed to compile or link. See the file config.log for the"
  83.        echo "*** exact error that occured. This usually means libOggFLAC++ was incorrectly installed"
  84.        echo "*** or that you have moved libOggFLAC++ since it was installed. In the latter case, you"
  85.        echo "*** may want to edit the libOggFLAC++-config script: $LIBFLACPP_CONFIG" ])
  86.        CFLAGS="$ac_save_CFLAGS"
  87.        LIBS="$ac_save_LIBS"
  88.      fi
  89.      LIBOGGFLACPP_CFLAGS=""
  90.      LIBOGGFLACPP_LIBS=""
  91.      ifelse([$2], , :, [$2])
  92.   fi
  93.   AC_SUBST(LIBOGGFLACPP_CFLAGS)
  94.   AC_SUBST(LIBOGGFLACPP_LIBS)
  95.   rm -f conf.libOggFLAC++test
  96. ])