📄 acinclude.m4
字号:
dnl *************************************************************************dnl *************************************************************************dnl ACX_PTHREADdnl v1.10 (last modified: 2004-06-16)dnl Steven G. Johnson <stevenj@alum.mit.edu>dnl retrieved from dnl http://www.gnu.org/software/ac-archive/htmldoc/acx_pthread.htmldnl *************************************************************************dnl *************************************************************************AC_DEFUN([ACX_PTHREAD], [AC_REQUIRE([AC_CANONICAL_HOST])AC_LANG_SAVEAC_LANG_Cacx_pthread_ok=no# We used to check for pthread.h first, but this fails if pthread.h# requires special compiler flags (e.g. on True64 or Sequent).# It gets checked for in the link test anyway.# First of all, check if the user has set any of the PTHREAD_LIBS,# etcetera environment variables, and if threads linking works using# them:if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" save_LIBS="$LIBS" LIBS="$PTHREAD_LIBS $LIBS" AC_MSG_CHECKING([for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS]) AC_TRY_LINK_FUNC(pthread_join, acx_pthread_ok=yes) AC_MSG_RESULT($acx_pthread_ok) if test x"$acx_pthread_ok" = xno; then PTHREAD_LIBS="" PTHREAD_CFLAGS="" fi LIBS="$save_LIBS" CFLAGS="$save_CFLAGS"fi# We must check for the threads library under a number of different# names; the ordering is very important because some systems# (e.g. DEC) have both -lpthread and -lpthreads, where one of the# libraries is broken (non-POSIX).# Create a list of thread flags to try. Items starting with a "-" are# C compiler flags, and other items are library names, except for "none"# which indicates that we try without any flags at all, and "pthread-config"# which is a program returning the flags for the Pth emulation library.acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config"# The ordering *is* (sometimes) important. Some notes on the# individual items follow:# pthreads: AIX (must check this before -lpthread)# none: in case threads are in libc; should be tried before -Kthread and# other compiler flags to prevent continual compiler warnings# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h)# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able)# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread)# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads)# -pthreads: Solaris/gcc# -mthreads: Mingw32/gcc, Lynx/gcc# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it# doesn't hurt to check since this sometimes defines pthreads too;# also defines -D_REENTRANT)# pthread: Linux, etcetera# --thread-safe: KAI C++# pthread-config: use pthread-config program (for GNU Pth library)case "${host_cpu}-${host_os}" in *solaris*) # On Solaris (at least, for some versions), libc contains stubbed # (non-functional) versions of the pthreads routines, so link-based # tests will erroneously succeed. (We need to link with -pthread or # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather # a function called by this macro, so we could check for that, but # who knows whether they'll stub that too in a future libc.) So, # we'll just look for -pthreads and -lpthread first: acx_pthread_flags="-pthread -pthreads pthread -mt $acx_pthread_flags" ;;esacif test x"$acx_pthread_ok" = xno; thenfor flag in $acx_pthread_flags; do case $flag in none) AC_MSG_CHECKING([whether pthreads work without any flags]) ;; -*) AC_MSG_CHECKING([whether pthreads work with $flag]) PTHREAD_CFLAGS="$flag" ;; pthread-config) AC_CHECK_PROG(acx_pthread_config, pthread-config, yes, no) if test x"$acx_pthread_config" = xno; then continue; fi PTHREAD_CFLAGS="`pthread-config --cflags`" PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" ;; *) AC_MSG_CHECKING([for the pthreads library -l$flag]) PTHREAD_LIBS="-l$flag" ;; esac save_LIBS="$LIBS" save_CFLAGS="$CFLAGS" LIBS="$PTHREAD_LIBS $LIBS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" # Check for various functions. We must include pthread.h, # since some functions may be macros. (On the Sequent, we # need a special flag -Kthread to make this header compile.) # We check for pthread_join because it is in -lpthread on IRIX # while pthread_create is in libc. We check for pthread_attr_init # due to DEC craziness with -lpthreads. We check for # pthread_cleanup_push because it is one of the few pthread # functions on Solaris that doesn't have a non-functional libc stub. # We try pthread_create on general principles. AC_TRY_LINK([#include <pthread.h>], [pthread_t th; pthread_join(th, 0); pthread_attr_init(0); pthread_cleanup_push(0, 0); pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], [acx_pthread_ok=yes]) LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" AC_MSG_RESULT($acx_pthread_ok) if test "x$acx_pthread_ok" = xyes; then break; fi PTHREAD_LIBS="" PTHREAD_CFLAGS=""donefi# Various other checks:if test "x$acx_pthread_ok" = xyes; then save_LIBS="$LIBS" LIBS="$PTHREAD_LIBS $LIBS" save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" # Detect AIX lossage: threads are created detached by default # and the JOINABLE attribute has a nonstandard name (UNDETACHED). AC_MSG_CHECKING([for joinable pthread attribute]) AC_TRY_LINK([#include <pthread.h>], [int attr=PTHREAD_CREATE_JOINABLE;], ok=PTHREAD_CREATE_JOINABLE, ok=unknown) if test x"$ok" = xunknown; then AC_TRY_LINK([#include <pthread.h>], [int attr=PTHREAD_CREATE_UNDETACHED;], ok=PTHREAD_CREATE_UNDETACHED, ok=unknown) fi if test x"$ok" != xPTHREAD_CREATE_JOINABLE; then AC_DEFINE(PTHREAD_CREATE_JOINABLE, $ok, [Define to the necessary symbol if this constant uses a non-standard name on your system.]) fi AC_MSG_RESULT(${ok}) if test x"$ok" = xunknown; then AC_MSG_WARN([we do not know how to create joinable pthreads]) fi AC_MSG_CHECKING([if more special flags are required for pthreads]) flag=no case "${host_cpu}-${host_os}" in *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; esac AC_MSG_RESULT(${flag}) if test "x$flag" != xno; then PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" fi LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" # More AIX lossage: must compile with cc_r AC_CHECK_PROG(PTHREAD_CC, cc_r, cc_r, ${CC})else PTHREAD_CC="$CC"fiAC_SUBST(PTHREAD_LIBS)AC_SUBST(PTHREAD_CFLAGS)AC_SUBST(PTHREAD_CC)# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND:if test x"$acx_pthread_ok" = xyes; then ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads libraries and header files.]),[$1]) :else acx_pthread_ok=no $2fiAC_LANG_RESTORE])dnl ACX_PTHREADdnl *************************************************************************dnl *************************************************************************dnl AC_PATH_LIBdnl 1.3 (last modified: 2003-11-04)dnl Roger Leigh <roger@whinlatter.uklinux.net>dnl retrieved from dnl http://www.gnu.org/software/ac-archive/htmldoc/ac_path_lib.htmldnl *************************************************************************dnl *************************************************************************## Table of Contents:## 1. The main macro## 2. Core macros## 3. Integrity checks## 4. Error reporting## 5. Feature macros## ------------------ #### 1. The main macro. #### ------------------ ### AC_PATH_LIB(LIBRARY, MINIMUM-VERSION, HEADER, CONFIG-SCRIPT,# MODULES, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)# -----------------------------------------------------------# Check for the presence of libLIBRARY, with a minumum version# MINIMUM-VERSION.## If needed, use the libconfig script CONFIG-SCRIPT. If the script# needs extra modules specifying, pass them as MODULES.## Run ACTION-IF-FOUND if the library is present and all tests pass, or# ACTION-IF-NOT-FOUND if it is not present or any tests fail.AC_DEFUN([AC_PATH_LIB],[# check for presence of lib$1dnl We're going to need uppercase, lowercase and user-friendlydnl versions of the string `LIBRARY', and long and cache variants.m4_pushdef([UP], m4_translit([$1], [a-z], [A-Z]))dnlm4_pushdef([DOWN], m4_translit([$1], [A-Z], [a-z]))dnlm4_pushdef([LDOWN], ac_path_lib_[]DOWN)dnlm4_pushdef([CACHE], ac_cv_path_lib_[]DOWN)dnlm4_pushdef([ERRORLOG], error.[]DOWN[]test)dnl_AC_PATH_LIB_INIT([$1], [$3], [$4])_AC_PATH_LIB_CHECK([$1], [$2], [$5])_AC_PATH_LIB_CHECK_TESTS([$2])_AC_PATH_LIB_ERROR_DUMP_AC_PATH_LIB_FINI([$6], [$7])dnl Pop the macros we defined earlier.m4_popdef([UP])dnlm4_popdef([DOWN])dnlm4_popdef([LDOWN])dnlm4_popdef([CACHE])dnlm4_popdef([ERRORLOG])dnl])# AC_PATH_LIB## --------------- #### 2. Core macros. #### --------------- ### _AC_PATH_LIB_INIT(LIBRARY, HEADER, CONFIG-SCRIPT)# -----------------------------------------# Initialisation of defaults and options.# Remove error log from previous runs.AC_DEFUN([_AC_PATH_LIB_INIT],[_AC_PATH_LIB_DEFAULTS([$1], [$2], [$3])_AC_PATH_LIB_OPTIONSrm -f ERRORLOG# Save variables in case check fails.ac_save_[]UP[]_CFLAGS="$UP[]_CFLAGS"ac_save_[]UP[]_LIBS="$UP[]_LIBS"ac_save_[]UP[]_VERSION="$UP[]_VERSION"])# _AC_PATH_LIB_DEFAULTS(LIBRARY, HEADER, CONFIG-SCRIPT)# -----------------------------------------------------# Set up default behaviour.AC_DEFUN([_AC_PATH_LIB_DEFAULTS],[dnl Set up pkgconfig as default config script.m4_ifdef([AC_PATH_LIB_USEPKGCONFIG],, [AC_PATH_LIB_PKGCONFIG])dnl Set default header and config script names.LDOWN[]_header="m4_default([$2], [$1/$1.h])"LDOWN[]_config="m4_default([$3], [$1-config])"ifdef([_AC_PATH_LIB_VERSION_PREFIX],, [m4_define([_AC_PATH_LIB_VERSION_PREFIX], DOWN[_]) ])ifdef([_AC_PATH_LIB_VERSION_MAJOR],, [m4_define([_AC_PATH_LIB_VERSION_MAJOR], [major]) ])ifdef([_AC_PATH_LIB_VERSION_MINOR],, [m4_define([_AC_PATH_LIB_VERSION_MINOR], [minor]) ])ifdef([_AC_PATH_LIB_VERSION_MICRO],, [m4_define([_AC_PATH_LIB_VERSION_MICRO], [micro]) ])ifdef([_AC_PATH_LIB_VERSION_SUFFIX],, [m4_define([_AC_PATH_LIB_VERSION_SUFFIX], [_version]) ])ifdef([_AC_PATH_LIB_DEFVERSION_PREFIX],, [m4_define([_AC_PATH_LIB_DEFVERSION_PREFIX], UP[_]) ])ifdef([_AC_PATH_LIB_DEFVERSION_MAJOR],, [m4_define([_AC_PATH_LIB_DEFVERSION_MAJOR], [MAJOR]) ])ifdef([_AC_PATH_LIB_DEFVERSION_MINOR],, [m4_define([_AC_PATH_LIB_DEFVERSION_MINOR], [MINOR]) ])ifdef([_AC_PATH_LIB_DEFVERSION_MICRO],,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -