1 # from http://autoconf-archive.cryp.to/ax_tls.html
3 # This was licensed under the GPL with the following exception:
5 # As a special exception, the respective Autoconf Macro's copyright
6 # owner gives unlimited permission to copy, distribute and modify the
7 # configure scripts that are the output of Autoconf when processing
8 # the Macro. You need not follow the terms of the GNU General Public
9 # License when using or distributing such scripts, even though
10 # portions of the text of the Macro appear in them. The GNU General
11 # Public License (GPL) does govern all other use of the material that
12 # constitutes the Autoconf Macro.
14 # This special exception to the GPL applies to versions of the
15 # Autoconf Macro released by the Autoconf Macro Archive. When you make
16 # and distribute a modified version of the Autoconf Macro, you may
17 # extend this special exception to the GPL to apply to your modified
21 AC_MSG_CHECKING(for thread local storage (TLS) class)
22 AC_CACHE_VAL(ac_cv_tls, [
23 ax_tls_keywords="__thread __declspec(thread) none"
24 for ax_tls_keyword in $ax_tls_keywords; do
25 case $ax_tls_keyword in
26 none) ac_cv_tls=none ; break ;;
32 static ] $ax_tls_keyword [ int bar;
36 [ac_cv_tls=$ax_tls_keyword ; break],
43 if test "$ac_cv_tls" != "none"; then
44 dnl AC_DEFINE([TLS], [], [If the compiler supports a TLS storage class define it to that here])
45 AC_DEFINE_UNQUOTED([TLS], $ac_cv_tls, [If the compiler supports a TLS storage class define it to that here])
47 AC_MSG_RESULT($ac_cv_tls)
50 # ===========================================================================
51 # http://www.nongnu.org/autoconf-archive/check_gnu_make.html
52 # ===========================================================================
60 # This macro searches for a GNU version of make. If a match is found, the
61 # makefile variable `ifGNUmake' is set to the empty string, otherwise it
62 # is set to "#". This is useful for including a special features in a
63 # Makefile, which cannot be handled by other versions of make. The
64 # variable _cv_gnu_make_command is set to the command to invoke GNU make
65 # if it exists, the empty string otherwise.
67 # Here is an example of its use:
69 # Makefile.in might contain:
71 # # A failsafe way of putting a dependency rule into a makefile
73 # $(CC) -MM $(srcdir)/*.c > $(DEPEND)
75 # @ifGNUmake@ ifeq ($(DEPEND),$(wildcard $(DEPEND)))
76 # @ifGNUmake@ include $(DEPEND)
79 # Then configure.in would normally contain:
84 # Then perhaps to cause gnu make to override any other make, we could do
85 # something like this (note that GNU make always looks for GNUmakefile
88 # if ! test x$_cv_gnu_make_command = x ; then
89 # mv Makefile GNUmakefile
90 # echo .DEFAULT: > Makefile ;
91 # echo \ $_cv_gnu_make_command \$@ >> Makefile;
94 # Then, if any (well almost any) other make is called, and GNU make also
95 # exists, then the other make wraps the GNU make.
99 # Copyright (c) 2008 John Darrington <j.darrington@elvis.murdoch.edu.au>
101 # Copying and distribution of this file, with or without modification, are
102 # permitted in any medium without royalty provided the copyright notice
103 # and this notice are preserved.
105 # Note: Modified by Ted Ts'o to add @ifNotGNUMake@
108 [CHECK_GNU_MAKE], [ AC_CACHE_CHECK( for GNU make,_cv_gnu_make_command,
109 _cv_gnu_make_command='' ;
110 dnl Search all the common names for GNU make
111 if test -n "$FORCE_NATIVE_MAKE" ; then
114 MAKES="make gmake gnumake"
116 for a in "$MAKE" $MAKES ; do
117 if test -z "$a" ; then continue ; fi ;
118 if ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null ) ; then
119 _cv_gnu_make_command=$a ;
124 dnl If there was a GNU version, then set @ifGNUmake@ to the empty string, '#' otherwise
125 if test "x$_cv_gnu_make_command" != "x" ; then
131 AC_MSG_RESULT("Not found");
134 AC_SUBST(ifNotGNUmake)
137 # AX_CHECK_MOUNT_OPT: an autoconf macro to check for generic filesystem-
138 # agnostic 'mount' options. Written by Nicholas Clark. Looks for constants in
139 # sys/mount.h to predict whether the 'mount' utility will support a specific
142 # This macro can be used to check for the presence of 'nodev' (or other mount
143 # options), which isn't uniformly implemented in the BSD family at the time of
144 # this writing. Tested on FreeBSD, NetBSD, OpenBSD, and Linux.
148 # AX_CHECK_MOUNT_OPT(option)
150 # Defines HAVE_MOUNT_$OPTION (in uppercase) if the option exists, and sets
151 # ac_cv_mount_$option (in original case) otherwise.
153 # Copyright (c) 2018 Nicholas Clark <nicholas.clark@gmail.com>
155 # Copying and distribution of this file, with or without modification, are
156 # permitted in any medium without royalty or attribution requirement.
158 AC_DEFUN([AX_CHECK_MOUNT_OPT], [__AX_CHECK_MOUNT_OPT(m4_tolower([$1]),m4_toupper([$1]))])
159 AC_DEFUN([__AX_CHECK_MOUNT_OPT],
161 AS_ECHO_N("checking for mount '$1' option... ")
163 [#include <sys/mount.h>],
164 [void *temp = (void *)(MS_$2); (void) temp;],
165 [AC_DEFINE(HAVE_MOUNT_$2, 1, [Define to 1 if mount supports $1.])
166 AS_VAR_SET(ac_cv_mount_$1, yes)
169 [#include <sys/mount.h>],
170 [void *temp = (void *)(MNT_$2); (void) temp;],
171 [AC_DEFINE(HAVE_MOUNT_$2, 1, [Define to 1 if mount supports $1.])
172 AS_VAR_SET(ac_cv_mount_$1, yes)
174 [AS_VAR_SET(ac_cv_mount_$1, no)