aclocal.m4
上传用户:s81996212
上传日期:2007-01-04
资源大小:722k
文件大小:4k
源码类别:

WEB邮件程序

开发平台:

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