smpeg.m4
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:6k
源码类别:

多媒体编程

开发平台:

DOS

  1. ##############################################################################
  2. # Configure paths for SMPEG
  3. # Nicolas Vignal 11/19/2000
  4. # stolen from Sam Lantinga
  5. # stolen from Manish Singh
  6. # stolen back from Frank Belew
  7. # stolen from Manish Singh
  8. # Shamelessly stolen from Owen Taylor
  9. dnl AM_PATH_SMPEG([MINIMUM-VERSION, [ACTION-IF-FOUND [, 
  10. ACTION-IF-NOT-FOUND]]])
  11. dnl Test for SMPEG, and define SMPEG_CFLAGS and SMPEG_LIBS
  12. dnl
  13. AC_DEFUN([AM_PATH_SMPEG],
  14. [dnl
  15. dnl Get the cflags and libraries from the smpeg-config script
  16. dnl
  17. AC_ARG_WITH(smpeg-prefix,[  --with-smpeg-prefix=PFX   Prefix where SMPEG is installed (optional)],
  18.             smpeg_prefix="$withval", smpeg_prefix="")
  19. AC_ARG_WITH(smpeg-exec-prefix,[  --with-smpeg-exec-prefix=PFX Exec prefix where SMPEG is installed (optional)],
  20.             smpeg_exec_prefix="$withval", smpeg_exec_prefix="")
  21. AC_ARG_ENABLE(smpegtest, [  --disable-smpegtest       Do not try to compile and run a test SMPEG program],
  22.                     , enable_smpegtest=yes)
  23.   if test x$smpeg_exec_prefix != x ; then
  24.      smpeg_args="$smpeg_args --exec-prefix=$smpeg_exec_prefix"
  25.      if test x${SMPEG_CONFIG+set} != xset ; then
  26.         SMPEG_CONFIG=$smpeg_exec_prefix/bin/smpeg-config
  27.      fi
  28.   fi
  29.   if test x$smpeg_prefix != x ; then
  30.      smpeg_args="$smpeg_args --prefix=$smpeg_prefix"
  31.      if test x${SMPEG_CONFIG+set} != xset ; then
  32.         SMPEG_CONFIG=$smpeg_prefix/bin/smpeg-config
  33.      fi
  34.   fi
  35.   AC_PATH_PROG(SMPEG_CONFIG, smpeg-config, no)
  36.   min_smpeg_version=ifelse([$1], ,0.2.7,$1)
  37.   AC_MSG_CHECKING(for SMPEG - version >= $min_smpeg_version)
  38.   no_smpeg=""
  39.   if test "$SMPEG_CONFIG" = "no" ; then
  40.     no_smpeg=yes
  41.   else
  42.     SMPEG_CFLAGS=`$SMPEG_CONFIG $smpegconf_args --cflags`
  43.     SMPEG_LIBS=`$SMPEG_CONFIG $smpegconf_args --libs`
  44.     smpeg_major_version=`$SMPEG_CONFIG $smpeg_args --version | 
  45.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/1/'`
  46.     smpeg_minor_version=`$SMPEG_CONFIG $smpeg_args --version | 
  47.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/2/'`
  48.     smpeg_micro_version=`$SMPEG_CONFIG $smpeg_config_args --version | 
  49.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/3/'`
  50.     if test "x$enable_smpegtest" = "xyes" ; then
  51.       ac_save_CFLAGS="$CFLAGS"
  52.       ac_save_LIBS="$LIBS"
  53.       CFLAGS="$CFLAGS $SMPEG_CFLAGS $SDL_CFLAGS"
  54.       LIBS="$LIBS $SMPEG_LIBS $SDL_LIBS"
  55. dnl
  56. dnl Now check if the installed SMPEG is sufficiently new. (Also sanity
  57. dnl checks the results of smpeg-config to some extent
  58. dnl
  59.       rm -f conf.smpegtest
  60.       AC_TRY_RUN([
  61. #include <stdio.h>
  62. #include <stdlib.h>
  63. #include <string.h>
  64. #include "smpeg.h"
  65. char*
  66. my_strdup (char *str)
  67. {
  68.   char *new_str;
  69.   if (str)
  70.     {
  71.       new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char));
  72.       strcpy (new_str, str);
  73.     }
  74.   else
  75.     new_str = NULL;
  76.   return new_str;
  77. }
  78. int main (int argc, char *argv[])
  79. {
  80.   int major, minor, micro;
  81.   char *tmp_version;
  82.   /* This hangs on some systems (?)
  83.   system ("touch conf.smpegtest");
  84.   */
  85.   { FILE *fp = fopen("conf.smpegtest", "a"); if ( fp ) fclose(fp); }
  86.   /* HP/UX 9 (%@#!) writes to sscanf strings */
  87.   tmp_version = my_strdup("$min_smpeg_version");
  88.   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
  89.      printf("%s, bad version stringn", "$min_smpeg_version");
  90.      exit(1);
  91.    }
  92.    if (($smpeg_major_version > major) ||
  93.       (($smpeg_major_version == major) && ($smpeg_minor_version > minor)) ||
  94.       (($smpeg_major_version == major) && ($smpeg_minor_version == minor) && ($smpeg_micro_version >= micro)))
  95.     {
  96.       return 0;
  97.     }
  98.   else
  99.     {
  100.       printf("n*** 'smpeg-config --version' returned %d.%d.%d, but the minimum versionn", $smpeg_major_version, $smpeg_minor_version, $smpeg_micro_version);
  101.       printf("*** of SMPEG required is %d.%d.%d. If smpeg-config is correct, then it isn", major, minor, micro);
  102.       printf("*** best to upgrade to the required version.n");
  103.       printf("*** If smpeg-config was wrong, set the environment variable SMPEG_CONFIGn");
  104.       printf("*** to point to the correct copy of smpeg-config, and remove the filen");
  105.       printf("*** config.cache before re-running configuren");
  106.       return 1;
  107.     }
  108. }
  109. ],, no_smpeg=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
  110.        CFLAGS="$ac_save_CFLAGS"
  111.        LIBS="$ac_save_LIBS"
  112.      fi
  113.   fi
  114.   if test "x$no_smpeg" = x ; then
  115.      AC_MSG_RESULT(yes)
  116.      ifelse([$2], , :, [$2])
  117.   else
  118.      AC_MSG_RESULT(no)
  119.      if test "$SMPEG_CONFIG" = "no" ; then
  120.        echo "*** The smpeg-config script installed by SMPEG could not be found"
  121.        echo "*** If SMPEG was installed in PREFIX, make sure PREFIX/bin is in"
  122.        echo "*** your path, or set the SMPEG_CONFIG environment variable to the"
  123.        echo "*** full path to smpeg-config."
  124.      else
  125.        if test -f conf.smpegtest ; then
  126.         :
  127.        else
  128.           echo "*** Could not run SMPEG test program, checking why..."
  129.           CFLAGS="$CFLAGS $SMPEG_CFLAGS $SDL_CFLAGS"
  130.           LIBS="$LIBS $SMPEG_LIBS $SDL_LIBS"
  131.           AC_TRY_LINK([
  132. #include <stdio.h>
  133. #include "smpeg.h"
  134. ],      [ return 0; ],
  135.         [ echo "*** The test program compiled, but did not run. This usually means"
  136.           echo "*** that the run-time linker is not finding SMPEG or finding the wrong"
  137.           echo "*** version of SMPEG. If it is not finding SMPEG, you'll need to set your"
  138.           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
  139.           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
  140.           echo "*** is required on your system"
  141.           echo "***"
  142.           echo "*** If you have an old version installed, it is best to remove it, although"
  143.           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
  144.         [ echo "*** The test program failed to compile or link. See the file config.log for the"
  145.           echo "*** exact error that occured. This usually means SMPEG was incorrectly installed"
  146.           echo "*** or that you have moved SMPEG since it was installed. In the latter case, you"
  147.           echo "*** may want to edit the smpeg-config script: $SMPEG_CONFIG" ])
  148.           CFLAGS="$ac_save_CFLAGS"
  149.           LIBS="$ac_save_LIBS"
  150.        fi
  151.      fi
  152.      SMPEG_CFLAGS=""
  153.      SMPEG_LIBS=""
  154.      ifelse([$3], , :, [$3])
  155.   fi
  156.   AC_SUBST(SMPEG_CFLAGS)
  157.   AC_SUBST(SMPEG_LIBS)
  158.   rm -f conf.smpegtest
  159. ])