sdl.m4
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

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