aclocal.m4
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

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. # Add --enable-maintainer-mode option to configure.
  11. # From Jim Meyering
  12. # serial 1
  13. AC_DEFUN(AM_MAINTAINER_MODE,
  14. [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
  15.   dnl maintainer-mode is disabled by default
  16.   AC_ARG_ENABLE(maintainer-mode,
  17. [  --enable-maintainer-mode enable make rules and dependencies not useful
  18.                           (and sometimes confusing) to the casual installer],
  19.       USE_MAINTAINER_MODE=$enableval,
  20.       USE_MAINTAINER_MODE=no)
  21.   AC_MSG_RESULT($USE_MAINTAINER_MODE)
  22.   AM_CONDITIONAL(MAINTAINER_MODE, test $USE_MAINTAINER_MODE = yes)
  23.   MAINT=$MAINTAINER_MODE_TRUE
  24.   AC_SUBST(MAINT)dnl
  25. ]
  26. )
  27. # Define a conditional.
  28. AC_DEFUN(AM_CONDITIONAL,
  29. [AC_SUBST($1_TRUE)
  30. AC_SUBST($1_FALSE)
  31. if $2; then
  32.   $1_TRUE=
  33.   $1_FALSE='#'
  34. else
  35.   $1_TRUE='#'
  36.   $1_FALSE=
  37. fi])
  38. # Like AC_CONFIG_HEADER, but automatically create stamp file.
  39. AC_DEFUN(AM_CONFIG_HEADER,
  40. [AC_PREREQ([2.12])
  41. AC_CONFIG_HEADER([$1])
  42. dnl When config.status generates a header, we must update the stamp-h file.
  43. dnl This file resides in the same directory as the config header
  44. dnl that is generated.  We must strip everything past the first ":",
  45. dnl and everything past the last "/".
  46. AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl
  47. ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>,
  48. <<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^([^:]*/)?.*>>, <<1>>)stamp-h<<>>dnl>>,
  49. <<am_indx=1
  50. for am_file in <<$1>>; do
  51.   case " <<$>>CONFIG_HEADERS " in
  52.   *" <<$>>am_file "*<<)>>
  53.     echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx
  54.     ;;
  55.   esac
  56.   am_indx=`expr "<<$>>am_indx" + 1`
  57. done<<>>dnl>>)
  58. changequote([,]))])
  59. # Do all the work for Automake.  This macro actually does too much --
  60. # some checks are only needed if your package does certain things.
  61. # But this isn't really a big deal.
  62. # serial 1
  63. dnl Usage:
  64. dnl AM_INIT_AUTOMAKE(package,version, [no-define])
  65. AC_DEFUN(AM_INIT_AUTOMAKE,
  66. [AC_REQUIRE([AC_PROG_INSTALL])
  67. PACKAGE=[$1]
  68. AC_SUBST(PACKAGE)
  69. VERSION=[$2]
  70. AC_SUBST(VERSION)
  71. dnl test to see if srcdir already configured
  72. if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
  73.   AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  74. fi
  75. ifelse([$3],,
  76. AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
  77. AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
  78. AC_REQUIRE([AM_SANITY_CHECK])
  79. AC_REQUIRE([AC_ARG_PROGRAM])
  80. dnl FIXME This is truly gross.
  81. missing_dir=`cd $ac_aux_dir && pwd`
  82. AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
  83. AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
  84. AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
  85. AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
  86. AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
  87. AC_REQUIRE([AC_PROG_MAKE_SET])])
  88. #
  89. # Check to make sure that the build environment is sane.
  90. #
  91. AC_DEFUN(AM_SANITY_CHECK,
  92. [AC_MSG_CHECKING([whether build environment is sane])
  93. # Just in case
  94. sleep 1
  95. echo timestamp > conftestfile
  96. # Do `set' in a subshell so we don't clobber the current shell's
  97. # arguments.  Must try -L first in case configure is actually a
  98. # symlink; some systems play weird games with the mod time of symlinks
  99. # (eg FreeBSD returns the mod time of the symlink's containing
  100. # directory).
  101. if (
  102.    set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
  103.    if test "[$]*" = "X"; then
  104.       # -L didn't work.
  105.       set X `ls -t $srcdir/configure conftestfile`
  106.    fi
  107.    if test "[$]*" != "X $srcdir/configure conftestfile" 
  108.       && test "[$]*" != "X conftestfile $srcdir/configure"; then
  109.       # If neither matched, then we have a broken ls.  This can happen
  110.       # if, for instance, CONFIG_SHELL is bash and it inherits a
  111.       # broken ls alias from the environment.  This has actually
  112.       # happened.  Such a system could not be considered "sane".
  113.       AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
  114. alias in your environment])
  115.    fi
  116.    test "[$]2" = conftestfile
  117.    )
  118. then
  119.    # Ok.
  120.    :
  121. else
  122.    AC_MSG_ERROR([newly created file is older than distributed files!
  123. Check your system clock])
  124. fi
  125. rm -f conftest*
  126. AC_MSG_RESULT(yes)])
  127. dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
  128. dnl The program must properly implement --version.
  129. AC_DEFUN(AM_MISSING_PROG,
  130. [AC_MSG_CHECKING(for working $2)
  131. # Run test in a subshell; some versions of sh will print an error if
  132. # an executable is not found, even if stderr is redirected.
  133. # Redirect stdin to placate older versions of autoconf.  Sigh.
  134. if ($2 --version) < /dev/null > /dev/null 2>&1; then
  135.    $1=$2
  136.    AC_MSG_RESULT(found)
  137. else
  138.    $1="$3/missing $2"
  139.    AC_MSG_RESULT(missing)
  140. fi
  141. AC_SUBST($1)])