1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
dnl #
dnl # Look for a header file in a number of places.
dnl #
dnl # FR_SMART_CHECK_INCLUDE(foo.h, [ #include <other.h> ])
dnl #
AC_DEFUN([FR_SMART_CHECK_INCLUDE], [
ac_safe=`echo "$1" | sed 'y%./+-%__pm%'`
old_CPPFLAGS="$CPPFLAGS"
smart_include=
dnl # The default directories we search in (in addition to the compilers search path)
smart_include_dir="/usr/local/include /opt/include"
dnl # Our local versions
_smart_try_dir=
_smart_include_dir=
dnl # Add variants with the different prefixes and one with no prefix
for _prefix in $smart_prefix ""; do
for _dir in $smart_try_dir; do
_smart_try_dir="${_smart_try_dir} ${_dir}/${_prefix}"
done
for _dir in $smart_include_dir; do
_smart_include_dir="${_smart_include_dir} ${_dir}/${_prefix}"
done
done
dnl #
dnl # Try any user-specified directory first otherwise we may pick up
dnl # the wrong version.
dnl #
if test "x$_smart_try_dir" != "x"; then
for try in $_smart_try_dir; do
AC_MSG_CHECKING([for $1 in $try])
CPPFLAGS="-isystem $try $old_CPPFLAGS"
AC_TRY_COMPILE([$2
#include <$1>],
[int a = 1;],
[
smart_include="-isystem $try"
AC_MSG_RESULT(yes)
break
],
[
smart_include=
AC_MSG_RESULT(no)
])
done
CPPFLAGS="$old_CPPFLAGS"
fi
dnl #
dnl # Try using the default includes (with prefixes).
dnl #
if test "x$smart_include" = "x"; then
for _prefix in $smart_prefix; do
AC_MSG_CHECKING([for ${_prefix}/$1])
AC_TRY_COMPILE([$2
#include <$1>],
[int a = 1;],
[
smart_include="-isystem ${_prefix}/"
AC_MSG_RESULT(yes)
break
],
[
smart_include=
AC_MSG_RESULT(no)
])
done
fi
dnl #
dnl # Try using the default includes (without prefixes).
dnl #
if test "x$smart_include" = "x"; then
AC_MSG_CHECKING([for $1])
AC_TRY_COMPILE([$2
#include <$1>],
[int a = 1;],
[
smart_include=" "
AC_MSG_RESULT(yes)
break
],
[
smart_include=
AC_MSG_RESULT(no)
])
fi
dnl #
dnl # Try to guess possible locations.
dnl #
if test "x$smart_include" = "x"; then
for try in $_smart_include_dir; do
AC_MSG_CHECKING([for $1 in $try])
CPPFLAGS="-isystem $try $old_CPPFLAGS"
AC_TRY_COMPILE([$2
#include <$1>],
[int a = 1;],
[
smart_include="-isystem $try"
AC_MSG_RESULT(yes)
break
],
[
smart_include=
AC_MSG_RESULT(no)
])
done
CPPFLAGS="$old_CPPFLAGS"
fi
dnl #
dnl # Found it, set the appropriate variable.
dnl #
if test "x$smart_include" != "x"; then
eval "ac_cv_header_$ac_safe=yes"
CPPFLAGS="$smart_include $old_CPPFLAGS"
SMART_CPPFLAGS="$smart_include $SMART_CPPFLAGS"
fi
dnl #
dnl # Consume prefix, it's not likely to be used
dnl # between multiple calls.
dnl #
smart_prefix=
])
|