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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. dnl aclocal.m4 generated automatically by aclocal 1.4
  2. dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. dnl This program is distributed in the hope that it will be useful,
  7. dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  8. dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  9. dnl PARTICULAR PURPOSE.
  10. # Configure paths for SDL
  11. # Sam Lantinga 9/21/99
  12. # stolen from Manish Singh
  13. # stolen back from Frank Belew
  14. # stolen from Manish Singh
  15. # Shamelessly stolen from Owen Taylor
  16. dnl AM_PATH_SDL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
  17. dnl Test for SDL, and define SDL_CFLAGS and SDL_LIBS
  18. dnl
  19. AC_DEFUN(AM_PATH_SDL,
  20. [dnl 
  21. dnl Get the cflags and libraries from the sdl-config script
  22. dnl
  23. AC_ARG_WITH(sdl-prefix,[  --with-sdl-prefix=PFX   Prefix where SDL is installed (optional)],
  24.             sdl_prefix="$withval", sdl_prefix="")
  25. AC_ARG_WITH(sdl-exec-prefix,[  --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional)],
  26.             sdl_exec_prefix="$withval", sdl_exec_prefix="")
  27. AC_ARG_ENABLE(sdltest, [  --disable-sdltest       Do not try to compile and run a test SDL program],
  28.     , enable_sdltest=yes)
  29.   if test x$sdl_exec_prefix != x ; then
  30.      sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix"
  31.      if test x${SDL_CONFIG+set} != xset ; then
  32.         SDL_CONFIG=$sdl_exec_prefix/bin/sdl-config
  33.      fi
  34.   fi
  35.   if test x$sdl_prefix != x ; then
  36.      sdl_args="$sdl_args --prefix=$sdl_prefix"
  37.      if test x${SDL_CONFIG+set} != xset ; then
  38.         SDL_CONFIG=$sdl_prefix/bin/sdl-config
  39.      fi
  40.   fi
  41.   AC_REQUIRE([AC_CANONICAL_TARGET])
  42.   AC_PATH_PROG(SDL_CONFIG, sdl-config, no)
  43.   min_sdl_version=ifelse([$1], ,0.11.0,$1)
  44.   AC_MSG_CHECKING(for SDL - version >= $min_sdl_version)
  45.   no_sdl=""
  46.   if test "$SDL_CONFIG" = "no" ; then
  47.     no_sdl=yes
  48.   else
  49.     SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags`
  50.     SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs`
  51.     sdl_major_version=`$SDL_CONFIG $sdl_args --version | 
  52.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/1/'`
  53.     sdl_minor_version=`$SDL_CONFIG $sdl_args --version | 
  54.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/2/'`
  55.     sdl_micro_version=`$SDL_CONFIG $sdl_config_args --version | 
  56.            sed 's/([[0-9]]*).([[0-9]]*).([[0-9]]*)/3/'`
  57.     if test "x$enable_sdltest" = "xyes" ; then
  58.       ac_save_CFLAGS="$CFLAGS"
  59.       ac_save_LIBS="$LIBS"
  60.       CFLAGS="$CFLAGS $SDL_CFLAGS"
  61.       LIBS="$LIBS $SDL_LIBS"
  62. dnl
  63. dnl Now check if the installed SDL is sufficiently new. (Also sanity
  64. dnl checks the results of sdl-config to some extent
  65. dnl
  66.       rm -f conf.sdltest
  67.       AC_TRY_RUN([
  68. #include <stdio.h>
  69. #include <stdlib.h>
  70. #include <string.h>
  71. #include "SDL.h"
  72. char*
  73. my_strdup (char *str)
  74. {
  75.   char *new_str;
  76.   
  77.   if (str)
  78.     {
  79.       new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char));
  80.       strcpy (new_str, str);
  81.     }
  82.   else
  83.     new_str = NULL;
  84.   
  85.   return new_str;
  86. }
  87. int main (int argc, char *argv[])
  88. {
  89.   int major, minor, micro;
  90.   char *tmp_version;
  91.   /* This hangs on some systems (?)
  92.   system ("touch conf.sdltest");
  93.   */
  94.   { FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); }
  95.   /* HP/UX 9 (%@#!) writes to sscanf strings */
  96.   tmp_version = my_strdup("$min_sdl_version");
  97.   if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
  98.      printf("%s, bad version stringn", "$min_sdl_version");
  99.      exit(1);
  100.    }
  101.    if (($sdl_major_version > major) ||
  102.       (($sdl_major_version == major) && ($sdl_minor_version > minor)) ||
  103.       (($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro)))
  104.     {
  105.       return 0;
  106.     }
  107.   else
  108.     {
  109.       printf("n*** 'sdl-config --version' returned %d.%d.%d, but the minimum versionn", $sdl_major_version, $sdl_minor_version, $sdl_micro_version);
  110.       printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it isn", major, minor, micro);
  111.       printf("*** best to upgrade to the required version.n");
  112.       printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIGn");
  113.       printf("*** to point to the correct copy of sdl-config, and remove the filen");
  114.       printf("*** config.cache before re-running configuren");
  115.       return 1;
  116.     }
  117. }
  118. ],, no_sdl=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"])
  119.        CFLAGS="$ac_save_CFLAGS"
  120.        LIBS="$ac_save_LIBS"
  121.      fi
  122.   fi
  123.   if test "x$no_sdl" = x ; then
  124.      AC_MSG_RESULT(yes)
  125.      ifelse([$2], , :, [$2])     
  126.   else
  127.      AC_MSG_RESULT(no)
  128.      if test "$SDL_CONFIG" = "no" ; then
  129.        echo "*** The sdl-config script installed by SDL could not be found"
  130.        echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in"
  131.        echo "*** your path, or set the SDL_CONFIG environment variable to the"
  132.        echo "*** full path to sdl-config."
  133.      else
  134.        if test -f conf.sdltest ; then
  135.         :
  136.        else
  137.           echo "*** Could not run SDL test program, checking why..."
  138.           CFLAGS="$CFLAGS $SDL_CFLAGS"
  139.           LIBS="$LIBS $SDL_LIBS"
  140.           AC_TRY_LINK([
  141. #include <stdio.h>
  142. #include "SDL.h"
  143. int main(int argc, char *argv[])
  144. { return 0; }
  145. #undef  main
  146. #define main K_and_R_C_main
  147. ],      [ return 0; ],
  148.         [ echo "*** The test program compiled, but did not run. This usually means"
  149.           echo "*** that the run-time linker is not finding SDL or finding the wrong"
  150.           echo "*** version of SDL. If it is not finding SDL, you'll need to set your"
  151.           echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point"
  152.           echo "*** to the installed location  Also, make sure you have run ldconfig if that"
  153.           echo "*** is required on your system"
  154.   echo "***"
  155.           echo "*** If you have an old version installed, it is best to remove it, although"
  156.           echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"],
  157.         [ echo "*** The test program failed to compile or link. See the file config.log for the"
  158.           echo "*** exact error that occured. This usually means SDL was incorrectly installed"
  159.           echo "*** or that you have moved SDL since it was installed. In the latter case, you"
  160.           echo "*** may want to edit the sdl-config script: $SDL_CONFIG" ])
  161.           CFLAGS="$ac_save_CFLAGS"
  162.           LIBS="$ac_save_LIBS"
  163.        fi
  164.      fi
  165.      SDL_CFLAGS=""
  166.      SDL_LIBS=""
  167.      ifelse([$3], , :, [$3])
  168.   fi
  169.   AC_SUBST(SDL_CFLAGS)
  170.   AC_SUBST(SDL_LIBS)
  171.   rm -f conf.sdltest
  172. ])
  173. # Do all the work for Automake.  This macro actually does too much --
  174. # some checks are only needed if your package does certain things.
  175. # But this isn't really a big deal.
  176. # serial 1
  177. dnl Usage:
  178. dnl AM_INIT_AUTOMAKE(package,version, [no-define])
  179. AC_DEFUN(AM_INIT_AUTOMAKE,
  180. [AC_REQUIRE([AC_PROG_INSTALL])
  181. PACKAGE=[$1]
  182. AC_SUBST(PACKAGE)
  183. VERSION=[$2]
  184. AC_SUBST(VERSION)
  185. dnl test to see if srcdir already configured
  186. if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
  187.   AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  188. fi
  189. ifelse([$3],,
  190. AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
  191. AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
  192. AC_REQUIRE([AM_SANITY_CHECK])
  193. AC_REQUIRE([AC_ARG_PROGRAM])
  194. dnl FIXME This is truly gross.
  195. missing_dir=`cd $ac_aux_dir && pwd`
  196. AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
  197. AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
  198. AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
  199. AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
  200. AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
  201. AC_REQUIRE([AC_PROG_MAKE_SET])])
  202. #
  203. # Check to make sure that the build environment is sane.
  204. #
  205. AC_DEFUN(AM_SANITY_CHECK,
  206. [AC_MSG_CHECKING([whether build environment is sane])
  207. # Just in case
  208. sleep 1
  209. echo timestamp > conftestfile
  210. # Do `set' in a subshell so we don't clobber the current shell's
  211. # arguments.  Must try -L first in case configure is actually a
  212. # symlink; some systems play weird games with the mod time of symlinks
  213. # (eg FreeBSD returns the mod time of the symlink's containing
  214. # directory).
  215. if (
  216.    set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
  217.    if test "[$]*" = "X"; then
  218.       # -L didn't work.
  219.       set X `ls -t $srcdir/configure conftestfile`
  220.    fi
  221.    if test "[$]*" != "X $srcdir/configure conftestfile" 
  222.       && test "[$]*" != "X conftestfile $srcdir/configure"; then
  223.       # If neither matched, then we have a broken ls.  This can happen
  224.       # if, for instance, CONFIG_SHELL is bash and it inherits a
  225.       # broken ls alias from the environment.  This has actually
  226.       # happened.  Such a system could not be considered "sane".
  227.       AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
  228. alias in your environment])
  229.    fi
  230.    test "[$]2" = conftestfile
  231.    )
  232. then
  233.    # Ok.
  234.    :
  235. else
  236.    AC_MSG_ERROR([newly created file is older than distributed files!
  237. Check your system clock])
  238. fi
  239. rm -f conftest*
  240. AC_MSG_RESULT(yes)])
  241. dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
  242. dnl The program must properly implement --version.
  243. AC_DEFUN(AM_MISSING_PROG,
  244. [AC_MSG_CHECKING(for working $2)
  245. # Run test in a subshell; some versions of sh will print an error if
  246. # an executable is not found, even if stderr is redirected.
  247. # Redirect stdin to placate older versions of autoconf.  Sigh.
  248. if ($2 --version) < /dev/null > /dev/null 2>&1; then
  249.    $1=$2
  250.    AC_MSG_RESULT(found)
  251. else
  252.    $1="$3/missing $2"
  253.    AC_MSG_RESULT(missing)
  254. fi
  255. AC_SUBST($1)])