/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
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <title>tsrm.m4</title>
- <style type="text/css">
- .enscript-comment { font-style: italic; color: rgb(178,34,34); }
- .enscript-function-name { font-weight: bold; color: rgb(0,0,255); }
- .enscript-variable-name { font-weight: bold; color: rgb(184,134,11); }
- .enscript-keyword { font-weight: bold; color: rgb(160,32,240); }
- .enscript-reference { font-weight: bold; color: rgb(95,158,160); }
- .enscript-string { font-weight: bold; color: rgb(188,143,143); }
- .enscript-builtin { font-weight: bold; color: rgb(218,112,214); }
- .enscript-type { font-weight: bold; color: rgb(34,139,34); }
- .enscript-highlight { text-decoration: underline; color: 0; }
- </style>
- </head>
- <body id="top">
- <h1 style="margin:8px;" id="f1">tsrm.m4 <span style="font-weight: normal; font-size: 0.5em;">[<a href="?txt">plain text</a>]</span></h1>
- <hr/>
- <div></div>
- <pre>
- <span class="enscript-string">
- dnl TSRM_CHECK_GCC_ARG(ARG, ACTION-IF-FOUND, ACTION-IF-NOT_FOUND)
- AC_DEFUN(TSRM_CHECK_GCC_ARG,[
- gcc_arg_name=[ac_cv_gcc_arg]translit($1,A-Z-,a-z_)
- AC_CACHE_CHECK([whether $CC supports $1], [ac_cv_gcc_arg]translit($1,A-Z-,a-z_), [
- echo '</span>void somefunc() { };' > conftest.c
- cmd='$CC $1 -c conftest.c'
- if <span class="enscript-keyword">eval</span> $cmd 2>&1 | egrep -e $1 >/dev/null ; then
- ac_result=no
- else
- ac_result=yes
- fi
- <span class="enscript-keyword">eval</span> $gcc_arg_name=$ac_result
- rm -f conftest.*
- ])
- if <span class="enscript-keyword">eval</span> test "\$$gcc_arg_name" = "yes"; then
- $2
- else
- :
- $3
- fi
- ])
- AC_DEFUN(TSRM_BASIC_CHECKS,[
- AC_REQUIRE([AC_PROG_CC])<span class="enscript-comment">dnl
- </span><span class="enscript-comment">dnl AC_REQUIRE([AM_PROG_CC_STDC])dnl
- </span>AC_REQUIRE([AC_PROG_CC_C_O])<span class="enscript-comment">dnl
- </span>AC_REQUIRE([AC_PROG_RANLIB])<span class="enscript-comment">dnl
- </span>
- AC_CHECK_HEADERS(stdarg.h)
- ])
- AC_DEFUN(TSRM_CHECK_PTH,[
- AC_MSG_CHECKING(for GNU Pth)
- PTH_PREFIX="`$1 --prefix`"
- if test -z "$PTH_PREFIX"; then
- AC_MSG_RESULT(Please check your Pth installation)
- fi
- CPPFLAGS="$CPPFLAGS `$1 --cflags`"
- LDFLAGS="$LDFLAGS `$1 --ldflags`"
- LIBS="$LIBS `$1 --libs`"
- AC_DEFINE(GNUPTH, 1, [Whether you use GNU Pth])
- AC_MSG_RESULT(yes - installed in $PTH_PREFIX)
- ])
- <span class="enscript-keyword">sinclude</span>(threads.m4)
- <span class="enscript-keyword">sinclude</span>(TSRM/threads.m4)
- AC_DEFUN(TSRM_CHECK_PTHREADS,[
-
- PTHREADS_CHECK
-
- if test "$pthreads_working" != "yes"; then
- AC_MSG_ERROR(Your system seems to lack POSIX threads.)
- fi
-
- AC_DEFINE(PTHREADS, 1, Whether to use Pthreads)
- AC_MSG_CHECKING(for POSIX threads)
- AC_MSG_RESULT(yes)
- ])
- AC_DEFUN(TSRM_THREADS_CHECKS,[
- <span class="enscript-comment">dnl For the thread implementations, we always use --with-*
- </span><span class="enscript-comment">dnl to maintain consistency
- </span>
- AC_ARG_WITH(tsrm-pth,
- [ --with-tsrm-pth[=pth-config] Use GNU Pth.],[
- TSRM_PTH=$withval
- ],[
- TSRM_PTH=no
- ])
- AC_ARG_WITH(tsrm-pthreads,
- [ --with-tsrm-pthreads Use POSIX threads (default)],[
- TSRM_PTHREADS=$withval
- ],[
- TSRM_PTHREADS=yes
- ])
- test "$TSRM_PTH" = "yes" && TSRM_PTH=pth-config
- if test "$TSRM_PTH" != "no"; then
- TSRM_CHECK_PTH($TSRM_PTH)
- elif test "$TSRM_PTHREADS" != "no"; then
- TSRM_CHECK_PTHREADS
- fi
- ])
- </pre>
- <hr />
- </body></html>