Last change
on this file was 3529, checked in by bird, 3 years ago |
Imported grep 3.7 from grep-3.7.tar.gz (sha256: c22b0cf2d4f6bbe599c902387e8058990e1eee99aef333a203829e5fd3dbb342), applying minimal auto-props.
|
-
Property svn:eol-style
set to
LF
|
File size:
1.3 KB
|
Line | |
---|
1 | dnl Check whether limits.h has needed features.
|
---|
2 |
|
---|
3 | dnl Copyright 2016-2021 Free Software Foundation, Inc.
|
---|
4 | dnl This file is free software; the Free Software Foundation
|
---|
5 | dnl gives unlimited permission to copy and/or distribute it,
|
---|
6 | dnl with or without modifications, as long as this notice is preserved.
|
---|
7 |
|
---|
8 | dnl From Paul Eggert.
|
---|
9 |
|
---|
10 | AC_DEFUN_ONCE([gl_LIMITS_H],
|
---|
11 | [
|
---|
12 | gl_CHECK_NEXT_HEADERS([limits.h])
|
---|
13 |
|
---|
14 | AC_CACHE_CHECK([whether limits.h has WORD_BIT, BOOL_WIDTH etc.],
|
---|
15 | [gl_cv_header_limits_width],
|
---|
16 | [AC_COMPILE_IFELSE(
|
---|
17 | [AC_LANG_PROGRAM(
|
---|
18 | [[#ifndef __STDC_WANT_IEC_60559_BFP_EXT__
|
---|
19 | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1
|
---|
20 | #endif
|
---|
21 | #include <limits.h>
|
---|
22 | long long llm = LLONG_MAX;
|
---|
23 | int wb = WORD_BIT;
|
---|
24 | int ullw = ULLONG_WIDTH;
|
---|
25 | int bw = BOOL_WIDTH;
|
---|
26 | ]])],
|
---|
27 | [gl_cv_header_limits_width=yes],
|
---|
28 | [gl_cv_header_limits_width=no])])
|
---|
29 | if test "$gl_cv_header_limits_width" = yes; then
|
---|
30 | LIMITS_H=
|
---|
31 | else
|
---|
32 | LIMITS_H=limits.h
|
---|
33 | fi
|
---|
34 | AC_SUBST([LIMITS_H])
|
---|
35 | AM_CONDITIONAL([GL_GENERATE_LIMITS_H], [test -n "$LIMITS_H"])
|
---|
36 | ])
|
---|
37 |
|
---|
38 | dnl Unconditionally enables the replacement of <limits.h>.
|
---|
39 | AC_DEFUN([gl_REPLACE_LIMITS_H],
|
---|
40 | [
|
---|
41 | AC_REQUIRE([gl_LIMITS_H])
|
---|
42 | LIMITS_H='limits.h'
|
---|
43 | AM_CONDITIONAL([GL_GENERATE_LIMITS_H], [test -n "$LIMITS_H"])
|
---|
44 | ])
|
---|
Note:
See
TracBrowser
for help on using the repository browser.