autoheader.m4
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:3k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. dnl Driver and redefinitions of some Autoconf macros for autoheader.
  2. dnl This file is part of Autoconf.
  3. dnl Copyright (C) 1994, 1995 Free Software Foundation, Inc.
  4. dnl
  5. dnl This program is free software; you can redistribute it and/or modify
  6. dnl it under the terms of the GNU General Public License as published by
  7. dnl the Free Software Foundation; either version 2, or (at your option)
  8. dnl any later version.
  9. dnl
  10. dnl This program is distributed in the hope that it will be useful,
  11. dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. dnl GNU General Public License for more details.
  14. dnl
  15. dnl You should have received a copy of the GNU General Public License
  16. dnl along with this program; if not, write to the Free Software
  17. dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  18. dnl 02111-1307, USA.
  19. dnl
  20. dnl Written by Roland McGrath.
  21. dnl
  22. include(acgeneral.m4)dnl
  23. builtin(include, acspecific.m4)dnl
  24. builtin(include, acoldnames.m4)dnl
  25. dnl These are alternate definitions of some macros, which produce
  26. dnl strings in the output marked with "@@@" so we can easily extract
  27. dnl the information we want.  The `#' at the end of the first line of
  28. dnl each definition seems to be necessary to prevent m4 from eating
  29. dnl the newline, which makes the @@@ not always be at the beginning of
  30. dnl a line.
  31. define([AC_CHECK_FUNCS], [#
  32. @@@funcs="$funcs $1"@@@
  33. ifelse([$2], , , [
  34. # If it was found, we do:
  35. $2
  36. # If it was not found, we do:
  37. $3
  38. ])
  39. ])
  40. define([AC_CHECK_HEADERS], [#
  41. @@@headers="$headers $1"@@@
  42. ifelse([$2], , , [
  43. # If it was found, we do:
  44. $2
  45. # If it was not found, we do:
  46. $3
  47. ])
  48. ])
  49. define([AC_CHECK_HEADERS_DIRENT], [#
  50. @@@headers="$headers $1"@@@
  51. ])
  52. define([AC_CHECK_LIB], [#
  53.   ifelse([$3], , [
  54. @@@libs="$libs $1"@@@
  55. ], [
  56. # If it was found, we do:
  57. $3
  58. # If it was not found, we do:
  59. $4
  60. ])
  61. ])
  62. define([AC_HAVE_LIBRARY], [#
  63. changequote(<<, >>)dnl
  64. define(<<AC_LIB_NAME>>, dnl
  65. patsubst(patsubst($1, <<lib([^.]*).a>>, <<1>>), <<-l>>, <<>>))dnl
  66. changequote([, ])dnl
  67.   ifelse([$2], , [
  68. @@@libs="$libs AC_LIB_NAME"@@@
  69. ], [
  70. # If it was found, we do:
  71. $2
  72. # If it was not found, we do:
  73. $3
  74. ])
  75. ])
  76. define([AC_CHECK_SIZEOF], [#
  77. @@@types="$types,$1"@@@
  78. ])
  79. define([AC_CONFIG_HEADER], [#
  80. define([AC_CONFIG_H], patsubst($1, [ .*$], []))dnl
  81. @@@config_h=AC_CONFIG_H@@@
  82. ])
  83. define([AC_DEFINE], [#
  84. ifelse([$3],,[#
  85. @@@syms="$syms $1"@@@
  86. ], [#
  87. @@@verbatim="$verbatim
  88. /* $3 */
  89. #undef $1
  90. "@@@
  91. ])])
  92. define([AC_DEFINE_UNQUOTED], [#
  93. ifelse([$3],,[#
  94. @@@syms="$syms $1"@@@
  95. ], [#
  96. @@@verbatim="$verbatim
  97. /* $3 */
  98. #undef $1
  99. "@@@
  100. ])])