forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sascha Schumann
committed
Dec 17, 1999
1 parent
7fe808e
commit 91549cf
Showing
6 changed files
with
253 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
AC_DEFUN(TSRM_BASIC_CHECKS,[ | ||
AC_REQUIRE([AC_PROG_CC])dnl | ||
dnl AC_REQUIRE([AM_PROG_CC_STDC])dnl | ||
AC_REQUIRE([AC_PROG_CC_C_O])dnl | ||
AC_REQUIRE([AC_PROG_RANLIB])dnl | ||
AC_CHECK_HEADERS(stdarg.h) | ||
]) | ||
|
||
AC_DEFUN(TSRM_PTHREAD,[ | ||
AC_CHECK_LIB(c_r, pthread_kill) | ||
AC_CHECK_LIB(pthread, pthread_kill) | ||
AC_CHECK_FUNCS(pthread_kill) | ||
if test "$ac_cv_func_pthread_kill" != "yes"; then | ||
AC_MSG_ERROR(You need pthreads to build TSRM.) | ||
fi | ||
AC_DEFINE(PTHREADS, [], Whether to use Pthreads) | ||
]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.