/usr/bin/mkc_check_decl is in mk-configure 0.29.1-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | #!/bin/sh
############################################################
# Copyright (c) 2009-2014 by Aleksey Cheusov
#
# See LICENSE file in the distribution.
############################################################
set -e
LC_ALL=C
export LC_ALL
if test -d /usr/xpg4/bin; then
# We cannot work with Solaris' default usercrap
PATH=/usr/xpg4/bin:$PATH
export PATH
fi
##################################################
# options
usage (){
cat <<EOF
mkc_check_decl detects presense of define, variable, function or type
in system header files by compiling a test program.
Usage:
mkc_check_decl [OPTIONS] <CHECKTYPE> <what> [includes...]
where CHECKTYPE is either of the following: "define", "variable",
"func[0-9]", "type", "member" or "prototype".
OPTIONS:
-h display this help
-d delete cache files
Examples:
mkc_check_decl define __GNUC__
mkc_check_decl define RTLD_LAZY dlfcn.h
mkc_check_decl variable sys_errlist errno.h
mkc_check_decl variable __malloc_hook malloc.h
mkc_check_decl func3 poll poll.h
mkc_check_decl func2 fgetln stdio.h
mkc_check_decl type mbstate_t wchar.h
mkc_check_decl type long-long
mkc_check_decl member tm.tm_isdst time.h
mkc_check_decl member ifreq.ifr_addr.sa_len net/if.h
mkc_check_decl prototype 'int connect(int __fd, const struct sockaddr * __addr, socklen_t __len)' sys/socket.h
mkc_check_decl prototype 'int connect(int __fd, struct sockaddr * __addr, socklen_t __len)' sys/socket.h
EOF
}
if test $# -eq 0; then
usage
exit 1
fi
if test "_$1" = '_-h'; then
usage
exit 0
fi
if test "_$1" = '_-d'; then
delcache=1
shift
fi
##################################################
# initializing
decltype=`echo "$1" | sed -e 's/[0-9]//g'`
argscnt=`echo "$1" | sed 's/[^0-9]//g'`
shift
declwhat=`echo "$1" | awk '{gsub(/-/, " "); gsub(/ +[(]/, "("); $1=$1; print}'`
shift
typemsg="$decltype $declwhat"
case "$decltype" in
type)
pathpart=`echo "${decltype}_${declwhat}_$*" | tr '/. ' '__~'`
;;
prototype)
pathpart=`echo "${decltype}_${declwhat}_$*" | tr '/(). *' '____~8'`
funcname=`echo "$declwhat" | sed 's,^.* \([^ ]*\)[(].*$,\1,'`
;;
*)
pathpart=`echo "$decltype$argscnt $declwhat" $* | tr '/. ' '___'`
;;
esac
. mkc_check_common.sh
##################################################
# functions
get_includes (){
for i in $MKC_COMMON_HEADERS "$@"; do
echo "#include <$i>"
done
}
##############################
compile (){
if $CC -c -o "$tmpo" $CPPFLAGS $CFLAGS "$tmpc" 2>"$tmperr"
then
return 0
else
return 1
fi
}
##############################
is_define (){
get_includes "$@" > "$tmpc"
cat >> "$tmpc" <<EOF
#if defined($declwhat)
int main ()
{
return 0;
}
#else
#error "$declwhat is not a define"
#endif
EOF
#
compile
}
##############################
is_variable (){
get_includes "$@" > "$tmpc"
cat >> "$tmpc" <<EOF
int main ()
{
return sizeof (($declwhat)) && (&$declwhat != 0);
}
EOF
#
compile
}
##############################
has_size (){
get_includes "$@" > "$tmpc"
cat >> "$tmpc" <<EOF
int main ()
{
return sizeof ($declwhat);
}
EOF
#
compile
}
is_type (){
has_size "$@" || return 1
is_variable "$@" && return 1
return 0
}
##############################
is_func (){
get_includes "$@" > "$tmpc"
cat >> "$tmpc" <<EOF
void func (void)
{
if (${declwhat}) return;
${declwhat} (
EOF
awk -v N="$argscnt" '
BEGIN {
for (i=0; i < N; ++i){
if (i)
printf ","
printf "0"
}
}
' >> "$tmpc"
printf ');\n}\n' >> "$tmpc"
#
compile
}
##############################
is_prototype (){
get_includes "$@" > "$tmpc"
cat >> "$tmpc" <<EOF
${declwhat};
void func (void)
{
if (${funcname}) return;
}
EOF
#
compile
}
##############################
is_member (){
get_includes "$@" > "$tmpc"
type_t=`echo $declwhat | sed 's/[.].*$//'`
member=`echo $declwhat | sed 's/^[^.]*[.]//'`
cat >> "$tmpc" <<EOF
int main ()
{
$type_t var;
return sizeof (var.$member);
}
EOF
#
compile
}
##################################################
# test
if test $# -gt 0; then
incs_msg=" ( $* )"
fi
check_itself (){
if is_${decltype} "$@"
then
echo 1
else
echo 0
fi
}
check_and_cache "checking for ${typemsg}${incs_msg}" "$cache" "$@"
##################################################
# clean-ups
cleanup
##################################################
# finishing
if test "$ret" -eq 1; then
printme 'yes\n' 1>&2
else
printme 'no\n' 1>&2
fi
echo $ret
|