config.status revision d35df493b4e7684c50d2d2fa032ee3a7ac228009
1#! /bin/sh
2# Generated by configure.
3# Run this file to recreate the current configuration.
4# Compiler output produced by configure, useful for debugging
5# configure, is in config.log if it exists.
6
7debug=false
8ac_cs_recheck=false
9ac_cs_silent=false
10
11SHELL=${CONFIG_SHELL-/bin/sh}
12export SHELL
13## -------------------- ##
14## M4sh Initialization. ##
15## -------------------- ##
16
17# Be more Bourne compatible
18DUALCASE=1; export DUALCASE # for MKS sh
19if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
20  emulate sh
21  NULLCMD=:
22  # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
23  # is contrary to our usage.  Disable this feature.
24  alias -g '${1+"$@"}'='"$@"'
25  setopt NO_GLOB_SUBST
26else
27  case `(set -o) 2>/dev/null` in #(
28  *posix*) :
29    set -o posix ;; #(
30  *) :
31     ;;
32esac
33fi
34
35
36as_nl='
37'
38export as_nl
39# Printing a long string crashes Solaris 7 /usr/bin/printf.
40as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
41as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
42as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
43# Prefer a ksh shell builtin over an external printf program on Solaris,
44# but without wasting forks for bash or zsh.
45if test -z "$BASH_VERSION$ZSH_VERSION" \
46    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
47  as_echo='print -r --'
48  as_echo_n='print -rn --'
49elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
50  as_echo='printf %s\n'
51  as_echo_n='printf %s'
52else
53  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
54    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
55    as_echo_n='/usr/ucb/echo -n'
56  else
57    as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
58    as_echo_n_body='eval
59      arg=$1;
60      case $arg in #(
61      *"$as_nl"*)
62	expr "X$arg" : "X\\(.*\\)$as_nl";
63	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
64      esac;
65      expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
66    '
67    export as_echo_n_body
68    as_echo_n='sh -c $as_echo_n_body as_echo'
69  fi
70  export as_echo_body
71  as_echo='sh -c $as_echo_body as_echo'
72fi
73
74# The user is always right.
75if test "${PATH_SEPARATOR+set}" != set; then
76  PATH_SEPARATOR=:
77  (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
78    (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
79      PATH_SEPARATOR=';'
80  }
81fi
82
83
84# IFS
85# We need space, tab and new line, in precisely that order.  Quoting is
86# there to prevent editors from complaining about space-tab.
87# (If _AS_PATH_WALK were called with IFS unset, it would disable word
88# splitting by setting IFS to empty value.)
89IFS=" ""	$as_nl"
90
91# Find who we are.  Look in the path if we contain no directory separator.
92as_myself=
93case $0 in #((
94  *[\\/]* ) as_myself=$0 ;;
95  *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
96for as_dir in $PATH
97do
98  IFS=$as_save_IFS
99  test -z "$as_dir" && as_dir=.
100    test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
101  done
102IFS=$as_save_IFS
103
104     ;;
105esac
106# We did not find ourselves, most probably we were run as `sh COMMAND'
107# in which case we are not to be found in the path.
108if test "x$as_myself" = x; then
109  as_myself=$0
110fi
111if test ! -f "$as_myself"; then
112  $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
113  exit 1
114fi
115
116# Unset variables that we do not need and which cause bugs (e.g. in
117# pre-3.0 UWIN ksh).  But do not cause bugs in bash 2.01; the "|| exit 1"
118# suppresses any "Segmentation fault" message there.  '((' could
119# trigger a bug in pdksh 5.2.14.
120for as_var in BASH_ENV ENV MAIL MAILPATH
121do eval test x\${$as_var+set} = xset \
122  && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
123done
124PS1='$ '
125PS2='> '
126PS4='+ '
127
128# NLS nuisances.
129LC_ALL=C
130export LC_ALL
131LANGUAGE=C
132export LANGUAGE
133
134# CDPATH.
135(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
136
137
138# as_fn_error STATUS ERROR [LINENO LOG_FD]
139# ----------------------------------------
140# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
141# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
142# script with STATUS, using 1 if that was 0.
143as_fn_error ()
144{
145  as_status=$1; test $as_status -eq 0 && as_status=1
146  if test "$4"; then
147    as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
148    $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
149  fi
150  $as_echo "$as_me: error: $2" >&2
151  as_fn_exit $as_status
152} # as_fn_error
153
154
155# as_fn_set_status STATUS
156# -----------------------
157# Set $? to STATUS, without forking.
158as_fn_set_status ()
159{
160  return $1
161} # as_fn_set_status
162
163# as_fn_exit STATUS
164# -----------------
165# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
166as_fn_exit ()
167{
168  set +e
169  as_fn_set_status $1
170  exit $1
171} # as_fn_exit
172
173# as_fn_unset VAR
174# ---------------
175# Portably unset VAR.
176as_fn_unset ()
177{
178  { eval $1=; unset $1;}
179}
180as_unset=as_fn_unset
181# as_fn_append VAR VALUE
182# ----------------------
183# Append the text in VALUE to the end of the definition contained in VAR. Take
184# advantage of any shell optimizations that allow amortized linear growth over
185# repeated appends, instead of the typical quadratic growth present in naive
186# implementations.
187if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
188  eval 'as_fn_append ()
189  {
190    eval $1+=\$2
191  }'
192else
193  as_fn_append ()
194  {
195    eval $1=\$$1\$2
196  }
197fi # as_fn_append
198
199# as_fn_arith ARG...
200# ------------------
201# Perform arithmetic evaluation on the ARGs, and store the result in the
202# global $as_val. Take advantage of shells that can avoid forks. The arguments
203# must be portable across $(()) and expr.
204if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
205  eval 'as_fn_arith ()
206  {
207    as_val=$(( $* ))
208  }'
209else
210  as_fn_arith ()
211  {
212    as_val=`expr "$@" || test $? -eq 1`
213  }
214fi # as_fn_arith
215
216
217if expr a : '\(a\)' >/dev/null 2>&1 &&
218   test "X`expr 00001 : '.*\(...\)'`" = X001; then
219  as_expr=expr
220else
221  as_expr=false
222fi
223
224if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
225  as_basename=basename
226else
227  as_basename=false
228fi
229
230if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
231  as_dirname=dirname
232else
233  as_dirname=false
234fi
235
236as_me=`$as_basename -- "$0" ||
237$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
238	 X"$0" : 'X\(//\)$' \| \
239	 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
240$as_echo X/"$0" |
241    sed '/^.*\/\([^/][^/]*\)\/*$/{
242	    s//\1/
243	    q
244	  }
245	  /^X\/\(\/\/\)$/{
246	    s//\1/
247	    q
248	  }
249	  /^X\/\(\/\).*/{
250	    s//\1/
251	    q
252	  }
253	  s/.*/./; q'`
254
255# Avoid depending upon Character Ranges.
256as_cr_letters='abcdefghijklmnopqrstuvwxyz'
257as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
258as_cr_Letters=$as_cr_letters$as_cr_LETTERS
259as_cr_digits='0123456789'
260as_cr_alnum=$as_cr_Letters$as_cr_digits
261
262ECHO_C= ECHO_N= ECHO_T=
263case `echo -n x` in #(((((
264-n*)
265  case `echo 'xy\c'` in
266  *c*) ECHO_T='	';;	# ECHO_T is single tab character.
267  xy)  ECHO_C='\c';;
268  *)   echo `echo ksh88 bug on AIX 6.1` > /dev/null
269       ECHO_T='	';;
270  esac;;
271*)
272  ECHO_N='-n';;
273esac
274
275rm -f conf$$ conf$$.exe conf$$.file
276if test -d conf$$.dir; then
277  rm -f conf$$.dir/conf$$.file
278else
279  rm -f conf$$.dir
280  mkdir conf$$.dir 2>/dev/null
281fi
282if (echo >conf$$.file) 2>/dev/null; then
283  if ln -s conf$$.file conf$$ 2>/dev/null; then
284    as_ln_s='ln -s'
285    # ... but there are two gotchas:
286    # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
287    # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
288    # In both cases, we have to default to `cp -pR'.
289    ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
290      as_ln_s='cp -pR'
291  elif ln conf$$.file conf$$ 2>/dev/null; then
292    as_ln_s=ln
293  else
294    as_ln_s='cp -pR'
295  fi
296else
297  as_ln_s='cp -pR'
298fi
299rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
300rmdir conf$$.dir 2>/dev/null
301
302
303# as_fn_mkdir_p
304# -------------
305# Create "$as_dir" as a directory, including parents if necessary.
306as_fn_mkdir_p ()
307{
308
309  case $as_dir in #(
310  -*) as_dir=./$as_dir;;
311  esac
312  test -d "$as_dir" || eval $as_mkdir_p || {
313    as_dirs=
314    while :; do
315      case $as_dir in #(
316      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
317      *) as_qdir=$as_dir;;
318      esac
319      as_dirs="'$as_qdir' $as_dirs"
320      as_dir=`$as_dirname -- "$as_dir" ||
321$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
322	 X"$as_dir" : 'X\(//\)[^/]' \| \
323	 X"$as_dir" : 'X\(//\)$' \| \
324	 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
325$as_echo X"$as_dir" |
326    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
327	    s//\1/
328	    q
329	  }
330	  /^X\(\/\/\)[^/].*/{
331	    s//\1/
332	    q
333	  }
334	  /^X\(\/\/\)$/{
335	    s//\1/
336	    q
337	  }
338	  /^X\(\/\).*/{
339	    s//\1/
340	    q
341	  }
342	  s/.*/./; q'`
343      test -d "$as_dir" && break
344    done
345    test -z "$as_dirs" || eval "mkdir $as_dirs"
346  } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
347
348
349} # as_fn_mkdir_p
350if mkdir -p . 2>/dev/null; then
351  as_mkdir_p='mkdir -p "$as_dir"'
352else
353  test -d ./-p && rmdir ./-p
354  as_mkdir_p=false
355fi
356
357
358# as_fn_executable_p FILE
359# -----------------------
360# Test if FILE is an executable regular file.
361as_fn_executable_p ()
362{
363  test -f "$1" && test -x "$1"
364} # as_fn_executable_p
365as_test_x='test -x'
366as_executable_p=as_fn_executable_p
367
368# Sed expression to map a string onto a valid CPP name.
369as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
370
371# Sed expression to map a string onto a valid variable name.
372as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
373
374
375exec 6>&1
376## ----------------------------------- ##
377## Main body of $CONFIG_STATUS script. ##
378## ----------------------------------- ##
379# Save the log message, to keep $0 and so on meaningful, and to
380# report actual input values of CONFIG_FILES etc. instead of their
381# values after options handling.
382ac_log="
383This file was extended by strace $as_me 4.16, which was
384generated by GNU Autoconf 2.69.  Invocation command line was
385
386  CONFIG_FILES    = $CONFIG_FILES
387  CONFIG_HEADERS  = $CONFIG_HEADERS
388  CONFIG_LINKS    = $CONFIG_LINKS
389  CONFIG_COMMANDS = $CONFIG_COMMANDS
390  $ $0 $@
391
392on `(hostname || uname -n) 2>/dev/null | sed 1q`
393"
394
395# Files that config.status was made for.
396config_files=" Makefile tests/Makefile tests-m32/Makefile tests-mx32/Makefile strace.spec debian/changelog"
397config_headers=" config.h"
398config_commands=" depfiles"
399
400ac_cs_usage="\
401\`$as_me' instantiates files and other configuration actions
402from templates according to the current configuration.  Unless the files
403and actions are specified as TAGs, all are instantiated by default.
404
405Usage: $0 [OPTION]... [TAG]...
406
407  -h, --help       print this help, then exit
408  -V, --version    print version number and configuration settings, then exit
409      --config     print configuration, then exit
410  -q, --quiet, --silent
411                   do not print progress messages
412  -d, --debug      don't remove temporary files
413      --recheck    update $as_me by reconfiguring in the same conditions
414      --file=FILE[:TEMPLATE]
415                   instantiate the configuration file FILE
416      --header=FILE[:TEMPLATE]
417                   instantiate the configuration header FILE
418
419Configuration files:
420$config_files
421
422Configuration headers:
423$config_headers
424
425Configuration commands:
426$config_commands
427
428Report bugs to <strace-devel@lists.sourceforge.net>.
429strace home page: <https://strace.io>."
430
431ac_cs_config=""
432ac_cs_version="\
433strace config.status 4.16
434configured by ./configure, generated by GNU Autoconf 2.69,
435  with options \"$ac_cs_config\"
436
437Copyright (C)  Free Software Foundation, Inc.
438This config.status script is free software; the Free Software Foundation
439gives unlimited permission to copy, distribute and modify it."
440
441ac_pwd='/usr/local/google/home/enh/Downloads/strace-4.16'
442srcdir='.'
443INSTALL='/usr/bin/install -c'
444MKDIR_P='/bin/mkdir -p'
445AWK='gawk'
446test -n "$AWK" || AWK=awk
447# The default lists apply if the user does not specify any file.
448ac_need_defaults=:
449while test $# != 0
450do
451  case $1 in
452  --*=?*)
453    ac_option=`expr "X$1" : 'X\([^=]*\)='`
454    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
455    ac_shift=:
456    ;;
457  --*=)
458    ac_option=`expr "X$1" : 'X\([^=]*\)='`
459    ac_optarg=
460    ac_shift=:
461    ;;
462  *)
463    ac_option=$1
464    ac_optarg=$2
465    ac_shift=shift
466    ;;
467  esac
468
469  case $ac_option in
470  # Handling of the options.
471  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
472    ac_cs_recheck=: ;;
473  --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
474    $as_echo "$ac_cs_version"; exit ;;
475  --config | --confi | --conf | --con | --co | --c )
476    $as_echo "$ac_cs_config"; exit ;;
477  --debug | --debu | --deb | --de | --d | -d )
478    debug=: ;;
479  --file | --fil | --fi | --f )
480    $ac_shift
481    case $ac_optarg in
482    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
483    '') as_fn_error $? "missing file argument" ;;
484    esac
485    as_fn_append CONFIG_FILES " '$ac_optarg'"
486    ac_need_defaults=false;;
487  --header | --heade | --head | --hea )
488    $ac_shift
489    case $ac_optarg in
490    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
491    esac
492    as_fn_append CONFIG_HEADERS " '$ac_optarg'"
493    ac_need_defaults=false;;
494  --he | --h)
495    # Conflict between --help and --header
496    as_fn_error $? "ambiguous option: \`$1'
497Try \`$0 --help' for more information.";;
498  --help | --hel | -h )
499    $as_echo "$ac_cs_usage"; exit ;;
500  -q | -quiet | --quiet | --quie | --qui | --qu | --q \
501  | -silent | --silent | --silen | --sile | --sil | --si | --s)
502    ac_cs_silent=: ;;
503
504  # This is an error.
505  -*) as_fn_error $? "unrecognized option: \`$1'
506Try \`$0 --help' for more information." ;;
507
508  *) as_fn_append ac_config_targets " $1"
509     ac_need_defaults=false ;;
510
511  esac
512  shift
513done
514
515ac_configure_extra_args=
516
517if $ac_cs_silent; then
518  exec 6>/dev/null
519  ac_configure_extra_args="$ac_configure_extra_args --silent"
520fi
521
522if $ac_cs_recheck; then
523  set X /bin/sh './configure'  $ac_configure_extra_args --no-create --no-recursion
524  shift
525  $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6
526  CONFIG_SHELL='/bin/sh'
527  export CONFIG_SHELL
528  exec "$@"
529fi
530
531exec 5>>config.log
532{
533  echo
534  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
535## Running $as_me. ##
536_ASBOX
537  $as_echo "$ac_log"
538} >&5
539
540#
541# INIT-COMMANDS
542#
543AMDEP_TRUE="" ac_aux_dir="."
544
545
546# Handling of arguments.
547for ac_config_target in $ac_config_targets
548do
549  case $ac_config_target in
550    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
551    "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
552    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
553    "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
554    "tests-m32/Makefile") CONFIG_FILES="$CONFIG_FILES tests-m32/Makefile" ;;
555    "tests-mx32/Makefile") CONFIG_FILES="$CONFIG_FILES tests-mx32/Makefile" ;;
556    "strace.spec") CONFIG_FILES="$CONFIG_FILES strace.spec" ;;
557    "debian/changelog") CONFIG_FILES="$CONFIG_FILES debian/changelog" ;;
558
559  *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
560  esac
561done
562
563
564# If the user did not use the arguments to specify the items to instantiate,
565# then the envvar interface is used.  Set only those that are not.
566# We use the long form for the default assignment because of an extremely
567# bizarre bug on SunOS 4.1.3.
568if $ac_need_defaults; then
569  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
570  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
571  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
572fi
573
574# Have a temporary directory for convenience.  Make it in the build tree
575# simply because there is no reason against having it here, and in addition,
576# creating and moving files from /tmp can sometimes cause problems.
577# Hook for its removal unless debugging.
578# Note that there is a small window in which the directory will not be cleaned:
579# after its creation but before its name has been assigned to `$tmp'.
580$debug ||
581{
582  tmp= ac_tmp=
583  trap 'exit_status=$?
584  : "${ac_tmp:=$tmp}"
585  { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
586' 0
587  trap 'as_fn_exit 1' 1 2 13 15
588}
589# Create a (secure) tmp directory for tmp files.
590
591{
592  tmp=`(umask 077 && mktemp -d "./confXXXXXX")` &&
593  test -n "$tmp" && test -d "$tmp"
594} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
595ac_tmp=$tmp
596
597# Set up the scripts for CONFIG_FILES section.
598# No need to generate them if there are no CONFIG_FILES.
599# This happens for instance with `./config.status config.h'.
600if test -n "$CONFIG_FILES"; then
601
602
603ac_cr=`echo X | tr X '\015'`
604# On cygwin, bash can eat \r inside `` if the user requested igncr.
605# But we know of no other shell where ac_cr would be empty at this
606# point, so we can use a bashism as a fallback.
607if test "x$ac_cr" = x; then
608  eval ac_cr=\$\'\\r\'
609fi
610ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
611if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
612  ac_cs_awk_cr='\\r'
613else
614  ac_cs_awk_cr=$ac_cr
615fi
616
617echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
618cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
619S["am__EXEEXT_FALSE"]=""
620S["am__EXEEXT_TRUE"]="#"
621S["LTLIBOBJS"]=""
622S["LIBOBJS"]=""
623S["VALGRIND_CHECK_RULES"]="\n"\
624"# Valgrind check\n"\
625"#\n"\
626"# Optional:\n"\
627"#  - VALGRIND_SUPPRESSIONS_FILES: Space-separated list of Valgrind suppressions\n"\
628"#    files to load. (Default: empty)\n"\
629"#  - VALGRIND_FLAGS: General flags to pass to all Valgrind tools.\n"\
630"#    (Default: --num-callers=30)\n"\
631"#  - VALGRIND_$toolname_FLAGS: Flags to pass to Valgrind $toolname (one of:\n"\
632"#    memcheck, helgrind, drd, sgcheck). (Default: various)\n"\
633"\n"\
634"# Optional variables\n"\
635"VALGRIND_SUPPRESSIONS ?= $(addprefix --suppressions=,$(VALGRIND_SUPPRESSIONS_FILES))\n"\
636"VALGRIND_FLAGS ?= --num-callers=30\n"\
637"VALGRIND_memcheck_FLAGS ?= --leak-check=full --show-reachable=no\n"\
638"VALGRIND_helgrind_FLAGS ?= --history-level=approx\n"\
639"VALGRIND_drd_FLAGS ?=\n"\
640"VALGRIND_sgcheck_FLAGS ?=\n"\
641"\n"\
642"# Internal use\n"\
643"valgrind_log_files = $(addprefix test-suite-,$(addsuffix .log,$(valgrind_tools)))\n"\
644"\n"\
645"valgrind_memcheck_flags = --tool=memcheck $(VALGRIND_memcheck_FLAGS)\n"\
646"valgrind_helgrind_flags = --tool=helgrind $(VALGRIND_helgrind_FLAGS)\n"\
647"valgrind_drd_flags = --tool=drd $(VALGRIND_drd_FLAGS)\n"\
648"valgrind_sgcheck_flags = --tool=exp-sgcheck $(VALGRIND_sgcheck_FLAGS)\n"\
649"\n"\
650"valgrind_quiet = $(valgrind_quiet_$(V))\n"\
651"valgrind_quiet_ = $(valgrind_quiet_$(AM_DEFAULT_VERBOSITY))\n"\
652"valgrind_quiet_0 = --quiet\n"\
653"valgrind_v_use   = $(valgrind_v_use_$(V))\n"\
654"valgrind_v_use_  = $(valgrind_v_use_$(AM_DEFAULT_VERBOSITY))\n"\
655"valgrind_v_use_0 = @echo \"  USE   \" $(patsubst check-valgrind-%,%,$@):;\n"\
656"\n"\
657"# Support running with and without libtool.\n"\
658"ifneq ($(LIBTOOL),)\n"\
659"valgrind_lt = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=execute\n"\
660"else\n"\
661"valgrind_lt =\n"\
662"endif\n"\
663"\n"\
664"# Use recursive makes in order to ignore errors during check\n"\
665"check-valgrind:\n"\
666"ifeq ($(VALGRIND_ENABLED),yes)\n"\
667"	-$(AM_V_at)$(foreach tool,$(valgrind_enabled_tools), \\\n"\
668"		$(MAKE) $(AM_MAKEFLAGS) -k check-valgrind-$(tool); \\\n"\
669"	)\n"\
670"else\n"\
671"	@echo \"Need to reconfigure with --enable-valgrind\"\n"\
672"endif\n"\
673"\n"\
674"# Valgrind running\n"\
675"VALGRIND_TESTS_ENVIRONMENT = \\\n"\
676"	$(TESTS_ENVIRONMENT) \\\n"\
677"	env VALGRIND=$(VALGRIND) \\\n"\
678"	G_SLICE=always-malloc,debug-blocks \\\n"\
679"	G_DEBUG=fatal-warnings,fatal-criticals,gc-friendly\n"\
680"\n"\
681"VALGRIND_LOG_COMPILER = \\\n"\
682"	$(valgrind_lt) \\\n"\
683"	$(VALGRIND) $(VALGRIND_SUPPRESSIONS) --error-exitcode=1 $(VALGRIND_FLAGS)\n"\
684"\n"\
685"define valgrind_tool_rule =\n"\
686"check-valgrind-$(1): $$(BUILT_SOURCES)\n"\
687"ifeq ($$(VALGRIND_ENABLED)-$$(ENABLE_VALGRIND_$(1)),yes-yes)\n"\
688"	$$(valgrind_v_use)$$(MAKE) $$(AM_MAKEFLAGS) check-am \\\n"\
689"		TESTS_ENVIRONMENT=\"$$(VALGRIND_TESTS_ENVIRONMENT)\" \\\n"\
690"		LOG_COMPILER=\"$$(VALGRIND_LOG_COMPILER)\" \\\n"\
691"		LOG_FLAGS=\"$$(valgrind_$(1)_flags)\" \\\n"\
692"		TEST_SUITE_LOG=test-suite-$(1).log\n"\
693"else ifeq ($$(VALGRIND_ENABLED),yes)\n"\
694"	@echo \"Need to reconfigure with --enable-valgrind-$(1)\"\n"\
695"else\n"\
696"	@echo \"Need to reconfigure with --enable-valgrind\"\n"\
697"endif\n"\
698"endef\n"\
699"\n"\
700"$(foreach tool,$(valgrind_tools),$(eval $(call valgrind_tool_rule,$(tool))))\n"\
701"\n"\
702"AM_DISTCHECK_CONFIGURE_FLAGS ?=\n"\
703"AM_DISTCHECK_CONFIGURE_FLAGS += --disable-valgrind\n"\
704"\n"\
705"MOSTLYCLEANFILES ?=\n"\
706"MOSTLYCLEANFILES += $(valgrind_log_files)\n"\
707"\n"\
708".PHONY: check-valgrind $(add-prefix check-valgrind-,$(valgrind_tools))\n"\
709""
710S["valgrind_enabled_tools"]=" memcheck"
711S["valgrind_tools"]="memcheck helgrind drd sgcheck"
712S["ENABLE_VALGRIND_sgcheck"]=""
713S["ENABLE_VALGRIND_drd"]="no"
714S["ENABLE_VALGRIND_helgrind"]="no"
715S["ENABLE_VALGRIND_memcheck"]="yes"
716S["VALGRIND_ENABLED"]="yes"
717S["VALGRIND_ENABLED_FALSE"]="#"
718S["VALGRIND_ENABLED_TRUE"]=""
719S["VALGRIND"]="valgrind"
720S["HAVE_MX32_MPERS_FALSE"]="#"
721S["HAVE_MX32_MPERS_TRUE"]=""
722S["HAVE_MX32_RUNTIME_FALSE"]="#"
723S["HAVE_MX32_RUNTIME_TRUE"]=""
724S["HAVE_M32_MPERS_FALSE"]="#"
725S["HAVE_M32_MPERS_TRUE"]=""
726S["HAVE_M32_RUNTIME_FALSE"]="#"
727S["HAVE_M32_RUNTIME_TRUE"]=""
728S["USE_LIBUNWIND_FALSE"]=""
729S["USE_LIBUNWIND_TRUE"]="#"
730S["libunwind_CPPFLAGS"]=""
731S["libunwind_LDFLAGS"]=""
732S["libunwind_LIBS"]=""
733S["PERL"]="/usr/bin/perl"
734S["dl_LIBS"]="-ldl"
735S["MIPS_ABI"]=""
736S["arch_mx32"]="x32"
737S["arch_m32"]="i386"
738S["arch"]="x86_64"
739S["CODE_COVERAGE_RULES"]="\n"\
740"# Code coverage\n"\
741"#\n"\
742"# Optional:\n"\
743"#  - CODE_COVERAGE_DIRECTORY: Top-level directory for code coverage reporting.\n"\
744"#    Multiple directories may be specified, separated by whitespace.\n"\
745"#    (Default: $(top_builddir))\n"\
746"#  - CODE_COVERAGE_OUTPUT_FILE: Filename and path for the .info file generated\n"\
747"#    by lcov for code coverage. (Default:\n"\
748"#    $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage.info)\n"\
749"#  - CODE_COVERAGE_OUTPUT_DIRECTORY: Directory for generated code coverage\n"\
750"#    reports to be created. (Default:\n"\
751"#    $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage)\n"\
752"#  - CODE_COVERAGE_BRANCH_COVERAGE: Set to 1 to enforce branch coverage,\n"\
753"#    set to 0 to disable it and leave empty to stay with the default.\n"\
754"#    (Default: empty)\n"\
755"#  - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov\n"\
756"#    instances. (Default: based on $CODE_COVERAGE_BRANCH_COVERAGE)\n"\
757"#  - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov\n"\
758"#    instances. (Default: $CODE_COVERAGE_LCOV_SHOPTS_DEFAULT)\n"\
759"#  - CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH: --gcov-tool pathtogcov\n"\
760"#  - CODE_COVERAGE_LCOV_OPTIONS_DEFAULT: Extra options to pass to the\n"\
761"#    collecting lcov instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH)\n"\
762"#  - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov\n"\
763"#    instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_DEFAULT)\n"\
764"#  - CODE_COVERAGE_LCOV_RMOPTS_DEFAULT: Extra options to pass to the filtering\n"\
765"#    lcov instance. (Default: empty)\n"\
766"#  - CODE_COVERAGE_LCOV_RMOPTS: Extra options to pass to the filtering lcov\n"\
767"#    instance. (Default: $CODE_COVERAGE_LCOV_RMOPTS_DEFAULT)\n"\
768"#  - CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT: Extra options to pass to the\n"\
769"#    genhtml instance. (Default: based on $CODE_COVERAGE_BRANCH_COVERAGE)\n"\
770"#  - CODE_COVERAGE_GENHTML_OPTIONS: Extra options to pass to the genhtml\n"\
771"#    instance. (Default: $CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT)\n"\
772"#  - CODE_COVERAGE_IGNORE_PATTERN: Extra glob pattern of files to ignore\n"\
773"#\n"\
774"# The generated report will be titled using the $(PACKAGE_NAME) and\n"\
775"# $(PACKAGE_VERSION). In order to add the current git hash to the title,\n"\
776"# use the git-version-gen script, available online.\n"\
777"\n"\
778"# Optional variables\n"\
779"CODE_COVERAGE_DIRECTORY ?= $(top_builddir)\n"\
780"CODE_COVERAGE_OUTPUT_FILE ?= $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage.info\n"\
781"CODE_COVERAGE_OUTPUT_DIRECTORY ?= $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage\n"\
782"CODE_COVERAGE_BRANCH_COVERAGE ?=\n"\
783"CODE_COVERAGE_LCOV_SHOPTS_DEFAULT ?= $(if $(CODE_COVERAGE_BRANCH_COVERAGE),\\\n"\
784"--rc lcov_branch_coverage=$(CODE_COVERAGE_BRANCH_COVERAGE))\n"\
785"CODE_COVERAGE_LCOV_SHOPTS ?= $(CODE_COVERAGE_LCOV_SHOPTS_DEFAULT)\n"\
786"CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH ?= --gcov-tool \"$(GCOV)\"\n"\
787"CODE_COVERAGE_LCOV_OPTIONS_DEFAULT ?= $(CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH)\n"\
788"CODE_COVERAGE_LCOV_OPTIONS ?= $(CODE_COVERAGE_LCOV_OPTIONS_DEFAULT)\n"\
789"CODE_COVERAGE_LCOV_RMOPTS_DEFAULT ?=\n"\
790"CODE_COVERAGE_LCOV_RMOPTS ?= $(CODE_COVERAGE_LCOV_RMOPTS_DEFAULT)\n"\
791"CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT ?=\\\n"\
792"$(if $(CODE_COVERAGE_BRANCH_COVERAGE),\\\n"\
793"--rc genhtml_branch_coverage=$(CODE_COVERAGE_BRANCH_COVERAGE))\n"\
794"CODE_COVERAGE_GENHTML_OPTIONS ?= $(CODE_COVERAGE_GENHTML_OPTIONS_DEFAULTS)\n"\
795"CODE_COVERAGE_IGNORE_PATTERN ?=\n"\
796"\n"\
797"code_coverage_v_lcov_cap = $(code_coverage_v_lcov_cap_$(V))\n"\
798"code_coverage_v_lcov_cap_ = $(code_coverage_v_lcov_cap_$(AM_DEFAULT_VERBOSITY))\n"\
799"code_coverage_v_lcov_cap_0 = @echo \"  LCOV   --capture\"\\\n"\
800" $(CODE_COVERAGE_OUTPUT_FILE);\n"\
801"code_coverage_v_lcov_ign = $(code_coverage_v_lcov_ign_$(V))\n"\
802"code_coverage_v_lcov_ign_ = $(code_coverage_v_lcov_ign_$(AM_DEFAULT_VERBOSITY))\n"\
803"code_coverage_v_lcov_ign_0 = @echo \"  LCOV   --remove /tmp/*\"\\\n"\
804" $(CODE_COVERAGE_IGNORE_PATTERN);\n"\
805"code_coverage_v_genhtml = $(code_coverage_v_genhtml_$(V))\n"\
806"code_coverage_v_genhtml_ = $(code_coverage_v_genhtml_$(AM_DEFAULT_VERBOSITY))\n"\
807"code_coverage_v_genhtml_0 = @echo \"  GEN   \" $(CODE_COVERAGE_OUTPUT_DIRECTORY);\n"\
808"code_coverage_quiet = $(code_coverage_quiet_$(V))\n"\
809"code_coverage_quiet_ = $(code_coverage_quiet_$(AM_DEFAULT_VERBOSITY))\n"\
810"code_coverage_quiet_0 = --quiet\n"\
811"\n"\
812"# sanitizes the test-name: replaces with underscores: dashes and dots\n"\
813"code_coverage_sanitize = $(subst -,_,$(subst .,_,$(1)))\n"\
814"\n"\
815"# Use recursive makes in order to ignore errors during check\n"\
816"check-code-coverage:\n"\
817"ifeq ($(CODE_COVERAGE_ENABLED),yes)\n"\
818"	-$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -k check\n"\
819"	$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) code-coverage-capture\n"\
820"else\n"\
821"	@echo \"Need to reconfigure with --enable-code-coverage\"\n"\
822"endif\n"\
823"\n"\
824"# Capture code coverage data\n"\
825"code-coverage-capture: code-coverage-capture-hook\n"\
826"ifeq ($(CODE_COVERAGE_ENABLED),yes)\n"\
827"	$(code_coverage_v_lcov_cap)$(LCOV) $(code_coverage_quiet) $(addprefix --directory ,$(CODE_COVERAGE_DIRECTORY)) --capture --output-file \"$(CODE_COVE"\
828"RAGE_OUTPUT_FILE).tmp\" --test-name \"$(call code_coverage_sanitize,$(PACKAGE_NAME)-$(PACKAGE_VERSION))\" --no-checksum --compat-libtool $(CODE_COVERAG"\
829"E_LCOV_SHOPTS) $(CODE_COVERAGE_LCOV_OPTIONS)\n"\
830"	$(code_coverage_v_lcov_ign)$(LCOV) $(code_coverage_quiet) $(addprefix --directory ,$(CODE_COVERAGE_DIRECTORY)) --remove \"$(CODE_COVERAGE_OUTPUT_FIL"\
831"E).tmp\" \"/tmp/*\" $(CODE_COVERAGE_IGNORE_PATTERN) --output-file \"$(CODE_COVERAGE_OUTPUT_FILE)\" $(CODE_COVERAGE_LCOV_SHOPTS) $(CODE_COVERAGE_LCOV_RMOP"\
832"TS)\n"\
833"	-@rm -f $(CODE_COVERAGE_OUTPUT_FILE).tmp\n"\
834"	$(code_coverage_v_genhtml)LANG=C $(GENHTML) $(code_coverage_quiet) $(addprefix --prefix ,$(CODE_COVERAGE_DIRECTORY)) --output-directory \"$(CODE_COV"\
835"ERAGE_OUTPUT_DIRECTORY)\" --title \"$(PACKAGE_NAME)-$(PACKAGE_VERSION) Code Coverage\" --legend --show-details \"$(CODE_COVERAGE_OUTPUT_FILE)\" $(CODE_CO"\
836"VERAGE_GENHTML_OPTIONS)\n"\
837"	@echo \"file://$(abs_builddir)/$(CODE_COVERAGE_OUTPUT_DIRECTORY)/index.html\"\n"\
838"else\n"\
839"	@echo \"Need to reconfigure with --enable-code-coverage\"\n"\
840"endif\n"\
841"\n"\
842"# Hook rule executed before code-coverage-capture, overridable by the user\n"\
843"code-coverage-capture-hook:\n"\
844"\n"\
845"ifeq ($(CODE_COVERAGE_ENABLED),yes)\n"\
846"clean: code-coverage-clean\n"\
847"distclean: code-coverage-clean\n"\
848"code-coverage-clean:\n"\
849"	-$(LCOV) --directory $(top_builddir) -z\n"\
850"	-rm -rf $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_FILE).tmp $(CODE_COVERAGE_OUTPUT_DIRECTORY)\n"\
851"	-find . \\( -name \"*.gcda\" -o -name \"*.gcno\" -o -name \"*.gcov\" \\) -delete\n"\
852"endif\n"\
853"\n"\
854"GITIGNOREFILES ?=\n"\
855"GITIGNOREFILES += $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_DIRECTORY)\n"\
856"\n"\
857"AM_DISTCHECK_CONFIGURE_FLAGS ?=\n"\
858"AM_DISTCHECK_CONFIGURE_FLAGS += --disable-code-coverage\n"\
859"\n"\
860".PHONY: check-code-coverage code-coverage-capture code-coverage-capture-hook code-coverage-clean\n"\
861""
862S["CODE_COVERAGE_LDFLAGS"]=""
863S["CODE_COVERAGE_CXXFLAGS"]=""
864S["CODE_COVERAGE_CFLAGS"]=""
865S["CODE_COVERAGE_CPPFLAGS"]=""
866S["GENHTML"]=""
867S["LCOV"]=""
868S["GCOV"]=""
869S["CODE_COVERAGE_ENABLED"]="no"
870S["CODE_COVERAGE_ENABLED_FALSE"]=""
871S["CODE_COVERAGE_ENABLED_TRUE"]="#"
872S["SED"]="/bin/sed"
873S["EGREP"]="/bin/grep -E"
874S["GREP"]="/bin/grep"
875S["RANLIB"]="ranlib"
876S["WARN_CFLAGS_FOR_BUILD"]=" -Wall -Wempty-body -Wformat-security -Wignored-qualifiers -Winit-self -Wlogical-op -Wmissing-parameter-type -Wnested-externs -Wold-style-declaratio"\
877"n -Wold-style-definition -Wsign-compare -Wtype-limits -Wwrite-strings"
878S["LDFLAGS_FOR_BUILD"]=""
879S["CPPFLAGS_FOR_BUILD"]=""
880S["CFLAGS_FOR_BUILD"]="-g -O2"
881S["BUILD_OBJEXT"]=""
882S["BUILD_EXEEXT"]=""
883S["CPP_FOR_BUILD"]="gcc -E"
884S["ac_ct_CC_FOR_BUILD"]="gcc"
885S["CC_FOR_BUILD"]="gcc"
886S["WARN_CFLAGS"]=" -Wall -Wempty-body -Wformat-security -Wignored-qualifiers -Winit-self -Wlogical-op -Wmissing-parameter-type -Wnested-externs -Wold-style-declaratio"\
887"n -Wold-style-definition -Wsign-compare -Wtype-limits -Wwrite-strings"
888S["CPP"]="gcc -E"
889S["am__fastdepCC_FALSE"]="#"
890S["am__fastdepCC_TRUE"]=""
891S["CCDEPMODE"]="depmode=gcc3"
892S["am__nodep"]="_no"
893S["AMDEPBACKSLASH"]="\\"
894S["AMDEP_FALSE"]="#"
895S["AMDEP_TRUE"]=""
896S["am__quote"]=""
897S["am__include"]="include"
898S["DEPDIR"]=".deps"
899S["OBJEXT"]="o"
900S["EXEEXT"]=""
901S["ac_ct_CC"]="gcc"
902S["CPPFLAGS"]=""
903S["LDFLAGS"]=""
904S["CFLAGS"]="-g -O2"
905S["CC"]="gcc"
906S["DEB_CHANGELOGTIME"]="Wed, 15 Feb 2017 11:38:25 -0800"
907S["RPM_CHANGELOGTIME"]="Wed Feb 15 2017"
908S["host_os"]="linux-gnu"
909S["host_vendor"]="pc"
910S["host_cpu"]="x86_64"
911S["host"]="x86_64-pc-linux-gnu"
912S["build_os"]="linux-gnu"
913S["build_vendor"]="pc"
914S["build_cpu"]="x86_64"
915S["build"]="x86_64-pc-linux-gnu"
916S["MAINT"]="#"
917S["MAINTAINER_MODE_FALSE"]=""
918S["MAINTAINER_MODE_TRUE"]="#"
919S["AM_BACKSLASH"]="\\"
920S["AM_DEFAULT_VERBOSITY"]="1"
921S["AM_DEFAULT_V"]="$(AM_DEFAULT_VERBOSITY)"
922S["AM_V"]="$(V)"
923S["am__untar"]="$${TAR-tar} xf -"
924S["am__tar"]="$${TAR-tar} chof - \"$$tardir\""
925S["AMTAR"]="$${TAR-tar}"
926S["am__leading_dot"]="."
927S["SET_MAKE"]=""
928S["AWK"]="gawk"
929S["mkdir_p"]="$(MKDIR_P)"
930S["MKDIR_P"]="/bin/mkdir -p"
931S["INSTALL_STRIP_PROGRAM"]="$(install_sh) -c -s"
932S["STRIP"]=""
933S["install_sh"]="${SHELL} /usr/local/google/home/enh/Downloads/strace-4.16/install-sh"
934S["MAKEINFO"]="${SHELL} /usr/local/google/home/enh/Downloads/strace-4.16/missing makeinfo"
935S["AUTOHEADER"]="${SHELL} /usr/local/google/home/enh/Downloads/strace-4.16/missing autoheader"
936S["AUTOMAKE"]="${SHELL} /usr/local/google/home/enh/Downloads/strace-4.16/missing automake-1.14"
937S["AUTOCONF"]="${SHELL} /usr/local/google/home/enh/Downloads/strace-4.16/missing autoconf"
938S["ACLOCAL"]="${SHELL} /usr/local/google/home/enh/Downloads/strace-4.16/missing aclocal-1.14"
939S["VERSION"]="4.16"
940S["PACKAGE"]="strace"
941S["CYGPATH_W"]="echo"
942S["am__isrc"]=""
943S["INSTALL_DATA"]="${INSTALL} -m 644"
944S["INSTALL_SCRIPT"]="${INSTALL}"
945S["INSTALL_PROGRAM"]="${INSTALL}"
946S["target_alias"]=""
947S["host_alias"]=""
948S["build_alias"]=""
949S["LIBS"]=""
950S["ECHO_T"]=""
951S["ECHO_N"]="-n"
952S["ECHO_C"]=""
953S["DEFS"]="-DHAVE_CONFIG_H"
954S["mandir"]="${datarootdir}/man"
955S["localedir"]="${datarootdir}/locale"
956S["libdir"]="${exec_prefix}/lib"
957S["psdir"]="${docdir}"
958S["pdfdir"]="${docdir}"
959S["dvidir"]="${docdir}"
960S["htmldir"]="${docdir}"
961S["infodir"]="${datarootdir}/info"
962S["docdir"]="${datarootdir}/doc/${PACKAGE_TARNAME}"
963S["oldincludedir"]="/usr/include"
964S["includedir"]="${prefix}/include"
965S["localstatedir"]="${prefix}/var"
966S["sharedstatedir"]="${prefix}/com"
967S["sysconfdir"]="${prefix}/etc"
968S["datadir"]="${datarootdir}"
969S["datarootdir"]="${prefix}/share"
970S["libexecdir"]="${exec_prefix}/libexec"
971S["sbindir"]="${exec_prefix}/sbin"
972S["bindir"]="${exec_prefix}/bin"
973S["program_transform_name"]="s,x,x,"
974S["prefix"]="/usr/local"
975S["exec_prefix"]="${prefix}"
976S["PACKAGE_URL"]="https://strace.io"
977S["PACKAGE_BUGREPORT"]="strace-devel@lists.sourceforge.net"
978S["PACKAGE_STRING"]="strace 4.16"
979S["PACKAGE_VERSION"]="4.16"
980S["PACKAGE_TARNAME"]="strace"
981S["PACKAGE_NAME"]="strace"
982S["PATH_SEPARATOR"]=":"
983S["SHELL"]="/bin/sh"
984_ACAWK
985cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
986  for (key in S) S_is_set[key] = 1
987  FS = ""
988
989}
990{
991  line = $ 0
992  nfields = split(line, field, "@")
993  substed = 0
994  len = length(field[1])
995  for (i = 2; i < nfields; i++) {
996    key = field[i]
997    keylen = length(key)
998    if (S_is_set[key]) {
999      value = S[key]
1000      line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
1001      len += length(value) + length(field[++i])
1002      substed = 1
1003    } else
1004      len += 1 + keylen
1005  }
1006
1007  print line
1008}
1009
1010_ACAWK
1011if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
1012  sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
1013else
1014  cat
1015fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
1016  || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
1017fi # test -n "$CONFIG_FILES"
1018
1019# Set up the scripts for CONFIG_HEADERS section.
1020# No need to generate them if there are no CONFIG_HEADERS.
1021# This happens for instance with `./config.status Makefile'.
1022if test -n "$CONFIG_HEADERS"; then
1023cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
1024BEGIN {
1025D["PACKAGE_NAME"]=" \"strace\""
1026D["PACKAGE_TARNAME"]=" \"strace\""
1027D["PACKAGE_VERSION"]=" \"4.16\""
1028D["PACKAGE_STRING"]=" \"strace 4.16\""
1029D["PACKAGE_BUGREPORT"]=" \"strace-devel@lists.sourceforge.net\""
1030D["PACKAGE_URL"]=" \"https://strace.io\""
1031D["PACKAGE"]=" \"strace\""
1032D["VERSION"]=" \"4.16\""
1033D["STDC_HEADERS"]=" 1"
1034D["HAVE_SYS_TYPES_H"]=" 1"
1035D["HAVE_SYS_STAT_H"]=" 1"
1036D["HAVE_STDLIB_H"]=" 1"
1037D["HAVE_STRING_H"]=" 1"
1038D["HAVE_MEMORY_H"]=" 1"
1039D["HAVE_STRINGS_H"]=" 1"
1040D["HAVE_INTTYPES_H"]=" 1"
1041D["HAVE_STDINT_H"]=" 1"
1042D["HAVE_UNISTD_H"]=" 1"
1043D["__EXTENSIONS__"]=" 1"
1044D["_ALL_SOURCE"]=" 1"
1045D["_GNU_SOURCE"]=" 1"
1046D["_POSIX_PTHREAD_SEMANTICS"]=" 1"
1047D["_TANDEM_SOURCE"]=" 1"
1048D["X86_64"]=" 1"
1049D["ENABLE_ARM_OABI"]=" 0"
1050D["HAVE_TYPEOF"]=" 1"
1051D["HAVE_ACCEPT4"]=" 1"
1052D["HAVE_FALLOCATE"]=" 1"
1053D["HAVE_FANOTIFY_MARK"]=" 1"
1054D["HAVE_FOPEN64"]=" 1"
1055D["HAVE_FORK"]=" 1"
1056D["HAVE_FPUTS_UNLOCKED"]=" 1"
1057D["HAVE_FSTATAT"]=" 1"
1058D["HAVE_FTRUNCATE"]=" 1"
1059D["HAVE_FUTIMENS"]=" 1"
1060D["HAVE_IF_INDEXTONAME"]=" 1"
1061D["HAVE_OPEN64"]=" 1"
1062D["HAVE_PRCTL"]=" 1"
1063D["HAVE_PREADV"]=" 1"
1064D["HAVE_PROCESS_VM_READV"]=" 1"
1065D["HAVE_PWRITEV"]=" 1"
1066D["HAVE_READAHEAD"]=" 1"
1067D["HAVE_SIGNALFD"]=" 1"
1068D["HAVE_STPCPY"]=" 1"
1069D["HAVE_STRERROR"]=" 1"
1070D["HAVE_STRSIGNAL"]=" 1"
1071D["HAVE_SYNC_FILE_RANGE"]=" 1"
1072D["HAVE_UTIMENSAT"]=" 1"
1073D["HAVE_SIG_ATOMIC_T"]=" 1"
1074D["HAVE_STRUCT_SIGCONTEXT"]=" 1"
1075D["HAVE_STRUCT_MMSGHDR"]=" 1"
1076D["HAVE___KERNEL_LONG_T"]=" 1"
1077D["HAVE___KERNEL_ULONG_T"]=" 1"
1078D["HAVE_STRUCT___OLD_KERNEL_STAT"]=" 1"
1079D["HAVE_STRUCT_USER_DESC"]=" 1"
1080D["HAVE_STRUCT_STAT_ST_MTIME_NSEC"]=" 1"
1081D["HAVE_STRUCT_FLOCK"]=" 1"
1082D["HAVE_STRUCT_FLOCK64"]=" 1"
1083D["HAVE_STRUCT_TIMEX_TAI"]=" 1"
1084D["HAVE_STRUCT_UTSNAME_DOMAINNAME"]=" 1"
1085D["HAVE_SIGINFO_T_SI_SYSCALL"]=" 1"
1086D["HAVE_SIGINFO_T_SI_TIMERID"]=" 1"
1087D["HAVE_SIGINFO_T_SI_OVERRUN"]=" 1"
1088D["HAVE_STRUCT_PERF_EVENT_ATTR_PRECISE_IP"]=" 1"
1089D["HAVE_STRUCT_PERF_EVENT_ATTR_MMAP_DATA"]=" 1"
1090D["HAVE_STRUCT_PERF_EVENT_ATTR_SAMPLE_ID_ALL"]=" 1"
1091D["HAVE_STRUCT_PERF_EVENT_ATTR_EXCLUDE_HOST"]=" 1"
1092D["HAVE_STRUCT_PERF_EVENT_ATTR_EXCLUDE_GUEST"]=" 1"
1093D["HAVE_STRUCT_PERF_EVENT_ATTR_EXCLUDE_CALLCHAIN_KERNEL"]=" 1"
1094D["HAVE_STRUCT_PERF_EVENT_ATTR_EXCLUDE_CALLCHAIN_USER"]=" 1"
1095D["HAVE_STRUCT_PERF_EVENT_ATTR_MMAP2"]=" 1"
1096D["HAVE_STRUCT_PERF_EVENT_ATTR_BP_TYPE"]=" 1"
1097D["HAVE_STRUCT_PERF_EVENT_ATTR_CONFIG1"]=" 1"
1098D["HAVE_STRUCT_PERF_EVENT_ATTR_CONFIG2"]=" 1"
1099D["HAVE_STRUCT_PERF_EVENT_ATTR_BRANCH_SAMPLE_TYPE"]=" 1"
1100D["HAVE_STRUCT_PERF_EVENT_ATTR_SAMPLE_REGS_USER"]=" 1"
1101D["HAVE_STRUCT_PERF_EVENT_ATTR_SAMPLE_STACK_USER"]=" 1"
1102D["HAVE_ELF_H"]=" 1"
1103D["HAVE_INTTYPES_H"]=" 1"
1104D["HAVE_LINUX_BSG_H"]=" 1"
1105D["HAVE_LINUX_DM_IOCTL_H"]=" 1"
1106D["HAVE_LINUX_DQBLK_XFS_H"]=" 1"
1107D["HAVE_LINUX_FALLOC_H"]=" 1"
1108D["HAVE_LINUX_FIEMAP_H"]=" 1"
1109D["HAVE_LINUX_FILTER_H"]=" 1"
1110D["HAVE_LINUX_HIDDEV_H"]=" 1"
1111D["HAVE_LINUX_IP_VS_H"]=" 1"
1112D["HAVE_LINUX_IPC_H"]=" 1"
1113D["HAVE_LINUX_MMTIMER_H"]=" 1"
1114D["HAVE_LINUX_MSG_H"]=" 1"
1115D["HAVE_LINUX_PERF_EVENT_H"]=" 1"
1116D["HAVE_LINUX_QUOTA_H"]=" 1"
1117D["HAVE_LINUX_SECCOMP_H"]=" 1"
1118D["HAVE_LINUX_SECUREBITS_H"]=" 1"
1119D["HAVE_LINUX_SEM_H"]=" 1"
1120D["HAVE_LINUX_SHM_H"]=" 1"
1121D["HAVE_LINUX_UTSNAME_H"]=" 1"
1122D["HAVE_MQUEUE_H"]=" 1"
1123D["HAVE_NETIPX_IPX_H"]=" 1"
1124D["HAVE_SCSI_SG_H"]=" 1"
1125D["HAVE_STROPTS_H"]=" 1"
1126D["HAVE_SYS_EVENTFD_H"]=" 1"
1127D["HAVE_SYS_FANOTIFY_H"]=" 1"
1128D["HAVE_SYS_IPC_H"]=" 1"
1129D["HAVE_SYS_MSG_H"]=" 1"
1130D["HAVE_SYS_QUOTA_H"]=" 1"
1131D["HAVE_SYS_REG_H"]=" 1"
1132D["HAVE_SYS_SEM_H"]=" 1"
1133D["HAVE_SYS_SHM_H"]=" 1"
1134D["HAVE_SYS_SIGNALFD_H"]=" 1"
1135D["HAVE_SYS_XATTR_H"]=" 1"
1136D["HAVE_USTAT_H"]=" 1"
1137D["HAVE_NETINET_TCP_H"]=" 1"
1138D["HAVE_NETINET_UDP_H"]=" 1"
1139D["HAVE_LINUX_MQUEUE_H"]=" 1"
1140D["HAVE_LINUX_NETFILTER_ARP_ARP_TABLES_H"]=" 1"
1141D["HAVE_LINUX_NETFILTER_IPV4_IP_TABLES_H"]=" 1"
1142D["HAVE_LINUX_NETFILTER_IPV6_IP6_TABLES_H"]=" 1"
1143D["HAVE_LINUX_INPUT_H"]=" 1"
1144D["HAVE_STRUCT_INPUT_ABSINFO_RESOLUTION"]=" 1"
1145D["HAVE_STRUCT_STATFS"]=" 1"
1146D["HAVE_STRUCT_STATFS_F_FRSIZE"]=" 1"
1147D["HAVE_STRUCT_STATFS_F_FLAGS"]=" 1"
1148D["HAVE_STRUCT_STATFS_F_FSID_VAL"]=" 1"
1149D["HAVE_STRUCT_STATFS64"]=" 1"
1150D["HAVE_STRUCT_STATFS64_F_FRSIZE"]=" 1"
1151D["HAVE_STRUCT_STATFS64_F_FLAGS"]=" 1"
1152D["HAVE_STRUCT_STATFS64_F_FSID_VAL"]=" 1"
1153D["HAVE_STRUCT_BLK_USER_TRACE_SETUP"]=" 1"
1154D["HAVE_LINUX_BTRFS_H"]=" 1"
1155D["HAVE_DECL_BTRFS_COMPRESS_NONE"]=" 0"
1156D["HAVE_DECL_BTRFS_COMPRESS_ZLIB"]=" 0"
1157D["HAVE_DECL_BTRFS_COMPRESS_LZO"]=" 0"
1158D["HAVE_DECL_SYS_ERRLIST"]=" 1"
1159D["HAVE_DECL_PTRACE_PEEKUSER"]=" 1"
1160D["HAVE_DECL_PTRACE_POKEUSER"]=" 1"
1161D["HAVE_DECL_P_PID"]=" 1"
1162D["HAVE_DECL_P_PPID"]=" 0"
1163D["HAVE_DECL_P_PGID"]=" 1"
1164D["HAVE_DECL_P_SID"]=" 0"
1165D["HAVE_DECL_P_CID"]=" 0"
1166D["HAVE_DECL_P_UID"]=" 0"
1167D["HAVE_DECL_P_GID"]=" 0"
1168D["HAVE_DECL_P_ALL"]=" 1"
1169D["HAVE_DECL_P_LWPID"]=" 0"
1170D["HAVE_DECL_LO_FLAGS_READ_ONLY"]=" 1"
1171D["HAVE_DECL_LO_FLAGS_USE_AOPS"]=" 0"
1172D["HAVE_DECL_LO_FLAGS_AUTOCLEAR"]=" 1"
1173D["HAVE_DECL_LO_FLAGS_PARTSCAN"]=" 1"
1174D["HAVE_DECL_LO_FLAGS_DIRECT_IO"]=" 0"
1175D["HAVE_DECL_CTL_PROC"]=" 1"
1176D["HAVE_DECL_CTL_ARLAN"]=" 1"
1177D["HAVE_DECL_CTL_S390DBF"]=" 1"
1178D["HAVE_DECL_CTL_SUNRPC"]=" 1"
1179D["HAVE_DECL_CTL_PM"]=" 1"
1180D["HAVE_DECL_CTL_FRV"]=" 1"
1181D["HAVE_DECL_KERN_PRINTK_RATELIMIT"]=" 1"
1182D["HAVE_DECL_KERN_PRINTK_RATELIMIT_BURST"]=" 1"
1183D["HAVE_DECL_KERN_PTY"]=" 1"
1184D["HAVE_DECL_KERN_NGROUPS_MAX"]=" 1"
1185D["HAVE_DECL_KERN_SPARC_SCONS_PWROFF"]=" 1"
1186D["HAVE_DECL_KERN_HZ_TIMER"]=" 1"
1187D["HAVE_DECL_KERN_UNKNOWN_NMI_PANIC"]=" 1"
1188D["HAVE_DECL_KERN_BOOTLOADER_TYPE"]=" 1"
1189D["HAVE_DECL_KERN_RANDOMIZE"]=" 1"
1190D["HAVE_DECL_KERN_SETUID_DUMPABLE"]=" 1"
1191D["HAVE_DECL_KERN_SPIN_RETRY"]=" 1"
1192D["HAVE_DECL_KERN_ACPI_VIDEO_FLAGS"]=" 1"
1193D["HAVE_DECL_KERN_IA64_UNALIGNED"]=" 1"
1194D["HAVE_DECL_KERN_COMPAT_LOG"]=" 1"
1195D["HAVE_DECL_KERN_MAX_LOCK_DEPTH"]=" 1"
1196D["HAVE_DECL_KERN_NMI_WATCHDOG"]=" 1"
1197D["HAVE_DECL_KERN_PANIC_ON_NMI"]=" 1"
1198D["HAVE_DECL_NET_LLC"]=" 1"
1199D["HAVE_DECL_NET_NETFILTER"]=" 1"
1200D["HAVE_DECL_NET_DCCP"]=" 1"
1201D["HAVE_DECL_NET_IRDA"]=" 1"
1202D["HAVE_DECL_NET_CORE_DESTROY_DELAY"]=" 0"
1203D["HAVE_DECL_NET_CORE_BUDGET"]=" 1"
1204D["HAVE_DECL_NET_CORE_AEVENT_ETIME"]=" 1"
1205D["HAVE_DECL_NET_CORE_AEVENT_RSEQTH"]=" 1"
1206D["HAVE_DECL_NET_CORE_WARNINGS"]=" 1"
1207D["HAVE_DECL_NET_IPV4_IGMP_MAX_MSF"]=" 1"
1208D["HAVE_DECL_NET_TCP_NO_METRICS_SAVE"]=" 1"
1209D["HAVE_DECL_NET_TCP_DEFAULT_WIN_SCALE"]=" 1"
1210D["HAVE_DECL_NET_TCP_MODERATE_RCVBUF"]=" 1"
1211D["HAVE_DECL_NET_TCP_TSO_WIN_DIVISOR"]=" 1"
1212D["HAVE_DECL_NET_TCP_BIC_BETA"]=" 1"
1213D["HAVE_DECL_NET_IPV4_ICMP_ERRORS_USE_INBOUND_IFADDR"]=" 1"
1214D["HAVE_DECL_NET_TCP_CONG_CONTROL"]=" 1"
1215D["HAVE_DECL_NET_TCP_ABC"]=" 1"
1216D["HAVE_DECL_NET_IPV4_IPFRAG_MAX_DIST"]=" 1"
1217D["HAVE_DECL_NET_TCP_MTU_PROBING"]=" 1"
1218D["HAVE_DECL_NET_TCP_BASE_MSS"]=" 1"
1219D["HAVE_DECL_NET_IPV4_TCP_WORKAROUND_SIGNED_WINDOWS"]=" 1"
1220D["HAVE_DECL_NET_TCP_DMA_COPYBREAK"]=" 1"
1221D["HAVE_DECL_NET_TCP_SLOW_START_AFTER_IDLE"]=" 1"
1222D["HAVE_DECL_NET_CIPSOV4_CACHE_ENABLE"]=" 1"
1223D["HAVE_DECL_NET_CIPSOV4_CACHE_BUCKET_SIZE"]=" 1"
1224D["HAVE_DECL_NET_CIPSOV4_RBM_OPTFMT"]=" 1"
1225D["HAVE_DECL_NET_CIPSOV4_RBM_STRICTVALID"]=" 1"
1226D["HAVE_DECL_NET_TCP_AVAIL_CONG_CONTROL"]=" 1"
1227D["HAVE_DECL_NET_TCP_ALLOWED_CONG_CONTROL"]=" 1"
1228D["HAVE_DECL_NET_TCP_MAX_SSTHRESH"]=" 1"
1229D["HAVE_DECL_NET_TCP_FRTO_RESPONSE"]=" 1"
1230D["HAVE_DECL_NET_IPV4_ROUTE_GC_MIN_INTERVAL_MS"]=" 1"
1231D["HAVE_DECL_NET_IPV4_CONF_FORCE_IGMP_VERSION"]=" 1"
1232D["HAVE_DECL_NET_IPV4_CONF_ARP_ANNOUNCE"]=" 1"
1233D["HAVE_DECL_NET_IPV4_CONF_ARP_IGNORE"]=" 1"
1234D["HAVE_DECL_NET_IPV4_CONF_PROMOTE_SECONDARIES"]=" 1"
1235D["HAVE_DECL_NET_IPV4_CONF_ARP_ACCEPT"]=" 1"
1236D["HAVE_DECL_NET_IPV4_CONF_ARP_NOTIFY"]=" 1"
1237D["HAVE_DECL_NET_IPV6_MLD_MAX_MSF"]=" 1"
1238D["HAVE_DECL_NET_IPV6_ROUTE_GC_MIN_INTERVAL_MS"]=" 1"
1239D["HAVE_DECL_VM_MAX_MAP_COUNT"]=" 1"
1240D["HAVE_DECL_VM_LAPTOP_MODE"]=" 1"
1241D["HAVE_DECL_VM_BLOCK_DUMP"]=" 1"
1242D["HAVE_DECL_VM_HUGETLB_GROUP"]=" 1"
1243D["HAVE_DECL_VM_VFS_CACHE_PRESSURE"]=" 1"
1244D["HAVE_DECL_VM_LEGACY_VA_LAYOUT"]=" 1"
1245D["HAVE_DECL_VM_SWAP_TOKEN_TIMEOUT"]=" 1"
1246D["HAVE_DECL_V4L2_FIELD_ANY"]=" 1"
1247D["HAVE_DECL_V4L2_FIELD_NONE"]=" 1"
1248D["HAVE_DECL_V4L2_FIELD_TOP"]=" 1"
1249D["HAVE_DECL_V4L2_FIELD_BOTTOM"]=" 1"
1250D["HAVE_DECL_V4L2_FIELD_INTERLACED"]=" 1"
1251D["HAVE_DECL_V4L2_FIELD_SEQ_TB"]=" 1"
1252D["HAVE_DECL_V4L2_FIELD_SEQ_BT"]=" 1"
1253D["HAVE_DECL_V4L2_FIELD_ALTERNATE"]=" 1"
1254D["HAVE_DECL_V4L2_FIELD_INTERLACED_TB"]=" 1"
1255D["HAVE_DECL_V4L2_FIELD_INTERLACED_BT"]=" 1"
1256D["HAVE_DECL_V4L2_BUF_TYPE_VIDEO_CAPTURE"]=" 1"
1257D["HAVE_DECL_V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE"]=" 1"
1258D["HAVE_DECL_V4L2_BUF_TYPE_VIDEO_OUTPUT"]=" 1"
1259D["HAVE_DECL_V4L2_BUF_TYPE_VIDEO_OUTPUT_MPLANE"]=" 1"
1260D["HAVE_DECL_V4L2_BUF_TYPE_VIDEO_OVERLAY"]=" 1"
1261D["HAVE_DECL_V4L2_BUF_TYPE_VBI_CAPTURE"]=" 1"
1262D["HAVE_DECL_V4L2_BUF_TYPE_VBI_OUTPUT"]=" 1"
1263D["HAVE_DECL_V4L2_BUF_TYPE_SLICED_VBI_CAPTURE"]=" 1"
1264D["HAVE_DECL_V4L2_BUF_TYPE_SLICED_VBI_OUTPUT"]=" 1"
1265D["HAVE_DECL_V4L2_BUF_TYPE_VIDEO_OUTPUT_OVERLAY"]=" 1"
1266D["HAVE_DECL_V4L2_TUNER_RADIO"]=" 1"
1267D["HAVE_DECL_V4L2_TUNER_ANALOG_TV"]=" 1"
1268D["HAVE_DECL_V4L2_TUNER_DIGITAL_TV"]=" 1"
1269D["HAVE_DECL_V4L2_MEMORY_MMAP"]=" 1"
1270D["HAVE_DECL_V4L2_MEMORY_USERPTR"]=" 1"
1271D["HAVE_DECL_V4L2_MEMORY_OVERLAY"]=" 1"
1272D["HAVE_DECL_V4L2_MEMORY_DMABUF"]=" 1"
1273D["HAVE_DECL_V4L2_COLORSPACE_SMPTE170M"]=" 1"
1274D["HAVE_DECL_V4L2_COLORSPACE_SMPTE240M"]=" 1"
1275D["HAVE_DECL_V4L2_COLORSPACE_REC709"]=" 1"
1276D["HAVE_DECL_V4L2_COLORSPACE_BT878"]=" 1"
1277D["HAVE_DECL_V4L2_COLORSPACE_470_SYSTEM_M"]=" 1"
1278D["HAVE_DECL_V4L2_COLORSPACE_470_SYSTEM_BG"]=" 1"
1279D["HAVE_DECL_V4L2_COLORSPACE_JPEG"]=" 1"
1280D["HAVE_DECL_V4L2_COLORSPACE_SRGB"]=" 1"
1281D["HAVE_DECL_V4L2_PRIORITY_UNSET"]=" 1"
1282D["HAVE_DECL_V4L2_PRIORITY_BACKGROUND"]=" 1"
1283D["HAVE_DECL_V4L2_PRIORITY_INTERACTIVE"]=" 1"
1284D["HAVE_DECL_V4L2_PRIORITY_RECORD"]=" 1"
1285D["HAVE_DECL_V4L2_FRMSIZE_TYPE_DISCRETE"]=" 1"
1286D["HAVE_DECL_V4L2_FRMSIZE_TYPE_CONTINUOUS"]=" 1"
1287D["HAVE_DECL_V4L2_FRMSIZE_TYPE_STEPWISE"]=" 1"
1288D["HAVE_DECL_V4L2_FRMIVAL_TYPE_DISCRETE"]=" 1"
1289D["HAVE_DECL_V4L2_FRMIVAL_TYPE_CONTINUOUS"]=" 1"
1290D["HAVE_DECL_V4L2_FRMIVAL_TYPE_STEPWISE"]=" 1"
1291D["HAVE_DECL_V4L2_CTRL_TYPE_INTEGER"]=" 1"
1292D["HAVE_DECL_V4L2_CTRL_TYPE_BOOLEAN"]=" 1"
1293D["HAVE_DECL_V4L2_CTRL_TYPE_MENU"]=" 1"
1294D["HAVE_DECL_V4L2_CTRL_TYPE_BUTTON"]=" 1"
1295D["HAVE_DECL_V4L2_CTRL_TYPE_INTEGER64"]=" 1"
1296D["HAVE_DECL_V4L2_CTRL_TYPE_CTRL_CLASS"]=" 1"
1297D["HAVE_DECL_V4L2_CTRL_TYPE_STRING"]=" 1"
1298D["HAVE_DECL_V4L2_CTRL_TYPE_BITMASK"]=" 1"
1299D["HAVE_DECL_V4L2_CTRL_TYPE_INTEGER_MENU"]=" 1"
1300D["HAVE_BLKGETSIZE64"]=" 1"
1301D["SIZEOF_LONG"]=" 8"
1302D["SIZEOF_LONG_LONG"]=" 8"
1303D["SIZEOF_OFF_T"]=" 8"
1304D["SIZEOF_KERNEL_LONG_T"]=" 8"
1305D["SIZEOF_STRUCT_I64_I32"]=" 16"
1306D["ASM_SIGRTMIN"]=" 32"
1307D["ASM_SA_RESTORER"]=" 0x04000000"
1308D["HAVE___BUILTIN_POPCOUNT"]=" 1"
1309D["HAVE_DLADDR"]=" 1"
1310D["HAVE_GNU_STUBS_32_H"]=" 1"
1311D["HAVE_M32_MPERS"]=" 1"
1312D["HAVE_M32_STRUCT_STAT"]=" 1"
1313D["HAVE_M32_STRUCT_STAT_ST_MTIME_NSEC"]=" 1"
1314D["HAVE_M32_STRUCT_STAT64"]=" 1"
1315D["HAVE_M32_STRUCT_STAT64_ST_MTIME_NSEC"]=" 1"
1316D["HAVE_GNU_STUBS_X32_H"]=" 1"
1317D["HAVE_MX32_MPERS"]=" 1"
1318D["HAVE_MX32_STRUCT_STAT"]=" 1"
1319D["HAVE_MX32_STRUCT_STAT_ST_MTIME_NSEC"]=" 1"
1320  for (key in D) D_is_set[key] = 1
1321  FS = ""
1322}
1323/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
1324  line = $ 0
1325  split(line, arg, " ")
1326  if (arg[1] == "#") {
1327    defundef = arg[2]
1328    mac1 = arg[3]
1329  } else {
1330    defundef = substr(arg[1], 2)
1331    mac1 = arg[2]
1332  }
1333  split(mac1, mac2, "(") #)
1334  macro = mac2[1]
1335  prefix = substr(line, 1, index(line, defundef) - 1)
1336  if (D_is_set[macro]) {
1337    # Preserve the white space surrounding the "#".
1338    print prefix "define", macro P[macro] D[macro]
1339    next
1340  } else {
1341    # Replace #undef with comments.  This is necessary, for example,
1342    # in the case of _POSIX_SOURCE, which is predefined and required
1343    # on some systems where configure will not decide to define it.
1344    if (defundef == "undef") {
1345      print "/*", prefix defundef, macro, "*/"
1346      next
1347    }
1348  }
1349}
1350{ print }
1351_ACAWK
1352  as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
1353fi # test -n "$CONFIG_HEADERS"
1354
1355
1356eval set X "  :F $CONFIG_FILES  :H $CONFIG_HEADERS    :C $CONFIG_COMMANDS"
1357shift
1358for ac_tag
1359do
1360  case $ac_tag in
1361  :[FHLC]) ac_mode=$ac_tag; continue;;
1362  esac
1363  case $ac_mode$ac_tag in
1364  :[FHL]*:*);;
1365  :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
1366  :[FH]-) ac_tag=-:-;;
1367  :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
1368  esac
1369  ac_save_IFS=$IFS
1370  IFS=:
1371  set x $ac_tag
1372  IFS=$ac_save_IFS
1373  shift
1374  ac_file=$1
1375  shift
1376
1377  case $ac_mode in
1378  :L) ac_source=$1;;
1379  :[FH])
1380    ac_file_inputs=
1381    for ac_f
1382    do
1383      case $ac_f in
1384      -) ac_f="$ac_tmp/stdin";;
1385      *) # Look for the file first in the build tree, then in the source tree
1386	 # (if the path is not absolute).  The absolute path cannot be DOS-style,
1387	 # because $ac_f cannot contain `:'.
1388	 test -f "$ac_f" ||
1389	   case $ac_f in
1390	   [\\/$]*) false;;
1391	   *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
1392	   esac ||
1393	   as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
1394      esac
1395      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
1396      as_fn_append ac_file_inputs " '$ac_f'"
1397    done
1398
1399    # Let's still pretend it is `configure' which instantiates (i.e., don't
1400    # use $as_me), people would be surprised to read:
1401    #    /* config.h.  Generated by config.status.  */
1402    configure_input='Generated from '`
1403	  $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
1404	`' by configure.'
1405    if test x"$ac_file" != x-; then
1406      configure_input="$ac_file.  $configure_input"
1407      { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
1408$as_echo "$as_me: creating $ac_file" >&6;}
1409    fi
1410    # Neutralize special characters interpreted by sed in replacement strings.
1411    case $configure_input in #(
1412    *\&* | *\|* | *\\* )
1413       ac_sed_conf_input=`$as_echo "$configure_input" |
1414       sed 's/[\\\\&|]/\\\\&/g'`;; #(
1415    *) ac_sed_conf_input=$configure_input;;
1416    esac
1417
1418    case $ac_tag in
1419    *:-:* | *:-) cat >"$ac_tmp/stdin" \
1420      || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
1421    esac
1422    ;;
1423  esac
1424
1425  ac_dir=`$as_dirname -- "$ac_file" ||
1426$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1427	 X"$ac_file" : 'X\(//\)[^/]' \| \
1428	 X"$ac_file" : 'X\(//\)$' \| \
1429	 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
1430$as_echo X"$ac_file" |
1431    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1432	    s//\1/
1433	    q
1434	  }
1435	  /^X\(\/\/\)[^/].*/{
1436	    s//\1/
1437	    q
1438	  }
1439	  /^X\(\/\/\)$/{
1440	    s//\1/
1441	    q
1442	  }
1443	  /^X\(\/\).*/{
1444	    s//\1/
1445	    q
1446	  }
1447	  s/.*/./; q'`
1448  as_dir="$ac_dir"; as_fn_mkdir_p
1449  ac_builddir=.
1450
1451case "$ac_dir" in
1452.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1453*)
1454  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1455  # A ".." for each directory in $ac_dir_suffix.
1456  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1457  case $ac_top_builddir_sub in
1458  "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1459  *)  ac_top_build_prefix=$ac_top_builddir_sub/ ;;
1460  esac ;;
1461esac
1462ac_abs_top_builddir=$ac_pwd
1463ac_abs_builddir=$ac_pwd$ac_dir_suffix
1464# for backward compatibility:
1465ac_top_builddir=$ac_top_build_prefix
1466
1467case $srcdir in
1468  .)  # We are building in place.
1469    ac_srcdir=.
1470    ac_top_srcdir=$ac_top_builddir_sub
1471    ac_abs_top_srcdir=$ac_pwd ;;
1472  [\\/]* | ?:[\\/]* )  # Absolute name.
1473    ac_srcdir=$srcdir$ac_dir_suffix;
1474    ac_top_srcdir=$srcdir
1475    ac_abs_top_srcdir=$srcdir ;;
1476  *) # Relative name.
1477    ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
1478    ac_top_srcdir=$ac_top_build_prefix$srcdir
1479    ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
1480esac
1481ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1482
1483
1484  case $ac_mode in
1485  :F)
1486  #
1487  # CONFIG_FILE
1488  #
1489
1490  case $INSTALL in
1491  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
1492  *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
1493  esac
1494  ac_MKDIR_P=$MKDIR_P
1495  case $MKDIR_P in
1496  [\\/$]* | ?:[\\/]* ) ;;
1497  */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
1498  esac
1499# If the template does not know about datarootdir, expand it.
1500# FIXME: This hack should be removed a few years after 2.60.
1501ac_datarootdir_hack=; ac_datarootdir_seen=
1502ac_sed_dataroot='
1503/datarootdir/ {
1504  p
1505  q
1506}
1507/@datadir@/p
1508/@docdir@/p
1509/@infodir@/p
1510/@localedir@/p
1511/@mandir@/p'
1512case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
1513*datarootdir*) ac_datarootdir_seen=yes;;
1514*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
1515  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
1516$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
1517  ac_datarootdir_hack='
1518  s&@datadir@&${datarootdir}&g
1519  s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g
1520  s&@infodir@&${datarootdir}/info&g
1521  s&@localedir@&${datarootdir}/locale&g
1522  s&@mandir@&${datarootdir}/man&g
1523  s&\${datarootdir}&${prefix}/share&g' ;;
1524esac
1525ac_sed_extra="/^[	 ]*VPATH[	 ]*=[	 ]*/{
1526h
1527s///
1528s/^/:/
1529s/[	 ]*$/:/
1530s/:\$(srcdir):/:/g
1531s/:\${srcdir}:/:/g
1532s/:@srcdir@:/:/g
1533s/^:*//
1534s/:*$//
1535x
1536s/\(=[	 ]*\).*/\1/
1537G
1538s/\n//
1539s/^[^=]*=[	 ]*$//
1540}
1541
1542:t
1543/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
1544s|@configure_input@|$ac_sed_conf_input|;t t
1545s&@top_builddir@&$ac_top_builddir_sub&;t t
1546s&@top_build_prefix@&$ac_top_build_prefix&;t t
1547s&@srcdir@&$ac_srcdir&;t t
1548s&@abs_srcdir@&$ac_abs_srcdir&;t t
1549s&@top_srcdir@&$ac_top_srcdir&;t t
1550s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
1551s&@builddir@&$ac_builddir&;t t
1552s&@abs_builddir@&$ac_abs_builddir&;t t
1553s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
1554s&@INSTALL@&$ac_INSTALL&;t t
1555s&@MKDIR_P@&$ac_MKDIR_P&;t t
1556$ac_datarootdir_hack
1557"
1558eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
1559  >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1560
1561test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
1562  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
1563  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
1564      "$ac_tmp/out"`; test -z "$ac_out"; } &&
1565  { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1566which seems to be undefined.  Please make sure it is defined" >&5
1567$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1568which seems to be undefined.  Please make sure it is defined" >&2;}
1569
1570  rm -f "$ac_tmp/stdin"
1571  case $ac_file in
1572  -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
1573  *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
1574  esac \
1575  || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1576 ;;
1577  :H)
1578  #
1579  # CONFIG_HEADER
1580  #
1581  if test x"$ac_file" != x-; then
1582    {
1583      $as_echo "/* $configure_input  */" \
1584      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
1585    } >"$ac_tmp/config.h" \
1586      || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1587    if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
1588      { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1589$as_echo "$as_me: $ac_file is unchanged" >&6;}
1590    else
1591      rm -f "$ac_file"
1592      mv "$ac_tmp/config.h" "$ac_file" \
1593	|| as_fn_error $? "could not create $ac_file" "$LINENO" 5
1594    fi
1595  else
1596    $as_echo "/* $configure_input  */" \
1597      && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
1598      || as_fn_error $? "could not create -" "$LINENO" 5
1599  fi
1600# Compute "$ac_file"'s index in $config_headers.
1601_am_arg="$ac_file"
1602_am_stamp_count=1
1603for _am_header in $config_headers :; do
1604  case $_am_header in
1605    $_am_arg | $_am_arg:* )
1606      break ;;
1607    * )
1608      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
1609  esac
1610done
1611echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
1612$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1613	 X"$_am_arg" : 'X\(//\)[^/]' \| \
1614	 X"$_am_arg" : 'X\(//\)$' \| \
1615	 X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
1616$as_echo X"$_am_arg" |
1617    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1618	    s//\1/
1619	    q
1620	  }
1621	  /^X\(\/\/\)[^/].*/{
1622	    s//\1/
1623	    q
1624	  }
1625	  /^X\(\/\/\)$/{
1626	    s//\1/
1627	    q
1628	  }
1629	  /^X\(\/\).*/{
1630	    s//\1/
1631	    q
1632	  }
1633	  s/.*/./; q'`/stamp-h$_am_stamp_count
1634 ;;
1635
1636  :C)  { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1637$as_echo "$as_me: executing $ac_file commands" >&6;}
1638 ;;
1639  esac
1640
1641
1642  case $ac_file$ac_mode in
1643    "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
1644  # Older Autoconf quotes --file arguments for eval, but not when files
1645  # are listed without --file.  Let's play safe and only enable the eval
1646  # if we detect the quoting.
1647  case $CONFIG_FILES in
1648  *\'*) eval set x "$CONFIG_FILES" ;;
1649  *)   set x $CONFIG_FILES ;;
1650  esac
1651  shift
1652  for mf
1653  do
1654    # Strip MF so we end up with the name of the file.
1655    mf=`echo "$mf" | sed -e 's/:.*$//'`
1656    # Check whether this is an Automake generated Makefile or not.
1657    # We used to match only the files named 'Makefile.in', but
1658    # some people rename them; so instead we look at the file content.
1659    # Grep'ing the first line is not enough: some people post-process
1660    # each Makefile.in and add a new line on top of each file to say so.
1661    # Grep'ing the whole file is not good either: AIX grep has a line
1662    # limit of 2048, but all sed's we know have understand at least 4000.
1663    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
1664      dirpart=`$as_dirname -- "$mf" ||
1665$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1666	 X"$mf" : 'X\(//\)[^/]' \| \
1667	 X"$mf" : 'X\(//\)$' \| \
1668	 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
1669$as_echo X"$mf" |
1670    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1671	    s//\1/
1672	    q
1673	  }
1674	  /^X\(\/\/\)[^/].*/{
1675	    s//\1/
1676	    q
1677	  }
1678	  /^X\(\/\/\)$/{
1679	    s//\1/
1680	    q
1681	  }
1682	  /^X\(\/\).*/{
1683	    s//\1/
1684	    q
1685	  }
1686	  s/.*/./; q'`
1687    else
1688      continue
1689    fi
1690    # Extract the definition of DEPDIR, am__include, and am__quote
1691    # from the Makefile without running 'make'.
1692    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
1693    test -z "$DEPDIR" && continue
1694    am__include=`sed -n 's/^am__include = //p' < "$mf"`
1695    test -z "$am__include" && continue
1696    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
1697    # Find all dependency output files, they are included files with
1698    # $(DEPDIR) in their names.  We invoke sed twice because it is the
1699    # simplest approach to changing $(DEPDIR) to its actual value in the
1700    # expansion.
1701    for file in `sed -n "
1702      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
1703	 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
1704      # Make sure the directory exists.
1705      test -f "$dirpart/$file" && continue
1706      fdir=`$as_dirname -- "$file" ||
1707$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
1708	 X"$file" : 'X\(//\)[^/]' \| \
1709	 X"$file" : 'X\(//\)$' \| \
1710	 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
1711$as_echo X"$file" |
1712    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1713	    s//\1/
1714	    q
1715	  }
1716	  /^X\(\/\/\)[^/].*/{
1717	    s//\1/
1718	    q
1719	  }
1720	  /^X\(\/\/\)$/{
1721	    s//\1/
1722	    q
1723	  }
1724	  /^X\(\/\).*/{
1725	    s//\1/
1726	    q
1727	  }
1728	  s/.*/./; q'`
1729      as_dir=$dirpart/$fdir; as_fn_mkdir_p
1730      # echo "creating $dirpart/$file"
1731      echo '# dummy' > "$dirpart/$file"
1732    done
1733  done
1734}
1735 ;;
1736
1737  esac
1738done # for ac_tag
1739
1740
1741as_fn_exit 0
1742