/opensource.apple.com/source/apache_mod_php/apache_mod_php-4.3/php/TSRM/tsrm.m4

# · m4 · 123 lines · 101 code · 22 blank · 0 comment · 0 complexity · cb5c951068cec5e30e2d6f4a5bd819c9 MD5 · raw file

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5. <title>tsrm.m4</title>
  6. <style type="text/css">
  7. .enscript-comment { font-style: italic; color: rgb(178,34,34); }
  8. .enscript-function-name { font-weight: bold; color: rgb(0,0,255); }
  9. .enscript-variable-name { font-weight: bold; color: rgb(184,134,11); }
  10. .enscript-keyword { font-weight: bold; color: rgb(160,32,240); }
  11. .enscript-reference { font-weight: bold; color: rgb(95,158,160); }
  12. .enscript-string { font-weight: bold; color: rgb(188,143,143); }
  13. .enscript-builtin { font-weight: bold; color: rgb(218,112,214); }
  14. .enscript-type { font-weight: bold; color: rgb(34,139,34); }
  15. .enscript-highlight { text-decoration: underline; color: 0; }
  16. </style>
  17. </head>
  18. <body id="top">
  19. <h1 style="margin:8px;" id="f1">tsrm.m4&nbsp;&nbsp;&nbsp;<span style="font-weight: normal; font-size: 0.5em;">[<a href="?txt">plain text</a>]</span></h1>
  20. <hr/>
  21. <div></div>
  22. <pre>
  23. <span class="enscript-string">
  24. dnl TSRM_CHECK_GCC_ARG(ARG, ACTION-IF-FOUND, ACTION-IF-NOT_FOUND)
  25. AC_DEFUN(TSRM_CHECK_GCC_ARG,[
  26. gcc_arg_name=[ac_cv_gcc_arg]translit($1,A-Z-,a-z_)
  27. AC_CACHE_CHECK([whether $CC supports $1], [ac_cv_gcc_arg]translit($1,A-Z-,a-z_), [
  28. echo '</span>void somefunc() { };' &gt; conftest.c
  29. cmd='$CC $1 -c conftest.c'
  30. if <span class="enscript-keyword">eval</span> $cmd 2&gt;&amp;1 | egrep -e $1 &gt;/dev/null ; then
  31. ac_result=no
  32. else
  33. ac_result=yes
  34. fi
  35. <span class="enscript-keyword">eval</span> $gcc_arg_name=$ac_result
  36. rm -f conftest.*
  37. ])
  38. if <span class="enscript-keyword">eval</span> test &quot;\$$gcc_arg_name&quot; = &quot;yes&quot;; then
  39. $2
  40. else
  41. :
  42. $3
  43. fi
  44. ])
  45. AC_DEFUN(TSRM_BASIC_CHECKS,[
  46. AC_REQUIRE([AC_PROG_CC])<span class="enscript-comment">dnl
  47. </span><span class="enscript-comment">dnl AC_REQUIRE([AM_PROG_CC_STDC])dnl
  48. </span>AC_REQUIRE([AC_PROG_CC_C_O])<span class="enscript-comment">dnl
  49. </span>AC_REQUIRE([AC_PROG_RANLIB])<span class="enscript-comment">dnl
  50. </span>
  51. AC_CHECK_HEADERS(stdarg.h)
  52. ])
  53. AC_DEFUN(TSRM_CHECK_PTH,[
  54. AC_MSG_CHECKING(for GNU Pth)
  55. PTH_PREFIX=&quot;`$1 --prefix`&quot;
  56. if test -z &quot;$PTH_PREFIX&quot;; then
  57. AC_MSG_RESULT(Please check your Pth installation)
  58. fi
  59. CPPFLAGS=&quot;$CPPFLAGS `$1 --cflags`&quot;
  60. LDFLAGS=&quot;$LDFLAGS `$1 --ldflags`&quot;
  61. LIBS=&quot;$LIBS `$1 --libs`&quot;
  62. AC_DEFINE(GNUPTH, 1, [Whether you use GNU Pth])
  63. AC_MSG_RESULT(yes - installed in $PTH_PREFIX)
  64. ])
  65. <span class="enscript-keyword">sinclude</span>(threads.m4)
  66. <span class="enscript-keyword">sinclude</span>(TSRM/threads.m4)
  67. AC_DEFUN(TSRM_CHECK_PTHREADS,[
  68. PTHREADS_CHECK
  69. if test &quot;$pthreads_working&quot; != &quot;yes&quot;; then
  70. AC_MSG_ERROR(Your system seems to lack POSIX threads.)
  71. fi
  72. AC_DEFINE(PTHREADS, 1, Whether to use Pthreads)
  73. AC_MSG_CHECKING(for POSIX threads)
  74. AC_MSG_RESULT(yes)
  75. ])
  76. AC_DEFUN(TSRM_THREADS_CHECKS,[
  77. <span class="enscript-comment">dnl For the thread implementations, we always use --with-*
  78. </span><span class="enscript-comment">dnl to maintain consistency
  79. </span>
  80. AC_ARG_WITH(tsrm-pth,
  81. [ --with-tsrm-pth[=pth-config] Use GNU Pth.],[
  82. TSRM_PTH=$withval
  83. ],[
  84. TSRM_PTH=no
  85. ])
  86. AC_ARG_WITH(tsrm-pthreads,
  87. [ --with-tsrm-pthreads Use POSIX threads (default)],[
  88. TSRM_PTHREADS=$withval
  89. ],[
  90. TSRM_PTHREADS=yes
  91. ])
  92. test &quot;$TSRM_PTH&quot; = &quot;yes&quot; &amp;&amp; TSRM_PTH=pth-config
  93. if test &quot;$TSRM_PTH&quot; != &quot;no&quot;; then
  94. TSRM_CHECK_PTH($TSRM_PTH)
  95. elif test &quot;$TSRM_PTHREADS&quot; != &quot;no&quot;; then
  96. TSRM_CHECK_PTHREADS
  97. fi
  98. ])
  99. </pre>
  100. <hr />
  101. </body></html>