···11+commit 4ce1a96d300a9d63a2306331000878d6f8c34a3e
22+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
33+Date: Sat Jan 20 12:25:47 2024 -0800
44+55+ xbiff 1.0.5
66+77+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
88+99+commit f7b3bb94462ea5d51514cc32d2808b5b02cea24b
1010+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1111+Date: Sat Sep 23 10:56:27 2023 -0700
1212+1313+ Use C99 struct initializers
1414+1515+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
1616+1717+commit 2c513f4ab38187dc7268f898e5db87eab3983715
1818+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
1919+Date: Sun Feb 5 11:34:44 2023 -0800
2020+2121+ List which options were unrecognized before printing usage message
2222+2323+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2424+2525+commit 0f9f41f177b4713a6792a2bc87dfbb186b8926bd
2626+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
2727+Date: Sun Feb 5 11:34:18 2023 -0800
2828+2929+ Add -help option
3030+3131+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
3232+3333+commit 44cc442a633a3ce39603fc879793a4f51b6ae132
3434+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3535+Date: Sun Feb 5 11:19:32 2023 -0800
3636+3737+ Fix -version handling to not require opening a display first
3838+3939+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4040+4141+commit ed933c78bf1208140baf6103dc5ab81080f6c6fb
4242+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
4343+Date: Sat Jan 28 10:34:11 2023 -0800
4444+4545+ Add -version option
4646+4747+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
4848+4949+commit fe643332c824fdd0e4f8243e5c1e67c6370d0e5a
5050+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5151+Date: Sat Jan 28 10:26:33 2023 -0800
5252+5353+ Combine usage message into a single string
5454+5555+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
5656+5757+commit ffbfe65382c8f267139b87630976700c0e80b435
5858+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
5959+Date: Sat Jan 28 10:12:58 2023 -0800
6060+6161+ Use XtAsprintf instead of manual mallocing and copying of strings
6262+6363+ Raises minimum libXt requirement to 1.1.0
6464+6565+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
6666+6767+commit 7862d8d80e8612b3e7285ce2fe3ec901fda05fe6
6868+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
6969+Date: Tue Dec 20 12:21:37 2022 -0800
7070+7171+ configure: Use AC_SYS_LARGEFILE to enable large file support
7272+7373+ Also adds include of "config.h" before any other header files
7474+ are included, to avoid mismatch of _FILE_OFFSET_BITS when
7575+ processing other header files.
7676+7777+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
7878+7979+commit c3d0f59af3626b73c32e8e03a41d6a712909c7af
8080+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8181+Date: Thu Jul 28 17:30:21 2022 -0700
8282+8383+ gitlab CI: stop requiring Signed-off-by in commits
8484+8585+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8686+8787+commit 30528211ad661e9a3d53f6f155a6a6deac334e00
8888+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
8989+Date: Sat Dec 4 10:37:17 2021 -0800
9090+9191+ Build xz tarballs instead of bzip2
9292+9393+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
9494+9595+commit a5c655d67994c905629a5caae2f3e2d88b155f8c
9696+Author: Alan Coopersmith <alan.coopersmith@oracle.com>
9797+Date: Sat Dec 4 10:37:14 2021 -0800
9898+9999+ gitlab CI: add a basic build test
100100+101101+ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
102102+1103commit a757ec8b8f867f09deb1e95a61f07a6a6227e77c
2104Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3105Date: Sun Jul 14 11:29:14 2019 -0700
···11#! /bin/sh
22# Wrapper for compilers which do not understand '-c -o'.
3344-scriptversion=2012-10-14.11; # UTC
44+scriptversion=2018-03-07.03; # UTC
5566-# Copyright (C) 1999-2014 Free Software Foundation, Inc.
66+# Copyright (C) 1999-2021 Free Software Foundation, Inc.
77# Written by Tom Tromey <tromey@cygnus.com>.
88#
99# This program is free software; you can redistribute it and/or modify
···1717# GNU General Public License for more details.
1818#
1919# You should have received a copy of the GNU General Public License
2020-# along with this program. If not, see <http://www.gnu.org/licenses/>.
2020+# along with this program. If not, see <https://www.gnu.org/licenses/>.
21212222# As a special exception to the GNU General Public License, if you
2323# distribute this file as part of a program that contains a
···5353 MINGW*)
5454 file_conv=mingw
5555 ;;
5656- CYGWIN*)
5656+ CYGWIN* | MSYS*)
5757 file_conv=cygwin
5858 ;;
5959 *)
···6767 mingw/*)
6868 file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
6969 ;;
7070- cygwin/*)
7070+ cygwin/* | msys/*)
7171 file=`cygpath -m "$file" || echo "$file"`
7272 ;;
7373 wine/*)
···255255 echo "compile $scriptversion"
256256 exit $?
257257 ;;
258258- cl | *[/\\]cl | cl.exe | *[/\\]cl.exe )
258258+ cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
259259+ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
259260 func_cl_wrapper "$@" # Doesn't return...
260261 ;;
261262esac
···339340# Local Variables:
340341# mode: shell-script
341342# sh-indentation: 2
342342-# eval: (add-hook 'write-file-hooks 'time-stamp)
343343+# eval: (add-hook 'before-save-hook 'time-stamp)
343344# time-stamp-start: "scriptversion="
344345# time-stamp-format: "%:y-%02m-%02d.%02H"
345345-# time-stamp-time-zone: "UTC"
346346+# time-stamp-time-zone: "UTC0"
346347# time-stamp-end: "; # UTC"
347348# End:
348349#! /bin/sh
+12-4
app/xbiff/config.h.in
···33/* Define to 1 if you have the <inttypes.h> header file. */
44#undef HAVE_INTTYPES_H
5566-/* Define to 1 if you have the <memory.h> header file. */
77-#undef HAVE_MEMORY_H
88-96/* Define to 1 if you have the <paths.h> header file. */
107#undef HAVE_PATHS_H
118129/* Define to 1 if you have the <stdint.h> header file. */
1310#undef HAVE_STDINT_H
1111+1212+/* Define to 1 if you have the <stdio.h> header file. */
1313+#undef HAVE_STDIO_H
14141515/* Define to 1 if you have the <stdlib.h> header file. */
1616#undef HAVE_STDLIB_H
···6363/* Patch version of this package */
6464#undef PACKAGE_VERSION_PATCHLEVEL
65656666-/* Define to 1 if you have the ANSI C header files. */
6666+/* Define to 1 if all of the C90 standard headers exist (not just the ones
6767+ required in a freestanding environment). This macro is provided for
6868+ backward compatibility; new code need not use it. */
6769#undef STDC_HEADERS
68706971/* Version number of package */
7072#undef VERSION
7373+7474+/* Number of bits in a file offset, on hosts where this is settable. */
7575+#undef _FILE_OFFSET_BITS
7676+7777+/* Define for large files, on AIX-style hosts. */
7878+#undef _LARGE_FILES
+3646-3101
app/xbiff/configure
···11#! /bin/sh
22# Guess values for system-dependent variables and create Makefiles.
33-# Generated by GNU Autoconf 2.69 for xbiff 1.0.4.
33+# Generated by GNU Autoconf 2.71 for xbiff 1.0.5.
44#
55# Report bugs to <https://gitlab.freedesktop.org/xorg/app/xbiff/issues>.
66#
77#
88-# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
88+# Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation,
99+# Inc.
910#
1011#
1112# This configure script is free software; the Free Software Foundation
···16171718# Be more Bourne compatible
1819DUALCASE=1; export DUALCASE # for MKS sh
1919-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
2020+as_nop=:
2121+if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
2222+then :
2023 emulate sh
2124 NULLCMD=:
2225 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
2326 # is contrary to our usage. Disable this feature.
2427 alias -g '${1+"$@"}'='"$@"'
2528 setopt NO_GLOB_SUBST
2626-else
2929+else $as_nop
2730 case `(set -o) 2>/dev/null` in #(
2831 *posix*) :
2932 set -o posix ;; #(
···3336fi
343735383939+4040+# Reset variables that may have inherited troublesome values from
4141+# the environment.
4242+4343+# IFS needs to be set, to space, tab, and newline, in precisely that order.
4444+# (If _AS_PATH_WALK were called with IFS unset, it would have the
4545+# side effect of setting IFS to empty, thus disabling word splitting.)
4646+# Quoting is to prevent editors from complaining about space-tab.
3647as_nl='
3748'
3849export as_nl
3939-# Printing a long string crashes Solaris 7 /usr/bin/printf.
4040-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
4141-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
4242-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
4343-# Prefer a ksh shell builtin over an external printf program on Solaris,
4444-# but without wasting forks for bash or zsh.
4545-if test -z "$BASH_VERSION$ZSH_VERSION" \
4646- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
4747- as_echo='print -r --'
4848- as_echo_n='print -rn --'
4949-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
5050- as_echo='printf %s\n'
5151- as_echo_n='printf %s'
5252-else
5353- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
5454- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
5555- as_echo_n='/usr/ucb/echo -n'
5656- else
5757- as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
5858- as_echo_n_body='eval
5959- arg=$1;
6060- case $arg in #(
6161- *"$as_nl"*)
6262- expr "X$arg" : "X\\(.*\\)$as_nl";
6363- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
6464- esac;
6565- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
6666- '
6767- export as_echo_n_body
6868- as_echo_n='sh -c $as_echo_n_body as_echo'
6969- fi
7070- export as_echo_body
7171- as_echo='sh -c $as_echo_body as_echo'
7272-fi
5050+IFS=" "" $as_nl"
5151+5252+PS1='$ '
5353+PS2='> '
5454+PS4='+ '
5555+5656+# Ensure predictable behavior from utilities with locale-dependent output.
5757+LC_ALL=C
5858+export LC_ALL
5959+LANGUAGE=C
6060+export LANGUAGE
6161+6262+# We cannot yet rely on "unset" to work, but we need these variables
6363+# to be unset--not just set to an empty or harmless value--now, to
6464+# avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct
6565+# also avoids known problems related to "unset" and subshell syntax
6666+# in other old shells (e.g. bash 2.01 and pdksh 5.2.14).
6767+for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH
6868+do eval test \${$as_var+y} \
6969+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
7070+done
7171+7272+# Ensure that fds 0, 1, and 2 are open.
7373+if (exec 3>&0) 2>/dev/null; then :; else exec 0</dev/null; fi
7474+if (exec 3>&1) 2>/dev/null; then :; else exec 1>/dev/null; fi
7575+if (exec 3>&2) ; then :; else exec 2>/dev/null; fi
73767477# The user is always right.
7575-if test "${PATH_SEPARATOR+set}" != set; then
7878+if ${PATH_SEPARATOR+false} :; then
7679 PATH_SEPARATOR=:
7780 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
7881 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
···8184fi
828583868484-# IFS
8585-# We need space, tab and new line, in precisely that order. Quoting is
8686-# there to prevent editors from complaining about space-tab.
8787-# (If _AS_PATH_WALK were called with IFS unset, it would disable word
8888-# splitting by setting IFS to empty value.)
8989-IFS=" "" $as_nl"
9090-9187# Find who we are. Look in the path if we contain no directory separator.
9288as_myself=
9389case $0 in #((
···9692for as_dir in $PATH
9793do
9894 IFS=$as_save_IFS
9999- test -z "$as_dir" && as_dir=.
100100- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
9595+ case $as_dir in #(((
9696+ '') as_dir=./ ;;
9797+ */) ;;
9898+ *) as_dir=$as_dir/ ;;
9999+ esac
100100+ test -r "$as_dir$0" && as_myself=$as_dir$0 && break
101101 done
102102IFS=$as_save_IFS
103103···109109 as_myself=$0
110110fi
111111if test ! -f "$as_myself"; then
112112- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
112112+ printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
113113 exit 1
114114fi
115115116116-# Unset variables that we do not need and which cause bugs (e.g. in
117117-# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
118118-# suppresses any "Segmentation fault" message there. '((' could
119119-# trigger a bug in pdksh 5.2.14.
120120-for as_var in BASH_ENV ENV MAIL MAILPATH
121121-do eval test x\${$as_var+set} = xset \
122122- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
123123-done
124124-PS1='$ '
125125-PS2='> '
126126-PS4='+ '
127127-128128-# NLS nuisances.
129129-LC_ALL=C
130130-export LC_ALL
131131-LANGUAGE=C
132132-export LANGUAGE
133133-134134-# CDPATH.
135135-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
136116137117# Use a proper internal environment variable to ensure we don't fall
138118 # into an infinite loop, continuously re-executing ourselves.
···154134exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
155135# Admittedly, this is quite paranoid, since all the known shells bail
156136# out after a failed `exec'.
157157-$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
158158-as_fn_exit 255
137137+printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
138138+exit 255
159139 fi
160140 # We don't want this to propagate to other subprocesses.
161141 { _as_can_reexec=; unset _as_can_reexec;}
162142if test "x$CONFIG_SHELL" = x; then
163163- as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
143143+ as_bourne_compatible="as_nop=:
144144+if test \${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
145145+then :
164146 emulate sh
165147 NULLCMD=:
166148 # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
167149 # is contrary to our usage. Disable this feature.
168150 alias -g '\${1+\"\$@\"}'='\"\$@\"'
169151 setopt NO_GLOB_SUBST
170170-else
152152+else \$as_nop
171153 case \`(set -o) 2>/dev/null\` in #(
172154 *posix*) :
173155 set -o posix ;; #(
···187169as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
188170as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
189171as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
190190-if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
172172+if ( set x; as_fn_ret_success y && test x = \"\$1\" )
173173+then :
191174192192-else
175175+else \$as_nop
193176 exitcode=1; echo positional parameters were not saved.
194177fi
195178test x\$exitcode = x0 || exit 1
179179+blah=\$(echo \$(echo blah))
180180+test x\"\$blah\" = xblah || exit 1
196181test -x / || exit 1"
197182 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
198183 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
199184 eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
200185 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
201186test \$(( 1 + 1 )) = 2 || exit 1"
202202- if (eval "$as_required") 2>/dev/null; then :
187187+ if (eval "$as_required") 2>/dev/null
188188+then :
203189 as_have_required=yes
204204-else
190190+else $as_nop
205191 as_have_required=no
206192fi
207207- if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
193193+ if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null
194194+then :
208195209209-else
196196+else $as_nop
210197 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
211198as_found=false
212199for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
213200do
214201 IFS=$as_save_IFS
215215- test -z "$as_dir" && as_dir=.
202202+ case $as_dir in #(((
203203+ '') as_dir=./ ;;
204204+ */) ;;
205205+ *) as_dir=$as_dir/ ;;
206206+ esac
216207 as_found=:
217208 case $as_dir in #(
218209 /*)
219210 for as_base in sh bash ksh sh5; do
220211 # Try only shells that exist, to save several forks.
221221- as_shell=$as_dir/$as_base
212212+ as_shell=$as_dir$as_base
222213 if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
223223- { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
214214+ as_run=a "$as_shell" -c "$as_bourne_compatible""$as_required" 2>/dev/null
215215+then :
224216 CONFIG_SHELL=$as_shell as_have_required=yes
225225- if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
217217+ if as_run=a "$as_shell" -c "$as_bourne_compatible""$as_suggested" 2>/dev/null
218218+then :
226219 break 2
227220fi
228221fi
···230223 esac
231224 as_found=false
232225done
233233-$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
234234- { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
235235- CONFIG_SHELL=$SHELL as_have_required=yes
236236-fi; }
237226IFS=$as_save_IFS
227227+if $as_found
228228+then :
238229230230+else $as_nop
231231+ if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
232232+ as_run=a "$SHELL" -c "$as_bourne_compatible""$as_required" 2>/dev/null
233233+then :
234234+ CONFIG_SHELL=$SHELL as_have_required=yes
235235+fi
236236+fi
239237240240- if test "x$CONFIG_SHELL" != x; then :
238238+239239+ if test "x$CONFIG_SHELL" != x
240240+then :
241241 export CONFIG_SHELL
242242 # We cannot yet assume a decent shell, so we have to provide a
243243# neutralization value for shells without unset; and this also
···255255exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
256256# Admittedly, this is quite paranoid, since all the known shells bail
257257# out after a failed `exec'.
258258-$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
258258+printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2
259259exit 255
260260fi
261261262262- if test x$as_have_required = xno; then :
263263- $as_echo "$0: This script requires a shell more modern than all"
264264- $as_echo "$0: the shells that I found on your system."
265265- if test x${ZSH_VERSION+set} = xset ; then
266266- $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
267267- $as_echo "$0: be upgraded to zsh 4.3.4 or later."
262262+ if test x$as_have_required = xno
263263+then :
264264+ printf "%s\n" "$0: This script requires a shell more modern than all"
265265+ printf "%s\n" "$0: the shells that I found on your system."
266266+ if test ${ZSH_VERSION+y} ; then
267267+ printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should"
268268+ printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later."
268269 else
269269- $as_echo "$0: Please tell bug-autoconf@gnu.org and
270270+ printf "%s\n" "$0: Please tell bug-autoconf@gnu.org and
270271$0: https://gitlab.freedesktop.org/xorg/app/xbiff/issues
271272$0: about your system, including any error possibly output
272273$0: before this message. Then install a modern shell, or
···295296}
296297as_unset=as_fn_unset
297298299299+298300# as_fn_set_status STATUS
299301# -----------------------
300302# Set $? to STATUS, without forking.
···312314 as_fn_set_status $1
313315 exit $1
314316} # as_fn_exit
317317+# as_fn_nop
318318+# ---------
319319+# Do nothing but, unlike ":", preserve the value of $?.
320320+as_fn_nop ()
321321+{
322322+ return $?
323323+}
324324+as_nop=as_fn_nop
315325316326# as_fn_mkdir_p
317327# -------------
···326336 as_dirs=
327337 while :; do
328338 case $as_dir in #(
329329- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
339339+ *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
330340 *) as_qdir=$as_dir;;
331341 esac
332342 as_dirs="'$as_qdir' $as_dirs"
···335345 X"$as_dir" : 'X\(//\)[^/]' \| \
336346 X"$as_dir" : 'X\(//\)$' \| \
337347 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
338338-$as_echo X"$as_dir" |
348348+printf "%s\n" X"$as_dir" |
339349 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
340350 s//\1/
341351 q
···374384# advantage of any shell optimizations that allow amortized linear growth over
375385# repeated appends, instead of the typical quadratic growth present in naive
376386# implementations.
377377-if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
387387+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null
388388+then :
378389 eval 'as_fn_append ()
379390 {
380391 eval $1+=\$2
381392 }'
382382-else
393393+else $as_nop
383394 as_fn_append ()
384395 {
385396 eval $1=\$$1\$2
···391402# Perform arithmetic evaluation on the ARGs, and store the result in the
392403# global $as_val. Take advantage of shells that can avoid forks. The arguments
393404# must be portable across $(()) and expr.
394394-if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
405405+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null
406406+then :
395407 eval 'as_fn_arith ()
396408 {
397409 as_val=$(( $* ))
398410 }'
399399-else
411411+else $as_nop
400412 as_fn_arith ()
401413 {
402414 as_val=`expr "$@" || test $? -eq 1`
403415 }
404416fi # as_fn_arith
405417418418+# as_fn_nop
419419+# ---------
420420+# Do nothing but, unlike ":", preserve the value of $?.
421421+as_fn_nop ()
422422+{
423423+ return $?
424424+}
425425+as_nop=as_fn_nop
406426407427# as_fn_error STATUS ERROR [LINENO LOG_FD]
408428# ----------------------------------------
···414434 as_status=$1; test $as_status -eq 0 && as_status=1
415435 if test "$4"; then
416436 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
417417- $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
437437+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
418438 fi
419419- $as_echo "$as_me: error: $2" >&2
439439+ printf "%s\n" "$as_me: error: $2" >&2
420440 as_fn_exit $as_status
421441} # as_fn_error
422442···443463$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
444464 X"$0" : 'X\(//\)$' \| \
445465 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
446446-$as_echo X/"$0" |
466466+printf "%s\n" X/"$0" |
447467 sed '/^.*\/\([^/][^/]*\)\/*$/{
448468 s//\1/
449469 q
···487507 s/-\n.*//
488508 ' >$as_me.lineno &&
489509 chmod +x "$as_me.lineno" ||
490490- { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
510510+ { printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
491511492512 # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
493513 # already done that, so ensure we don't try to do so again and fall
···501521 exit
502522}
503523524524+525525+# Determine whether it's possible to make 'echo' print without a newline.
526526+# These variables are no longer used directly by Autoconf, but are AC_SUBSTed
527527+# for compatibility with existing Makefiles.
504528ECHO_C= ECHO_N= ECHO_T=
505529case `echo -n x` in #(((((
506530-n*)
···514538 ECHO_N='-n';;
515539esac
516540541541+# For backward compatibility with old third-party macros, we provide
542542+# the shell variables $as_echo and $as_echo_n. New code should use
543543+# AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively.
544544+as_echo='printf %s\n'
545545+as_echo_n='printf %s'
546546+547547+517548rm -f conf$$ conf$$.exe conf$$.file
518549if test -d conf$$.dir; then
519550 rm -f conf$$.dir/conf$$.file
···581612# Identity of this package.
582613PACKAGE_NAME='xbiff'
583614PACKAGE_TARNAME='xbiff'
584584-PACKAGE_VERSION='1.0.4'
585585-PACKAGE_STRING='xbiff 1.0.4'
615615+PACKAGE_VERSION='1.0.5'
616616+PACKAGE_STRING='xbiff 1.0.5'
586617PACKAGE_BUGREPORT='https://gitlab.freedesktop.org/xorg/app/xbiff/issues'
587618PACKAGE_URL=''
588619589620ac_unique_file="Makefile.am"
590621# Factoring default headers for most tests.
591622ac_includes_default="\
592592-#include <stdio.h>
593593-#ifdef HAVE_SYS_TYPES_H
594594-# include <sys/types.h>
623623+#include <stddef.h>
624624+#ifdef HAVE_STDIO_H
625625+# include <stdio.h>
595626#endif
596596-#ifdef HAVE_SYS_STAT_H
597597-# include <sys/stat.h>
598598-#endif
599599-#ifdef STDC_HEADERS
627627+#ifdef HAVE_STDLIB_H
600628# include <stdlib.h>
601601-# include <stddef.h>
602602-#else
603603-# ifdef HAVE_STDLIB_H
604604-# include <stdlib.h>
605605-# endif
606629#endif
607630#ifdef HAVE_STRING_H
608608-# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
609609-# include <memory.h>
610610-# endif
611631# include <string.h>
612612-#endif
613613-#ifdef HAVE_STRINGS_H
614614-# include <strings.h>
615632#endif
616633#ifdef HAVE_INTTYPES_H
617634# include <inttypes.h>
618635#endif
619636#ifdef HAVE_STDINT_H
620637# include <stdint.h>
638638+#endif
639639+#ifdef HAVE_STRINGS_H
640640+# include <strings.h>
641641+#endif
642642+#ifdef HAVE_SYS_TYPES_H
643643+# include <sys/types.h>
644644+#endif
645645+#ifdef HAVE_SYS_STAT_H
646646+# include <sys/stat.h>
621647#endif
622648#ifdef HAVE_UNISTD_H
623649# include <unistd.h>
624650#endif"
625651652652+ac_header_c_list=
626653ac_subst_vars='am__EXEEXT_FALSE
627654am__EXEEXT_TRUE
628655LTLIBOBJS
···664691STRICT_CFLAGS
665692CWARNFLAGS
666693BASE_CFLAGS
667667-EGREP
668668-GREP
669669-CPP
670694am__fastdepCC_FALSE
671695am__fastdepCC_TRUE
672696CCDEPMODE
···729753docdir
730754oldincludedir
731755includedir
756756+runstatedir
732757localstatedir
733758sharedstatedir
734759sysconfdir
···756781enable_selective_werror
757782enable_strict_compilation
758783enable_silent_rules
784784+enable_largefile
759785with_mailbox_directory
760786'
761787 ac_precious_vars='build_alias
···766792LDFLAGS
767793LIBS
768794CPPFLAGS
769769-CPP
770795PKG_CONFIG
771796PKG_CONFIG_PATH
772797PKG_CONFIG_LIBDIR
···810835sysconfdir='${prefix}/etc'
811836sharedstatedir='${prefix}/com'
812837localstatedir='${prefix}/var'
838838+runstatedir='${localstatedir}/run'
813839includedir='${prefix}/include'
814840oldincludedir='/usr/include'
815841docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
···838864 *=) ac_optarg= ;;
839865 *) ac_optarg=yes ;;
840866 esac
841841-842842- # Accept the important Cygnus configure options, so we can diagnose typos.
843867844868 case $ac_dashdash$ac_option in
845869 --)
···881905 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
882906 # Reject names that are not valid shell variable names.
883907 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
884884- as_fn_error $? "invalid feature name: $ac_useropt"
908908+ as_fn_error $? "invalid feature name: \`$ac_useropt'"
885909 ac_useropt_orig=$ac_useropt
886886- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
910910+ ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
887911 case $ac_user_opts in
888912 *"
889913"enable_$ac_useropt"
···907931 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
908932 # Reject names that are not valid shell variable names.
909933 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
910910- as_fn_error $? "invalid feature name: $ac_useropt"
934934+ as_fn_error $? "invalid feature name: \`$ac_useropt'"
911935 ac_useropt_orig=$ac_useropt
912912- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
936936+ ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
913937 case $ac_user_opts in
914938 *"
915939"enable_$ac_useropt"
···10621086 | -silent | --silent | --silen | --sile | --sil)
10631087 silent=yes ;;
1064108810891089+ -runstatedir | --runstatedir | --runstatedi | --runstated \
10901090+ | --runstate | --runstat | --runsta | --runst | --runs \
10911091+ | --run | --ru | --r)
10921092+ ac_prev=runstatedir ;;
10931093+ -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
10941094+ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
10951095+ | --run=* | --ru=* | --r=*)
10961096+ runstatedir=$ac_optarg ;;
10971097+10651098 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
10661099 ac_prev=sbindir ;;
10671100 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
···11111144 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
11121145 # Reject names that are not valid shell variable names.
11131146 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
11141114- as_fn_error $? "invalid package name: $ac_useropt"
11471147+ as_fn_error $? "invalid package name: \`$ac_useropt'"
11151148 ac_useropt_orig=$ac_useropt
11161116- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
11491149+ ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
11171150 case $ac_user_opts in
11181151 *"
11191152"with_$ac_useropt"
···11271160 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
11281161 # Reject names that are not valid shell variable names.
11291162 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
11301130- as_fn_error $? "invalid package name: $ac_useropt"
11631163+ as_fn_error $? "invalid package name: \`$ac_useropt'"
11311164 ac_useropt_orig=$ac_useropt
11321132- ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
11651165+ ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'`
11331166 case $ac_user_opts in
11341167 *"
11351168"with_$ac_useropt"
···1173120611741207 *)
11751208 # FIXME: should be removed in autoconf 3.0.
11761176- $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
12091209+ printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2
11771210 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
11781178- $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
12111211+ printf "%s\n" "$as_me: WARNING: invalid host type: $ac_option" >&2
11791212 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
11801213 ;;
11811214···11911224 case $enable_option_checking in
11921225 no) ;;
11931226 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
11941194- *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
12271227+ *) printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
11951228 esac
11961229fi
11971230···11991232for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
12001233 datadir sysconfdir sharedstatedir localstatedir includedir \
12011234 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
12021202- libdir localedir mandir
12351235+ libdir localedir mandir runstatedir
12031236do
12041237 eval ac_val=\$$ac_var
12051238 # Remove trailing slashes.
···12551288 X"$as_myself" : 'X\(//\)[^/]' \| \
12561289 X"$as_myself" : 'X\(//\)$' \| \
12571290 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
12581258-$as_echo X"$as_myself" |
12911291+printf "%s\n" X"$as_myself" |
12591292 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
12601293 s//\1/
12611294 q
···13121345 # Omit some internal or obsolete options to make the list less imposing.
13131346 # This message is too long to be a string in the A/UX 3.1 sh.
13141347 cat <<_ACEOF
13151315-\`configure' configures xbiff 1.0.4 to adapt to many kinds of systems.
13481348+\`configure' configures xbiff 1.0.5 to adapt to many kinds of systems.
1316134913171350Usage: $0 [OPTION]... [VAR=VALUE]...
13181351···13521385 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
13531386 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
13541387 --localstatedir=DIR modifiable single-machine data [PREFIX/var]
13881388+ --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
13551389 --libdir=DIR object code libraries [EPREFIX/lib]
13561390 --includedir=DIR C header files [PREFIX/include]
13571391 --oldincludedir=DIR C header files for non-gcc [/usr/include]
···1382141613831417if test -n "$ac_init_help"; then
13841418 case $ac_init_help in
13851385- short | recursive ) echo "Configuration of xbiff 1.0.4:";;
14191419+ short | recursive ) echo "Configuration of xbiff 1.0.5:";;
13861420 esac
13871421 cat <<\_ACEOF
13881422···14051439 errors (default: disabled)
14061440 --enable-silent-rules less verbose build output (undo: "make V=1")
14071441 --disable-silent-rules verbose build output (undo: "make V=0")
14421442+ --disable-largefile omit support for large files
1408144314091444Optional Packages:
14101445 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
···14201455 LIBS libraries to pass to the linker, e.g. -l<library>
14211456 CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
14221457 you have headers in a nonstandard directory <include dir>
14231423- CPP C preprocessor
14241458 PKG_CONFIG path to pkg-config utility
14251459 PKG_CONFIG_PATH
14261460 directories to add to pkg-config's search path
···14491483case "$ac_dir" in
14501484.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
14511485*)
14521452- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
14861486+ ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'`
14531487 # A ".." for each directory in $ac_dir_suffix.
14541454- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
14881488+ ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
14551489 case $ac_top_builddir_sub in
14561490 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
14571491 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
···14791513ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
1480151414811515 cd "$ac_dir" || { ac_status=$?; continue; }
14821482- # Check for guested configure.
15161516+ # Check for configure.gnu first; this name is used for a wrapper for
15171517+ # Metaconfig's "Configure" on case-insensitive file systems.
14831518 if test -f "$ac_srcdir/configure.gnu"; then
14841519 echo &&
14851520 $SHELL "$ac_srcdir/configure.gnu" --help=recursive
···14871522 echo &&
14881523 $SHELL "$ac_srcdir/configure" --help=recursive
14891524 else
14901490- $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
15251525+ printf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2
14911526 fi || ac_status=$?
14921527 cd "$ac_pwd" || { ac_status=$?; break; }
14931528 done
···14961531test -n "$ac_init_help" && exit $ac_status
14971532if $ac_init_version; then
14981533 cat <<\_ACEOF
14991499-xbiff configure 1.0.4
15001500-generated by GNU Autoconf 2.69
15341534+xbiff configure 1.0.5
15351535+generated by GNU Autoconf 2.71
1501153615021502-Copyright (C) 2012 Free Software Foundation, Inc.
15371537+Copyright (C) 2021 Free Software Foundation, Inc.
15031538This configure script is free software; the Free Software Foundation
15041539gives unlimited permission to copy, distribute and modify it.
15051540_ACEOF
···15161551ac_fn_c_try_compile ()
15171552{
15181553 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
15191519- rm -f conftest.$ac_objext
15541554+ rm -f conftest.$ac_objext conftest.beam
15201555 if { { ac_try="$ac_compile"
15211556case "(($ac_try" in
15221557 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
15231558 *) ac_try_echo=$ac_try;;
15241559esac
15251560eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
15261526-$as_echo "$ac_try_echo"; } >&5
15611561+printf "%s\n" "$ac_try_echo"; } >&5
15271562 (eval "$ac_compile") 2>conftest.err
15281563 ac_status=$?
15291564 if test -s conftest.err; then
···15311566 cat conftest.er1 >&5
15321567 mv -f conftest.er1 conftest.err
15331568 fi
15341534- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
15691569+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
15351570 test $ac_status = 0; } && {
15361571 test -z "$ac_c_werror_flag" ||
15371572 test ! -s conftest.err
15381538- } && test -s conftest.$ac_objext; then :
15731573+ } && test -s conftest.$ac_objext
15741574+then :
15391575 ac_retval=0
15401540-else
15411541- $as_echo "$as_me: failed program was:" >&5
15761576+else $as_nop
15771577+ printf "%s\n" "$as_me: failed program was:" >&5
15421578sed 's/^/| /' conftest.$ac_ext >&5
1543157915441580 ac_retval=1
···1548158415491585} # ac_fn_c_try_compile
1550158615511551-# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES
15521552-# ---------------------------------------------
15871587+# ac_fn_check_decl LINENO SYMBOL VAR INCLUDES EXTRA-OPTIONS FLAG-VAR
15881588+# ------------------------------------------------------------------
15531589# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR
15541554-# accordingly.
15551555-ac_fn_c_check_decl ()
15901590+# accordingly. Pass EXTRA-OPTIONS to the compiler, using FLAG-VAR.
15911591+ac_fn_check_decl ()
15561592{
15571593 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
15581594 as_decl_name=`echo $2|sed 's/ *(.*//'`
15951595+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
15961596+printf %s "checking whether $as_decl_name is declared... " >&6; }
15971597+if eval test \${$3+y}
15981598+then :
15991599+ printf %s "(cached) " >&6
16001600+else $as_nop
15591601 as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
15601560- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
15611561-$as_echo_n "checking whether $as_decl_name is declared... " >&6; }
15621562-if eval \${$3+:} false; then :
15631563- $as_echo_n "(cached) " >&6
15641564-else
16021602+ eval ac_save_FLAGS=\$$6
16031603+ as_fn_append $6 " $5"
15651604 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
15661605/* end confdefs.h. */
15671606$4
15681607int
15691569-main ()
16081608+main (void)
15701609{
15711610#ifndef $as_decl_name
15721611#ifdef __cplusplus
···15801619 return 0;
15811620}
15821621_ACEOF
15831583-if ac_fn_c_try_compile "$LINENO"; then :
16221622+if ac_fn_c_try_compile "$LINENO"
16231623+then :
15841624 eval "$3=yes"
15851585-else
16251625+else $as_nop
15861626 eval "$3=no"
15871627fi
15881588-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
15891589-fi
15901590-eval ac_res=\$$3
15911591- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
15921592-$as_echo "$ac_res" >&6; }
15931593- eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
15941594-15951595-} # ac_fn_c_check_decl
15961596-15971597-# ac_fn_c_try_cpp LINENO
15981598-# ----------------------
15991599-# Try to preprocess conftest.$ac_ext, and return whether this succeeded.
16001600-ac_fn_c_try_cpp ()
16011601-{
16021602- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
16031603- if { { ac_try="$ac_cpp conftest.$ac_ext"
16041604-case "(($ac_try" in
16051605- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
16061606- *) ac_try_echo=$ac_try;;
16071607-esac
16081608-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
16091609-$as_echo "$ac_try_echo"; } >&5
16101610- (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
16111611- ac_status=$?
16121612- if test -s conftest.err; then
16131613- grep -v '^ *+' conftest.err >conftest.er1
16141614- cat conftest.er1 >&5
16151615- mv -f conftest.er1 conftest.err
16161616- fi
16171617- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
16181618- test $ac_status = 0; } > conftest.i && {
16191619- test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
16201620- test ! -s conftest.err
16211621- }; then :
16221622- ac_retval=0
16231623-else
16241624- $as_echo "$as_me: failed program was:" >&5
16251625-sed 's/^/| /' conftest.$ac_ext >&5
16281628+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
16291629+ eval $6=\$ac_save_FLAGS
1626163016271627- ac_retval=1
16281631fi
16321632+eval ac_res=\$$3
16331633+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
16341634+printf "%s\n" "$ac_res" >&6; }
16291635 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
16301630- as_fn_set_status $ac_retval
1631163616321632-} # ac_fn_c_try_cpp
16331633-16341634-# ac_fn_c_try_run LINENO
16351635-# ----------------------
16361636-# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes
16371637-# that executables *can* be run.
16381638-ac_fn_c_try_run ()
16391639-{
16401640- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
16411641- if { { ac_try="$ac_link"
16421642-case "(($ac_try" in
16431643- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
16441644- *) ac_try_echo=$ac_try;;
16451645-esac
16461646-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
16471647-$as_echo "$ac_try_echo"; } >&5
16481648- (eval "$ac_link") 2>&5
16491649- ac_status=$?
16501650- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
16511651- test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
16521652- { { case "(($ac_try" in
16531653- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
16541654- *) ac_try_echo=$ac_try;;
16551655-esac
16561656-eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
16571657-$as_echo "$ac_try_echo"; } >&5
16581658- (eval "$ac_try") 2>&5
16591659- ac_status=$?
16601660- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
16611661- test $ac_status = 0; }; }; then :
16621662- ac_retval=0
16631663-else
16641664- $as_echo "$as_me: program exited with status $ac_status" >&5
16651665- $as_echo "$as_me: failed program was:" >&5
16661666-sed 's/^/| /' conftest.$ac_ext >&5
16671667-16681668- ac_retval=$ac_status
16691669-fi
16701670- rm -rf conftest.dSYM conftest_ipa8_conftest.oo
16711671- eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
16721672- as_fn_set_status $ac_retval
16731673-16741674-} # ac_fn_c_try_run
16371637+} # ac_fn_check_decl
1675163816761639# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES
16771640# -------------------------------------------------------
···16801643ac_fn_c_check_header_compile ()
16811644{
16821645 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
16831683- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
16841684-$as_echo_n "checking for $2... " >&6; }
16851685-if eval \${$3+:} false; then :
16861686- $as_echo_n "(cached) " >&6
16871687-else
16461646+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
16471647+printf %s "checking for $2... " >&6; }
16481648+if eval test \${$3+y}
16491649+then :
16501650+ printf %s "(cached) " >&6
16511651+else $as_nop
16881652 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
16891653/* end confdefs.h. */
16901654$4
16911655#include <$2>
16921656_ACEOF
16931693-if ac_fn_c_try_compile "$LINENO"; then :
16571657+if ac_fn_c_try_compile "$LINENO"
16581658+then :
16941659 eval "$3=yes"
16951695-else
16601660+else $as_nop
16961661 eval "$3=no"
16971662fi
16981698-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
16631663+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
16991664fi
17001665eval ac_res=\$$3
17011701- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
17021702-$as_echo "$ac_res" >&6; }
16661666+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
16671667+printf "%s\n" "$ac_res" >&6; }
17031668 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1704166917051670} # ac_fn_c_check_header_compile
···17101675ac_fn_c_try_link ()
17111676{
17121677 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
17131713- rm -f conftest.$ac_objext conftest$ac_exeext
16781678+ rm -f conftest.$ac_objext conftest.beam conftest$ac_exeext
17141679 if { { ac_try="$ac_link"
17151680case "(($ac_try" in
17161681 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
17171682 *) ac_try_echo=$ac_try;;
17181683esac
17191684eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
17201720-$as_echo "$ac_try_echo"; } >&5
16851685+printf "%s\n" "$ac_try_echo"; } >&5
17211686 (eval "$ac_link") 2>conftest.err
17221687 ac_status=$?
17231688 if test -s conftest.err; then
···17251690 cat conftest.er1 >&5
17261691 mv -f conftest.er1 conftest.err
17271692 fi
17281728- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
16931693+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
17291694 test $ac_status = 0; } && {
17301695 test -z "$ac_c_werror_flag" ||
17311696 test ! -s conftest.err
17321697 } && test -s conftest$ac_exeext && {
17331698 test "$cross_compiling" = yes ||
17341699 test -x conftest$ac_exeext
17351735- }; then :
17001700+ }
17011701+then :
17361702 ac_retval=0
17371737-else
17381738- $as_echo "$as_me: failed program was:" >&5
17031703+else $as_nop
17041704+ printf "%s\n" "$as_me: failed program was:" >&5
17391705sed 's/^/| /' conftest.$ac_ext >&5
1740170617411707 ac_retval=1
···17491715 as_fn_set_status $ac_retval
1750171617511717} # ac_fn_c_try_link
17181718+ac_configure_args_raw=
17191719+for ac_arg
17201720+do
17211721+ case $ac_arg in
17221722+ *\'*)
17231723+ ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
17241724+ esac
17251725+ as_fn_append ac_configure_args_raw " '$ac_arg'"
17261726+done
1752172717531753-# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
17541754-# -------------------------------------------------------
17551755-# Tests whether HEADER exists, giving a warning if it cannot be compiled using
17561756-# the include files in INCLUDES and setting the cache variable VAR
17571757-# accordingly.
17581758-ac_fn_c_check_header_mongrel ()
17591759-{
17601760- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
17611761- if eval \${$3+:} false; then :
17621762- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
17631763-$as_echo_n "checking for $2... " >&6; }
17641764-if eval \${$3+:} false; then :
17651765- $as_echo_n "(cached) " >&6
17661766-fi
17671767-eval ac_res=\$$3
17681768- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
17691769-$as_echo "$ac_res" >&6; }
17701770-else
17711771- # Is the header compilable?
17721772-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
17731773-$as_echo_n "checking $2 usability... " >&6; }
17741774-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
17751775-/* end confdefs.h. */
17761776-$4
17771777-#include <$2>
17781778-_ACEOF
17791779-if ac_fn_c_try_compile "$LINENO"; then :
17801780- ac_header_compiler=yes
17811781-else
17821782- ac_header_compiler=no
17831783-fi
17841784-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
17851785-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
17861786-$as_echo "$ac_header_compiler" >&6; }
17871787-17881788-# Is the header present?
17891789-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
17901790-$as_echo_n "checking $2 presence... " >&6; }
17911791-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
17921792-/* end confdefs.h. */
17931793-#include <$2>
17941794-_ACEOF
17951795-if ac_fn_c_try_cpp "$LINENO"; then :
17961796- ac_header_preproc=yes
17971797-else
17981798- ac_header_preproc=no
17991799-fi
18001800-rm -f conftest.err conftest.i conftest.$ac_ext
18011801-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
18021802-$as_echo "$ac_header_preproc" >&6; }
18031803-18041804-# So? What about this header?
18051805-case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
18061806- yes:no: )
18071807- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
18081808-$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
18091809- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
18101810-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
18111811- ;;
18121812- no:yes:* )
18131813- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
18141814-$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
18151815- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
18161816-$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
18171817- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
18181818-$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
18191819- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5
18201820-$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
18211821- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
18221822-$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
18231823-( $as_echo "## ------------------------------------------------------------------- ##
18241824-## Report this to https://gitlab.freedesktop.org/xorg/app/xbiff/issues ##
18251825-## ------------------------------------------------------------------- ##"
18261826- ) | sed "s/^/$as_me: WARNING: /" >&2
18271827- ;;
17281728+case $ac_configure_args_raw in
17291729+ *$as_nl*)
17301730+ ac_safe_unquote= ;;
17311731+ *)
17321732+ ac_unsafe_z='|&;<>()$`\\"*?[ '' ' # This string ends in space, tab.
17331733+ ac_unsafe_a="$ac_unsafe_z#~"
17341734+ ac_safe_unquote="s/ '\\([^$ac_unsafe_a][^$ac_unsafe_z]*\\)'/ \\1/g"
17351735+ ac_configure_args_raw=` printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;;
18281736esac
18291829- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
18301830-$as_echo_n "checking for $2... " >&6; }
18311831-if eval \${$3+:} false; then :
18321832- $as_echo_n "(cached) " >&6
18331833-else
18341834- eval "$3=\$ac_header_compiler"
18351835-fi
18361836-eval ac_res=\$$3
18371837- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
18381838-$as_echo "$ac_res" >&6; }
18391839-fi
18401840- eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1841173718421842-} # ac_fn_c_check_header_mongrel
18431738cat >config.log <<_ACEOF
18441739This file contains any messages produced by compilers while
18451740running configure, to aid debugging if configure makes a mistake.
1846174118471847-It was created by xbiff $as_me 1.0.4, which was
18481848-generated by GNU Autoconf 2.69. Invocation command line was
17421742+It was created by xbiff $as_me 1.0.5, which was
17431743+generated by GNU Autoconf 2.71. Invocation command line was
1849174418501850- $ $0 $@
17451745+ $ $0$ac_configure_args_raw
1851174618521747_ACEOF
18531748exec 5>>config.log
···18801775for as_dir in $PATH
18811776do
18821777 IFS=$as_save_IFS
18831883- test -z "$as_dir" && as_dir=.
18841884- $as_echo "PATH: $as_dir"
17781778+ case $as_dir in #(((
17791779+ '') as_dir=./ ;;
17801780+ */) ;;
17811781+ *) as_dir=$as_dir/ ;;
17821782+ esac
17831783+ printf "%s\n" "PATH: $as_dir"
18851784 done
18861785IFS=$as_save_IFS
18871786···19161815 | -silent | --silent | --silen | --sile | --sil)
19171816 continue ;;
19181817 *\'*)
19191919- ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
18181818+ ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
19201819 esac
19211820 case $ac_pass in
19221821 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
···19511850# WARNING: Use '\'' to represent an apostrophe within the trap.
19521851# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
19531852trap 'exit_status=$?
18531853+ # Sanitize IFS.
18541854+ IFS=" "" $as_nl"
19541855 # Save into config.log some information that might help in debugging.
19551856 {
19561857 echo
1957185819581958- $as_echo "## ---------------- ##
18591859+ printf "%s\n" "## ---------------- ##
19591860## Cache variables. ##
19601861## ---------------- ##"
19611862 echo
···19661867 case $ac_val in #(
19671868 *${as_nl}*)
19681869 case $ac_var in #(
19691969- *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
19701970-$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
18701870+ *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
18711871+printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
19711872 esac
19721873 case $ac_var in #(
19731874 _ | IFS | as_nl) ;; #(
···19911892)
19921893 echo
1993189419941994- $as_echo "## ----------------- ##
18951895+ printf "%s\n" "## ----------------- ##
19951896## Output variables. ##
19961897## ----------------- ##"
19971898 echo
···19991900 do
20001901 eval ac_val=\$$ac_var
20011902 case $ac_val in
20022002- *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
19031903+ *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
20031904 esac
20042004- $as_echo "$ac_var='\''$ac_val'\''"
19051905+ printf "%s\n" "$ac_var='\''$ac_val'\''"
20051906 done | sort
20061907 echo
2007190820081909 if test -n "$ac_subst_files"; then
20092009- $as_echo "## ------------------- ##
19101910+ printf "%s\n" "## ------------------- ##
20101911## File substitutions. ##
20111912## ------------------- ##"
20121913 echo
···20141915 do
20151916 eval ac_val=\$$ac_var
20161917 case $ac_val in
20172017- *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
19181918+ *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
20181919 esac
20192019- $as_echo "$ac_var='\''$ac_val'\''"
19201920+ printf "%s\n" "$ac_var='\''$ac_val'\''"
20201921 done | sort
20211922 echo
20221923 fi
2023192420241925 if test -s confdefs.h; then
20252025- $as_echo "## ----------- ##
19261926+ printf "%s\n" "## ----------- ##
20261927## confdefs.h. ##
20271928## ----------- ##"
20281929 echo
···20301931 echo
20311932 fi
20321933 test "$ac_signal" != 0 &&
20332033- $as_echo "$as_me: caught signal $ac_signal"
20342034- $as_echo "$as_me: exit $exit_status"
19341934+ printf "%s\n" "$as_me: caught signal $ac_signal"
19351935+ printf "%s\n" "$as_me: exit $exit_status"
20351936 } >&5
20361937 rm -f core *.core core.conftest.* &&
20371938 rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
···20451946# confdefs.h avoids OS command line length limits that DEFS can exceed.
20461947rm -f -r conftest* confdefs.h
2047194820482048-$as_echo "/* confdefs.h */" > confdefs.h
19491949+printf "%s\n" "/* confdefs.h */" > confdefs.h
2049195020501951# Predefined preprocessor variables.
2051195220522052-cat >>confdefs.h <<_ACEOF
20532053-#define PACKAGE_NAME "$PACKAGE_NAME"
20542054-_ACEOF
19531953+printf "%s\n" "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h
2055195420562056-cat >>confdefs.h <<_ACEOF
20572057-#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
20582058-_ACEOF
19551955+printf "%s\n" "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h
2059195620602060-cat >>confdefs.h <<_ACEOF
20612061-#define PACKAGE_VERSION "$PACKAGE_VERSION"
20622062-_ACEOF
19571957+printf "%s\n" "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h
2063195820642064-cat >>confdefs.h <<_ACEOF
20652065-#define PACKAGE_STRING "$PACKAGE_STRING"
20662066-_ACEOF
19591959+printf "%s\n" "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h
2067196020682068-cat >>confdefs.h <<_ACEOF
20692069-#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
20702070-_ACEOF
19611961+printf "%s\n" "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h
2071196220722072-cat >>confdefs.h <<_ACEOF
20732073-#define PACKAGE_URL "$PACKAGE_URL"
20742074-_ACEOF
19631963+printf "%s\n" "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h
207519642076196520771966# Let the site file select an alternate cache file if it wants to.
20781967# Prefer an explicitly selected file to automatically selected ones.
20792079-ac_site_file1=NONE
20802080-ac_site_file2=NONE
20811968if test -n "$CONFIG_SITE"; then
20822082- # We do not want a PATH search for config.site.
20832083- case $CONFIG_SITE in #((
20842084- -*) ac_site_file1=./$CONFIG_SITE;;
20852085- */*) ac_site_file1=$CONFIG_SITE;;
20862086- *) ac_site_file1=./$CONFIG_SITE;;
20872087- esac
19691969+ ac_site_files="$CONFIG_SITE"
20881970elif test "x$prefix" != xNONE; then
20892089- ac_site_file1=$prefix/share/config.site
20902090- ac_site_file2=$prefix/etc/config.site
19711971+ ac_site_files="$prefix/share/config.site $prefix/etc/config.site"
20911972else
20922092- ac_site_file1=$ac_default_prefix/share/config.site
20932093- ac_site_file2=$ac_default_prefix/etc/config.site
19731973+ ac_site_files="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
20941974fi
20952095-for ac_site_file in "$ac_site_file1" "$ac_site_file2"
19751975+19761976+for ac_site_file in $ac_site_files
20961977do
20972097- test "x$ac_site_file" = xNONE && continue
20982098- if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
20992099- { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
21002100-$as_echo "$as_me: loading site script $ac_site_file" >&6;}
19781978+ case $ac_site_file in #(
19791979+ */*) :
19801980+ ;; #(
19811981+ *) :
19821982+ ac_site_file=./$ac_site_file ;;
19831983+esac
19841984+ if test -f "$ac_site_file" && test -r "$ac_site_file"; then
19851985+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
19861986+printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;}
21011987 sed 's/^/| /' "$ac_site_file" >&5
21021988 . "$ac_site_file" \
21032103- || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
21042104-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
19891989+ || { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
19901990+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
21051991as_fn_error $? "failed to load site script $ac_site_file
21061992See \`config.log' for more details" "$LINENO" 5; }
21071993 fi
···21111997 # Some versions of bash will fail to source /dev/null (special files
21121998 # actually), so we avoid doing that. DJGPP emulates it as a regular file.
21131999 if test /dev/null != "$cache_file" && test -f "$cache_file"; then
21142114- { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
21152115-$as_echo "$as_me: loading cache $cache_file" >&6;}
20002000+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
20012001+printf "%s\n" "$as_me: loading cache $cache_file" >&6;}
21162002 case $cache_file in
21172003 [\\/]* | ?:[\\/]* ) . "$cache_file";;
21182004 *) . "./$cache_file";;
21192005 esac
21202006 fi
21212007else
21222122- { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
21232123-$as_echo "$as_me: creating cache $cache_file" >&6;}
20082008+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
20092009+printf "%s\n" "$as_me: creating cache $cache_file" >&6;}
21242010 >$cache_file
21252011fi
2126201220132013+# Test code for whether the C compiler supports C89 (global declarations)
20142014+ac_c_conftest_c89_globals='
20152015+/* Does the compiler advertise C89 conformance?
20162016+ Do not test the value of __STDC__, because some compilers set it to 0
20172017+ while being otherwise adequately conformant. */
20182018+#if !defined __STDC__
20192019+# error "Compiler does not advertise C89 conformance"
20202020+#endif
20212021+20222022+#include <stddef.h>
20232023+#include <stdarg.h>
20242024+struct stat;
20252025+/* Most of the following tests are stolen from RCS 5.7 src/conf.sh. */
20262026+struct buf { int x; };
20272027+struct buf * (*rcsopen) (struct buf *, struct stat *, int);
20282028+static char *e (p, i)
20292029+ char **p;
20302030+ int i;
20312031+{
20322032+ return p[i];
20332033+}
20342034+static char *f (char * (*g) (char **, int), char **p, ...)
20352035+{
20362036+ char *s;
20372037+ va_list v;
20382038+ va_start (v,p);
20392039+ s = g (p, va_arg (v,int));
20402040+ va_end (v);
20412041+ return s;
20422042+}
20432043+20442044+/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
20452045+ function prototypes and stuff, but not \xHH hex character constants.
20462046+ These do not provoke an error unfortunately, instead are silently treated
20472047+ as an "x". The following induces an error, until -std is added to get
20482048+ proper ANSI mode. Curiously \x00 != x always comes out true, for an
20492049+ array size at least. It is necessary to write \x00 == 0 to get something
20502050+ that is true only with -std. */
20512051+int osf4_cc_array ['\''\x00'\'' == 0 ? 1 : -1];
20522052+20532053+/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
20542054+ inside strings and character constants. */
20552055+#define FOO(x) '\''x'\''
20562056+int xlc6_cc_array[FOO(a) == '\''x'\'' ? 1 : -1];
20572057+20582058+int test (int i, double x);
20592059+struct s1 {int (*f) (int a);};
20602060+struct s2 {int (*f) (double a);};
20612061+int pairnames (int, char **, int *(*)(struct buf *, struct stat *, int),
20622062+ int, int);'
20632063+20642064+# Test code for whether the C compiler supports C89 (body of main).
20652065+ac_c_conftest_c89_main='
20662066+ok |= (argc == 0 || f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]);
20672067+'
20682068+20692069+# Test code for whether the C compiler supports C99 (global declarations)
20702070+ac_c_conftest_c99_globals='
20712071+// Does the compiler advertise C99 conformance?
20722072+#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L
20732073+# error "Compiler does not advertise C99 conformance"
20742074+#endif
20752075+20762076+#include <stdbool.h>
20772077+extern int puts (const char *);
20782078+extern int printf (const char *, ...);
20792079+extern int dprintf (int, const char *, ...);
20802080+extern void *malloc (size_t);
20812081+20822082+// Check varargs macros. These examples are taken from C99 6.10.3.5.
20832083+// dprintf is used instead of fprintf to avoid needing to declare
20842084+// FILE and stderr.
20852085+#define debug(...) dprintf (2, __VA_ARGS__)
20862086+#define showlist(...) puts (#__VA_ARGS__)
20872087+#define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__))
20882088+static void
20892089+test_varargs_macros (void)
20902090+{
20912091+ int x = 1234;
20922092+ int y = 5678;
20932093+ debug ("Flag");
20942094+ debug ("X = %d\n", x);
20952095+ showlist (The first, second, and third items.);
20962096+ report (x>y, "x is %d but y is %d", x, y);
20972097+}
20982098+20992099+// Check long long types.
21002100+#define BIG64 18446744073709551615ull
21012101+#define BIG32 4294967295ul
21022102+#define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0)
21032103+#if !BIG_OK
21042104+ #error "your preprocessor is broken"
21052105+#endif
21062106+#if BIG_OK
21072107+#else
21082108+ #error "your preprocessor is broken"
21092109+#endif
21102110+static long long int bignum = -9223372036854775807LL;
21112111+static unsigned long long int ubignum = BIG64;
21122112+21132113+struct incomplete_array
21142114+{
21152115+ int datasize;
21162116+ double data[];
21172117+};
21182118+21192119+struct named_init {
21202120+ int number;
21212121+ const wchar_t *name;
21222122+ double average;
21232123+};
21242124+21252125+typedef const char *ccp;
21262126+21272127+static inline int
21282128+test_restrict (ccp restrict text)
21292129+{
21302130+ // See if C++-style comments work.
21312131+ // Iterate through items via the restricted pointer.
21322132+ // Also check for declarations in for loops.
21332133+ for (unsigned int i = 0; *(text+i) != '\''\0'\''; ++i)
21342134+ continue;
21352135+ return 0;
21362136+}
21372137+21382138+// Check varargs and va_copy.
21392139+static bool
21402140+test_varargs (const char *format, ...)
21412141+{
21422142+ va_list args;
21432143+ va_start (args, format);
21442144+ va_list args_copy;
21452145+ va_copy (args_copy, args);
21462146+21472147+ const char *str = "";
21482148+ int number = 0;
21492149+ float fnumber = 0;
21502150+21512151+ while (*format)
21522152+ {
21532153+ switch (*format++)
21542154+ {
21552155+ case '\''s'\'': // string
21562156+ str = va_arg (args_copy, const char *);
21572157+ break;
21582158+ case '\''d'\'': // int
21592159+ number = va_arg (args_copy, int);
21602160+ break;
21612161+ case '\''f'\'': // float
21622162+ fnumber = va_arg (args_copy, double);
21632163+ break;
21642164+ default:
21652165+ break;
21662166+ }
21672167+ }
21682168+ va_end (args_copy);
21692169+ va_end (args);
21702170+21712171+ return *str && number && fnumber;
21722172+}
21732173+'
21742174+21752175+# Test code for whether the C compiler supports C99 (body of main).
21762176+ac_c_conftest_c99_main='
21772177+ // Check bool.
21782178+ _Bool success = false;
21792179+ success |= (argc != 0);
21802180+21812181+ // Check restrict.
21822182+ if (test_restrict ("String literal") == 0)
21832183+ success = true;
21842184+ char *restrict newvar = "Another string";
21852185+21862186+ // Check varargs.
21872187+ success &= test_varargs ("s, d'\'' f .", "string", 65, 34.234);
21882188+ test_varargs_macros ();
21892189+21902190+ // Check flexible array members.
21912191+ struct incomplete_array *ia =
21922192+ malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
21932193+ ia->datasize = 10;
21942194+ for (int i = 0; i < ia->datasize; ++i)
21952195+ ia->data[i] = i * 1.234;
21962196+21972197+ // Check named initializers.
21982198+ struct named_init ni = {
21992199+ .number = 34,
22002200+ .name = L"Test wide string",
22012201+ .average = 543.34343,
22022202+ };
22032203+22042204+ ni.number = 58;
22052205+22062206+ int dynamic_array[ni.number];
22072207+ dynamic_array[0] = argv[0][0];
22082208+ dynamic_array[ni.number - 1] = 543;
22092209+22102210+ // work around unused variable warnings
22112211+ ok |= (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == '\''x'\''
22122212+ || dynamic_array[ni.number - 1] != 543);
22132213+'
22142214+22152215+# Test code for whether the C compiler supports C11 (global declarations)
22162216+ac_c_conftest_c11_globals='
22172217+// Does the compiler advertise C11 conformance?
22182218+#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L
22192219+# error "Compiler does not advertise C11 conformance"
22202220+#endif
22212221+22222222+// Check _Alignas.
22232223+char _Alignas (double) aligned_as_double;
22242224+char _Alignas (0) no_special_alignment;
22252225+extern char aligned_as_int;
22262226+char _Alignas (0) _Alignas (int) aligned_as_int;
22272227+22282228+// Check _Alignof.
22292229+enum
22302230+{
22312231+ int_alignment = _Alignof (int),
22322232+ int_array_alignment = _Alignof (int[100]),
22332233+ char_alignment = _Alignof (char)
22342234+};
22352235+_Static_assert (0 < -_Alignof (int), "_Alignof is signed");
22362236+22372237+// Check _Noreturn.
22382238+int _Noreturn does_not_return (void) { for (;;) continue; }
22392239+22402240+// Check _Static_assert.
22412241+struct test_static_assert
22422242+{
22432243+ int x;
22442244+ _Static_assert (sizeof (int) <= sizeof (long int),
22452245+ "_Static_assert does not work in struct");
22462246+ long int y;
22472247+};
22482248+22492249+// Check UTF-8 literals.
22502250+#define u8 syntax error!
22512251+char const utf8_literal[] = u8"happens to be ASCII" "another string";
22522252+22532253+// Check duplicate typedefs.
22542254+typedef long *long_ptr;
22552255+typedef long int *long_ptr;
22562256+typedef long_ptr long_ptr;
22572257+22582258+// Anonymous structures and unions -- taken from C11 6.7.2.1 Example 1.
22592259+struct anonymous
22602260+{
22612261+ union {
22622262+ struct { int i; int j; };
22632263+ struct { int k; long int l; } w;
22642264+ };
22652265+ int m;
22662266+} v1;
22672267+'
22682268+22692269+# Test code for whether the C compiler supports C11 (body of main).
22702270+ac_c_conftest_c11_main='
22712271+ _Static_assert ((offsetof (struct anonymous, i)
22722272+ == offsetof (struct anonymous, w.k)),
22732273+ "Anonymous union alignment botch");
22742274+ v1.i = 2;
22752275+ v1.w.k = 5;
22762276+ ok |= v1.i != 5;
22772277+'
22782278+22792279+# Test code for whether the C compiler supports C11 (complete).
22802280+ac_c_conftest_c11_program="${ac_c_conftest_c89_globals}
22812281+${ac_c_conftest_c99_globals}
22822282+${ac_c_conftest_c11_globals}
22832283+22842284+int
22852285+main (int argc, char **argv)
22862286+{
22872287+ int ok = 0;
22882288+ ${ac_c_conftest_c89_main}
22892289+ ${ac_c_conftest_c99_main}
22902290+ ${ac_c_conftest_c11_main}
22912291+ return ok;
22922292+}
22932293+"
22942294+22952295+# Test code for whether the C compiler supports C99 (complete).
22962296+ac_c_conftest_c99_program="${ac_c_conftest_c89_globals}
22972297+${ac_c_conftest_c99_globals}
22982298+22992299+int
23002300+main (int argc, char **argv)
23012301+{
23022302+ int ok = 0;
23032303+ ${ac_c_conftest_c89_main}
23042304+ ${ac_c_conftest_c99_main}
23052305+ return ok;
23062306+}
23072307+"
23082308+23092309+# Test code for whether the C compiler supports C89 (complete).
23102310+ac_c_conftest_c89_program="${ac_c_conftest_c89_globals}
23112311+23122312+int
23132313+main (int argc, char **argv)
23142314+{
23152315+ int ok = 0;
23162316+ ${ac_c_conftest_c89_main}
23172317+ return ok;
23182318+}
23192319+"
23202320+23212321+as_fn_append ac_header_c_list " stdio.h stdio_h HAVE_STDIO_H"
23222322+as_fn_append ac_header_c_list " stdlib.h stdlib_h HAVE_STDLIB_H"
23232323+as_fn_append ac_header_c_list " string.h string_h HAVE_STRING_H"
23242324+as_fn_append ac_header_c_list " inttypes.h inttypes_h HAVE_INTTYPES_H"
23252325+as_fn_append ac_header_c_list " stdint.h stdint_h HAVE_STDINT_H"
23262326+as_fn_append ac_header_c_list " strings.h strings_h HAVE_STRINGS_H"
23272327+as_fn_append ac_header_c_list " sys/stat.h sys_stat_h HAVE_SYS_STAT_H"
23282328+as_fn_append ac_header_c_list " sys/types.h sys_types_h HAVE_SYS_TYPES_H"
23292329+as_fn_append ac_header_c_list " unistd.h unistd_h HAVE_UNISTD_H"
23302330+23312331+# Auxiliary files required by this configure script.
23322332+ac_aux_files="config.guess config.sub missing install-sh"
23332333+23342334+# Locations in which to look for auxiliary files.
23352335+ac_aux_dir_candidates="${srcdir}${PATH_SEPARATOR}${srcdir}/..${PATH_SEPARATOR}${srcdir}/../.."
23362336+23372337+# Search for a directory containing all of the required auxiliary files,
23382338+# $ac_aux_files, from the $PATH-style list $ac_aux_dir_candidates.
23392339+# If we don't find one directory that contains all the files we need,
23402340+# we report the set of missing files from the *first* directory in
23412341+# $ac_aux_dir_candidates and give up.
23422342+ac_missing_aux_files=""
23432343+ac_first_candidate=:
23442344+printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5
23452345+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
23462346+as_found=false
23472347+for as_dir in $ac_aux_dir_candidates
23482348+do
23492349+ IFS=$as_save_IFS
23502350+ case $as_dir in #(((
23512351+ '') as_dir=./ ;;
23522352+ */) ;;
23532353+ *) as_dir=$as_dir/ ;;
23542354+ esac
23552355+ as_found=:
23562356+23572357+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5
23582358+ ac_aux_dir_found=yes
23592359+ ac_install_sh=
23602360+ for ac_aux in $ac_aux_files
23612361+ do
23622362+ # As a special case, if "install-sh" is required, that requirement
23632363+ # can be satisfied by any of "install-sh", "install.sh", or "shtool",
23642364+ # and $ac_install_sh is set appropriately for whichever one is found.
23652365+ if test x"$ac_aux" = x"install-sh"
23662366+ then
23672367+ if test -f "${as_dir}install-sh"; then
23682368+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5
23692369+ ac_install_sh="${as_dir}install-sh -c"
23702370+ elif test -f "${as_dir}install.sh"; then
23712371+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5
23722372+ ac_install_sh="${as_dir}install.sh -c"
23732373+ elif test -f "${as_dir}shtool"; then
23742374+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5
23752375+ ac_install_sh="${as_dir}shtool install -c"
23762376+ else
23772377+ ac_aux_dir_found=no
23782378+ if $ac_first_candidate; then
23792379+ ac_missing_aux_files="${ac_missing_aux_files} install-sh"
23802380+ else
23812381+ break
23822382+ fi
23832383+ fi
23842384+ else
23852385+ if test -f "${as_dir}${ac_aux}"; then
23862386+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5
23872387+ else
23882388+ ac_aux_dir_found=no
23892389+ if $ac_first_candidate; then
23902390+ ac_missing_aux_files="${ac_missing_aux_files} ${ac_aux}"
23912391+ else
23922392+ break
23932393+ fi
23942394+ fi
23952395+ fi
23962396+ done
23972397+ if test "$ac_aux_dir_found" = yes; then
23982398+ ac_aux_dir="$as_dir"
23992399+ break
24002400+ fi
24012401+ ac_first_candidate=false
24022402+24032403+ as_found=false
24042404+done
24052405+IFS=$as_save_IFS
24062406+if $as_found
24072407+then :
24082408+24092409+else $as_nop
24102410+ as_fn_error $? "cannot find required auxiliary files:$ac_missing_aux_files" "$LINENO" 5
24112411+fi
24122412+24132413+24142414+# These three variables are undocumented and unsupported,
24152415+# and are intended to be withdrawn in a future Autoconf release.
24162416+# They can cause serious problems if a builder's source tree is in a directory
24172417+# whose full name contains unusual characters.
24182418+if test -f "${ac_aux_dir}config.guess"; then
24192419+ ac_config_guess="$SHELL ${ac_aux_dir}config.guess"
24202420+fi
24212421+if test -f "${ac_aux_dir}config.sub"; then
24222422+ ac_config_sub="$SHELL ${ac_aux_dir}config.sub"
24232423+fi
24242424+if test -f "$ac_aux_dir/configure"; then
24252425+ ac_configure="$SHELL ${ac_aux_dir}configure"
24262426+fi
24272427+21272428# Check that the precious variables saved in the cache have kept the same
21282429# value.
21292430ac_cache_corrupted=false
···21342435 eval ac_new_val=\$ac_env_${ac_var}_value
21352436 case $ac_old_set,$ac_new_set in
21362437 set,)
21372137- { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
21382138-$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
24382438+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
24392439+printf "%s\n" "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
21392440 ac_cache_corrupted=: ;;
21402441 ,set)
21412141- { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
21422142-$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
24422442+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
24432443+printf "%s\n" "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
21432444 ac_cache_corrupted=: ;;
21442445 ,);;
21452446 *)
···21482449 ac_old_val_w=`echo x $ac_old_val`
21492450 ac_new_val_w=`echo x $ac_new_val`
21502451 if test "$ac_old_val_w" != "$ac_new_val_w"; then
21512151- { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
21522152-$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
24522452+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
24532453+printf "%s\n" "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
21532454 ac_cache_corrupted=:
21542455 else
21552155- { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
21562156-$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
24562456+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
24572457+printf "%s\n" "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
21572458 eval $ac_var=\$ac_old_val
21582459 fi
21592159- { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
21602160-$as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
21612161- { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
21622162-$as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
24602460+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
24612461+printf "%s\n" "$as_me: former value: \`$ac_old_val'" >&2;}
24622462+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
24632463+printf "%s\n" "$as_me: current value: \`$ac_new_val'" >&2;}
21632464 fi;;
21642465 esac
21652466 # Pass precious variables to config.status.
21662467 if test "$ac_new_set" = set; then
21672468 case $ac_new_val in
21682168- *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
24692469+ *\'*) ac_arg=$ac_var=`printf "%s\n" "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
21692470 *) ac_arg=$ac_var=$ac_new_val ;;
21702471 esac
21712472 case " $ac_configure_args " in
···21752476 fi
21762477done
21772478if $ac_cache_corrupted; then
21782178- { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
21792179-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
21802180- { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
21812181-$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
21822182- as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
24792479+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
24802480+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
24812481+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
24822482+printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;}
24832483+ as_fn_error $? "run \`${MAKE-make} distclean' and/or \`rm $cache_file'
24842484+ and start over" "$LINENO" 5
21832485fi
21842486## -------------------- ##
21852487## Main body of script. ##
···21992501# Initialize Automake
22002502am__api_version='1.12'
2201250322022202-ac_aux_dir=
22032203-for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
22042204- if test -f "$ac_dir/install-sh"; then
22052205- ac_aux_dir=$ac_dir
22062206- ac_install_sh="$ac_aux_dir/install-sh -c"
22072207- break
22082208- elif test -f "$ac_dir/install.sh"; then
22092209- ac_aux_dir=$ac_dir
22102210- ac_install_sh="$ac_aux_dir/install.sh -c"
22112211- break
22122212- elif test -f "$ac_dir/shtool"; then
22132213- ac_aux_dir=$ac_dir
22142214- ac_install_sh="$ac_aux_dir/shtool install -c"
22152215- break
22162216- fi
22172217-done
22182218-if test -z "$ac_aux_dir"; then
22192219- as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
22202220-fi
2221250422222222-# These three variables are undocumented and unsupported,
22232223-# and are intended to be withdrawn in a future Autoconf release.
22242224-# They can cause serious problems if a builder's source tree is in a directory
22252225-# whose full name contains unusual characters.
22262226-ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
22272227-ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
22282228-ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
2229250522302230-22312231-# Find a good install program. We prefer a C program (faster),
25062506+ # Find a good install program. We prefer a C program (faster),
22322507# so one script is as good as another. But avoid the broken or
22332508# incompatible versions:
22342509# SysV /etc/install, /usr/sbin/install
···22422517# OS/2's system install, which has a completely different semantic
22432518# ./install, which can be erroneously created by make from ./install.sh.
22442519# Reject install programs that cannot install multiple files.
22452245-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
22462246-$as_echo_n "checking for a BSD-compatible install... " >&6; }
25202520+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
25212521+printf %s "checking for a BSD-compatible install... " >&6; }
22472522if test -z "$INSTALL"; then
22482248-if ${ac_cv_path_install+:} false; then :
22492249- $as_echo_n "(cached) " >&6
22502250-else
25232523+if test ${ac_cv_path_install+y}
25242524+then :
25252525+ printf %s "(cached) " >&6
25262526+else $as_nop
22512527 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
22522528for as_dir in $PATH
22532529do
22542530 IFS=$as_save_IFS
22552255- test -z "$as_dir" && as_dir=.
22562256- # Account for people who put trailing slashes in PATH elements.
22572257-case $as_dir/ in #((
22582258- ./ | .// | /[cC]/* | \
25312531+ case $as_dir in #(((
25322532+ '') as_dir=./ ;;
25332533+ */) ;;
25342534+ *) as_dir=$as_dir/ ;;
25352535+ esac
25362536+ # Account for fact that we put trailing slashes in our PATH walk.
25372537+case $as_dir in #((
25382538+ ./ | /[cC]/* | \
22592539 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
22602540 ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
22612541 /usr/ucb/* ) ;;
···22652545 # by default.
22662546 for ac_prog in ginstall scoinst install; do
22672547 for ac_exec_ext in '' $ac_executable_extensions; do
22682268- if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
25482548+ if as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext"; then
22692549 if test $ac_prog = install &&
22702270- grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
25502550+ grep dspmsg "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
22712551 # AIX install. It has an incompatible calling convention.
22722552 :
22732553 elif test $ac_prog = install &&
22742274- grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
25542554+ grep pwplus "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
22752555 # program-specific install script used by HP pwplus--don't use.
22762556 :
22772557 else
···22792559 echo one > conftest.one
22802560 echo two > conftest.two
22812561 mkdir conftest.dir
22822282- if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
25622562+ if "$as_dir$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir/" &&
22832563 test -s conftest.one && test -s conftest.two &&
22842564 test -s conftest.dir/conftest.one &&
22852565 test -s conftest.dir/conftest.two
22862566 then
22872287- ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
25672567+ ac_cv_path_install="$as_dir$ac_prog$ac_exec_ext -c"
22882568 break 3
22892569 fi
22902570 fi
···23002580rm -rf conftest.one conftest.two conftest.dir
2301258123022582fi
23032303- if test "${ac_cv_path_install+set}" = set; then
25832583+ if test ${ac_cv_path_install+y}; then
23042584 INSTALL=$ac_cv_path_install
23052585 else
23062586 # As a last resort, use the slow shell script. Don't cache a
···23102590 INSTALL=$ac_install_sh
23112591 fi
23122592fi
23132313-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
23142314-$as_echo "$INSTALL" >&6; }
25932593+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
25942594+printf "%s\n" "$INSTALL" >&6; }
2315259523162596# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
23172597# It thinks the first close brace ends the variable substitution.
···2321260123222602test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
2323260323242324-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
23252325-$as_echo_n "checking whether build environment is sane... " >&6; }
26042604+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
26052605+printf %s "checking whether build environment is sane... " >&6; }
23262606# Reject unsafe characters in $srcdir or the absolute working directory
23272607# name. Accept space and tab only in the latter.
23282608am_lf='
···23762656 as_fn_error $? "newly created file is older than distributed files!
23772657Check your system clock" "$LINENO" 5
23782658fi
23792379-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
23802380-$as_echo "yes" >&6; }
26592659+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
26602660+printf "%s\n" "yes" >&6; }
23812661# If we didn't sleep, we still need to ensure time stamps of config.status and
23822662# generated files are strictly newer.
23832663am_sleep_pid=
···23962676# Double any \ or $.
23972677# By default was `s,x,x', remove it if useless.
23982678ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
23992399-program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
26792679+program_transform_name=`printf "%s\n" "$program_transform_name" | sed "$ac_script"`
2400268024012681# expand $ac_aux_dir to an absolute path
24022682am_aux_dir=`cd $ac_aux_dir && pwd`
2403268324042404-if test x"${MISSING+set}" != xset; then
26842684+26852685+ if test x"${MISSING+set}" != xset; then
24052686 case $am_aux_dir in
24062687 *\ * | *\ *)
24072688 MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
···24142695 am_missing_run="$MISSING --run "
24152696else
24162697 am_missing_run=
24172417- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
24182418-$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
26982698+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
26992699+printf "%s\n" "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
24192700fi
2420270124212702if test x"${install_sh}" != xset; then
···24352716 if test -n "$ac_tool_prefix"; then
24362717 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
24372718set dummy ${ac_tool_prefix}strip; ac_word=$2
24382438-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
24392439-$as_echo_n "checking for $ac_word... " >&6; }
24402440-if ${ac_cv_prog_STRIP+:} false; then :
24412441- $as_echo_n "(cached) " >&6
24422442-else
27192719+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
27202720+printf %s "checking for $ac_word... " >&6; }
27212721+if test ${ac_cv_prog_STRIP+y}
27222722+then :
27232723+ printf %s "(cached) " >&6
27242724+else $as_nop
24432725 if test -n "$STRIP"; then
24442726 ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
24452727else
···24472729for as_dir in $PATH
24482730do
24492731 IFS=$as_save_IFS
24502450- test -z "$as_dir" && as_dir=.
27322732+ case $as_dir in #(((
27332733+ '') as_dir=./ ;;
27342734+ */) ;;
27352735+ *) as_dir=$as_dir/ ;;
27362736+ esac
24512737 for ac_exec_ext in '' $ac_executable_extensions; do
24522452- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
27382738+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
24532739 ac_cv_prog_STRIP="${ac_tool_prefix}strip"
24542454- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
27402740+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
24552741 break 2
24562742 fi
24572743done
···24622748fi
24632749STRIP=$ac_cv_prog_STRIP
24642750if test -n "$STRIP"; then
24652465- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
24662466-$as_echo "$STRIP" >&6; }
27512751+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
27522752+printf "%s\n" "$STRIP" >&6; }
24672753else
24682468- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
24692469-$as_echo "no" >&6; }
27542754+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
27552755+printf "%s\n" "no" >&6; }
24702756fi
2471275724722758···24752761 ac_ct_STRIP=$STRIP
24762762 # Extract the first word of "strip", so it can be a program name with args.
24772763set dummy strip; ac_word=$2
24782478-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
24792479-$as_echo_n "checking for $ac_word... " >&6; }
24802480-if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
24812481- $as_echo_n "(cached) " >&6
24822482-else
27642764+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
27652765+printf %s "checking for $ac_word... " >&6; }
27662766+if test ${ac_cv_prog_ac_ct_STRIP+y}
27672767+then :
27682768+ printf %s "(cached) " >&6
27692769+else $as_nop
24832770 if test -n "$ac_ct_STRIP"; then
24842771 ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
24852772else
···24872774for as_dir in $PATH
24882775do
24892776 IFS=$as_save_IFS
24902490- test -z "$as_dir" && as_dir=.
27772777+ case $as_dir in #(((
27782778+ '') as_dir=./ ;;
27792779+ */) ;;
27802780+ *) as_dir=$as_dir/ ;;
27812781+ esac
24912782 for ac_exec_ext in '' $ac_executable_extensions; do
24922492- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
27832783+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
24932784 ac_cv_prog_ac_ct_STRIP="strip"
24942494- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
27852785+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
24952786 break 2
24962787 fi
24972788done
···25022793fi
25032794ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
25042795if test -n "$ac_ct_STRIP"; then
25052505- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
25062506-$as_echo "$ac_ct_STRIP" >&6; }
27962796+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
27972797+printf "%s\n" "$ac_ct_STRIP" >&6; }
25072798else
25082508- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
25092509-$as_echo "no" >&6; }
27992799+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
28002800+printf "%s\n" "no" >&6; }
25102801fi
2511280225122803 if test "x$ac_ct_STRIP" = x; then
···25142805 else
25152806 case $cross_compiling:$ac_tool_warned in
25162807yes:)
25172517-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
25182518-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
28082808+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
28092809+printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
25192810ac_tool_warned=yes ;;
25202811esac
25212812 STRIP=$ac_ct_STRIP
···25272818fi
25282819INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2529282025302530-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
25312531-$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
28212821+28222822+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a race-free mkdir -p" >&5
28232823+printf %s "checking for a race-free mkdir -p... " >&6; }
25322824if test -z "$MKDIR_P"; then
25332533- if ${ac_cv_path_mkdir+:} false; then :
25342534- $as_echo_n "(cached) " >&6
25352535-else
28252825+ if test ${ac_cv_path_mkdir+y}
28262826+then :
28272827+ printf %s "(cached) " >&6
28282828+else $as_nop
25362829 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
25372830for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
25382831do
25392832 IFS=$as_save_IFS
25402540- test -z "$as_dir" && as_dir=.
28332833+ case $as_dir in #(((
28342834+ '') as_dir=./ ;;
28352835+ */) ;;
28362836+ *) as_dir=$as_dir/ ;;
28372837+ esac
25412838 for ac_prog in mkdir gmkdir; do
25422839 for ac_exec_ext in '' $ac_executable_extensions; do
25432543- as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
25442544- case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
25452545- 'mkdir (GNU coreutils) '* | \
25462546- 'mkdir (coreutils) '* | \
28402840+ as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext" || continue
28412841+ case `"$as_dir$ac_prog$ac_exec_ext" --version 2>&1` in #(
28422842+ 'mkdir ('*'coreutils) '* | \
28432843+ 'BusyBox '* | \
25472844 'mkdir (fileutils) '4.1*)
25482548- ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
28452845+ ac_cv_path_mkdir=$as_dir$ac_prog$ac_exec_ext
25492846 break 3;;
25502847 esac
25512848 done
···25562853fi
2557285425582855 test -d ./--version && rmdir ./--version
25592559- if test "${ac_cv_path_mkdir+set}" = set; then
28562856+ if test ${ac_cv_path_mkdir+y}; then
25602857 MKDIR_P="$ac_cv_path_mkdir -p"
25612858 else
25622859 # As a last resort, use the slow shell script. Don't cache a
···25662863 MKDIR_P="$ac_install_sh -d"
25672864 fi
25682865fi
25692569-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
25702570-$as_echo "$MKDIR_P" >&6; }
28662866+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
28672867+printf "%s\n" "$MKDIR_P" >&6; }
2571286825722869for ac_prog in gawk mawk nawk awk
25732870do
25742871 # Extract the first word of "$ac_prog", so it can be a program name with args.
25752872set dummy $ac_prog; ac_word=$2
25762576-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
25772577-$as_echo_n "checking for $ac_word... " >&6; }
25782578-if ${ac_cv_prog_AWK+:} false; then :
25792579- $as_echo_n "(cached) " >&6
25802580-else
28732873+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
28742874+printf %s "checking for $ac_word... " >&6; }
28752875+if test ${ac_cv_prog_AWK+y}
28762876+then :
28772877+ printf %s "(cached) " >&6
28782878+else $as_nop
25812879 if test -n "$AWK"; then
25822880 ac_cv_prog_AWK="$AWK" # Let the user override the test.
25832881else
···25852883for as_dir in $PATH
25862884do
25872885 IFS=$as_save_IFS
25882588- test -z "$as_dir" && as_dir=.
28862886+ case $as_dir in #(((
28872887+ '') as_dir=./ ;;
28882888+ */) ;;
28892889+ *) as_dir=$as_dir/ ;;
28902890+ esac
25892891 for ac_exec_ext in '' $ac_executable_extensions; do
25902590- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
28922892+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
25912893 ac_cv_prog_AWK="$ac_prog"
25922592- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
28942894+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
25932895 break 2
25942896 fi
25952897done
···26002902fi
26012903AWK=$ac_cv_prog_AWK
26022904if test -n "$AWK"; then
26032603- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
26042604-$as_echo "$AWK" >&6; }
29052905+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5
29062906+printf "%s\n" "$AWK" >&6; }
26052907else
26062606- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
26072607-$as_echo "no" >&6; }
29082908+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
29092909+printf "%s\n" "no" >&6; }
26082910fi
260929112610291226112913 test -n "$AWK" && break
26122914done
2613291526142614-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
26152615-$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
29162916+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
29172917+printf %s "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
26162918set x ${MAKE-make}
26172617-ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
26182618-if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
26192619- $as_echo_n "(cached) " >&6
26202620-else
29192919+ac_make=`printf "%s\n" "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
29202920+if eval test \${ac_cv_prog_make_${ac_make}_set+y}
29212921+then :
29222922+ printf %s "(cached) " >&6
29232923+else $as_nop
26212924 cat >conftest.make <<\_ACEOF
26222925SHELL = /bin/sh
26232926all:
···26332936rm -f conftest.make
26342937fi
26352938if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
26362636- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
26372637-$as_echo "yes" >&6; }
29392939+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
29402940+printf "%s\n" "yes" >&6; }
26382941 SET_MAKE=
26392942else
26402640- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
26412641-$as_echo "no" >&6; }
29432943+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
29442944+printf "%s\n" "no" >&6; }
26422945 SET_MAKE="MAKE=${MAKE-make}"
26432946fi
26442947···2673297626742977# Define the identity of the package.
26752978 PACKAGE='xbiff'
26762676- VERSION='1.0.4'
29792979+ VERSION='1.0.5'
267729802678298126792679-cat >>confdefs.h <<_ACEOF
26802680-#define PACKAGE "$PACKAGE"
26812681-_ACEOF
29822982+printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
268229832683298426842684-cat >>confdefs.h <<_ACEOF
26852685-#define VERSION "$VERSION"
26862686-_ACEOF
29852985+printf "%s\n" "#define VERSION \"$VERSION\"" >>confdefs.h
2687298626882987# Some tools Automake needs.
26892988···27323031273330322734303327352735-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
27362736-$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
30343034+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
30353035+printf %s "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
27373036 # Check whether --enable-maintainer-mode was given.
27382738-if test "${enable_maintainer_mode+set}" = set; then :
30373037+if test ${enable_maintainer_mode+y}
30383038+then :
27393039 enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
27402740-else
30403040+else $as_nop
27413041 USE_MAINTAINER_MODE=no
27423042fi
2743304327442744- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5
27452745-$as_echo "$USE_MAINTAINER_MODE" >&6; }
30443044+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5
30453045+printf "%s\n" "$USE_MAINTAINER_MODE" >&6; }
27463046 if test $USE_MAINTAINER_MODE = yes; then
27473047 MAINTAINER_MODE_TRUE=
27483048 MAINTAINER_MODE_FALSE='#'
···27553055275630562757305730583058+30593059+30603060+30613061+30623062+30633063+30643064+30653065+30663066+27583067DEPDIR="${am__leading_dot}deps"
2759306827603069ac_config_commands="$ac_config_commands depfiles"
···27673076.PHONY: am__doit
27683077END
27693078# If we don't find an include directive, just comment out the code.
27702770-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
27712771-$as_echo_n "checking for style of include used by $am_make... " >&6; }
30793079+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
30803080+printf %s "checking for style of include used by $am_make... " >&6; }
27723081am__include="#"
27733082am__quote=
27743083_am_result=none
···27953104fi
279631052797310627982798-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
27992799-$as_echo "$_am_result" >&6; }
31073107+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
31083108+printf "%s\n" "$_am_result" >&6; }
28003109rm -f confinc confmf
2801311028023111# Check whether --enable-dependency-tracking was given.
28032803-if test "${enable_dependency_tracking+set}" = set; then :
31123112+if test ${enable_dependency_tracking+y}
31133113+then :
28043114 enableval=$enable_dependency_tracking;
28053115fi
28063116···28263136if test -n "$ac_tool_prefix"; then
28273137 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
28283138set dummy ${ac_tool_prefix}gcc; ac_word=$2
28292829-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
28302830-$as_echo_n "checking for $ac_word... " >&6; }
28312831-if ${ac_cv_prog_CC+:} false; then :
28322832- $as_echo_n "(cached) " >&6
28332833-else
31393139+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
31403140+printf %s "checking for $ac_word... " >&6; }
31413141+if test ${ac_cv_prog_CC+y}
31423142+then :
31433143+ printf %s "(cached) " >&6
31443144+else $as_nop
28343145 if test -n "$CC"; then
28353146 ac_cv_prog_CC="$CC" # Let the user override the test.
28363147else
···28383149for as_dir in $PATH
28393150do
28403151 IFS=$as_save_IFS
28412841- test -z "$as_dir" && as_dir=.
31523152+ case $as_dir in #(((
31533153+ '') as_dir=./ ;;
31543154+ */) ;;
31553155+ *) as_dir=$as_dir/ ;;
31563156+ esac
28423157 for ac_exec_ext in '' $ac_executable_extensions; do
28432843- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
31583158+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
28443159 ac_cv_prog_CC="${ac_tool_prefix}gcc"
28452845- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
31603160+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
28463161 break 2
28473162 fi
28483163done
···28533168fi
28543169CC=$ac_cv_prog_CC
28553170if test -n "$CC"; then
28562856- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
28572857-$as_echo "$CC" >&6; }
31713171+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
31723172+printf "%s\n" "$CC" >&6; }
28583173else
28592859- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
28602860-$as_echo "no" >&6; }
31743174+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
31753175+printf "%s\n" "no" >&6; }
28613176fi
2862317728633178···28663181 ac_ct_CC=$CC
28673182 # Extract the first word of "gcc", so it can be a program name with args.
28683183set dummy gcc; ac_word=$2
28692869-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
28702870-$as_echo_n "checking for $ac_word... " >&6; }
28712871-if ${ac_cv_prog_ac_ct_CC+:} false; then :
28722872- $as_echo_n "(cached) " >&6
28732873-else
31843184+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
31853185+printf %s "checking for $ac_word... " >&6; }
31863186+if test ${ac_cv_prog_ac_ct_CC+y}
31873187+then :
31883188+ printf %s "(cached) " >&6
31893189+else $as_nop
28743190 if test -n "$ac_ct_CC"; then
28753191 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
28763192else
···28783194for as_dir in $PATH
28793195do
28803196 IFS=$as_save_IFS
28812881- test -z "$as_dir" && as_dir=.
31973197+ case $as_dir in #(((
31983198+ '') as_dir=./ ;;
31993199+ */) ;;
32003200+ *) as_dir=$as_dir/ ;;
32013201+ esac
28823202 for ac_exec_ext in '' $ac_executable_extensions; do
28832883- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
32033203+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
28843204 ac_cv_prog_ac_ct_CC="gcc"
28852885- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
32053205+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
28863206 break 2
28873207 fi
28883208done
···28933213fi
28943214ac_ct_CC=$ac_cv_prog_ac_ct_CC
28953215if test -n "$ac_ct_CC"; then
28962896- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
28972897-$as_echo "$ac_ct_CC" >&6; }
32163216+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
32173217+printf "%s\n" "$ac_ct_CC" >&6; }
28983218else
28992899- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
29002900-$as_echo "no" >&6; }
32193219+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
32203220+printf "%s\n" "no" >&6; }
29013221fi
2902322229033223 if test "x$ac_ct_CC" = x; then
···29053225 else
29063226 case $cross_compiling:$ac_tool_warned in
29073227yes:)
29082908-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
29092909-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
32283228+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
32293229+printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
29103230ac_tool_warned=yes ;;
29113231esac
29123232 CC=$ac_ct_CC
···29193239 if test -n "$ac_tool_prefix"; then
29203240 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
29213241set dummy ${ac_tool_prefix}cc; ac_word=$2
29222922-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
29232923-$as_echo_n "checking for $ac_word... " >&6; }
29242924-if ${ac_cv_prog_CC+:} false; then :
29252925- $as_echo_n "(cached) " >&6
29262926-else
32423242+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
32433243+printf %s "checking for $ac_word... " >&6; }
32443244+if test ${ac_cv_prog_CC+y}
32453245+then :
32463246+ printf %s "(cached) " >&6
32473247+else $as_nop
29273248 if test -n "$CC"; then
29283249 ac_cv_prog_CC="$CC" # Let the user override the test.
29293250else
···29313252for as_dir in $PATH
29323253do
29333254 IFS=$as_save_IFS
29342934- test -z "$as_dir" && as_dir=.
32553255+ case $as_dir in #(((
32563256+ '') as_dir=./ ;;
32573257+ */) ;;
32583258+ *) as_dir=$as_dir/ ;;
32593259+ esac
29353260 for ac_exec_ext in '' $ac_executable_extensions; do
29362936- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
32613261+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
29373262 ac_cv_prog_CC="${ac_tool_prefix}cc"
29382938- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
32633263+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
29393264 break 2
29403265 fi
29413266done
···29463271fi
29473272CC=$ac_cv_prog_CC
29483273if test -n "$CC"; then
29492949- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
29502950-$as_echo "$CC" >&6; }
32743274+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
32753275+printf "%s\n" "$CC" >&6; }
29513276else
29522952- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
29532953-$as_echo "no" >&6; }
32773277+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
32783278+printf "%s\n" "no" >&6; }
29543279fi
2955328029563281···29593284if test -z "$CC"; then
29603285 # Extract the first word of "cc", so it can be a program name with args.
29613286set dummy cc; ac_word=$2
29622962-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
29632963-$as_echo_n "checking for $ac_word... " >&6; }
29642964-if ${ac_cv_prog_CC+:} false; then :
29652965- $as_echo_n "(cached) " >&6
29662966-else
32873287+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
32883288+printf %s "checking for $ac_word... " >&6; }
32893289+if test ${ac_cv_prog_CC+y}
32903290+then :
32913291+ printf %s "(cached) " >&6
32923292+else $as_nop
29673293 if test -n "$CC"; then
29683294 ac_cv_prog_CC="$CC" # Let the user override the test.
29693295else
···29723298for as_dir in $PATH
29733299do
29743300 IFS=$as_save_IFS
29752975- test -z "$as_dir" && as_dir=.
33013301+ case $as_dir in #(((
33023302+ '') as_dir=./ ;;
33033303+ */) ;;
33043304+ *) as_dir=$as_dir/ ;;
33053305+ esac
29763306 for ac_exec_ext in '' $ac_executable_extensions; do
29772977- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
29782978- if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
33073307+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
33083308+ if test "$as_dir$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
29793309 ac_prog_rejected=yes
29803310 continue
29813311 fi
29823312 ac_cv_prog_CC="cc"
29832983- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
33133313+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
29843314 break 2
29853315 fi
29863316done
···29963326 # However, it has the same basename, so the bogon will be chosen
29973327 # first if we set CC to just the basename; use the full file name.
29983328 shift
29992999- ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
33293329+ ac_cv_prog_CC="$as_dir$ac_word${1+' '}$@"
30003330 fi
30013331fi
30023332fi
30033333fi
30043334CC=$ac_cv_prog_CC
30053335if test -n "$CC"; then
30063006- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
30073007-$as_echo "$CC" >&6; }
33363336+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
33373337+printf "%s\n" "$CC" >&6; }
30083338else
30093009- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
30103010-$as_echo "no" >&6; }
33393339+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
33403340+printf "%s\n" "no" >&6; }
30113341fi
3012334230133343···30183348 do
30193349 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
30203350set dummy $ac_tool_prefix$ac_prog; ac_word=$2
30213021-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
30223022-$as_echo_n "checking for $ac_word... " >&6; }
30233023-if ${ac_cv_prog_CC+:} false; then :
30243024- $as_echo_n "(cached) " >&6
30253025-else
33513351+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
33523352+printf %s "checking for $ac_word... " >&6; }
33533353+if test ${ac_cv_prog_CC+y}
33543354+then :
33553355+ printf %s "(cached) " >&6
33563356+else $as_nop
30263357 if test -n "$CC"; then
30273358 ac_cv_prog_CC="$CC" # Let the user override the test.
30283359else
···30303361for as_dir in $PATH
30313362do
30323363 IFS=$as_save_IFS
30333033- test -z "$as_dir" && as_dir=.
33643364+ case $as_dir in #(((
33653365+ '') as_dir=./ ;;
33663366+ */) ;;
33673367+ *) as_dir=$as_dir/ ;;
33683368+ esac
30343369 for ac_exec_ext in '' $ac_executable_extensions; do
30353035- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
33703370+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
30363371 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
30373037- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
33723372+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
30383373 break 2
30393374 fi
30403375done
···30453380fi
30463381CC=$ac_cv_prog_CC
30473382if test -n "$CC"; then
30483048- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
30493049-$as_echo "$CC" >&6; }
33833383+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
33843384+printf "%s\n" "$CC" >&6; }
30503385else
30513051- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
30523052-$as_echo "no" >&6; }
33863386+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
33873387+printf "%s\n" "no" >&6; }
30533388fi
3054338930553390···30623397do
30633398 # Extract the first word of "$ac_prog", so it can be a program name with args.
30643399set dummy $ac_prog; ac_word=$2
30653065-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
30663066-$as_echo_n "checking for $ac_word... " >&6; }
30673067-if ${ac_cv_prog_ac_ct_CC+:} false; then :
30683068- $as_echo_n "(cached) " >&6
30693069-else
34003400+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
34013401+printf %s "checking for $ac_word... " >&6; }
34023402+if test ${ac_cv_prog_ac_ct_CC+y}
34033403+then :
34043404+ printf %s "(cached) " >&6
34053405+else $as_nop
30703406 if test -n "$ac_ct_CC"; then
30713407 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
30723408else
···30743410for as_dir in $PATH
30753411do
30763412 IFS=$as_save_IFS
30773077- test -z "$as_dir" && as_dir=.
34133413+ case $as_dir in #(((
34143414+ '') as_dir=./ ;;
34153415+ */) ;;
34163416+ *) as_dir=$as_dir/ ;;
34173417+ esac
30783418 for ac_exec_ext in '' $ac_executable_extensions; do
30793079- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
34193419+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
30803420 ac_cv_prog_ac_ct_CC="$ac_prog"
30813081- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
34213421+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
30823422 break 2
30833423 fi
30843424done
···30893429fi
30903430ac_ct_CC=$ac_cv_prog_ac_ct_CC
30913431if test -n "$ac_ct_CC"; then
30923092- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
30933093-$as_echo "$ac_ct_CC" >&6; }
34323432+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
34333433+printf "%s\n" "$ac_ct_CC" >&6; }
30943434else
30953095- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
30963096-$as_echo "no" >&6; }
34353435+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
34363436+printf "%s\n" "no" >&6; }
30973437fi
3098343830993439···31053445 else
31063446 case $cross_compiling:$ac_tool_warned in
31073447yes:)
31083108-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
31093109-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
34483448+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
34493449+printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
31103450ac_tool_warned=yes ;;
31113451esac
31123452 CC=$ac_ct_CC
···31143454fi
3115345531163456fi
34573457+if test -z "$CC"; then
34583458+ if test -n "$ac_tool_prefix"; then
34593459+ # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args.
34603460+set dummy ${ac_tool_prefix}clang; ac_word=$2
34613461+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
34623462+printf %s "checking for $ac_word... " >&6; }
34633463+if test ${ac_cv_prog_CC+y}
34643464+then :
34653465+ printf %s "(cached) " >&6
34663466+else $as_nop
34673467+ if test -n "$CC"; then
34683468+ ac_cv_prog_CC="$CC" # Let the user override the test.
34693469+else
34703470+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
34713471+for as_dir in $PATH
34723472+do
34733473+ IFS=$as_save_IFS
34743474+ case $as_dir in #(((
34753475+ '') as_dir=./ ;;
34763476+ */) ;;
34773477+ *) as_dir=$as_dir/ ;;
34783478+ esac
34793479+ for ac_exec_ext in '' $ac_executable_extensions; do
34803480+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
34813481+ ac_cv_prog_CC="${ac_tool_prefix}clang"
34823482+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
34833483+ break 2
34843484+ fi
34853485+done
34863486+ done
34873487+IFS=$as_save_IFS
3117348834893489+fi
34903490+fi
34913491+CC=$ac_cv_prog_CC
34923492+if test -n "$CC"; then
34933493+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
34943494+printf "%s\n" "$CC" >&6; }
34953495+else
34963496+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
34973497+printf "%s\n" "no" >&6; }
34983498+fi
3118349931193119-test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
31203120-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
35003500+35013501+fi
35023502+if test -z "$ac_cv_prog_CC"; then
35033503+ ac_ct_CC=$CC
35043504+ # Extract the first word of "clang", so it can be a program name with args.
35053505+set dummy clang; ac_word=$2
35063506+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
35073507+printf %s "checking for $ac_word... " >&6; }
35083508+if test ${ac_cv_prog_ac_ct_CC+y}
35093509+then :
35103510+ printf %s "(cached) " >&6
35113511+else $as_nop
35123512+ if test -n "$ac_ct_CC"; then
35133513+ ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
35143514+else
35153515+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
35163516+for as_dir in $PATH
35173517+do
35183518+ IFS=$as_save_IFS
35193519+ case $as_dir in #(((
35203520+ '') as_dir=./ ;;
35213521+ */) ;;
35223522+ *) as_dir=$as_dir/ ;;
35233523+ esac
35243524+ for ac_exec_ext in '' $ac_executable_extensions; do
35253525+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
35263526+ ac_cv_prog_ac_ct_CC="clang"
35273527+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
35283528+ break 2
35293529+ fi
35303530+done
35313531+ done
35323532+IFS=$as_save_IFS
35333533+35343534+fi
35353535+fi
35363536+ac_ct_CC=$ac_cv_prog_ac_ct_CC
35373537+if test -n "$ac_ct_CC"; then
35383538+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
35393539+printf "%s\n" "$ac_ct_CC" >&6; }
35403540+else
35413541+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
35423542+printf "%s\n" "no" >&6; }
35433543+fi
35443544+35453545+ if test "x$ac_ct_CC" = x; then
35463546+ CC=""
35473547+ else
35483548+ case $cross_compiling:$ac_tool_warned in
35493549+yes:)
35503550+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
35513551+printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
35523552+ac_tool_warned=yes ;;
35533553+esac
35543554+ CC=$ac_ct_CC
35553555+ fi
35563556+else
35573557+ CC="$ac_cv_prog_CC"
35583558+fi
35593559+35603560+fi
35613561+35623562+35633563+test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
35643564+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
31213565as_fn_error $? "no acceptable C compiler found in \$PATH
31223566See \`config.log' for more details" "$LINENO" 5; }
3123356731243568# Provide some information about the compiler.
31253125-$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
35693569+printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
31263570set X $ac_compile
31273571ac_compiler=$2
31283128-for ac_option in --version -v -V -qversion; do
35723572+for ac_option in --version -v -V -qversion -version; do
31293573 { { ac_try="$ac_compiler $ac_option >&5"
31303574case "(($ac_try" in
31313575 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
31323576 *) ac_try_echo=$ac_try;;
31333577esac
31343578eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
31353135-$as_echo "$ac_try_echo"; } >&5
35793579+printf "%s\n" "$ac_try_echo"; } >&5
31363580 (eval "$ac_compiler $ac_option >&5") 2>conftest.err
31373581 ac_status=$?
31383582 if test -s conftest.err; then
···31423586 cat conftest.er1 >&5
31433587 fi
31443588 rm -f conftest.er1 conftest.err
31453145- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
35893589+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
31463590 test $ac_status = 0; }
31473591done
31483592···31503594/* end confdefs.h. */
3151359531523596int
31533153-main ()
35973597+main (void)
31543598{
3155359931563600 ;
···31623606# Try to create an executable without -o first, disregard a.out.
31633607# It will help us diagnose broken compilers, and finding out an intuition
31643608# of exeext.
31653165-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
31663166-$as_echo_n "checking whether the C compiler works... " >&6; }
31673167-ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
36093609+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
36103610+printf %s "checking whether the C compiler works... " >&6; }
36113611+ac_link_default=`printf "%s\n" "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
3168361231693613# The possible output files:
31703614ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
···31853629 *) ac_try_echo=$ac_try;;
31863630esac
31873631eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
31883188-$as_echo "$ac_try_echo"; } >&5
36323632+printf "%s\n" "$ac_try_echo"; } >&5
31893633 (eval "$ac_link_default") 2>&5
31903634 ac_status=$?
31913191- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
31923192- test $ac_status = 0; }; then :
36353635+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
36363636+ test $ac_status = 0; }
36373637+then :
31933638 # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
31943639# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
31953640# in a Makefile. We should not override ac_cv_exeext if it was cached,
···32063651 # certainly right.
32073652 break;;
32083653 *.* )
32093209- if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
36543654+ if test ${ac_cv_exeext+y} && test "$ac_cv_exeext" != no;
32103655 then :; else
32113656 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
32123657 fi
···32223667done
32233668test "$ac_cv_exeext" = no && ac_cv_exeext=
3224366932253225-else
36703670+else $as_nop
32263671 ac_file=''
32273672fi
32283228-if test -z "$ac_file"; then :
32293229- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
32303230-$as_echo "no" >&6; }
32313231-$as_echo "$as_me: failed program was:" >&5
36733673+if test -z "$ac_file"
36743674+then :
36753675+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
36763676+printf "%s\n" "no" >&6; }
36773677+printf "%s\n" "$as_me: failed program was:" >&5
32323678sed 's/^/| /' conftest.$ac_ext >&5
3233367932343234-{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
32353235-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
36803680+{ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
36813681+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
32363682as_fn_error 77 "C compiler cannot create executables
32373683See \`config.log' for more details" "$LINENO" 5; }
32383238-else
32393239- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
32403240-$as_echo "yes" >&6; }
36843684+else $as_nop
36853685+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
36863686+printf "%s\n" "yes" >&6; }
32413687fi
32423242-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
32433243-$as_echo_n "checking for C compiler default output file name... " >&6; }
32443244-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
32453245-$as_echo "$ac_file" >&6; }
36883688+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
36893689+printf %s "checking for C compiler default output file name... " >&6; }
36903690+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
36913691+printf "%s\n" "$ac_file" >&6; }
32463692ac_exeext=$ac_cv_exeext
3247369332483694rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
32493695ac_clean_files=$ac_clean_files_save
32503250-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
32513251-$as_echo_n "checking for suffix of executables... " >&6; }
36963696+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
36973697+printf %s "checking for suffix of executables... " >&6; }
32523698if { { ac_try="$ac_link"
32533699case "(($ac_try" in
32543700 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
32553701 *) ac_try_echo=$ac_try;;
32563702esac
32573703eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
32583258-$as_echo "$ac_try_echo"; } >&5
37043704+printf "%s\n" "$ac_try_echo"; } >&5
32593705 (eval "$ac_link") 2>&5
32603706 ac_status=$?
32613261- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
32623262- test $ac_status = 0; }; then :
37073707+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
37083708+ test $ac_status = 0; }
37093709+then :
32633710 # If both `conftest.exe' and `conftest' are `present' (well, observable)
32643711# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
32653712# work properly (i.e., refer to `conftest.exe'), while it won't with
···32733720 * ) break;;
32743721 esac
32753722done
32763276-else
32773277- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
32783278-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
37233723+else $as_nop
37243724+ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
37253725+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
32793726as_fn_error $? "cannot compute suffix of executables: cannot compile and link
32803727See \`config.log' for more details" "$LINENO" 5; }
32813728fi
32823729rm -f conftest conftest$ac_cv_exeext
32833283-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
32843284-$as_echo "$ac_cv_exeext" >&6; }
37303730+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
37313731+printf "%s\n" "$ac_cv_exeext" >&6; }
3285373232863733rm -f conftest.$ac_ext
32873734EXEEXT=$ac_cv_exeext
···32903737/* end confdefs.h. */
32913738#include <stdio.h>
32923739int
32933293-main ()
37403740+main (void)
32943741{
32953742FILE *f = fopen ("conftest.out", "w");
32963743 return ferror (f) || fclose (f) != 0;
···33023749ac_clean_files="$ac_clean_files conftest.out"
33033750# Check that the compiler produces executables we can run. If not, either
33043751# the compiler is broken, or we cross compile.
33053305-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
33063306-$as_echo_n "checking whether we are cross compiling... " >&6; }
37523752+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
37533753+printf %s "checking whether we are cross compiling... " >&6; }
33073754if test "$cross_compiling" != yes; then
33083755 { { ac_try="$ac_link"
33093756case "(($ac_try" in
···33113758 *) ac_try_echo=$ac_try;;
33123759esac
33133760eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
33143314-$as_echo "$ac_try_echo"; } >&5
37613761+printf "%s\n" "$ac_try_echo"; } >&5
33153762 (eval "$ac_link") 2>&5
33163763 ac_status=$?
33173317- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
37643764+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
33183765 test $ac_status = 0; }
33193766 if { ac_try='./conftest$ac_cv_exeext'
33203767 { { case "(($ac_try" in
···33223769 *) ac_try_echo=$ac_try;;
33233770esac
33243771eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
33253325-$as_echo "$ac_try_echo"; } >&5
37723772+printf "%s\n" "$ac_try_echo"; } >&5
33263773 (eval "$ac_try") 2>&5
33273774 ac_status=$?
33283328- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
37753775+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
33293776 test $ac_status = 0; }; }; then
33303777 cross_compiling=no
33313778 else
33323779 if test "$cross_compiling" = maybe; then
33333780 cross_compiling=yes
33343781 else
33353335- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
33363336-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
33373337-as_fn_error $? "cannot run C compiled programs.
37823782+ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
37833783+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
37843784+as_fn_error 77 "cannot run C compiled programs.
33383785If you meant to cross compile, use \`--host'.
33393786See \`config.log' for more details" "$LINENO" 5; }
33403787 fi
33413788 fi
33423789fi
33433343-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
33443344-$as_echo "$cross_compiling" >&6; }
37903790+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
37913791+printf "%s\n" "$cross_compiling" >&6; }
3345379233463793rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
33473794ac_clean_files=$ac_clean_files_save
33483348-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
33493349-$as_echo_n "checking for suffix of object files... " >&6; }
33503350-if ${ac_cv_objext+:} false; then :
33513351- $as_echo_n "(cached) " >&6
33523352-else
37953795+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
37963796+printf %s "checking for suffix of object files... " >&6; }
37973797+if test ${ac_cv_objext+y}
37983798+then :
37993799+ printf %s "(cached) " >&6
38003800+else $as_nop
33533801 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
33543802/* end confdefs.h. */
3355380333563804int
33573357-main ()
38053805+main (void)
33583806{
3359380733603808 ;
···33683816 *) ac_try_echo=$ac_try;;
33693817esac
33703818eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
33713371-$as_echo "$ac_try_echo"; } >&5
38193819+printf "%s\n" "$ac_try_echo"; } >&5
33723820 (eval "$ac_compile") 2>&5
33733821 ac_status=$?
33743374- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
33753375- test $ac_status = 0; }; then :
38223822+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
38233823+ test $ac_status = 0; }
38243824+then :
33763825 for ac_file in conftest.o conftest.obj conftest.*; do
33773826 test -f "$ac_file" || continue;
33783827 case $ac_file in
···33813830 break;;
33823831 esac
33833832done
33843384-else
33853385- $as_echo "$as_me: failed program was:" >&5
38333833+else $as_nop
38343834+ printf "%s\n" "$as_me: failed program was:" >&5
33863835sed 's/^/| /' conftest.$ac_ext >&5
3387383633883388-{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
33893389-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
38373837+{ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
38383838+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
33903839as_fn_error $? "cannot compute suffix of object files: cannot compile
33913840See \`config.log' for more details" "$LINENO" 5; }
33923841fi
33933842rm -f conftest.$ac_cv_objext conftest.$ac_ext
33943843fi
33953395-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
33963396-$as_echo "$ac_cv_objext" >&6; }
38443844+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
38453845+printf "%s\n" "$ac_cv_objext" >&6; }
33973846OBJEXT=$ac_cv_objext
33983847ac_objext=$OBJEXT
33993399-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
34003400-$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
34013401-if ${ac_cv_c_compiler_gnu+:} false; then :
34023402- $as_echo_n "(cached) " >&6
34033403-else
38483848+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5
38493849+printf %s "checking whether the compiler supports GNU C... " >&6; }
38503850+if test ${ac_cv_c_compiler_gnu+y}
38513851+then :
38523852+ printf %s "(cached) " >&6
38533853+else $as_nop
34043854 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
34053855/* end confdefs.h. */
3406385634073857int
34083408-main ()
38583858+main (void)
34093859{
34103860#ifndef __GNUC__
34113861 choke me
···34153865 return 0;
34163866}
34173867_ACEOF
34183418-if ac_fn_c_try_compile "$LINENO"; then :
38683868+if ac_fn_c_try_compile "$LINENO"
38693869+then :
34193870 ac_compiler_gnu=yes
34203420-else
38713871+else $as_nop
34213872 ac_compiler_gnu=no
34223873fi
34233423-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
38743874+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
34243875ac_cv_c_compiler_gnu=$ac_compiler_gnu
3425387634263877fi
34273427-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
34283428-$as_echo "$ac_cv_c_compiler_gnu" >&6; }
38783878+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
38793879+printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; }
38803880+ac_compiler_gnu=$ac_cv_c_compiler_gnu
38813881+34293882if test $ac_compiler_gnu = yes; then
34303883 GCC=yes
34313884else
34323885 GCC=
34333886fi
34343434-ac_test_CFLAGS=${CFLAGS+set}
38873887+ac_test_CFLAGS=${CFLAGS+y}
34353888ac_save_CFLAGS=$CFLAGS
34363436-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
34373437-$as_echo_n "checking whether $CC accepts -g... " >&6; }
34383438-if ${ac_cv_prog_cc_g+:} false; then :
34393439- $as_echo_n "(cached) " >&6
34403440-else
38893889+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
38903890+printf %s "checking whether $CC accepts -g... " >&6; }
38913891+if test ${ac_cv_prog_cc_g+y}
38923892+then :
38933893+ printf %s "(cached) " >&6
38943894+else $as_nop
34413895 ac_save_c_werror_flag=$ac_c_werror_flag
34423896 ac_c_werror_flag=yes
34433897 ac_cv_prog_cc_g=no
···34463900/* end confdefs.h. */
3447390134483902int
34493449-main ()
39033903+main (void)
34503904{
3451390534523906 ;
34533907 return 0;
34543908}
34553909_ACEOF
34563456-if ac_fn_c_try_compile "$LINENO"; then :
39103910+if ac_fn_c_try_compile "$LINENO"
39113911+then :
34573912 ac_cv_prog_cc_g=yes
34583458-else
39133913+else $as_nop
34593914 CFLAGS=""
34603915 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
34613916/* end confdefs.h. */
3462391734633918int
34643464-main ()
39193919+main (void)
34653920{
3466392134673922 ;
34683923 return 0;
34693924}
34703925_ACEOF
34713471-if ac_fn_c_try_compile "$LINENO"; then :
39263926+if ac_fn_c_try_compile "$LINENO"
39273927+then :
3472392834733473-else
39293929+else $as_nop
34743930 ac_c_werror_flag=$ac_save_c_werror_flag
34753931 CFLAGS="-g"
34763932 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
34773933/* end confdefs.h. */
3478393434793935int
34803480-main ()
39363936+main (void)
34813937{
3482393834833939 ;
34843940 return 0;
34853941}
34863942_ACEOF
34873487-if ac_fn_c_try_compile "$LINENO"; then :
39433943+if ac_fn_c_try_compile "$LINENO"
39443944+then :
34883945 ac_cv_prog_cc_g=yes
34893946fi
34903490-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
39473947+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
34913948fi
34923492-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
39493949+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
34933950fi
34943494-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
39513951+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
34953952 ac_c_werror_flag=$ac_save_c_werror_flag
34963953fi
34973497-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
34983498-$as_echo "$ac_cv_prog_cc_g" >&6; }
34993499-if test "$ac_test_CFLAGS" = set; then
39543954+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
39553955+printf "%s\n" "$ac_cv_prog_cc_g" >&6; }
39563956+if test $ac_test_CFLAGS; then
35003957 CFLAGS=$ac_save_CFLAGS
35013958elif test $ac_cv_prog_cc_g = yes; then
35023959 if test "$GCC" = yes; then
···35113968 CFLAGS=
35123969 fi
35133970fi
35143514-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
35153515-$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
35163516-if ${ac_cv_prog_cc_c89+:} false; then :
35173517- $as_echo_n "(cached) " >&6
35183518-else
35193519- ac_cv_prog_cc_c89=no
39713971+ac_prog_cc_stdc=no
39723972+if test x$ac_prog_cc_stdc = xno
39733973+then :
39743974+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5
39753975+printf %s "checking for $CC option to enable C11 features... " >&6; }
39763976+if test ${ac_cv_prog_cc_c11+y}
39773977+then :
39783978+ printf %s "(cached) " >&6
39793979+else $as_nop
39803980+ ac_cv_prog_cc_c11=no
35203981ac_save_CC=$CC
35213982cat confdefs.h - <<_ACEOF >conftest.$ac_ext
35223983/* end confdefs.h. */
35233523-#include <stdarg.h>
35243524-#include <stdio.h>
35253525-struct stat;
35263526-/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
35273527-struct buf { int x; };
35283528-FILE * (*rcsopen) (struct buf *, struct stat *, int);
35293529-static char *e (p, i)
35303530- char **p;
35313531- int i;
35323532-{
35333533- return p[i];
35343534-}
35353535-static char *f (char * (*g) (char **, int), char **p, ...)
35363536-{
35373537- char *s;
35383538- va_list v;
35393539- va_start (v,p);
35403540- s = g (p, va_arg (v,int));
35413541- va_end (v);
35423542- return s;
35433543-}
39843984+$ac_c_conftest_c11_program
39853985+_ACEOF
39863986+for ac_arg in '' -std=gnu11
39873987+do
39883988+ CC="$ac_save_CC $ac_arg"
39893989+ if ac_fn_c_try_compile "$LINENO"
39903990+then :
39913991+ ac_cv_prog_cc_c11=$ac_arg
39923992+fi
39933993+rm -f core conftest.err conftest.$ac_objext conftest.beam
39943994+ test "x$ac_cv_prog_cc_c11" != "xno" && break
39953995+done
39963996+rm -f conftest.$ac_ext
39973997+CC=$ac_save_CC
39983998+fi
3544399935453545-/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
35463546- function prototypes and stuff, but not '\xHH' hex character constants.
35473547- These don't provoke an error unfortunately, instead are silently treated
35483548- as 'x'. The following induces an error, until -std is added to get
35493549- proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
35503550- array size at least. It's necessary to write '\x00'==0 to get something
35513551- that's true only with -std. */
35523552-int osf4_cc_array ['\x00' == 0 ? 1 : -1];
40004000+if test "x$ac_cv_prog_cc_c11" = xno
40014001+then :
40024002+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
40034003+printf "%s\n" "unsupported" >&6; }
40044004+else $as_nop
40054005+ if test "x$ac_cv_prog_cc_c11" = x
40064006+then :
40074007+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
40084008+printf "%s\n" "none needed" >&6; }
40094009+else $as_nop
40104010+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5
40114011+printf "%s\n" "$ac_cv_prog_cc_c11" >&6; }
40124012+ CC="$CC $ac_cv_prog_cc_c11"
40134013+fi
40144014+ ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c11
40154015+ ac_prog_cc_stdc=c11
40164016+fi
40174017+fi
40184018+if test x$ac_prog_cc_stdc = xno
40194019+then :
40204020+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5
40214021+printf %s "checking for $CC option to enable C99 features... " >&6; }
40224022+if test ${ac_cv_prog_cc_c99+y}
40234023+then :
40244024+ printf %s "(cached) " >&6
40254025+else $as_nop
40264026+ ac_cv_prog_cc_c99=no
40274027+ac_save_CC=$CC
40284028+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
40294029+/* end confdefs.h. */
40304030+$ac_c_conftest_c99_program
40314031+_ACEOF
40324032+for ac_arg in '' -std=gnu99 -std=c99 -c99 -qlanglvl=extc1x -qlanglvl=extc99 -AC99 -D_STDC_C99=
40334033+do
40344034+ CC="$ac_save_CC $ac_arg"
40354035+ if ac_fn_c_try_compile "$LINENO"
40364036+then :
40374037+ ac_cv_prog_cc_c99=$ac_arg
40384038+fi
40394039+rm -f core conftest.err conftest.$ac_objext conftest.beam
40404040+ test "x$ac_cv_prog_cc_c99" != "xno" && break
40414041+done
40424042+rm -f conftest.$ac_ext
40434043+CC=$ac_save_CC
40444044+fi
3553404535543554-/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
35553555- inside strings and character constants. */
35563556-#define FOO(x) 'x'
35573557-int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
35583558-35593559-int test (int i, double x);
35603560-struct s1 {int (*f) (int a);};
35613561-struct s2 {int (*f) (double a);};
35623562-int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
35633563-int argc;
35643564-char **argv;
35653565-int
35663566-main ()
35673567-{
35683568-return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
35693569- ;
35703570- return 0;
35713571-}
40464046+if test "x$ac_cv_prog_cc_c99" = xno
40474047+then :
40484048+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
40494049+printf "%s\n" "unsupported" >&6; }
40504050+else $as_nop
40514051+ if test "x$ac_cv_prog_cc_c99" = x
40524052+then :
40534053+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
40544054+printf "%s\n" "none needed" >&6; }
40554055+else $as_nop
40564056+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5
40574057+printf "%s\n" "$ac_cv_prog_cc_c99" >&6; }
40584058+ CC="$CC $ac_cv_prog_cc_c99"
40594059+fi
40604060+ ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99
40614061+ ac_prog_cc_stdc=c99
40624062+fi
40634063+fi
40644064+if test x$ac_prog_cc_stdc = xno
40654065+then :
40664066+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5
40674067+printf %s "checking for $CC option to enable C89 features... " >&6; }
40684068+if test ${ac_cv_prog_cc_c89+y}
40694069+then :
40704070+ printf %s "(cached) " >&6
40714071+else $as_nop
40724072+ ac_cv_prog_cc_c89=no
40734073+ac_save_CC=$CC
40744074+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
40754075+/* end confdefs.h. */
40764076+$ac_c_conftest_c89_program
35724077_ACEOF
35733573-for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
35743574- -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
40784078+for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
35754079do
35764080 CC="$ac_save_CC $ac_arg"
35773577- if ac_fn_c_try_compile "$LINENO"; then :
40814081+ if ac_fn_c_try_compile "$LINENO"
40824082+then :
35784083 ac_cv_prog_cc_c89=$ac_arg
35794084fi
35803580-rm -f core conftest.err conftest.$ac_objext
40854085+rm -f core conftest.err conftest.$ac_objext conftest.beam
35814086 test "x$ac_cv_prog_cc_c89" != "xno" && break
35824087done
35834088rm -f conftest.$ac_ext
35844089CC=$ac_save_CC
40904090+fi
3585409140924092+if test "x$ac_cv_prog_cc_c89" = xno
40934093+then :
40944094+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
40954095+printf "%s\n" "unsupported" >&6; }
40964096+else $as_nop
40974097+ if test "x$ac_cv_prog_cc_c89" = x
40984098+then :
40994099+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
41004100+printf "%s\n" "none needed" >&6; }
41014101+else $as_nop
41024102+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
41034103+printf "%s\n" "$ac_cv_prog_cc_c89" >&6; }
41044104+ CC="$CC $ac_cv_prog_cc_c89"
41054105+fi
41064106+ ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89
41074107+ ac_prog_cc_stdc=c89
35864108fi
35873587-# AC_CACHE_VAL
35883588-case "x$ac_cv_prog_cc_c89" in
35893589- x)
35903590- { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
35913591-$as_echo "none needed" >&6; } ;;
35923592- xno)
35933593- { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
35943594-$as_echo "unsupported" >&6; } ;;
35953595- *)
35963596- CC="$CC $ac_cv_prog_cc_c89"
35973597- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
35983598-$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
35993599-esac
36003600-if test "x$ac_cv_prog_cc_c89" != xno; then :
36013601-36024109fi
3603411036044111ac_ext=c
···3609411636104117depcc="$CC" am_compiler_list=
3611411836123612-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
36133613-$as_echo_n "checking dependency style of $depcc... " >&6; }
36143614-if ${am_cv_CC_dependencies_compiler_type+:} false; then :
36153615- $as_echo_n "(cached) " >&6
36163616-else
41194119+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
41204120+printf %s "checking dependency style of $depcc... " >&6; }
41214121+if test ${am_cv_CC_dependencies_compiler_type+y}
41224122+then :
41234123+ printf %s "(cached) " >&6
41244124+else $as_nop
36174125 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
36184126 # We make a subdir and do the tests there. Otherwise we can end up
36194127 # making bogus files that we don't know about and never remove. For
···37204228fi
3721422937224230fi
37233723-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
37243724-$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
42314231+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5
42324232+printf "%s\n" "$am_cv_CC_dependencies_compiler_type" >&6; }
37254233CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
3726423437274235 if
···37354243fi
373642443737424537383738- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C99" >&5
37393739-$as_echo_n "checking for $CC option to accept ISO C99... " >&6; }
37403740-if ${ac_cv_prog_cc_c99+:} false; then :
37413741- $as_echo_n "(cached) " >&6
37423742-else
37433743- ac_cv_prog_cc_c99=no
37443744-ac_save_CC=$CC
37453745-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
42464246+42474247+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC options needed to detect all undeclared functions" >&5
42484248+printf %s "checking for $CC options needed to detect all undeclared functions... " >&6; }
42494249+if test ${ac_cv_c_undeclared_builtin_options+y}
42504250+then :
42514251+ printf %s "(cached) " >&6
42524252+else $as_nop
42534253+ ac_save_CFLAGS=$CFLAGS
42544254+ ac_cv_c_undeclared_builtin_options='cannot detect'
42554255+ for ac_arg in '' -fno-builtin; do
42564256+ CFLAGS="$ac_save_CFLAGS $ac_arg"
42574257+ # This test program should *not* compile successfully.
42584258+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
37464259/* end confdefs.h. */
37473747-#include <stdarg.h>
37483748-#include <stdbool.h>
37493749-#include <stdlib.h>
37503750-#include <wchar.h>
37513751-#include <stdio.h>
3752426037533753-// Check varargs macros. These examples are taken from C99 6.10.3.5.
37543754-#define debug(...) fprintf (stderr, __VA_ARGS__)
37553755-#define showlist(...) puts (#__VA_ARGS__)
37563756-#define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__))
37573757-static void
37583758-test_varargs_macros (void)
42614261+int
42624262+main (void)
37594263{
37603760- int x = 1234;
37613761- int y = 5678;
37623762- debug ("Flag");
37633763- debug ("X = %d\n", x);
37643764- showlist (The first, second, and third items.);
37653765- report (x>y, "x is %d but y is %d", x, y);
37663766-}
37673767-37683768-// Check long long types.
37693769-#define BIG64 18446744073709551615ull
37703770-#define BIG32 4294967295ul
37713771-#define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0)
37723772-#if !BIG_OK
37733773- your preprocessor is broken;
37743774-#endif
37753775-#if BIG_OK
37763776-#else
37773777- your preprocessor is broken;
37783778-#endif
37793779-static long long int bignum = -9223372036854775807LL;
37803780-static unsigned long long int ubignum = BIG64;
37813781-37823782-struct incomplete_array
37833783-{
37843784- int datasize;
37853785- double data[];
37863786-};
37873787-37883788-struct named_init {
37893789- int number;
37903790- const wchar_t *name;
37913791- double average;
37923792-};
37933793-37943794-typedef const char *ccp;
37953795-37963796-static inline int
37973797-test_restrict (ccp restrict text)
37983798-{
37993799- // See if C++-style comments work.
38003800- // Iterate through items via the restricted pointer.
38013801- // Also check for declarations in for loops.
38023802- for (unsigned int i = 0; *(text+i) != '\0'; ++i)
38033803- continue;
42644264+(void) strchr;
42654265+ ;
38044266 return 0;
38054267}
42684268+_ACEOF
42694269+if ac_fn_c_try_compile "$LINENO"
42704270+then :
3806427138073807-// Check varargs and va_copy.
38083808-static void
38093809-test_varargs (const char *format, ...)
38103810-{
38113811- va_list args;
38123812- va_start (args, format);
38133813- va_list args_copy;
38143814- va_copy (args_copy, args);
38153815-38163816- const char *str;
38173817- int number;
38183818- float fnumber;
38193819-38203820- while (*format)
38213821- {
38223822- switch (*format++)
38233823- {
38243824- case 's': // string
38253825- str = va_arg (args_copy, const char *);
38263826- break;
38273827- case 'd': // int
38283828- number = va_arg (args_copy, int);
38293829- break;
38303830- case 'f': // float
38313831- fnumber = va_arg (args_copy, double);
38323832- break;
38333833- default:
38343834- break;
38353835- }
38363836- }
38373837- va_end (args_copy);
38383838- va_end (args);
38393839-}
42724272+else $as_nop
42734273+ # This test program should compile successfully.
42744274+ # No library function is consistently available on
42754275+ # freestanding implementations, so test against a dummy
42764276+ # declaration. Include always-available headers on the
42774277+ # off chance that they somehow elicit warnings.
42784278+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
42794279+/* end confdefs.h. */
42804280+#include <float.h>
42814281+#include <limits.h>
42824282+#include <stdarg.h>
42834283+#include <stddef.h>
42844284+extern void ac_decl (int, char *);
3840428538414286int
38423842-main ()
42874287+main (void)
38434288{
38443844-38453845- // Check bool.
38463846- _Bool success = false;
38473847-38483848- // Check restrict.
38493849- if (test_restrict ("String literal") == 0)
38503850- success = true;
38513851- char *restrict newvar = "Another string";
38523852-38533853- // Check varargs.
38543854- test_varargs ("s, d' f .", "string", 65, 34.234);
38553855- test_varargs_macros ();
38563856-38573857- // Check flexible array members.
38583858- struct incomplete_array *ia =
38593859- malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
38603860- ia->datasize = 10;
38613861- for (int i = 0; i < ia->datasize; ++i)
38623862- ia->data[i] = i * 1.234;
38633863-38643864- // Check named initializers.
38653865- struct named_init ni = {
38663866- .number = 34,
38673867- .name = L"Test wide string",
38683868- .average = 543.34343,
38693869- };
38703870-38713871- ni.number = 58;
38723872-38733873- int dynamic_array[ni.number];
38743874- dynamic_array[ni.number - 1] = 543;
38753875-38763876- // work around unused variable warnings
38773877- return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x'
38783878- || dynamic_array[ni.number - 1] != 543);
42894289+(void) ac_decl (0, (char *) 0);
42904290+ (void) ac_decl;
3879429138804292 ;
38814293 return 0;
38824294}
38834295_ACEOF
38843884-for ac_arg in '' -std=gnu99 -std=c99 -c99 -AC99 -D_STDC_C99= -qlanglvl=extc99
38853885-do
38863886- CC="$ac_save_CC $ac_arg"
38873887- if ac_fn_c_try_compile "$LINENO"; then :
38883888- ac_cv_prog_cc_c99=$ac_arg
38893889-fi
38903890-rm -f core conftest.err conftest.$ac_objext
38913891- test "x$ac_cv_prog_cc_c99" != "xno" && break
38923892-done
38933893-rm -f conftest.$ac_ext
38943894-CC=$ac_save_CC
38953895-38963896-fi
38973897-# AC_CACHE_VAL
38983898-case "x$ac_cv_prog_cc_c99" in
38993899- x)
39003900- { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
39013901-$as_echo "none needed" >&6; } ;;
39023902- xno)
39033903- { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
39043904-$as_echo "unsupported" >&6; } ;;
39053905- *)
39063906- CC="$CC $ac_cv_prog_cc_c99"
39073907- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5
39083908-$as_echo "$ac_cv_prog_cc_c99" >&6; } ;;
39093909-esac
39103910-if test "x$ac_cv_prog_cc_c99" != xno; then :
39113911-39123912-fi
39133913-39143914-39153915-39163916-ac_ext=c
39173917-ac_cpp='$CPP $CPPFLAGS'
39183918-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
39193919-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
39203920-ac_compiler_gnu=$ac_cv_c_compiler_gnu
39213921-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
39223922-$as_echo_n "checking how to run the C preprocessor... " >&6; }
39233923-# On Suns, sometimes $CPP names a directory.
39243924-if test -n "$CPP" && test -d "$CPP"; then
39253925- CPP=
42964296+if ac_fn_c_try_compile "$LINENO"
42974297+then :
42984298+ if test x"$ac_arg" = x
42994299+then :
43004300+ ac_cv_c_undeclared_builtin_options='none needed'
43014301+else $as_nop
43024302+ ac_cv_c_undeclared_builtin_options=$ac_arg
39264303fi
39273927-if test -z "$CPP"; then
39283928- if ${ac_cv_prog_CPP+:} false; then :
39293929- $as_echo_n "(cached) " >&6
39303930-else
39313931- # Double quotes because CPP needs to be expanded
39323932- for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
39333933- do
39343934- ac_preproc_ok=false
39353935-for ac_c_preproc_warn_flag in '' yes
39363936-do
39373937- # Use a header file that comes with gcc, so configuring glibc
39383938- # with a fresh cross-compiler works.
39393939- # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
39403940- # <limits.h> exists even on freestanding compilers.
39413941- # On the NeXT, cc -E runs the code through the compiler's parser,
39423942- # not just through cpp. "Syntax error" is here to catch this case.
39433943- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
39443944-/* end confdefs.h. */
39453945-#ifdef __STDC__
39463946-# include <limits.h>
39473947-#else
39483948-# include <assert.h>
39493949-#endif
39503950- Syntax error
39513951-_ACEOF
39523952-if ac_fn_c_try_cpp "$LINENO"; then :
39533953-39543954-else
39553955- # Broken: fails on valid input.
39563956-continue
43044304+ break
39574305fi
39583958-rm -f conftest.err conftest.i conftest.$ac_ext
39593959-39603960- # OK, works on sane cases. Now check whether nonexistent headers
39613961- # can be detected and how.
39623962- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
39633963-/* end confdefs.h. */
39643964-#include <ac_nonexistent.h>
39653965-_ACEOF
39663966-if ac_fn_c_try_cpp "$LINENO"; then :
39673967- # Broken: success on invalid input.
39683968-continue
39693969-else
39703970- # Passes both tests.
39713971-ac_preproc_ok=:
39723972-break
43064306+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
39734307fi
39743974-rm -f conftest.err conftest.i conftest.$ac_ext
39753975-39763976-done
39773977-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
39783978-rm -f conftest.i conftest.err conftest.$ac_ext
39793979-if $ac_preproc_ok; then :
39803980- break
39813981-fi
39823982-43084308+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
39834309 done
39843984- ac_cv_prog_CPP=$CPP
43104310+ CFLAGS=$ac_save_CFLAGS
3985431139864312fi
39873987- CPP=$ac_cv_prog_CPP
39883988-else
39893989- ac_cv_prog_CPP=$CPP
39903990-fi
39913991-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
39923992-$as_echo "$CPP" >&6; }
39933993-ac_preproc_ok=false
39943994-for ac_c_preproc_warn_flag in '' yes
39953995-do
39963996- # Use a header file that comes with gcc, so configuring glibc
39973997- # with a fresh cross-compiler works.
39983998- # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
39993999- # <limits.h> exists even on freestanding compilers.
40004000- # On the NeXT, cc -E runs the code through the compiler's parser,
40014001- # not just through cpp. "Syntax error" is here to catch this case.
40024002- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
40034003-/* end confdefs.h. */
40044004-#ifdef __STDC__
40054005-# include <limits.h>
40064006-#else
40074007-# include <assert.h>
40084008-#endif
40094009- Syntax error
40104010-_ACEOF
40114011-if ac_fn_c_try_cpp "$LINENO"; then :
40124012-40134013-else
40144014- # Broken: fails on valid input.
40154015-continue
40164016-fi
40174017-rm -f conftest.err conftest.i conftest.$ac_ext
40184018-40194019- # OK, works on sane cases. Now check whether nonexistent headers
40204020- # can be detected and how.
40214021- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
40224022-/* end confdefs.h. */
40234023-#include <ac_nonexistent.h>
40244024-_ACEOF
40254025-if ac_fn_c_try_cpp "$LINENO"; then :
40264026- # Broken: success on invalid input.
40274027-continue
40284028-else
40294029- # Passes both tests.
40304030-ac_preproc_ok=:
40314031-break
40324032-fi
40334033-rm -f conftest.err conftest.i conftest.$ac_ext
40344034-40354035-done
40364036-# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
40374037-rm -f conftest.i conftest.err conftest.$ac_ext
40384038-if $ac_preproc_ok; then :
40394039-40404040-else
40414041- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
40424042-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
40434043-as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
40444044-See \`config.log' for more details" "$LINENO" 5; }
40454045-fi
40464046-40474047-ac_ext=c
40484048-ac_cpp='$CPP $CPPFLAGS'
40494049-ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
40504050-ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
40514051-ac_compiler_gnu=$ac_cv_c_compiler_gnu
40524052-40534053-40544054-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
40554055-$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
40564056-if ${ac_cv_path_GREP+:} false; then :
40574057- $as_echo_n "(cached) " >&6
40584058-else
40594059- if test -z "$GREP"; then
40604060- ac_path_GREP_found=false
40614061- # Loop through the user's path and test for each of PROGNAME-LIST
40624062- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
40634063-for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
40644064-do
40654065- IFS=$as_save_IFS
40664066- test -z "$as_dir" && as_dir=.
40674067- for ac_prog in grep ggrep; do
40684068- for ac_exec_ext in '' $ac_executable_extensions; do
40694069- ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
40704070- as_fn_executable_p "$ac_path_GREP" || continue
40714071-# Check for GNU ac_path_GREP and select it if it is found.
40724072- # Check for GNU $ac_path_GREP
40734073-case `"$ac_path_GREP" --version 2>&1` in
40744074-*GNU*)
40754075- ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
40764076-*)
40774077- ac_count=0
40784078- $as_echo_n 0123456789 >"conftest.in"
40794079- while :
40804080- do
40814081- cat "conftest.in" "conftest.in" >"conftest.tmp"
40824082- mv "conftest.tmp" "conftest.in"
40834083- cp "conftest.in" "conftest.nl"
40844084- $as_echo 'GREP' >> "conftest.nl"
40854085- "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
40864086- diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
40874087- as_fn_arith $ac_count + 1 && ac_count=$as_val
40884088- if test $ac_count -gt ${ac_path_GREP_max-0}; then
40894089- # Best one so far, save it but keep looking for a better one
40904090- ac_cv_path_GREP="$ac_path_GREP"
40914091- ac_path_GREP_max=$ac_count
40924092- fi
40934093- # 10*(2^10) chars as input seems more than enough
40944094- test $ac_count -gt 10 && break
40954095- done
40964096- rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
43134313+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_undeclared_builtin_options" >&5
43144314+printf "%s\n" "$ac_cv_c_undeclared_builtin_options" >&6; }
43154315+ case $ac_cv_c_undeclared_builtin_options in #(
43164316+ 'cannot detect') :
43174317+ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
43184318+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
43194319+as_fn_error $? "cannot make $CC report undeclared builtins
43204320+See \`config.log' for more details" "$LINENO" 5; } ;; #(
43214321+ 'none needed') :
43224322+ ac_c_undeclared_builtin_options='' ;; #(
43234323+ *) :
43244324+ ac_c_undeclared_builtin_options=$ac_cv_c_undeclared_builtin_options ;;
40974325esac
4098432640994099- $ac_path_GREP_found && break 3
41004100- done
41014101- done
41024102- done
41034103-IFS=$as_save_IFS
41044104- if test -z "$ac_cv_path_GREP"; then
41054105- as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
41064106- fi
41074107-else
41084108- ac_cv_path_GREP=$GREP
41094109-fi
41104110-41114111-fi
41124112-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
41134113-$as_echo "$ac_cv_path_GREP" >&6; }
41144114- GREP="$ac_cv_path_GREP"
41154115-41164116-41174117-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
41184118-$as_echo_n "checking for egrep... " >&6; }
41194119-if ${ac_cv_path_EGREP+:} false; then :
41204120- $as_echo_n "(cached) " >&6
41214121-else
41224122- if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
41234123- then ac_cv_path_EGREP="$GREP -E"
41244124- else
41254125- if test -z "$EGREP"; then
41264126- ac_path_EGREP_found=false
41274127- # Loop through the user's path and test for each of PROGNAME-LIST
41284128- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
41294129-for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
43274327+ac_header= ac_cache=
43284328+for ac_item in $ac_header_c_list
41304329do
41314131- IFS=$as_save_IFS
41324132- test -z "$as_dir" && as_dir=.
41334133- for ac_prog in egrep; do
41344134- for ac_exec_ext in '' $ac_executable_extensions; do
41354135- ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
41364136- as_fn_executable_p "$ac_path_EGREP" || continue
41374137-# Check for GNU ac_path_EGREP and select it if it is found.
41384138- # Check for GNU $ac_path_EGREP
41394139-case `"$ac_path_EGREP" --version 2>&1` in
41404140-*GNU*)
41414141- ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
41424142-*)
41434143- ac_count=0
41444144- $as_echo_n 0123456789 >"conftest.in"
41454145- while :
41464146- do
41474147- cat "conftest.in" "conftest.in" >"conftest.tmp"
41484148- mv "conftest.tmp" "conftest.in"
41494149- cp "conftest.in" "conftest.nl"
41504150- $as_echo 'EGREP' >> "conftest.nl"
41514151- "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
41524152- diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
41534153- as_fn_arith $ac_count + 1 && ac_count=$as_val
41544154- if test $ac_count -gt ${ac_path_EGREP_max-0}; then
41554155- # Best one so far, save it but keep looking for a better one
41564156- ac_cv_path_EGREP="$ac_path_EGREP"
41574157- ac_path_EGREP_max=$ac_count
43304330+ if test $ac_cache; then
43314331+ ac_fn_c_check_header_compile "$LINENO" $ac_header ac_cv_header_$ac_cache "$ac_includes_default"
43324332+ if eval test \"x\$ac_cv_header_$ac_cache\" = xyes; then
43334333+ printf "%s\n" "#define $ac_item 1" >> confdefs.h
41584334 fi
41594159- # 10*(2^10) chars as input seems more than enough
41604160- test $ac_count -gt 10 && break
41614161- done
41624162- rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
41634163-esac
41644164-41654165- $ac_path_EGREP_found && break 3
41664166- done
41674167- done
41684168- done
41694169-IFS=$as_save_IFS
41704170- if test -z "$ac_cv_path_EGREP"; then
41714171- as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
43354335+ ac_header= ac_cache=
43364336+ elif test $ac_header; then
43374337+ ac_cache=$ac_item
43384338+ else
43394339+ ac_header=$ac_item
41724340 fi
41734173-else
41744174- ac_cv_path_EGREP=$EGREP
41754175-fi
43414341+done
4176434241774177- fi
41784178-fi
41794179-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
41804180-$as_echo "$ac_cv_path_EGREP" >&6; }
41814181- EGREP="$ac_cv_path_EGREP"
418243434183434441844184-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
41854185-$as_echo_n "checking for ANSI C header files... " >&6; }
41864186-if ${ac_cv_header_stdc+:} false; then :
41874187- $as_echo_n "(cached) " >&6
41884188-else
41894189- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
41904190-/* end confdefs.h. */
41914191-#include <stdlib.h>
41924192-#include <stdarg.h>
41934193-#include <string.h>
41944194-#include <float.h>
4195434541964196-int
41974197-main ()
41984198-{
4199434642004200- ;
42014201- return 0;
42024202-}
42034203-_ACEOF
42044204-if ac_fn_c_try_compile "$LINENO"; then :
42054205- ac_cv_header_stdc=yes
42064206-else
42074207- ac_cv_header_stdc=no
42084208-fi
42094209-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
4210434742114211-if test $ac_cv_header_stdc = yes; then
42124212- # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
42134213- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
42144214-/* end confdefs.h. */
42154215-#include <string.h>
4216434842174217-_ACEOF
42184218-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
42194219- $EGREP "memchr" >/dev/null 2>&1; then :
42204220-42214221-else
42224222- ac_cv_header_stdc=no
42234223-fi
42244224-rm -f conftest*
42254225-42264226-fi
42274227-42284228-if test $ac_cv_header_stdc = yes; then
42294229- # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
42304230- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
42314231-/* end confdefs.h. */
42324232-#include <stdlib.h>
42334233-42344234-_ACEOF
42354235-if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
42364236- $EGREP "free" >/dev/null 2>&1; then :
42374237-42384238-else
42394239- ac_cv_header_stdc=no
42404240-fi
42414241-rm -f conftest*
42424242-42434243-fi
42444244-42454245-if test $ac_cv_header_stdc = yes; then
42464246- # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
42474247- if test "$cross_compiling" = yes; then :
42484248- :
42494249-else
42504250- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
42514251-/* end confdefs.h. */
42524252-#include <ctype.h>
42534253-#include <stdlib.h>
42544254-#if ((' ' & 0x0FF) == 0x020)
42554255-# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
42564256-# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
42574257-#else
42584258-# define ISLOWER(c) \
42594259- (('a' <= (c) && (c) <= 'i') \
42604260- || ('j' <= (c) && (c) <= 'r') \
42614261- || ('s' <= (c) && (c) <= 'z'))
42624262-# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
42634263-#endif
42644264-42654265-#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
42664266-int
42674267-main ()
42684268-{
42694269- int i;
42704270- for (i = 0; i < 256; i++)
42714271- if (XOR (islower (i), ISLOWER (i))
42724272- || toupper (i) != TOUPPER (i))
42734273- return 2;
42744274- return 0;
42754275-}
42764276-_ACEOF
42774277-if ac_fn_c_try_run "$LINENO"; then :
42784278-42794279-else
42804280- ac_cv_header_stdc=no
42814281-fi
42824282-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
42834283- conftest.$ac_objext conftest.beam conftest.$ac_ext
42844284-fi
4285434942864286-fi
42874287-fi
42884288-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5
42894289-$as_echo "$ac_cv_header_stdc" >&6; }
42904290-if test $ac_cv_header_stdc = yes; then
43504350+if test $ac_cv_header_stdlib_h = yes && test $ac_cv_header_string_h = yes
43514351+then :
4291435242924292-$as_echo "#define STDC_HEADERS 1" >>confdefs.h
43534353+printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h
4293435442944355fi
4295435642964296-# On IRIX 5.3, sys/types and inttypes.h are conflicting.
42974297-for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
42984298- inttypes.h stdint.h unistd.h
42994299-do :
43004300- as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
43014301-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
43024302-"
43034303-if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
43044304- cat >>confdefs.h <<_ACEOF
43054305-#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
43064306-_ACEOF
43074307-43084308-fi
43094309-43104310-done
43114357431243584313435943144314-43154315-43164316-43174317-ac_fn_c_check_decl "$LINENO" "__clang__" "ac_cv_have_decl___clang__" "$ac_includes_default"
43184318-if test "x$ac_cv_have_decl___clang__" = xyes; then :
43604360+ac_fn_check_decl "$LINENO" "__clang__" "ac_cv_have_decl___clang__" "$ac_includes_default" "$ac_c_undeclared_builtin_options" "CFLAGS"
43614361+if test "x$ac_cv_have_decl___clang__" = xyes
43624362+then :
43194363 CLANGCC="yes"
43204320-else
43644364+else $as_nop
43214365 CLANGCC="no"
43224366fi
43234323-43244324-ac_fn_c_check_decl "$LINENO" "__INTEL_COMPILER" "ac_cv_have_decl___INTEL_COMPILER" "$ac_includes_default"
43254325-if test "x$ac_cv_have_decl___INTEL_COMPILER" = xyes; then :
43674367+ac_fn_check_decl "$LINENO" "__INTEL_COMPILER" "ac_cv_have_decl___INTEL_COMPILER" "$ac_includes_default" "$ac_c_undeclared_builtin_options" "CFLAGS"
43684368+if test "x$ac_cv_have_decl___INTEL_COMPILER" = xyes
43694369+then :
43264370 INTELCC="yes"
43274327-else
43714371+else $as_nop
43284372 INTELCC="no"
43294373fi
43304330-43314331-ac_fn_c_check_decl "$LINENO" "__SUNPRO_C" "ac_cv_have_decl___SUNPRO_C" "$ac_includes_default"
43324332-if test "x$ac_cv_have_decl___SUNPRO_C" = xyes; then :
43744374+ac_fn_check_decl "$LINENO" "__SUNPRO_C" "ac_cv_have_decl___SUNPRO_C" "$ac_includes_default" "$ac_c_undeclared_builtin_options" "CFLAGS"
43754375+if test "x$ac_cv_have_decl___SUNPRO_C" = xyes
43764376+then :
43334377 SUNCC="yes"
43344334-else
43784378+else $as_nop
43354379 SUNCC="no"
43364380fi
43374337-433843814339438243404383···43474390 if test -n "$ac_tool_prefix"; then
43484391 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
43494392set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
43504350-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
43514351-$as_echo_n "checking for $ac_word... " >&6; }
43524352-if ${ac_cv_path_PKG_CONFIG+:} false; then :
43534353- $as_echo_n "(cached) " >&6
43544354-else
43934393+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
43944394+printf %s "checking for $ac_word... " >&6; }
43954395+if test ${ac_cv_path_PKG_CONFIG+y}
43964396+then :
43974397+ printf %s "(cached) " >&6
43984398+else $as_nop
43554399 case $PKG_CONFIG in
43564400 [\\/]* | ?:[\\/]*)
43574401 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
···43614405for as_dir in $PATH
43624406do
43634407 IFS=$as_save_IFS
43644364- test -z "$as_dir" && as_dir=.
44084408+ case $as_dir in #(((
44094409+ '') as_dir=./ ;;
44104410+ */) ;;
44114411+ *) as_dir=$as_dir/ ;;
44124412+ esac
43654413 for ac_exec_ext in '' $ac_executable_extensions; do
43664366- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
43674367- ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
43684368- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
44144414+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
44154415+ ac_cv_path_PKG_CONFIG="$as_dir$ac_word$ac_exec_ext"
44164416+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
43694417 break 2
43704418 fi
43714419done
···43774425fi
43784426PKG_CONFIG=$ac_cv_path_PKG_CONFIG
43794427if test -n "$PKG_CONFIG"; then
43804380- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
43814381-$as_echo "$PKG_CONFIG" >&6; }
44284428+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
44294429+printf "%s\n" "$PKG_CONFIG" >&6; }
43824430else
43834383- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
43844384-$as_echo "no" >&6; }
44314431+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
44324432+printf "%s\n" "no" >&6; }
43854433fi
4386443443874435···43904438 ac_pt_PKG_CONFIG=$PKG_CONFIG
43914439 # Extract the first word of "pkg-config", so it can be a program name with args.
43924440set dummy pkg-config; ac_word=$2
43934393-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
43944394-$as_echo_n "checking for $ac_word... " >&6; }
43954395-if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
43964396- $as_echo_n "(cached) " >&6
43974397-else
44414441+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
44424442+printf %s "checking for $ac_word... " >&6; }
44434443+if test ${ac_cv_path_ac_pt_PKG_CONFIG+y}
44444444+then :
44454445+ printf %s "(cached) " >&6
44464446+else $as_nop
43984447 case $ac_pt_PKG_CONFIG in
43994448 [\\/]* | ?:[\\/]*)
44004449 ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
···44044453for as_dir in $PATH
44054454do
44064455 IFS=$as_save_IFS
44074407- test -z "$as_dir" && as_dir=.
44564456+ case $as_dir in #(((
44574457+ '') as_dir=./ ;;
44584458+ */) ;;
44594459+ *) as_dir=$as_dir/ ;;
44604460+ esac
44084461 for ac_exec_ext in '' $ac_executable_extensions; do
44094409- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
44104410- ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
44114411- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
44624462+ if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then
44634463+ ac_cv_path_ac_pt_PKG_CONFIG="$as_dir$ac_word$ac_exec_ext"
44644464+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5
44124465 break 2
44134466 fi
44144467done
···44204473fi
44214474ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
44224475if test -n "$ac_pt_PKG_CONFIG"; then
44234423- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
44244424-$as_echo "$ac_pt_PKG_CONFIG" >&6; }
44764476+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
44774477+printf "%s\n" "$ac_pt_PKG_CONFIG" >&6; }
44254478else
44264426- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
44274427-$as_echo "no" >&6; }
44794479+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
44804480+printf "%s\n" "no" >&6; }
44284481fi
4429448244304483 if test "x$ac_pt_PKG_CONFIG" = x; then
···44324485 else
44334486 case $cross_compiling:$ac_tool_warned in
44344487yes:)
44354435-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
44364436-$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
44884488+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
44894489+printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
44374490ac_tool_warned=yes ;;
44384491esac
44394492 PKG_CONFIG=$ac_pt_PKG_CONFIG
···44454498fi
44464499if test -n "$PKG_CONFIG"; then
44474500 _pkg_min_version=0.9.0
44484448- { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
44494449-$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
45014501+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
45024502+printf %s "checking pkg-config is at least version $_pkg_min_version... " >&6; }
44504503 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
44514451- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
44524452-$as_echo "yes" >&6; }
45044504+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
45054505+printf "%s\n" "yes" >&6; }
44534506 else
44544454- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
44554455-$as_echo "no" >&6; }
45074507+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
45084508+printf "%s\n" "no" >&6; }
44564509 PKG_CONFIG=""
44574510 fi
44584511fi
44594459-# Make sure we can run config.sub.
44604460-$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
44614461- as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
45124512+45134513+45144514+ # Make sure we can run config.sub.
45154515+$SHELL "${ac_aux_dir}config.sub" sun4 >/dev/null 2>&1 ||
45164516+ as_fn_error $? "cannot run $SHELL ${ac_aux_dir}config.sub" "$LINENO" 5
4462451744634463-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
44644464-$as_echo_n "checking build system type... " >&6; }
44654465-if ${ac_cv_build+:} false; then :
44664466- $as_echo_n "(cached) " >&6
44674467-else
45184518+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
45194519+printf %s "checking build system type... " >&6; }
45204520+if test ${ac_cv_build+y}
45214521+then :
45224522+ printf %s "(cached) " >&6
45234523+else $as_nop
44684524 ac_build_alias=$build_alias
44694525test "x$ac_build_alias" = x &&
44704470- ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
45264526+ ac_build_alias=`$SHELL "${ac_aux_dir}config.guess"`
44714527test "x$ac_build_alias" = x &&
44724528 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
44734473-ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
44744474- as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
45294529+ac_cv_build=`$SHELL "${ac_aux_dir}config.sub" $ac_build_alias` ||
45304530+ as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $ac_build_alias failed" "$LINENO" 5
4475453144764532fi
44774477-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
44784478-$as_echo "$ac_cv_build" >&6; }
45334533+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
45344534+printf "%s\n" "$ac_cv_build" >&6; }
44794535case $ac_cv_build in
44804536*-*-*) ;;
44814537*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
···44944550case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
449545514496455244974497-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
44984498-$as_echo_n "checking host system type... " >&6; }
44994499-if ${ac_cv_host+:} false; then :
45004500- $as_echo_n "(cached) " >&6
45014501-else
45534553+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
45544554+printf %s "checking host system type... " >&6; }
45554555+if test ${ac_cv_host+y}
45564556+then :
45574557+ printf %s "(cached) " >&6
45584558+else $as_nop
45024559 if test "x$host_alias" = x; then
45034560 ac_cv_host=$ac_cv_build
45044561else
45054505- ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
45064506- as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
45624562+ ac_cv_host=`$SHELL "${ac_aux_dir}config.sub" $host_alias` ||
45634563+ as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $host_alias failed" "$LINENO" 5
45074564fi
4508456545094566fi
45104510-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
45114511-$as_echo "$ac_cv_host" >&6; }
45674567+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
45684568+printf "%s\n" "$ac_cv_host" >&6; }
45124569case $ac_cv_host in
45134570*-*-*) ;;
45144571*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
···45274584case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
452845854529458645304530-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
45314531-$as_echo_n "checking for a sed that does not truncate output... " >&6; }
45324532-if ${ac_cv_path_SED+:} false; then :
45334533- $as_echo_n "(cached) " >&6
45344534-else
45874587+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
45884588+printf %s "checking for a sed that does not truncate output... " >&6; }
45894589+if test ${ac_cv_path_SED+y}
45904590+then :
45914591+ printf %s "(cached) " >&6
45924592+else $as_nop
45354593 ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
45364594 for ac_i in 1 2 3 4 5 6 7; do
45374595 ac_script="$ac_script$as_nl$ac_script"
···45454603for as_dir in $PATH
45464604do
45474605 IFS=$as_save_IFS
45484548- test -z "$as_dir" && as_dir=.
45494549- for ac_prog in sed gsed; do
46064606+ case $as_dir in #(((
46074607+ '') as_dir=./ ;;
46084608+ */) ;;
46094609+ *) as_dir=$as_dir/ ;;
46104610+ esac
46114611+ for ac_prog in sed gsed
46124612+ do
45504613 for ac_exec_ext in '' $ac_executable_extensions; do
45514551- ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
46144614+ ac_path_SED="$as_dir$ac_prog$ac_exec_ext"
45524615 as_fn_executable_p "$ac_path_SED" || continue
45534616# Check for GNU ac_path_SED and select it if it is found.
45544617 # Check for GNU $ac_path_SED
···45574620 ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;;
45584621*)
45594622 ac_count=0
45604560- $as_echo_n 0123456789 >"conftest.in"
46234623+ printf %s 0123456789 >"conftest.in"
45614624 while :
45624625 do
45634626 cat "conftest.in" "conftest.in" >"conftest.tmp"
45644627 mv "conftest.tmp" "conftest.in"
45654628 cp "conftest.in" "conftest.nl"
45664566- $as_echo '' >> "conftest.nl"
46294629+ printf "%s\n" '' >> "conftest.nl"
45674630 "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break
45684631 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
45694632 as_fn_arith $ac_count + 1 && ac_count=$as_val
···45914654fi
4592465545934656fi
45944594-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5
45954595-$as_echo "$ac_cv_path_SED" >&6; }
46574657+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5
46584658+printf "%s\n" "$ac_cv_path_SED" >&6; }
45964659 SED="$ac_cv_path_SED"
45974660 rm -f conftest.sed
45984661···460246654603466646044667# Check whether --enable-selective-werror was given.
46054605-if test "${enable_selective_werror+set}" = set; then :
46684668+if test ${enable_selective_werror+y}
46694669+then :
46064670 enableval=$enable_selective_werror; SELECTIVE_WERROR=$enableval
46074607-else
46714671+else $as_nop
46084672 SELECTIVE_WERROR=yes
46094673fi
46104674···4637470146384702if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
46394703 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
46404640- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
46414641-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
46424642-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
46434643- $as_echo_n "(cached) " >&6
46444644-else
47044704+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
47054705+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
47064706+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
47074707+then :
47084708+ printf %s "(cached) " >&6
47094709+else $as_nop
46454710 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
46464711/* end confdefs.h. */
46474712int i;
46484713_ACEOF
46494649-if ac_fn_c_try_compile "$LINENO"; then :
47144714+if ac_fn_c_try_compile "$LINENO"
47154715+then :
46504716 xorg_cv_cc_flag_unknown_warning_option=yes
46514651-else
47174717+else $as_nop
46524718 xorg_cv_cc_flag_unknown_warning_option=no
46534719fi
46544654-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
47204720+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
46554721fi
46564656-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
46574657-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
47224722+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
47234723+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
46584724 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
46594725 CFLAGS="$xorg_testset_save_CFLAGS"
46604726fi
···46644730 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
46654731 fi
46664732 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
46674667- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
46684668-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
46694669-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
46704670- $as_echo_n "(cached) " >&6
46714671-else
47334733+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
47344734+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
47354735+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
47364736+then :
47374737+ printf %s "(cached) " >&6
47384738+else $as_nop
46724739 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
46734740/* end confdefs.h. */
46744741int i;
46754742_ACEOF
46764676-if ac_fn_c_try_compile "$LINENO"; then :
47434743+if ac_fn_c_try_compile "$LINENO"
47444744+then :
46774745 xorg_cv_cc_flag_unused_command_line_argument=yes
46784678-else
47464746+else $as_nop
46794747 xorg_cv_cc_flag_unused_command_line_argument=no
46804748fi
46814681-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
47494749+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
46824750fi
46834683-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
46844684-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
47514751+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
47524752+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
46854753 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
46864754 CFLAGS="$xorg_testset_save_CFLAGS"
46874755fi
···4699476747004768 CFLAGS="$CFLAGS -Wall"
4701476947024702- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wall" >&5
47034703-$as_echo_n "checking if $CC supports -Wall... " >&6; }
47704770+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wall" >&5
47714771+printf %s "checking if $CC supports -Wall... " >&6; }
47044772 cacheid=xorg_cv_cc_flag__Wall
47054705- if eval \${$cacheid+:} false; then :
47064706- $as_echo_n "(cached) " >&6
47074707-else
47734773+ if eval test \${$cacheid+y}
47744774+then :
47754775+ printf %s "(cached) " >&6
47764776+else $as_nop
47084777 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
47094778/* end confdefs.h. */
47104779int i;
47114780int
47124712-main ()
47814781+main (void)
47134782{
4714478347154784 ;
47164785 return 0;
47174786}
47184787_ACEOF
47194719-if ac_fn_c_try_link "$LINENO"; then :
47884788+if ac_fn_c_try_link "$LINENO"
47894789+then :
47204790 eval $cacheid=yes
47214721-else
47914791+else $as_nop
47224792 eval $cacheid=no
47234793fi
47244724-rm -f core conftest.err conftest.$ac_objext \
47944794+rm -f core conftest.err conftest.$ac_objext conftest.beam \
47254795 conftest$ac_exeext conftest.$ac_ext
47264796fi
47274797···47294799 CFLAGS="$xorg_testset_save_CFLAGS"
4730480047314801 eval supported=\$$cacheid
47324732- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
47334733-$as_echo "$supported" >&6; }
48024802+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
48034803+printf "%s\n" "$supported" >&6; }
47344804 if test "$supported" = "yes" ; then
47354805 BASE_CFLAGS="$BASE_CFLAGS -Wall"
47364806 found="yes"
···4755482547564826if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
47574827 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
47584758- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
47594759-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
47604760-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
47614761- $as_echo_n "(cached) " >&6
47624762-else
48284828+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
48294829+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
48304830+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
48314831+then :
48324832+ printf %s "(cached) " >&6
48334833+else $as_nop
47634834 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
47644835/* end confdefs.h. */
47654836int i;
47664837_ACEOF
47674767-if ac_fn_c_try_compile "$LINENO"; then :
48384838+if ac_fn_c_try_compile "$LINENO"
48394839+then :
47684840 xorg_cv_cc_flag_unknown_warning_option=yes
47694769-else
48414841+else $as_nop
47704842 xorg_cv_cc_flag_unknown_warning_option=no
47714843fi
47724772-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
48444844+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
47734845fi
47744774-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
47754775-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
48464846+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
48474847+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
47764848 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
47774849 CFLAGS="$xorg_testset_save_CFLAGS"
47784850fi
···47824854 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
47834855 fi
47844856 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
47854785- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
47864786-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
47874787-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
47884788- $as_echo_n "(cached) " >&6
47894789-else
48574857+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
48584858+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
48594859+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
48604860+then :
48614861+ printf %s "(cached) " >&6
48624862+else $as_nop
47904863 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
47914864/* end confdefs.h. */
47924865int i;
47934866_ACEOF
47944794-if ac_fn_c_try_compile "$LINENO"; then :
48674867+if ac_fn_c_try_compile "$LINENO"
48684868+then :
47954869 xorg_cv_cc_flag_unused_command_line_argument=yes
47964796-else
48704870+else $as_nop
47974871 xorg_cv_cc_flag_unused_command_line_argument=no
47984872fi
47994799-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
48734873+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
48004874fi
48014801-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
48024802-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
48754875+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
48764876+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
48034877 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
48044878 CFLAGS="$xorg_testset_save_CFLAGS"
48054879fi
···4817489148184892 CFLAGS="$CFLAGS -Wpointer-arith"
4819489348204820- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wpointer-arith" >&5
48214821-$as_echo_n "checking if $CC supports -Wpointer-arith... " >&6; }
48944894+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wpointer-arith" >&5
48954895+printf %s "checking if $CC supports -Wpointer-arith... " >&6; }
48224896 cacheid=xorg_cv_cc_flag__Wpointer_arith
48234823- if eval \${$cacheid+:} false; then :
48244824- $as_echo_n "(cached) " >&6
48254825-else
48974897+ if eval test \${$cacheid+y}
48984898+then :
48994899+ printf %s "(cached) " >&6
49004900+else $as_nop
48264901 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
48274902/* end confdefs.h. */
48284903int i;
48294904int
48304830-main ()
49054905+main (void)
48314906{
4832490748334908 ;
48344909 return 0;
48354910}
48364911_ACEOF
48374837-if ac_fn_c_try_link "$LINENO"; then :
49124912+if ac_fn_c_try_link "$LINENO"
49134913+then :
48384914 eval $cacheid=yes
48394839-else
49154915+else $as_nop
48404916 eval $cacheid=no
48414917fi
48424842-rm -f core conftest.err conftest.$ac_objext \
49184918+rm -f core conftest.err conftest.$ac_objext conftest.beam \
48434919 conftest$ac_exeext conftest.$ac_ext
48444920fi
48454921···48474923 CFLAGS="$xorg_testset_save_CFLAGS"
4848492448494925 eval supported=\$$cacheid
48504850- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
48514851-$as_echo "$supported" >&6; }
49264926+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
49274927+printf "%s\n" "$supported" >&6; }
48524928 if test "$supported" = "yes" ; then
48534929 BASE_CFLAGS="$BASE_CFLAGS -Wpointer-arith"
48544930 found="yes"
···4873494948744950if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
48754951 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
48764876- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
48774877-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
48784878-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
48794879- $as_echo_n "(cached) " >&6
48804880-else
49524952+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
49534953+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
49544954+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
49554955+then :
49564956+ printf %s "(cached) " >&6
49574957+else $as_nop
48814958 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
48824959/* end confdefs.h. */
48834960int i;
48844961_ACEOF
48854885-if ac_fn_c_try_compile "$LINENO"; then :
49624962+if ac_fn_c_try_compile "$LINENO"
49634963+then :
48864964 xorg_cv_cc_flag_unknown_warning_option=yes
48874887-else
49654965+else $as_nop
48884966 xorg_cv_cc_flag_unknown_warning_option=no
48894967fi
48904890-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
49684968+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
48914969fi
48924892-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
48934893-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
49704970+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
49714971+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
48944972 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
48954973 CFLAGS="$xorg_testset_save_CFLAGS"
48964974fi
···49004978 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
49014979 fi
49024980 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
49034903- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
49044904-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
49054905-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
49064906- $as_echo_n "(cached) " >&6
49074907-else
49814981+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
49824982+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
49834983+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
49844984+then :
49854985+ printf %s "(cached) " >&6
49864986+else $as_nop
49084987 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
49094988/* end confdefs.h. */
49104989int i;
49114990_ACEOF
49124912-if ac_fn_c_try_compile "$LINENO"; then :
49914991+if ac_fn_c_try_compile "$LINENO"
49924992+then :
49134993 xorg_cv_cc_flag_unused_command_line_argument=yes
49144914-else
49944994+else $as_nop
49154995 xorg_cv_cc_flag_unused_command_line_argument=no
49164996fi
49174917-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
49974997+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
49184998fi
49194919-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
49204920-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
49994999+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
50005000+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
49215001 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
49225002 CFLAGS="$xorg_testset_save_CFLAGS"
49235003fi
···4935501549365016 CFLAGS="$CFLAGS -Wmissing-declarations"
4937501749384938- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmissing-declarations" >&5
49394939-$as_echo_n "checking if $CC supports -Wmissing-declarations... " >&6; }
50185018+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmissing-declarations" >&5
50195019+printf %s "checking if $CC supports -Wmissing-declarations... " >&6; }
49405020 cacheid=xorg_cv_cc_flag__Wmissing_declarations
49414941- if eval \${$cacheid+:} false; then :
49424942- $as_echo_n "(cached) " >&6
49434943-else
50215021+ if eval test \${$cacheid+y}
50225022+then :
50235023+ printf %s "(cached) " >&6
50245024+else $as_nop
49445025 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
49455026/* end confdefs.h. */
49465027int i;
49475028int
49484948-main ()
50295029+main (void)
49495030{
4950503149515032 ;
49525033 return 0;
49535034}
49545035_ACEOF
49554955-if ac_fn_c_try_link "$LINENO"; then :
50365036+if ac_fn_c_try_link "$LINENO"
50375037+then :
49565038 eval $cacheid=yes
49574957-else
50395039+else $as_nop
49585040 eval $cacheid=no
49595041fi
49604960-rm -f core conftest.err conftest.$ac_objext \
50425042+rm -f core conftest.err conftest.$ac_objext conftest.beam \
49615043 conftest$ac_exeext conftest.$ac_ext
49625044fi
49635045···49655047 CFLAGS="$xorg_testset_save_CFLAGS"
4966504849675049 eval supported=\$$cacheid
49684968- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
49694969-$as_echo "$supported" >&6; }
50505050+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
50515051+printf "%s\n" "$supported" >&6; }
49705052 if test "$supported" = "yes" ; then
49715053 BASE_CFLAGS="$BASE_CFLAGS -Wmissing-declarations"
49725054 found="yes"
···4991507349925074if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
49935075 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
49944994- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
49954995-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
49964996-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
49974997- $as_echo_n "(cached) " >&6
49984998-else
50765076+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
50775077+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
50785078+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
50795079+then :
50805080+ printf %s "(cached) " >&6
50815081+else $as_nop
49995082 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
50005083/* end confdefs.h. */
50015084int i;
50025085_ACEOF
50035003-if ac_fn_c_try_compile "$LINENO"; then :
50865086+if ac_fn_c_try_compile "$LINENO"
50875087+then :
50045088 xorg_cv_cc_flag_unknown_warning_option=yes
50055005-else
50895089+else $as_nop
50065090 xorg_cv_cc_flag_unknown_warning_option=no
50075091fi
50085008-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
50925092+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
50095093fi
50105010-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
50115011-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
50945094+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
50955095+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
50125096 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
50135097 CFLAGS="$xorg_testset_save_CFLAGS"
50145098fi
···50185102 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
50195103 fi
50205104 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
50215021- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
50225022-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
50235023-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
50245024- $as_echo_n "(cached) " >&6
50255025-else
51055105+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
51065106+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
51075107+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
51085108+then :
51095109+ printf %s "(cached) " >&6
51105110+else $as_nop
50265111 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
50275112/* end confdefs.h. */
50285113int i;
50295114_ACEOF
50305030-if ac_fn_c_try_compile "$LINENO"; then :
51155115+if ac_fn_c_try_compile "$LINENO"
51165116+then :
50315117 xorg_cv_cc_flag_unused_command_line_argument=yes
50325032-else
51185118+else $as_nop
50335119 xorg_cv_cc_flag_unused_command_line_argument=no
50345120fi
50355035-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
51215121+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
50365122fi
50375037-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
50385038-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
51235123+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
51245124+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
50395125 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
50405126 CFLAGS="$xorg_testset_save_CFLAGS"
50415127fi
···5053513950545140 CFLAGS="$CFLAGS -Wformat=2"
5055514150565056- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wformat=2" >&5
50575057-$as_echo_n "checking if $CC supports -Wformat=2... " >&6; }
51425142+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wformat=2" >&5
51435143+printf %s "checking if $CC supports -Wformat=2... " >&6; }
50585144 cacheid=xorg_cv_cc_flag__Wformat_2
50595059- if eval \${$cacheid+:} false; then :
50605060- $as_echo_n "(cached) " >&6
50615061-else
51455145+ if eval test \${$cacheid+y}
51465146+then :
51475147+ printf %s "(cached) " >&6
51485148+else $as_nop
50625149 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
50635150/* end confdefs.h. */
50645151int i;
50655152int
50665066-main ()
51535153+main (void)
50675154{
5068515550695156 ;
50705157 return 0;
50715158}
50725159_ACEOF
50735073-if ac_fn_c_try_link "$LINENO"; then :
51605160+if ac_fn_c_try_link "$LINENO"
51615161+then :
50745162 eval $cacheid=yes
50755075-else
51635163+else $as_nop
50765164 eval $cacheid=no
50775165fi
50785078-rm -f core conftest.err conftest.$ac_objext \
51665166+rm -f core conftest.err conftest.$ac_objext conftest.beam \
50795167 conftest$ac_exeext conftest.$ac_ext
50805168fi
50815169···50835171 CFLAGS="$xorg_testset_save_CFLAGS"
5084517250855173 eval supported=\$$cacheid
50865086- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
50875087-$as_echo "$supported" >&6; }
51745174+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
51755175+printf "%s\n" "$supported" >&6; }
50885176 if test "$supported" = "yes" ; then
50895177 BASE_CFLAGS="$BASE_CFLAGS -Wformat=2"
50905178 found="yes"
···5102519051035191 CFLAGS="$CFLAGS -Wformat"
5104519251055105- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wformat" >&5
51065106-$as_echo_n "checking if $CC supports -Wformat... " >&6; }
51935193+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wformat" >&5
51945194+printf %s "checking if $CC supports -Wformat... " >&6; }
51075195 cacheid=xorg_cv_cc_flag__Wformat
51085108- if eval \${$cacheid+:} false; then :
51095109- $as_echo_n "(cached) " >&6
51105110-else
51965196+ if eval test \${$cacheid+y}
51975197+then :
51985198+ printf %s "(cached) " >&6
51995199+else $as_nop
51115200 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
51125201/* end confdefs.h. */
51135202int i;
51145203int
51155115-main ()
52045204+main (void)
51165205{
5117520651185207 ;
51195208 return 0;
51205209}
51215210_ACEOF
51225122-if ac_fn_c_try_link "$LINENO"; then :
52115211+if ac_fn_c_try_link "$LINENO"
52125212+then :
51235213 eval $cacheid=yes
51245124-else
52145214+else $as_nop
51255215 eval $cacheid=no
51265216fi
51275127-rm -f core conftest.err conftest.$ac_objext \
52175217+rm -f core conftest.err conftest.$ac_objext conftest.beam \
51285218 conftest$ac_exeext conftest.$ac_ext
51295219fi
51305220···51325222 CFLAGS="$xorg_testset_save_CFLAGS"
5133522351345224 eval supported=\$$cacheid
51355135- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
51365136-$as_echo "$supported" >&6; }
52255225+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
52265226+printf "%s\n" "$supported" >&6; }
51375227 if test "$supported" = "yes" ; then
51385228 BASE_CFLAGS="$BASE_CFLAGS -Wformat"
51395229 found="yes"
···5160525051615251if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
51625252 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
51635163- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
51645164-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
51655165-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
51665166- $as_echo_n "(cached) " >&6
51675167-else
52535253+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
52545254+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
52555255+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
52565256+then :
52575257+ printf %s "(cached) " >&6
52585258+else $as_nop
51685259 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
51695260/* end confdefs.h. */
51705261int i;
51715262_ACEOF
51725172-if ac_fn_c_try_compile "$LINENO"; then :
52635263+if ac_fn_c_try_compile "$LINENO"
52645264+then :
51735265 xorg_cv_cc_flag_unknown_warning_option=yes
51745174-else
52665266+else $as_nop
51755267 xorg_cv_cc_flag_unknown_warning_option=no
51765268fi
51775177-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
52695269+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
51785270fi
51795179-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
51805180-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
52715271+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
52725272+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
51815273 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
51825274 CFLAGS="$xorg_testset_save_CFLAGS"
51835275fi
···51875279 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
51885280 fi
51895281 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
51905190- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
51915191-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
51925192-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
51935193- $as_echo_n "(cached) " >&6
51945194-else
52825282+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
52835283+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
52845284+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
52855285+then :
52865286+ printf %s "(cached) " >&6
52875287+else $as_nop
51955288 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
51965289/* end confdefs.h. */
51975290int i;
51985291_ACEOF
51995199-if ac_fn_c_try_compile "$LINENO"; then :
52925292+if ac_fn_c_try_compile "$LINENO"
52935293+then :
52005294 xorg_cv_cc_flag_unused_command_line_argument=yes
52015201-else
52955295+else $as_nop
52025296 xorg_cv_cc_flag_unused_command_line_argument=no
52035297fi
52045204-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
52985298+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
52055299fi
52065206-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
52075207-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
53005300+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
53015301+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
52085302 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
52095303 CFLAGS="$xorg_testset_save_CFLAGS"
52105304fi
···5222531652235317 CFLAGS="$CFLAGS -Wstrict-prototypes"
5224531852255225- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wstrict-prototypes" >&5
52265226-$as_echo_n "checking if $CC supports -Wstrict-prototypes... " >&6; }
53195319+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wstrict-prototypes" >&5
53205320+printf %s "checking if $CC supports -Wstrict-prototypes... " >&6; }
52275321 cacheid=xorg_cv_cc_flag__Wstrict_prototypes
52285228- if eval \${$cacheid+:} false; then :
52295229- $as_echo_n "(cached) " >&6
52305230-else
53225322+ if eval test \${$cacheid+y}
53235323+then :
53245324+ printf %s "(cached) " >&6
53255325+else $as_nop
52315326 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
52325327/* end confdefs.h. */
52335328int i;
52345329int
52355235-main ()
53305330+main (void)
52365331{
5237533252385333 ;
52395334 return 0;
52405335}
52415336_ACEOF
52425242-if ac_fn_c_try_link "$LINENO"; then :
53375337+if ac_fn_c_try_link "$LINENO"
53385338+then :
52435339 eval $cacheid=yes
52445244-else
53405340+else $as_nop
52455341 eval $cacheid=no
52465342fi
52475247-rm -f core conftest.err conftest.$ac_objext \
53435343+rm -f core conftest.err conftest.$ac_objext conftest.beam \
52485344 conftest$ac_exeext conftest.$ac_ext
52495345fi
52505346···52525348 CFLAGS="$xorg_testset_save_CFLAGS"
5253534952545350 eval supported=\$$cacheid
52555255- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
52565256-$as_echo "$supported" >&6; }
53515351+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
53525352+printf "%s\n" "$supported" >&6; }
52575353 if test "$supported" = "yes" ; then
52585354 BASE_CFLAGS="$BASE_CFLAGS -Wstrict-prototypes"
52595355 found="yes"
···5278537452795375if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
52805376 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
52815281- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
52825282-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
52835283-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
52845284- $as_echo_n "(cached) " >&6
52855285-else
53775377+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
53785378+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
53795379+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
53805380+then :
53815381+ printf %s "(cached) " >&6
53825382+else $as_nop
52865383 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
52875384/* end confdefs.h. */
52885385int i;
52895386_ACEOF
52905290-if ac_fn_c_try_compile "$LINENO"; then :
53875387+if ac_fn_c_try_compile "$LINENO"
53885388+then :
52915389 xorg_cv_cc_flag_unknown_warning_option=yes
52925292-else
53905390+else $as_nop
52935391 xorg_cv_cc_flag_unknown_warning_option=no
52945392fi
52955295-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
53935393+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
52965394fi
52975297-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
52985298-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
53955395+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
53965396+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
52995397 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
53005398 CFLAGS="$xorg_testset_save_CFLAGS"
53015399fi
···53055403 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
53065404 fi
53075405 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
53085308- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
53095309-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
53105310-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
53115311- $as_echo_n "(cached) " >&6
53125312-else
54065406+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
54075407+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
54085408+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
54095409+then :
54105410+ printf %s "(cached) " >&6
54115411+else $as_nop
53135412 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
53145413/* end confdefs.h. */
53155414int i;
53165415_ACEOF
53175317-if ac_fn_c_try_compile "$LINENO"; then :
54165416+if ac_fn_c_try_compile "$LINENO"
54175417+then :
53185418 xorg_cv_cc_flag_unused_command_line_argument=yes
53195319-else
54195419+else $as_nop
53205420 xorg_cv_cc_flag_unused_command_line_argument=no
53215421fi
53225322-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
54225422+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
53235423fi
53245324-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
53255325-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
54245424+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
54255425+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
53265426 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
53275427 CFLAGS="$xorg_testset_save_CFLAGS"
53285428fi
···5340544053415441 CFLAGS="$CFLAGS -Wmissing-prototypes"
5342544253435343- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmissing-prototypes" >&5
53445344-$as_echo_n "checking if $CC supports -Wmissing-prototypes... " >&6; }
54435443+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmissing-prototypes" >&5
54445444+printf %s "checking if $CC supports -Wmissing-prototypes... " >&6; }
53455445 cacheid=xorg_cv_cc_flag__Wmissing_prototypes
53465346- if eval \${$cacheid+:} false; then :
53475347- $as_echo_n "(cached) " >&6
53485348-else
54465446+ if eval test \${$cacheid+y}
54475447+then :
54485448+ printf %s "(cached) " >&6
54495449+else $as_nop
53495450 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
53505451/* end confdefs.h. */
53515452int i;
53525453int
53535353-main ()
54545454+main (void)
53545455{
5355545653565457 ;
53575458 return 0;
53585459}
53595460_ACEOF
53605360-if ac_fn_c_try_link "$LINENO"; then :
54615461+if ac_fn_c_try_link "$LINENO"
54625462+then :
53615463 eval $cacheid=yes
53625362-else
54645464+else $as_nop
53635465 eval $cacheid=no
53645466fi
53655365-rm -f core conftest.err conftest.$ac_objext \
54675467+rm -f core conftest.err conftest.$ac_objext conftest.beam \
53665468 conftest$ac_exeext conftest.$ac_ext
53675469fi
53685470···53705472 CFLAGS="$xorg_testset_save_CFLAGS"
5371547353725474 eval supported=\$$cacheid
53735373- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
53745374-$as_echo "$supported" >&6; }
54755475+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
54765476+printf "%s\n" "$supported" >&6; }
53755477 if test "$supported" = "yes" ; then
53765478 BASE_CFLAGS="$BASE_CFLAGS -Wmissing-prototypes"
53775479 found="yes"
···5396549853975499if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
53985500 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
53995399- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
54005400-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
54015401-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
54025402- $as_echo_n "(cached) " >&6
54035403-else
55015501+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
55025502+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
55035503+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
55045504+then :
55055505+ printf %s "(cached) " >&6
55065506+else $as_nop
54045507 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
54055508/* end confdefs.h. */
54065509int i;
54075510_ACEOF
54085408-if ac_fn_c_try_compile "$LINENO"; then :
55115511+if ac_fn_c_try_compile "$LINENO"
55125512+then :
54095513 xorg_cv_cc_flag_unknown_warning_option=yes
54105410-else
55145514+else $as_nop
54115515 xorg_cv_cc_flag_unknown_warning_option=no
54125516fi
54135413-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
55175517+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
54145518fi
54155415-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
54165416-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
55195519+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
55205520+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
54175521 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
54185522 CFLAGS="$xorg_testset_save_CFLAGS"
54195523fi
···54235527 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
54245528 fi
54255529 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
54265426- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
54275427-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
54285428-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
54295429- $as_echo_n "(cached) " >&6
54305430-else
55305530+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
55315531+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
55325532+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
55335533+then :
55345534+ printf %s "(cached) " >&6
55355535+else $as_nop
54315536 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
54325537/* end confdefs.h. */
54335538int i;
54345539_ACEOF
54355435-if ac_fn_c_try_compile "$LINENO"; then :
55405540+if ac_fn_c_try_compile "$LINENO"
55415541+then :
54365542 xorg_cv_cc_flag_unused_command_line_argument=yes
54375437-else
55435543+else $as_nop
54385544 xorg_cv_cc_flag_unused_command_line_argument=no
54395545fi
54405440-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
55465546+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
54415547fi
54425442-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
54435443-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
55485548+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
55495549+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
54445550 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
54455551 CFLAGS="$xorg_testset_save_CFLAGS"
54465552fi
···5458556454595565 CFLAGS="$CFLAGS -Wnested-externs"
5460556654615461- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wnested-externs" >&5
54625462-$as_echo_n "checking if $CC supports -Wnested-externs... " >&6; }
55675567+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wnested-externs" >&5
55685568+printf %s "checking if $CC supports -Wnested-externs... " >&6; }
54635569 cacheid=xorg_cv_cc_flag__Wnested_externs
54645464- if eval \${$cacheid+:} false; then :
54655465- $as_echo_n "(cached) " >&6
54665466-else
55705570+ if eval test \${$cacheid+y}
55715571+then :
55725572+ printf %s "(cached) " >&6
55735573+else $as_nop
54675574 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
54685575/* end confdefs.h. */
54695576int i;
54705577int
54715471-main ()
55785578+main (void)
54725579{
5473558054745581 ;
54755582 return 0;
54765583}
54775584_ACEOF
54785478-if ac_fn_c_try_link "$LINENO"; then :
55855585+if ac_fn_c_try_link "$LINENO"
55865586+then :
54795587 eval $cacheid=yes
54805480-else
55885588+else $as_nop
54815589 eval $cacheid=no
54825590fi
54835483-rm -f core conftest.err conftest.$ac_objext \
55915591+rm -f core conftest.err conftest.$ac_objext conftest.beam \
54845592 conftest$ac_exeext conftest.$ac_ext
54855593fi
54865594···54885596 CFLAGS="$xorg_testset_save_CFLAGS"
5489559754905598 eval supported=\$$cacheid
54915491- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
54925492-$as_echo "$supported" >&6; }
55995599+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
56005600+printf "%s\n" "$supported" >&6; }
54935601 if test "$supported" = "yes" ; then
54945602 BASE_CFLAGS="$BASE_CFLAGS -Wnested-externs"
54955603 found="yes"
···5514562255155623if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
55165624 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
55175517- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
55185518-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
55195519-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
55205520- $as_echo_n "(cached) " >&6
55215521-else
56255625+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
56265626+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
56275627+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
56285628+then :
56295629+ printf %s "(cached) " >&6
56305630+else $as_nop
55225631 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
55235632/* end confdefs.h. */
55245633int i;
55255634_ACEOF
55265526-if ac_fn_c_try_compile "$LINENO"; then :
56355635+if ac_fn_c_try_compile "$LINENO"
56365636+then :
55275637 xorg_cv_cc_flag_unknown_warning_option=yes
55285528-else
56385638+else $as_nop
55295639 xorg_cv_cc_flag_unknown_warning_option=no
55305640fi
55315531-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
56415641+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
55325642fi
55335533-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
55345534-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
56435643+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
56445644+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
55355645 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
55365646 CFLAGS="$xorg_testset_save_CFLAGS"
55375647fi
···55415651 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
55425652 fi
55435653 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
55445544- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
55455545-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
55465546-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
55475547- $as_echo_n "(cached) " >&6
55485548-else
56545654+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
56555655+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
56565656+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
56575657+then :
56585658+ printf %s "(cached) " >&6
56595659+else $as_nop
55495660 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
55505661/* end confdefs.h. */
55515662int i;
55525663_ACEOF
55535553-if ac_fn_c_try_compile "$LINENO"; then :
56645664+if ac_fn_c_try_compile "$LINENO"
56655665+then :
55545666 xorg_cv_cc_flag_unused_command_line_argument=yes
55555555-else
56675667+else $as_nop
55565668 xorg_cv_cc_flag_unused_command_line_argument=no
55575669fi
55585558-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
56705670+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
55595671fi
55605560-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
55615561-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
56725672+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
56735673+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
55625674 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
55635675 CFLAGS="$xorg_testset_save_CFLAGS"
55645676fi
···5576568855775689 CFLAGS="$CFLAGS -Wbad-function-cast"
5578569055795579- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wbad-function-cast" >&5
55805580-$as_echo_n "checking if $CC supports -Wbad-function-cast... " >&6; }
56915691+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wbad-function-cast" >&5
56925692+printf %s "checking if $CC supports -Wbad-function-cast... " >&6; }
55815693 cacheid=xorg_cv_cc_flag__Wbad_function_cast
55825582- if eval \${$cacheid+:} false; then :
55835583- $as_echo_n "(cached) " >&6
55845584-else
56945694+ if eval test \${$cacheid+y}
56955695+then :
56965696+ printf %s "(cached) " >&6
56975697+else $as_nop
55855698 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
55865699/* end confdefs.h. */
55875700int i;
55885701int
55895589-main ()
57025702+main (void)
55905703{
5591570455925705 ;
55935706 return 0;
55945707}
55955708_ACEOF
55965596-if ac_fn_c_try_link "$LINENO"; then :
57095709+if ac_fn_c_try_link "$LINENO"
57105710+then :
55975711 eval $cacheid=yes
55985598-else
57125712+else $as_nop
55995713 eval $cacheid=no
56005714fi
56015601-rm -f core conftest.err conftest.$ac_objext \
57155715+rm -f core conftest.err conftest.$ac_objext conftest.beam \
56025716 conftest$ac_exeext conftest.$ac_ext
56035717fi
56045718···56065720 CFLAGS="$xorg_testset_save_CFLAGS"
5607572156085722 eval supported=\$$cacheid
56095609- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
56105610-$as_echo "$supported" >&6; }
57235723+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
57245724+printf "%s\n" "$supported" >&6; }
56115725 if test "$supported" = "yes" ; then
56125726 BASE_CFLAGS="$BASE_CFLAGS -Wbad-function-cast"
56135727 found="yes"
···5632574656335747if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
56345748 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
56355635- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
56365636-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
56375637-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
56385638- $as_echo_n "(cached) " >&6
56395639-else
57495749+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
57505750+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
57515751+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
57525752+then :
57535753+ printf %s "(cached) " >&6
57545754+else $as_nop
56405755 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
56415756/* end confdefs.h. */
56425757int i;
56435758_ACEOF
56445644-if ac_fn_c_try_compile "$LINENO"; then :
57595759+if ac_fn_c_try_compile "$LINENO"
57605760+then :
56455761 xorg_cv_cc_flag_unknown_warning_option=yes
56465646-else
57625762+else $as_nop
56475763 xorg_cv_cc_flag_unknown_warning_option=no
56485764fi
56495649-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
57655765+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
56505766fi
56515651-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
56525652-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
57675767+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
57685768+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
56535769 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
56545770 CFLAGS="$xorg_testset_save_CFLAGS"
56555771fi
···56595775 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
56605776 fi
56615777 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
56625662- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
56635663-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
56645664-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
56655665- $as_echo_n "(cached) " >&6
56665666-else
57785778+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
57795779+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
57805780+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
57815781+then :
57825782+ printf %s "(cached) " >&6
57835783+else $as_nop
56675784 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
56685785/* end confdefs.h. */
56695786int i;
56705787_ACEOF
56715671-if ac_fn_c_try_compile "$LINENO"; then :
57885788+if ac_fn_c_try_compile "$LINENO"
57895789+then :
56725790 xorg_cv_cc_flag_unused_command_line_argument=yes
56735673-else
57915791+else $as_nop
56745792 xorg_cv_cc_flag_unused_command_line_argument=no
56755793fi
56765676-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
57945794+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
56775795fi
56785678-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
56795679-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
57965796+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
57975797+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
56805798 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
56815799 CFLAGS="$xorg_testset_save_CFLAGS"
56825800fi
···5694581256955813 CFLAGS="$CFLAGS -Wold-style-definition"
5696581456975697- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wold-style-definition" >&5
56985698-$as_echo_n "checking if $CC supports -Wold-style-definition... " >&6; }
58155815+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wold-style-definition" >&5
58165816+printf %s "checking if $CC supports -Wold-style-definition... " >&6; }
56995817 cacheid=xorg_cv_cc_flag__Wold_style_definition
57005700- if eval \${$cacheid+:} false; then :
57015701- $as_echo_n "(cached) " >&6
57025702-else
58185818+ if eval test \${$cacheid+y}
58195819+then :
58205820+ printf %s "(cached) " >&6
58215821+else $as_nop
57035822 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
57045823/* end confdefs.h. */
57055824int i;
57065825int
57075707-main ()
58265826+main (void)
57085827{
5709582857105829 ;
57115830 return 0;
57125831}
57135832_ACEOF
57145714-if ac_fn_c_try_link "$LINENO"; then :
58335833+if ac_fn_c_try_link "$LINENO"
58345834+then :
57155835 eval $cacheid=yes
57165716-else
58365836+else $as_nop
57175837 eval $cacheid=no
57185838fi
57195719-rm -f core conftest.err conftest.$ac_objext \
58395839+rm -f core conftest.err conftest.$ac_objext conftest.beam \
57205840 conftest$ac_exeext conftest.$ac_ext
57215841fi
57225842···57245844 CFLAGS="$xorg_testset_save_CFLAGS"
5725584557265846 eval supported=\$$cacheid
57275727- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
57285728-$as_echo "$supported" >&6; }
58475847+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
58485848+printf "%s\n" "$supported" >&6; }
57295849 if test "$supported" = "yes" ; then
57305850 BASE_CFLAGS="$BASE_CFLAGS -Wold-style-definition"
57315851 found="yes"
···5743586357445864 CFLAGS="$CFLAGS -fd"
5745586557465746- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -fd" >&5
57475747-$as_echo_n "checking if $CC supports -fd... " >&6; }
58665866+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -fd" >&5
58675867+printf %s "checking if $CC supports -fd... " >&6; }
57485868 cacheid=xorg_cv_cc_flag__fd
57495749- if eval \${$cacheid+:} false; then :
57505750- $as_echo_n "(cached) " >&6
57515751-else
58695869+ if eval test \${$cacheid+y}
58705870+then :
58715871+ printf %s "(cached) " >&6
58725872+else $as_nop
57525873 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
57535874/* end confdefs.h. */
57545875int i;
57555876int
57565756-main ()
58775877+main (void)
57575878{
5758587957595880 ;
57605881 return 0;
57615882}
57625883_ACEOF
57635763-if ac_fn_c_try_link "$LINENO"; then :
58845884+if ac_fn_c_try_link "$LINENO"
58855885+then :
57645886 eval $cacheid=yes
57655765-else
58875887+else $as_nop
57665888 eval $cacheid=no
57675889fi
57685768-rm -f core conftest.err conftest.$ac_objext \
58905890+rm -f core conftest.err conftest.$ac_objext conftest.beam \
57695891 conftest$ac_exeext conftest.$ac_ext
57705892fi
57715893···57735895 CFLAGS="$xorg_testset_save_CFLAGS"
5774589657755897 eval supported=\$$cacheid
57765776- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
57775777-$as_echo "$supported" >&6; }
58985898+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
58995899+printf "%s\n" "$supported" >&6; }
57785900 if test "$supported" = "yes" ; then
57795901 BASE_CFLAGS="$BASE_CFLAGS -fd"
57805902 found="yes"
···5799592158005922if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
58015923 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
58025802- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
58035803-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
58045804-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
58055805- $as_echo_n "(cached) " >&6
58065806-else
59245924+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
59255925+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
59265926+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
59275927+then :
59285928+ printf %s "(cached) " >&6
59295929+else $as_nop
58075930 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
58085931/* end confdefs.h. */
58095932int i;
58105933_ACEOF
58115811-if ac_fn_c_try_compile "$LINENO"; then :
59345934+if ac_fn_c_try_compile "$LINENO"
59355935+then :
58125936 xorg_cv_cc_flag_unknown_warning_option=yes
58135813-else
59375937+else $as_nop
58145938 xorg_cv_cc_flag_unknown_warning_option=no
58155939fi
58165816-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
59405940+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
58175941fi
58185818-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
58195819-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
59425942+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
59435943+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
58205944 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
58215945 CFLAGS="$xorg_testset_save_CFLAGS"
58225946fi
···58265950 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
58275951 fi
58285952 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
58295829- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
58305830-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
58315831-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
58325832- $as_echo_n "(cached) " >&6
58335833-else
59535953+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
59545954+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
59555955+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
59565956+then :
59575957+ printf %s "(cached) " >&6
59585958+else $as_nop
58345959 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
58355960/* end confdefs.h. */
58365961int i;
58375962_ACEOF
58385838-if ac_fn_c_try_compile "$LINENO"; then :
59635963+if ac_fn_c_try_compile "$LINENO"
59645964+then :
58395965 xorg_cv_cc_flag_unused_command_line_argument=yes
58405840-else
59665966+else $as_nop
58415967 xorg_cv_cc_flag_unused_command_line_argument=no
58425968fi
58435843-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
59695969+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
58445970fi
58455845-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
58465846-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
59715971+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
59725972+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
58475973 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
58485974 CFLAGS="$xorg_testset_save_CFLAGS"
58495975fi
···5861598758625988 CFLAGS="$CFLAGS -Wdeclaration-after-statement"
5863598958645864- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wdeclaration-after-statement" >&5
58655865-$as_echo_n "checking if $CC supports -Wdeclaration-after-statement... " >&6; }
59905990+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wdeclaration-after-statement" >&5
59915991+printf %s "checking if $CC supports -Wdeclaration-after-statement... " >&6; }
58665992 cacheid=xorg_cv_cc_flag__Wdeclaration_after_statement
58675867- if eval \${$cacheid+:} false; then :
58685868- $as_echo_n "(cached) " >&6
58695869-else
59935993+ if eval test \${$cacheid+y}
59945994+then :
59955995+ printf %s "(cached) " >&6
59965996+else $as_nop
58705997 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
58715998/* end confdefs.h. */
58725999int i;
58736000int
58745874-main ()
60016001+main (void)
58756002{
5876600358776004 ;
58786005 return 0;
58796006}
58806007_ACEOF
58815881-if ac_fn_c_try_link "$LINENO"; then :
60086008+if ac_fn_c_try_link "$LINENO"
60096009+then :
58826010 eval $cacheid=yes
58835883-else
60116011+else $as_nop
58846012 eval $cacheid=no
58856013fi
58865886-rm -f core conftest.err conftest.$ac_objext \
60146014+rm -f core conftest.err conftest.$ac_objext conftest.beam \
58876015 conftest$ac_exeext conftest.$ac_ext
58886016fi
58896017···58916019 CFLAGS="$xorg_testset_save_CFLAGS"
5892602058936021 eval supported=\$$cacheid
58945894- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
58955895-$as_echo "$supported" >&6; }
60226022+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
60236023+printf "%s\n" "$supported" >&6; }
58966024 if test "$supported" = "yes" ; then
58976025 BASE_CFLAGS="$BASE_CFLAGS -Wdeclaration-after-statement"
58986026 found="yes"
···5921604959226050if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
59236051 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
59245924- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
59255925-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
59265926-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
59275927- $as_echo_n "(cached) " >&6
59285928-else
60526052+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
60536053+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
60546054+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
60556055+then :
60566056+ printf %s "(cached) " >&6
60576057+else $as_nop
59296058 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
59306059/* end confdefs.h. */
59316060int i;
59326061_ACEOF
59335933-if ac_fn_c_try_compile "$LINENO"; then :
60626062+if ac_fn_c_try_compile "$LINENO"
60636063+then :
59346064 xorg_cv_cc_flag_unknown_warning_option=yes
59355935-else
60656065+else $as_nop
59366066 xorg_cv_cc_flag_unknown_warning_option=no
59376067fi
59385938-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
60686068+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
59396069fi
59405940-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
59415941-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
60706070+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
60716071+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
59426072 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
59436073 CFLAGS="$xorg_testset_save_CFLAGS"
59446074fi
···59486078 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
59496079 fi
59506080 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
59515951- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
59525952-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
59535953-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
59545954- $as_echo_n "(cached) " >&6
59555955-else
60816081+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
60826082+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
60836083+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
60846084+then :
60856085+ printf %s "(cached) " >&6
60866086+else $as_nop
59566087 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
59576088/* end confdefs.h. */
59586089int i;
59596090_ACEOF
59605960-if ac_fn_c_try_compile "$LINENO"; then :
60916091+if ac_fn_c_try_compile "$LINENO"
60926092+then :
59616093 xorg_cv_cc_flag_unused_command_line_argument=yes
59625962-else
60946094+else $as_nop
59636095 xorg_cv_cc_flag_unused_command_line_argument=no
59646096fi
59655965-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
60976097+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
59666098fi
59675967-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
59685968-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
60996099+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
61006100+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
59696101 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
59706102 CFLAGS="$xorg_testset_save_CFLAGS"
59716103fi
···5983611559846116 CFLAGS="$CFLAGS -Wunused"
5985611759865986- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wunused" >&5
59875987-$as_echo_n "checking if $CC supports -Wunused... " >&6; }
61186118+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wunused" >&5
61196119+printf %s "checking if $CC supports -Wunused... " >&6; }
59886120 cacheid=xorg_cv_cc_flag__Wunused
59895989- if eval \${$cacheid+:} false; then :
59905990- $as_echo_n "(cached) " >&6
59915991-else
61216121+ if eval test \${$cacheid+y}
61226122+then :
61236123+ printf %s "(cached) " >&6
61246124+else $as_nop
59926125 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
59936126/* end confdefs.h. */
59946127int i;
59956128int
59965996-main ()
61296129+main (void)
59976130{
5998613159996132 ;
60006133 return 0;
60016134}
60026135_ACEOF
60036003-if ac_fn_c_try_link "$LINENO"; then :
61366136+if ac_fn_c_try_link "$LINENO"
61376137+then :
60046138 eval $cacheid=yes
60056005-else
61396139+else $as_nop
60066140 eval $cacheid=no
60076141fi
60086008-rm -f core conftest.err conftest.$ac_objext \
61426142+rm -f core conftest.err conftest.$ac_objext conftest.beam \
60096143 conftest$ac_exeext conftest.$ac_ext
60106144fi
60116145···60136147 CFLAGS="$xorg_testset_save_CFLAGS"
6014614860156149 eval supported=\$$cacheid
60166016- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
60176017-$as_echo "$supported" >&6; }
61506150+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
61516151+printf "%s\n" "$supported" >&6; }
60186152 if test "$supported" = "yes" ; then
60196153 BASE_CFLAGS="$BASE_CFLAGS -Wunused"
60206154 found="yes"
···6039617360406174if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
60416175 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
60426042- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
60436043-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
60446044-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
60456045- $as_echo_n "(cached) " >&6
60466046-else
61766176+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
61776177+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
61786178+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
61796179+then :
61806180+ printf %s "(cached) " >&6
61816181+else $as_nop
60476182 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
60486183/* end confdefs.h. */
60496184int i;
60506185_ACEOF
60516051-if ac_fn_c_try_compile "$LINENO"; then :
61866186+if ac_fn_c_try_compile "$LINENO"
61876187+then :
60526188 xorg_cv_cc_flag_unknown_warning_option=yes
60536053-else
61896189+else $as_nop
60546190 xorg_cv_cc_flag_unknown_warning_option=no
60556191fi
60566056-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
61926192+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
60576193fi
60586058-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
60596059-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
61946194+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
61956195+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
60606196 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
60616197 CFLAGS="$xorg_testset_save_CFLAGS"
60626198fi
···60666202 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
60676203 fi
60686204 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
60696069- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
60706070-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
60716071-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
60726072- $as_echo_n "(cached) " >&6
60736073-else
62056205+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
62066206+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
62076207+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
62086208+then :
62096209+ printf %s "(cached) " >&6
62106210+else $as_nop
60746211 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
60756212/* end confdefs.h. */
60766213int i;
60776214_ACEOF
60786078-if ac_fn_c_try_compile "$LINENO"; then :
62156215+if ac_fn_c_try_compile "$LINENO"
62166216+then :
60796217 xorg_cv_cc_flag_unused_command_line_argument=yes
60806080-else
62186218+else $as_nop
60816219 xorg_cv_cc_flag_unused_command_line_argument=no
60826220fi
60836083-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
62216221+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
60846222fi
60856085-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
60866086-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
62236223+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
62246224+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
60876225 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
60886226 CFLAGS="$xorg_testset_save_CFLAGS"
60896227fi
···6101623961026240 CFLAGS="$CFLAGS -Wuninitialized"
6103624161046104- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wuninitialized" >&5
61056105-$as_echo_n "checking if $CC supports -Wuninitialized... " >&6; }
62426242+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wuninitialized" >&5
62436243+printf %s "checking if $CC supports -Wuninitialized... " >&6; }
61066244 cacheid=xorg_cv_cc_flag__Wuninitialized
61076107- if eval \${$cacheid+:} false; then :
61086108- $as_echo_n "(cached) " >&6
61096109-else
62456245+ if eval test \${$cacheid+y}
62466246+then :
62476247+ printf %s "(cached) " >&6
62486248+else $as_nop
61106249 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
61116250/* end confdefs.h. */
61126251int i;
61136252int
61146114-main ()
62536253+main (void)
61156254{
6116625561176256 ;
61186257 return 0;
61196258}
61206259_ACEOF
61216121-if ac_fn_c_try_link "$LINENO"; then :
62606260+if ac_fn_c_try_link "$LINENO"
62616261+then :
61226262 eval $cacheid=yes
61236123-else
62636263+else $as_nop
61246264 eval $cacheid=no
61256265fi
61266126-rm -f core conftest.err conftest.$ac_objext \
62666266+rm -f core conftest.err conftest.$ac_objext conftest.beam \
61276267 conftest$ac_exeext conftest.$ac_ext
61286268fi
61296269···61316271 CFLAGS="$xorg_testset_save_CFLAGS"
6132627261336273 eval supported=\$$cacheid
61346134- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
61356135-$as_echo "$supported" >&6; }
62746274+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
62756275+printf "%s\n" "$supported" >&6; }
61366276 if test "$supported" = "yes" ; then
61376277 BASE_CFLAGS="$BASE_CFLAGS -Wuninitialized"
61386278 found="yes"
···6157629761586298if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
61596299 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
61606160- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
61616161-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
61626162-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
61636163- $as_echo_n "(cached) " >&6
61646164-else
63006300+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
63016301+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
63026302+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
63036303+then :
63046304+ printf %s "(cached) " >&6
63056305+else $as_nop
61656306 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
61666307/* end confdefs.h. */
61676308int i;
61686309_ACEOF
61696169-if ac_fn_c_try_compile "$LINENO"; then :
63106310+if ac_fn_c_try_compile "$LINENO"
63116311+then :
61706312 xorg_cv_cc_flag_unknown_warning_option=yes
61716171-else
63136313+else $as_nop
61726314 xorg_cv_cc_flag_unknown_warning_option=no
61736315fi
61746174-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
63166316+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
61756317fi
61766176-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
61776177-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
63186318+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
63196319+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
61786320 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
61796321 CFLAGS="$xorg_testset_save_CFLAGS"
61806322fi
···61846326 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
61856327 fi
61866328 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
61876187- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
61886188-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
61896189-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
61906190- $as_echo_n "(cached) " >&6
61916191-else
63296329+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
63306330+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
63316331+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
63326332+then :
63336333+ printf %s "(cached) " >&6
63346334+else $as_nop
61926335 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
61936336/* end confdefs.h. */
61946337int i;
61956338_ACEOF
61966196-if ac_fn_c_try_compile "$LINENO"; then :
63396339+if ac_fn_c_try_compile "$LINENO"
63406340+then :
61976341 xorg_cv_cc_flag_unused_command_line_argument=yes
61986198-else
63426342+else $as_nop
61996343 xorg_cv_cc_flag_unused_command_line_argument=no
62006344fi
62016201-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
63456345+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
62026346fi
62036203-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
62046204-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
63476347+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
63486348+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
62056349 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
62066350 CFLAGS="$xorg_testset_save_CFLAGS"
62076351fi
···6219636362206364 CFLAGS="$CFLAGS -Wshadow"
6221636562226222- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wshadow" >&5
62236223-$as_echo_n "checking if $CC supports -Wshadow... " >&6; }
63666366+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wshadow" >&5
63676367+printf %s "checking if $CC supports -Wshadow... " >&6; }
62246368 cacheid=xorg_cv_cc_flag__Wshadow
62256225- if eval \${$cacheid+:} false; then :
62266226- $as_echo_n "(cached) " >&6
62276227-else
63696369+ if eval test \${$cacheid+y}
63706370+then :
63716371+ printf %s "(cached) " >&6
63726372+else $as_nop
62286373 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
62296374/* end confdefs.h. */
62306375int i;
62316376int
62326232-main ()
63776377+main (void)
62336378{
6234637962356380 ;
62366381 return 0;
62376382}
62386383_ACEOF
62396239-if ac_fn_c_try_link "$LINENO"; then :
63846384+if ac_fn_c_try_link "$LINENO"
63856385+then :
62406386 eval $cacheid=yes
62416241-else
63876387+else $as_nop
62426388 eval $cacheid=no
62436389fi
62446244-rm -f core conftest.err conftest.$ac_objext \
63906390+rm -f core conftest.err conftest.$ac_objext conftest.beam \
62456391 conftest$ac_exeext conftest.$ac_ext
62466392fi
62476393···62496395 CFLAGS="$xorg_testset_save_CFLAGS"
6250639662516397 eval supported=\$$cacheid
62526252- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
62536253-$as_echo "$supported" >&6; }
63986398+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
63996399+printf "%s\n" "$supported" >&6; }
62546400 if test "$supported" = "yes" ; then
62556401 BASE_CFLAGS="$BASE_CFLAGS -Wshadow"
62566402 found="yes"
···6275642162766422if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
62776423 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
62786278- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
62796279-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
62806280-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
62816281- $as_echo_n "(cached) " >&6
62826282-else
64246424+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
64256425+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
64266426+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
64276427+then :
64286428+ printf %s "(cached) " >&6
64296429+else $as_nop
62836430 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
62846431/* end confdefs.h. */
62856432int i;
62866433_ACEOF
62876287-if ac_fn_c_try_compile "$LINENO"; then :
64346434+if ac_fn_c_try_compile "$LINENO"
64356435+then :
62886436 xorg_cv_cc_flag_unknown_warning_option=yes
62896289-else
64376437+else $as_nop
62906438 xorg_cv_cc_flag_unknown_warning_option=no
62916439fi
62926292-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
64406440+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
62936441fi
62946294-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
62956295-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
64426442+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
64436443+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
62966444 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
62976445 CFLAGS="$xorg_testset_save_CFLAGS"
62986446fi
···63026450 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
63036451 fi
63046452 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
63056305- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
63066306-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
63076307-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
63086308- $as_echo_n "(cached) " >&6
63096309-else
64536453+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
64546454+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
64556455+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
64566456+then :
64576457+ printf %s "(cached) " >&6
64586458+else $as_nop
63106459 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
63116460/* end confdefs.h. */
63126461int i;
63136462_ACEOF
63146314-if ac_fn_c_try_compile "$LINENO"; then :
64636463+if ac_fn_c_try_compile "$LINENO"
64646464+then :
63156465 xorg_cv_cc_flag_unused_command_line_argument=yes
63166316-else
64666466+else $as_nop
63176467 xorg_cv_cc_flag_unused_command_line_argument=no
63186468fi
63196319-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
64696469+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
63206470fi
63216321-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
63226322-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
64716471+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
64726472+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
63236473 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
63246474 CFLAGS="$xorg_testset_save_CFLAGS"
63256475fi
···6337648763386488 CFLAGS="$CFLAGS -Wmissing-noreturn"
6339648963406340- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmissing-noreturn" >&5
63416341-$as_echo_n "checking if $CC supports -Wmissing-noreturn... " >&6; }
64906490+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmissing-noreturn" >&5
64916491+printf %s "checking if $CC supports -Wmissing-noreturn... " >&6; }
63426492 cacheid=xorg_cv_cc_flag__Wmissing_noreturn
63436343- if eval \${$cacheid+:} false; then :
63446344- $as_echo_n "(cached) " >&6
63456345-else
64936493+ if eval test \${$cacheid+y}
64946494+then :
64956495+ printf %s "(cached) " >&6
64966496+else $as_nop
63466497 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
63476498/* end confdefs.h. */
63486499int i;
63496500int
63506350-main ()
65016501+main (void)
63516502{
6352650363536504 ;
63546505 return 0;
63556506}
63566507_ACEOF
63576357-if ac_fn_c_try_link "$LINENO"; then :
65086508+if ac_fn_c_try_link "$LINENO"
65096509+then :
63586510 eval $cacheid=yes
63596359-else
65116511+else $as_nop
63606512 eval $cacheid=no
63616513fi
63626362-rm -f core conftest.err conftest.$ac_objext \
65146514+rm -f core conftest.err conftest.$ac_objext conftest.beam \
63636515 conftest$ac_exeext conftest.$ac_ext
63646516fi
63656517···63676519 CFLAGS="$xorg_testset_save_CFLAGS"
6368652063696521 eval supported=\$$cacheid
63706370- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
63716371-$as_echo "$supported" >&6; }
65226522+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
65236523+printf "%s\n" "$supported" >&6; }
63726524 if test "$supported" = "yes" ; then
63736525 BASE_CFLAGS="$BASE_CFLAGS -Wmissing-noreturn"
63746526 found="yes"
···6393654563946546if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
63956547 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
63966396- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
63976397-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
63986398-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
63996399- $as_echo_n "(cached) " >&6
64006400-else
65486548+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
65496549+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
65506550+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
65516551+then :
65526552+ printf %s "(cached) " >&6
65536553+else $as_nop
64016554 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
64026555/* end confdefs.h. */
64036556int i;
64046557_ACEOF
64056405-if ac_fn_c_try_compile "$LINENO"; then :
65586558+if ac_fn_c_try_compile "$LINENO"
65596559+then :
64066560 xorg_cv_cc_flag_unknown_warning_option=yes
64076407-else
65616561+else $as_nop
64086562 xorg_cv_cc_flag_unknown_warning_option=no
64096563fi
64106410-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
65646564+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
64116565fi
64126412-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
64136413-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
65666566+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
65676567+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
64146568 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
64156569 CFLAGS="$xorg_testset_save_CFLAGS"
64166570fi
···64206574 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
64216575 fi
64226576 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
64236423- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
64246424-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
64256425-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
64266426- $as_echo_n "(cached) " >&6
64276427-else
65776577+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
65786578+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
65796579+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
65806580+then :
65816581+ printf %s "(cached) " >&6
65826582+else $as_nop
64286583 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
64296584/* end confdefs.h. */
64306585int i;
64316586_ACEOF
64326432-if ac_fn_c_try_compile "$LINENO"; then :
65876587+if ac_fn_c_try_compile "$LINENO"
65886588+then :
64336589 xorg_cv_cc_flag_unused_command_line_argument=yes
64346434-else
65906590+else $as_nop
64356591 xorg_cv_cc_flag_unused_command_line_argument=no
64366592fi
64376437-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
65936593+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
64386594fi
64396439-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
64406440-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
65956595+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
65966596+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
64416597 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
64426598 CFLAGS="$xorg_testset_save_CFLAGS"
64436599fi
···6455661164566612 CFLAGS="$CFLAGS -Wmissing-format-attribute"
6457661364586458- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmissing-format-attribute" >&5
64596459-$as_echo_n "checking if $CC supports -Wmissing-format-attribute... " >&6; }
66146614+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmissing-format-attribute" >&5
66156615+printf %s "checking if $CC supports -Wmissing-format-attribute... " >&6; }
64606616 cacheid=xorg_cv_cc_flag__Wmissing_format_attribute
64616461- if eval \${$cacheid+:} false; then :
64626462- $as_echo_n "(cached) " >&6
64636463-else
66176617+ if eval test \${$cacheid+y}
66186618+then :
66196619+ printf %s "(cached) " >&6
66206620+else $as_nop
64646621 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
64656622/* end confdefs.h. */
64666623int i;
64676624int
64686468-main ()
66256625+main (void)
64696626{
6470662764716628 ;
64726629 return 0;
64736630}
64746631_ACEOF
64756475-if ac_fn_c_try_link "$LINENO"; then :
66326632+if ac_fn_c_try_link "$LINENO"
66336633+then :
64766634 eval $cacheid=yes
64776477-else
66356635+else $as_nop
64786636 eval $cacheid=no
64796637fi
64806480-rm -f core conftest.err conftest.$ac_objext \
66386638+rm -f core conftest.err conftest.$ac_objext conftest.beam \
64816639 conftest$ac_exeext conftest.$ac_ext
64826640fi
64836641···64856643 CFLAGS="$xorg_testset_save_CFLAGS"
6486664464876645 eval supported=\$$cacheid
64886488- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
64896489-$as_echo "$supported" >&6; }
66466646+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
66476647+printf "%s\n" "$supported" >&6; }
64906648 if test "$supported" = "yes" ; then
64916649 BASE_CFLAGS="$BASE_CFLAGS -Wmissing-format-attribute"
64926650 found="yes"
···6512667065136671if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
65146672 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
65156515- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
65166516-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
65176517-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
65186518- $as_echo_n "(cached) " >&6
65196519-else
66736673+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
66746674+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
66756675+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
66766676+then :
66776677+ printf %s "(cached) " >&6
66786678+else $as_nop
65206679 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
65216680/* end confdefs.h. */
65226681int i;
65236682_ACEOF
65246524-if ac_fn_c_try_compile "$LINENO"; then :
66836683+if ac_fn_c_try_compile "$LINENO"
66846684+then :
65256685 xorg_cv_cc_flag_unknown_warning_option=yes
65266526-else
66866686+else $as_nop
65276687 xorg_cv_cc_flag_unknown_warning_option=no
65286688fi
65296529-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
66896689+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
65306690fi
65316531-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
65326532-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
66916691+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
66926692+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
65336693 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
65346694 CFLAGS="$xorg_testset_save_CFLAGS"
65356695fi
···65396699 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
65406700 fi
65416701 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
65426542- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
65436543-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
65446544-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
65456545- $as_echo_n "(cached) " >&6
65466546-else
67026702+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
67036703+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
67046704+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
67056705+then :
67066706+ printf %s "(cached) " >&6
67076707+else $as_nop
65476708 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
65486709/* end confdefs.h. */
65496710int i;
65506711_ACEOF
65516551-if ac_fn_c_try_compile "$LINENO"; then :
67126712+if ac_fn_c_try_compile "$LINENO"
67136713+then :
65526714 xorg_cv_cc_flag_unused_command_line_argument=yes
65536553-else
67156715+else $as_nop
65546716 xorg_cv_cc_flag_unused_command_line_argument=no
65556717fi
65566556-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
67186718+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
65576719fi
65586558-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
65596559-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
67206720+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
67216721+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
65606722 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
65616723 CFLAGS="$xorg_testset_save_CFLAGS"
65626724fi
···6574673665756737 CFLAGS="$CFLAGS -Wlogical-op"
6576673865776577- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wlogical-op" >&5
65786578-$as_echo_n "checking if $CC supports -Wlogical-op... " >&6; }
67396739+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wlogical-op" >&5
67406740+printf %s "checking if $CC supports -Wlogical-op... " >&6; }
65796741 cacheid=xorg_cv_cc_flag__Wlogical_op
65806580- if eval \${$cacheid+:} false; then :
65816581- $as_echo_n "(cached) " >&6
65826582-else
67426742+ if eval test \${$cacheid+y}
67436743+then :
67446744+ printf %s "(cached) " >&6
67456745+else $as_nop
65836746 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
65846747/* end confdefs.h. */
65856748int i;
65866749int
65876587-main ()
67506750+main (void)
65886751{
6589675265906753 ;
65916754 return 0;
65926755}
65936756_ACEOF
65946594-if ac_fn_c_try_link "$LINENO"; then :
67576757+if ac_fn_c_try_link "$LINENO"
67586758+then :
65956759 eval $cacheid=yes
65966596-else
67606760+else $as_nop
65976761 eval $cacheid=no
65986762fi
65996599-rm -f core conftest.err conftest.$ac_objext \
67636763+rm -f core conftest.err conftest.$ac_objext conftest.beam \
66006764 conftest$ac_exeext conftest.$ac_ext
66016765fi
66026766···66046768 CFLAGS="$xorg_testset_save_CFLAGS"
6605676966066770 eval supported=\$$cacheid
66076607- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
66086608-$as_echo "$supported" >&6; }
67716771+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
67726772+printf "%s\n" "$supported" >&6; }
66096773 if test "$supported" = "yes" ; then
66106774 BASE_CFLAGS="$BASE_CFLAGS -Wlogical-op"
66116775 found="yes"
···66216785# XORG_TESTSET_CFLAG([[BASE_]PREFIX[FLAGS]], [-Wcast-align])
66226786# XORG_TESTSET_CFLAG([[BASE_]PREFIX[FLAGS]], [-Wcast-qual])
6623678766246624-# Turn some warnings into errors, so we don't accidently get successful builds
67886788+# Turn some warnings into errors, so we don't accidentally get successful builds
66256789# when there are problems that should be fixed.
6626679066276791if test "x$SELECTIVE_WERROR" = "xyes" ; then
···6642680666436807if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
66446808 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
66456645- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
66466646-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
66476647-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
66486648- $as_echo_n "(cached) " >&6
66496649-else
68096809+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
68106810+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
68116811+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
68126812+then :
68136813+ printf %s "(cached) " >&6
68146814+else $as_nop
66506815 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
66516816/* end confdefs.h. */
66526817int i;
66536818_ACEOF
66546654-if ac_fn_c_try_compile "$LINENO"; then :
68196819+if ac_fn_c_try_compile "$LINENO"
68206820+then :
66556821 xorg_cv_cc_flag_unknown_warning_option=yes
66566656-else
68226822+else $as_nop
66576823 xorg_cv_cc_flag_unknown_warning_option=no
66586824fi
66596659-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
68256825+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
66606826fi
66616661-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
66626662-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
68276827+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
68286828+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
66636829 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
66646830 CFLAGS="$xorg_testset_save_CFLAGS"
66656831fi
···66696835 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
66706836 fi
66716837 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
66726672- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
66736673-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
66746674-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
66756675- $as_echo_n "(cached) " >&6
66766676-else
68386838+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
68396839+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
68406840+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
68416841+then :
68426842+ printf %s "(cached) " >&6
68436843+else $as_nop
66776844 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
66786845/* end confdefs.h. */
66796846int i;
66806847_ACEOF
66816681-if ac_fn_c_try_compile "$LINENO"; then :
68486848+if ac_fn_c_try_compile "$LINENO"
68496849+then :
66826850 xorg_cv_cc_flag_unused_command_line_argument=yes
66836683-else
68516851+else $as_nop
66846852 xorg_cv_cc_flag_unused_command_line_argument=no
66856853fi
66866686-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
68546854+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
66876855fi
66886688-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
66896689-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
68566856+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
68576857+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
66906858 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
66916859 CFLAGS="$xorg_testset_save_CFLAGS"
66926860fi
···6704687267056873 CFLAGS="$CFLAGS -Werror=implicit"
6706687467076707- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=implicit" >&5
67086708-$as_echo_n "checking if $CC supports -Werror=implicit... " >&6; }
68756875+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=implicit" >&5
68766876+printf %s "checking if $CC supports -Werror=implicit... " >&6; }
67096877 cacheid=xorg_cv_cc_flag__Werror_implicit
67106710- if eval \${$cacheid+:} false; then :
67116711- $as_echo_n "(cached) " >&6
67126712-else
68786878+ if eval test \${$cacheid+y}
68796879+then :
68806880+ printf %s "(cached) " >&6
68816881+else $as_nop
67136882 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
67146883/* end confdefs.h. */
67156884int i;
67166885int
67176717-main ()
68866886+main (void)
67186887{
6719688867206889 ;
67216890 return 0;
67226891}
67236892_ACEOF
67246724-if ac_fn_c_try_link "$LINENO"; then :
68936893+if ac_fn_c_try_link "$LINENO"
68946894+then :
67256895 eval $cacheid=yes
67266726-else
68966896+else $as_nop
67276897 eval $cacheid=no
67286898fi
67296729-rm -f core conftest.err conftest.$ac_objext \
68996899+rm -f core conftest.err conftest.$ac_objext conftest.beam \
67306900 conftest$ac_exeext conftest.$ac_ext
67316901fi
67326902···67346904 CFLAGS="$xorg_testset_save_CFLAGS"
6735690567366906 eval supported=\$$cacheid
67376737- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
67386738-$as_echo "$supported" >&6; }
69076907+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
69086908+printf "%s\n" "$supported" >&6; }
67396909 if test "$supported" = "yes" ; then
67406910 BASE_CFLAGS="$BASE_CFLAGS -Werror=implicit"
67416911 found="yes"
···6753692367546924 CFLAGS="$CFLAGS -errwarn=E_NO_EXPLICIT_TYPE_GIVEN -errwarn=E_NO_IMPLICIT_DECL_ALLOWED"
6755692567566756- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -errwarn=E_NO_EXPLICIT_TYPE_GIVEN -errwarn=E_NO_IMPLICIT_DECL_ALLOWED" >&5
67576757-$as_echo_n "checking if $CC supports -errwarn=E_NO_EXPLICIT_TYPE_GIVEN -errwarn=E_NO_IMPLICIT_DECL_ALLOWED... " >&6; }
69266926+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -errwarn=E_NO_EXPLICIT_TYPE_GIVEN -errwarn=E_NO_IMPLICIT_DECL_ALLOWED" >&5
69276927+printf %s "checking if $CC supports -errwarn=E_NO_EXPLICIT_TYPE_GIVEN -errwarn=E_NO_IMPLICIT_DECL_ALLOWED... " >&6; }
67586928 cacheid=xorg_cv_cc_flag__errwarn_E_NO_EXPLICIT_TYPE_GIVEN__errwarn_E_NO_IMPLICIT_DECL_ALLOWED
67596759- if eval \${$cacheid+:} false; then :
67606760- $as_echo_n "(cached) " >&6
67616761-else
69296929+ if eval test \${$cacheid+y}
69306930+then :
69316931+ printf %s "(cached) " >&6
69326932+else $as_nop
67626933 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
67636934/* end confdefs.h. */
67646935int i;
67656936int
67666766-main ()
69376937+main (void)
67676938{
6768693967696940 ;
67706941 return 0;
67716942}
67726943_ACEOF
67736773-if ac_fn_c_try_link "$LINENO"; then :
69446944+if ac_fn_c_try_link "$LINENO"
69456945+then :
67746946 eval $cacheid=yes
67756775-else
69476947+else $as_nop
67766948 eval $cacheid=no
67776949fi
67786778-rm -f core conftest.err conftest.$ac_objext \
69506950+rm -f core conftest.err conftest.$ac_objext conftest.beam \
67796951 conftest$ac_exeext conftest.$ac_ext
67806952fi
67816953···67836955 CFLAGS="$xorg_testset_save_CFLAGS"
6784695667856957 eval supported=\$$cacheid
67866786- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
67876787-$as_echo "$supported" >&6; }
69586958+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
69596959+printf "%s\n" "$supported" >&6; }
67886960 if test "$supported" = "yes" ; then
67896961 BASE_CFLAGS="$BASE_CFLAGS -errwarn=E_NO_EXPLICIT_TYPE_GIVEN -errwarn=E_NO_IMPLICIT_DECL_ALLOWED"
67906962 found="yes"
···6809698168106982if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
68116983 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
68126812- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
68136813-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
68146814-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
68156815- $as_echo_n "(cached) " >&6
68166816-else
69846984+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
69856985+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
69866986+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
69876987+then :
69886988+ printf %s "(cached) " >&6
69896989+else $as_nop
68176990 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
68186991/* end confdefs.h. */
68196992int i;
68206993_ACEOF
68216821-if ac_fn_c_try_compile "$LINENO"; then :
69946994+if ac_fn_c_try_compile "$LINENO"
69956995+then :
68226996 xorg_cv_cc_flag_unknown_warning_option=yes
68236823-else
69976997+else $as_nop
68246998 xorg_cv_cc_flag_unknown_warning_option=no
68256999fi
68266826-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
70007000+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
68277001fi
68286828-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
68296829-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
70027002+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
70037003+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
68307004 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
68317005 CFLAGS="$xorg_testset_save_CFLAGS"
68327006fi
···68367010 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
68377011 fi
68387012 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
68396839- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
68406840-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
68416841-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
68426842- $as_echo_n "(cached) " >&6
68436843-else
70137013+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
70147014+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
70157015+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
70167016+then :
70177017+ printf %s "(cached) " >&6
70187018+else $as_nop
68447019 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
68457020/* end confdefs.h. */
68467021int i;
68477022_ACEOF
68486848-if ac_fn_c_try_compile "$LINENO"; then :
70237023+if ac_fn_c_try_compile "$LINENO"
70247024+then :
68497025 xorg_cv_cc_flag_unused_command_line_argument=yes
68506850-else
70267026+else $as_nop
68517027 xorg_cv_cc_flag_unused_command_line_argument=no
68527028fi
68536853-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
70297029+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
68547030fi
68556855-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
68566856-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
70317031+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
70327032+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
68577033 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
68587034 CFLAGS="$xorg_testset_save_CFLAGS"
68597035fi
···6871704768727048 CFLAGS="$CFLAGS -Werror=nonnull"
6873704968746874- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=nonnull" >&5
68756875-$as_echo_n "checking if $CC supports -Werror=nonnull... " >&6; }
70507050+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=nonnull" >&5
70517051+printf %s "checking if $CC supports -Werror=nonnull... " >&6; }
68767052 cacheid=xorg_cv_cc_flag__Werror_nonnull
68776877- if eval \${$cacheid+:} false; then :
68786878- $as_echo_n "(cached) " >&6
68796879-else
70537053+ if eval test \${$cacheid+y}
70547054+then :
70557055+ printf %s "(cached) " >&6
70567056+else $as_nop
68807057 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
68817058/* end confdefs.h. */
68827059int i;
68837060int
68846884-main ()
70617061+main (void)
68857062{
6886706368877064 ;
68887065 return 0;
68897066}
68907067_ACEOF
68916891-if ac_fn_c_try_link "$LINENO"; then :
70687068+if ac_fn_c_try_link "$LINENO"
70697069+then :
68927070 eval $cacheid=yes
68936893-else
70717071+else $as_nop
68947072 eval $cacheid=no
68957073fi
68966896-rm -f core conftest.err conftest.$ac_objext \
70747074+rm -f core conftest.err conftest.$ac_objext conftest.beam \
68977075 conftest$ac_exeext conftest.$ac_ext
68987076fi
68997077···69017079 CFLAGS="$xorg_testset_save_CFLAGS"
6902708069037081 eval supported=\$$cacheid
69046904- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
69056905-$as_echo "$supported" >&6; }
70827082+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
70837083+printf "%s\n" "$supported" >&6; }
69067084 if test "$supported" = "yes" ; then
69077085 BASE_CFLAGS="$BASE_CFLAGS -Werror=nonnull"
69087086 found="yes"
···6927710569287106if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
69297107 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
69306930- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
69316931-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
69326932-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
69336933- $as_echo_n "(cached) " >&6
69346934-else
71087108+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
71097109+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
71107110+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
71117111+then :
71127112+ printf %s "(cached) " >&6
71137113+else $as_nop
69357114 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
69367115/* end confdefs.h. */
69377116int i;
69387117_ACEOF
69396939-if ac_fn_c_try_compile "$LINENO"; then :
71187118+if ac_fn_c_try_compile "$LINENO"
71197119+then :
69407120 xorg_cv_cc_flag_unknown_warning_option=yes
69416941-else
71217121+else $as_nop
69427122 xorg_cv_cc_flag_unknown_warning_option=no
69437123fi
69446944-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
71247124+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
69457125fi
69466946-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
69476947-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
71267126+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
71277127+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
69487128 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
69497129 CFLAGS="$xorg_testset_save_CFLAGS"
69507130fi
···69547134 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
69557135 fi
69567136 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
69576957- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
69586958-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
69596959-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
69606960- $as_echo_n "(cached) " >&6
69616961-else
71377137+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
71387138+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
71397139+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
71407140+then :
71417141+ printf %s "(cached) " >&6
71427142+else $as_nop
69627143 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
69637144/* end confdefs.h. */
69647145int i;
69657146_ACEOF
69666966-if ac_fn_c_try_compile "$LINENO"; then :
71477147+if ac_fn_c_try_compile "$LINENO"
71487148+then :
69677149 xorg_cv_cc_flag_unused_command_line_argument=yes
69686968-else
71507150+else $as_nop
69697151 xorg_cv_cc_flag_unused_command_line_argument=no
69707152fi
69716971-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
71537153+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
69727154fi
69736973-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
69746974-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
71557155+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
71567156+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
69757157 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
69767158 CFLAGS="$xorg_testset_save_CFLAGS"
69777159fi
···6989717169907172 CFLAGS="$CFLAGS -Werror=init-self"
6991717369926992- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=init-self" >&5
69936993-$as_echo_n "checking if $CC supports -Werror=init-self... " >&6; }
71747174+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=init-self" >&5
71757175+printf %s "checking if $CC supports -Werror=init-self... " >&6; }
69947176 cacheid=xorg_cv_cc_flag__Werror_init_self
69956995- if eval \${$cacheid+:} false; then :
69966996- $as_echo_n "(cached) " >&6
69976997-else
71777177+ if eval test \${$cacheid+y}
71787178+then :
71797179+ printf %s "(cached) " >&6
71807180+else $as_nop
69987181 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
69997182/* end confdefs.h. */
70007183int i;
70017184int
70027002-main ()
71857185+main (void)
70037186{
7004718770057188 ;
70067189 return 0;
70077190}
70087191_ACEOF
70097009-if ac_fn_c_try_link "$LINENO"; then :
71927192+if ac_fn_c_try_link "$LINENO"
71937193+then :
70107194 eval $cacheid=yes
70117011-else
71957195+else $as_nop
70127196 eval $cacheid=no
70137197fi
70147014-rm -f core conftest.err conftest.$ac_objext \
71987198+rm -f core conftest.err conftest.$ac_objext conftest.beam \
70157199 conftest$ac_exeext conftest.$ac_ext
70167200fi
70177201···70197203 CFLAGS="$xorg_testset_save_CFLAGS"
7020720470217205 eval supported=\$$cacheid
70227022- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
70237023-$as_echo "$supported" >&6; }
72067206+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
72077207+printf "%s\n" "$supported" >&6; }
70247208 if test "$supported" = "yes" ; then
70257209 BASE_CFLAGS="$BASE_CFLAGS -Werror=init-self"
70267210 found="yes"
···7045722970467230if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
70477231 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
70487048- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
70497049-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
70507050-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
70517051- $as_echo_n "(cached) " >&6
70527052-else
72327232+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
72337233+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
72347234+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
72357235+then :
72367236+ printf %s "(cached) " >&6
72377237+else $as_nop
70537238 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
70547239/* end confdefs.h. */
70557240int i;
70567241_ACEOF
70577057-if ac_fn_c_try_compile "$LINENO"; then :
72427242+if ac_fn_c_try_compile "$LINENO"
72437243+then :
70587244 xorg_cv_cc_flag_unknown_warning_option=yes
70597059-else
72457245+else $as_nop
70607246 xorg_cv_cc_flag_unknown_warning_option=no
70617247fi
70627062-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
72487248+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
70637249fi
70647064-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
70657065-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
72507250+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
72517251+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
70667252 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
70677253 CFLAGS="$xorg_testset_save_CFLAGS"
70687254fi
···70727258 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
70737259 fi
70747260 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
70757075- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
70767076-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
70777077-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
70787078- $as_echo_n "(cached) " >&6
70797079-else
72617261+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
72627262+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
72637263+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
72647264+then :
72657265+ printf %s "(cached) " >&6
72667266+else $as_nop
70807267 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
70817268/* end confdefs.h. */
70827269int i;
70837270_ACEOF
70847084-if ac_fn_c_try_compile "$LINENO"; then :
72717271+if ac_fn_c_try_compile "$LINENO"
72727272+then :
70857273 xorg_cv_cc_flag_unused_command_line_argument=yes
70867086-else
72747274+else $as_nop
70877275 xorg_cv_cc_flag_unused_command_line_argument=no
70887276fi
70897089-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
72777277+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
70907278fi
70917091-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
70927092-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
72797279+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
72807280+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
70937281 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
70947282 CFLAGS="$xorg_testset_save_CFLAGS"
70957283fi
···7107729571087296 CFLAGS="$CFLAGS -Werror=main"
7109729771107110- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=main" >&5
71117111-$as_echo_n "checking if $CC supports -Werror=main... " >&6; }
72987298+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=main" >&5
72997299+printf %s "checking if $CC supports -Werror=main... " >&6; }
71127300 cacheid=xorg_cv_cc_flag__Werror_main
71137113- if eval \${$cacheid+:} false; then :
71147114- $as_echo_n "(cached) " >&6
71157115-else
73017301+ if eval test \${$cacheid+y}
73027302+then :
73037303+ printf %s "(cached) " >&6
73047304+else $as_nop
71167305 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
71177306/* end confdefs.h. */
71187307int i;
71197308int
71207120-main ()
73097309+main (void)
71217310{
7122731171237312 ;
71247313 return 0;
71257314}
71267315_ACEOF
71277127-if ac_fn_c_try_link "$LINENO"; then :
73167316+if ac_fn_c_try_link "$LINENO"
73177317+then :
71287318 eval $cacheid=yes
71297129-else
73197319+else $as_nop
71307320 eval $cacheid=no
71317321fi
71327132-rm -f core conftest.err conftest.$ac_objext \
73227322+rm -f core conftest.err conftest.$ac_objext conftest.beam \
71337323 conftest$ac_exeext conftest.$ac_ext
71347324fi
71357325···71377327 CFLAGS="$xorg_testset_save_CFLAGS"
7138732871397329 eval supported=\$$cacheid
71407140- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
71417141-$as_echo "$supported" >&6; }
73307330+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
73317331+printf "%s\n" "$supported" >&6; }
71427332 if test "$supported" = "yes" ; then
71437333 BASE_CFLAGS="$BASE_CFLAGS -Werror=main"
71447334 found="yes"
···7163735371647354if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
71657355 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
71667166- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
71677167-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
71687168-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
71697169- $as_echo_n "(cached) " >&6
71707170-else
73567356+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
73577357+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
73587358+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
73597359+then :
73607360+ printf %s "(cached) " >&6
73617361+else $as_nop
71717362 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
71727363/* end confdefs.h. */
71737364int i;
71747365_ACEOF
71757175-if ac_fn_c_try_compile "$LINENO"; then :
73667366+if ac_fn_c_try_compile "$LINENO"
73677367+then :
71767368 xorg_cv_cc_flag_unknown_warning_option=yes
71777177-else
73697369+else $as_nop
71787370 xorg_cv_cc_flag_unknown_warning_option=no
71797371fi
71807180-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
73727372+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
71817373fi
71827182-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
71837183-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
73747374+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
73757375+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
71847376 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
71857377 CFLAGS="$xorg_testset_save_CFLAGS"
71867378fi
···71907382 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
71917383 fi
71927384 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
71937193- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
71947194-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
71957195-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
71967196- $as_echo_n "(cached) " >&6
71977197-else
73857385+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
73867386+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
73877387+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
73887388+then :
73897389+ printf %s "(cached) " >&6
73907390+else $as_nop
71987391 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
71997392/* end confdefs.h. */
72007393int i;
72017394_ACEOF
72027202-if ac_fn_c_try_compile "$LINENO"; then :
73957395+if ac_fn_c_try_compile "$LINENO"
73967396+then :
72037397 xorg_cv_cc_flag_unused_command_line_argument=yes
72047204-else
73987398+else $as_nop
72057399 xorg_cv_cc_flag_unused_command_line_argument=no
72067400fi
72077207-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
74017401+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
72087402fi
72097209-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
72107210-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
74037403+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
74047404+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
72117405 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
72127406 CFLAGS="$xorg_testset_save_CFLAGS"
72137407fi
···7225741972267420 CFLAGS="$CFLAGS -Werror=missing-braces"
7227742172287228- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=missing-braces" >&5
72297229-$as_echo_n "checking if $CC supports -Werror=missing-braces... " >&6; }
74227422+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=missing-braces" >&5
74237423+printf %s "checking if $CC supports -Werror=missing-braces... " >&6; }
72307424 cacheid=xorg_cv_cc_flag__Werror_missing_braces
72317231- if eval \${$cacheid+:} false; then :
72327232- $as_echo_n "(cached) " >&6
72337233-else
74257425+ if eval test \${$cacheid+y}
74267426+then :
74277427+ printf %s "(cached) " >&6
74287428+else $as_nop
72347429 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
72357430/* end confdefs.h. */
72367431int i;
72377432int
72387238-main ()
74337433+main (void)
72397434{
7240743572417436 ;
72427437 return 0;
72437438}
72447439_ACEOF
72457245-if ac_fn_c_try_link "$LINENO"; then :
74407440+if ac_fn_c_try_link "$LINENO"
74417441+then :
72467442 eval $cacheid=yes
72477247-else
74437443+else $as_nop
72487444 eval $cacheid=no
72497445fi
72507250-rm -f core conftest.err conftest.$ac_objext \
74467446+rm -f core conftest.err conftest.$ac_objext conftest.beam \
72517447 conftest$ac_exeext conftest.$ac_ext
72527448fi
72537449···72557451 CFLAGS="$xorg_testset_save_CFLAGS"
7256745272577453 eval supported=\$$cacheid
72587258- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
72597259-$as_echo "$supported" >&6; }
74547454+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
74557455+printf "%s\n" "$supported" >&6; }
72607456 if test "$supported" = "yes" ; then
72617457 BASE_CFLAGS="$BASE_CFLAGS -Werror=missing-braces"
72627458 found="yes"
···7281747772827478if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
72837479 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
72847284- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
72857285-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
72867286-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
72877287- $as_echo_n "(cached) " >&6
72887288-else
74807480+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
74817481+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
74827482+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
74837483+then :
74847484+ printf %s "(cached) " >&6
74857485+else $as_nop
72897486 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
72907487/* end confdefs.h. */
72917488int i;
72927489_ACEOF
72937293-if ac_fn_c_try_compile "$LINENO"; then :
74907490+if ac_fn_c_try_compile "$LINENO"
74917491+then :
72947492 xorg_cv_cc_flag_unknown_warning_option=yes
72957295-else
74937493+else $as_nop
72967494 xorg_cv_cc_flag_unknown_warning_option=no
72977495fi
72987298-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
74967496+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
72997497fi
73007300-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
73017301-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
74987498+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
74997499+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
73027500 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
73037501 CFLAGS="$xorg_testset_save_CFLAGS"
73047502fi
···73087506 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
73097507 fi
73107508 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
73117311- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
73127312-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
73137313-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
73147314- $as_echo_n "(cached) " >&6
73157315-else
75097509+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
75107510+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
75117511+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
75127512+then :
75137513+ printf %s "(cached) " >&6
75147514+else $as_nop
73167515 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
73177516/* end confdefs.h. */
73187517int i;
73197518_ACEOF
73207320-if ac_fn_c_try_compile "$LINENO"; then :
75197519+if ac_fn_c_try_compile "$LINENO"
75207520+then :
73217521 xorg_cv_cc_flag_unused_command_line_argument=yes
73227322-else
75227522+else $as_nop
73237523 xorg_cv_cc_flag_unused_command_line_argument=no
73247524fi
73257325-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
75257525+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
73267526fi
73277327-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
73287328-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
75277527+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
75287528+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
73297529 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
73307530 CFLAGS="$xorg_testset_save_CFLAGS"
73317531fi
···7343754373447544 CFLAGS="$CFLAGS -Werror=sequence-point"
7345754573467346- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=sequence-point" >&5
73477347-$as_echo_n "checking if $CC supports -Werror=sequence-point... " >&6; }
75467546+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=sequence-point" >&5
75477547+printf %s "checking if $CC supports -Werror=sequence-point... " >&6; }
73487548 cacheid=xorg_cv_cc_flag__Werror_sequence_point
73497349- if eval \${$cacheid+:} false; then :
73507350- $as_echo_n "(cached) " >&6
73517351-else
75497549+ if eval test \${$cacheid+y}
75507550+then :
75517551+ printf %s "(cached) " >&6
75527552+else $as_nop
73527553 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
73537554/* end confdefs.h. */
73547555int i;
73557556int
73567356-main ()
75577557+main (void)
73577558{
7358755973597560 ;
73607561 return 0;
73617562}
73627563_ACEOF
73637363-if ac_fn_c_try_link "$LINENO"; then :
75647564+if ac_fn_c_try_link "$LINENO"
75657565+then :
73647566 eval $cacheid=yes
73657365-else
75677567+else $as_nop
73667568 eval $cacheid=no
73677569fi
73687368-rm -f core conftest.err conftest.$ac_objext \
75707570+rm -f core conftest.err conftest.$ac_objext conftest.beam \
73697571 conftest$ac_exeext conftest.$ac_ext
73707572fi
73717573···73737575 CFLAGS="$xorg_testset_save_CFLAGS"
7374757673757577 eval supported=\$$cacheid
73767376- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
73777377-$as_echo "$supported" >&6; }
75787578+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
75797579+printf "%s\n" "$supported" >&6; }
73787580 if test "$supported" = "yes" ; then
73797581 BASE_CFLAGS="$BASE_CFLAGS -Werror=sequence-point"
73807582 found="yes"
···7399760174007602if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
74017603 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
74027402- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
74037403-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
74047404-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
74057405- $as_echo_n "(cached) " >&6
74067406-else
76047604+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
76057605+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
76067606+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
76077607+then :
76087608+ printf %s "(cached) " >&6
76097609+else $as_nop
74077610 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
74087611/* end confdefs.h. */
74097612int i;
74107613_ACEOF
74117411-if ac_fn_c_try_compile "$LINENO"; then :
76147614+if ac_fn_c_try_compile "$LINENO"
76157615+then :
74127616 xorg_cv_cc_flag_unknown_warning_option=yes
74137413-else
76177617+else $as_nop
74147618 xorg_cv_cc_flag_unknown_warning_option=no
74157619fi
74167416-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
76207620+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
74177621fi
74187418-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
74197419-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
76227622+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
76237623+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
74207624 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
74217625 CFLAGS="$xorg_testset_save_CFLAGS"
74227626fi
···74267630 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
74277631 fi
74287632 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
74297429- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
74307430-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
74317431-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
74327432- $as_echo_n "(cached) " >&6
74337433-else
76337633+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
76347634+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
76357635+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
76367636+then :
76377637+ printf %s "(cached) " >&6
76387638+else $as_nop
74347639 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
74357640/* end confdefs.h. */
74367641int i;
74377642_ACEOF
74387438-if ac_fn_c_try_compile "$LINENO"; then :
76437643+if ac_fn_c_try_compile "$LINENO"
76447644+then :
74397645 xorg_cv_cc_flag_unused_command_line_argument=yes
74407440-else
76467646+else $as_nop
74417647 xorg_cv_cc_flag_unused_command_line_argument=no
74427648fi
74437443-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
76497649+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
74447650fi
74457445-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
74467446-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
76517651+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
76527652+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
74477653 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
74487654 CFLAGS="$xorg_testset_save_CFLAGS"
74497655fi
···7461766774627668 CFLAGS="$CFLAGS -Werror=return-type"
7463766974647464- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=return-type" >&5
74657465-$as_echo_n "checking if $CC supports -Werror=return-type... " >&6; }
76707670+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=return-type" >&5
76717671+printf %s "checking if $CC supports -Werror=return-type... " >&6; }
74667672 cacheid=xorg_cv_cc_flag__Werror_return_type
74677467- if eval \${$cacheid+:} false; then :
74687468- $as_echo_n "(cached) " >&6
74697469-else
76737673+ if eval test \${$cacheid+y}
76747674+then :
76757675+ printf %s "(cached) " >&6
76767676+else $as_nop
74707677 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
74717678/* end confdefs.h. */
74727679int i;
74737680int
74747474-main ()
76817681+main (void)
74757682{
7476768374777684 ;
74787685 return 0;
74797686}
74807687_ACEOF
74817481-if ac_fn_c_try_link "$LINENO"; then :
76887688+if ac_fn_c_try_link "$LINENO"
76897689+then :
74827690 eval $cacheid=yes
74837483-else
76917691+else $as_nop
74847692 eval $cacheid=no
74857693fi
74867486-rm -f core conftest.err conftest.$ac_objext \
76947694+rm -f core conftest.err conftest.$ac_objext conftest.beam \
74877695 conftest$ac_exeext conftest.$ac_ext
74887696fi
74897697···74917699 CFLAGS="$xorg_testset_save_CFLAGS"
7492770074937701 eval supported=\$$cacheid
74947494- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
74957495-$as_echo "$supported" >&6; }
77027702+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
77037703+printf "%s\n" "$supported" >&6; }
74967704 if test "$supported" = "yes" ; then
74977705 BASE_CFLAGS="$BASE_CFLAGS -Werror=return-type"
74987706 found="yes"
···7510771875117719 CFLAGS="$CFLAGS -errwarn=E_FUNC_HAS_NO_RETURN_STMT"
7512772075137513- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -errwarn=E_FUNC_HAS_NO_RETURN_STMT" >&5
75147514-$as_echo_n "checking if $CC supports -errwarn=E_FUNC_HAS_NO_RETURN_STMT... " >&6; }
77217721+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -errwarn=E_FUNC_HAS_NO_RETURN_STMT" >&5
77227722+printf %s "checking if $CC supports -errwarn=E_FUNC_HAS_NO_RETURN_STMT... " >&6; }
75157723 cacheid=xorg_cv_cc_flag__errwarn_E_FUNC_HAS_NO_RETURN_STMT
75167516- if eval \${$cacheid+:} false; then :
75177517- $as_echo_n "(cached) " >&6
75187518-else
77247724+ if eval test \${$cacheid+y}
77257725+then :
77267726+ printf %s "(cached) " >&6
77277727+else $as_nop
75197728 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
75207729/* end confdefs.h. */
75217730int i;
75227731int
75237523-main ()
77327732+main (void)
75247733{
7525773475267735 ;
75277736 return 0;
75287737}
75297738_ACEOF
75307530-if ac_fn_c_try_link "$LINENO"; then :
77397739+if ac_fn_c_try_link "$LINENO"
77407740+then :
75317741 eval $cacheid=yes
75327532-else
77427742+else $as_nop
75337743 eval $cacheid=no
75347744fi
75357535-rm -f core conftest.err conftest.$ac_objext \
77457745+rm -f core conftest.err conftest.$ac_objext conftest.beam \
75367746 conftest$ac_exeext conftest.$ac_ext
75377747fi
75387748···75407750 CFLAGS="$xorg_testset_save_CFLAGS"
7541775175427752 eval supported=\$$cacheid
75437543- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
75447544-$as_echo "$supported" >&6; }
77537753+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
77547754+printf "%s\n" "$supported" >&6; }
75457755 if test "$supported" = "yes" ; then
75467756 BASE_CFLAGS="$BASE_CFLAGS -errwarn=E_FUNC_HAS_NO_RETURN_STMT"
75477757 found="yes"
···7566777675677777if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
75687778 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
75697569- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
75707570-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
75717571-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
75727572- $as_echo_n "(cached) " >&6
75737573-else
77797779+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
77807780+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
77817781+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
77827782+then :
77837783+ printf %s "(cached) " >&6
77847784+else $as_nop
75747785 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
75757786/* end confdefs.h. */
75767787int i;
75777788_ACEOF
75787578-if ac_fn_c_try_compile "$LINENO"; then :
77897789+if ac_fn_c_try_compile "$LINENO"
77907790+then :
75797791 xorg_cv_cc_flag_unknown_warning_option=yes
75807580-else
77927792+else $as_nop
75817793 xorg_cv_cc_flag_unknown_warning_option=no
75827794fi
75837583-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
77957795+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
75847796fi
75857585-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
75867586-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
77977797+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
77987798+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
75877799 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
75887800 CFLAGS="$xorg_testset_save_CFLAGS"
75897801fi
···75937805 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
75947806 fi
75957807 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
75967596- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
75977597-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
75987598-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
75997599- $as_echo_n "(cached) " >&6
76007600-else
78087808+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
78097809+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
78107810+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
78117811+then :
78127812+ printf %s "(cached) " >&6
78137813+else $as_nop
76017814 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
76027815/* end confdefs.h. */
76037816int i;
76047817_ACEOF
76057605-if ac_fn_c_try_compile "$LINENO"; then :
78187818+if ac_fn_c_try_compile "$LINENO"
78197819+then :
76067820 xorg_cv_cc_flag_unused_command_line_argument=yes
76077607-else
78217821+else $as_nop
76087822 xorg_cv_cc_flag_unused_command_line_argument=no
76097823fi
76107610-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
78247824+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
76117825fi
76127612-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
76137613-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
78267826+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
78277827+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
76147828 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
76157829 CFLAGS="$xorg_testset_save_CFLAGS"
76167830fi
···7628784276297843 CFLAGS="$CFLAGS -Werror=trigraphs"
7630784476317631- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=trigraphs" >&5
76327632-$as_echo_n "checking if $CC supports -Werror=trigraphs... " >&6; }
78457845+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=trigraphs" >&5
78467846+printf %s "checking if $CC supports -Werror=trigraphs... " >&6; }
76337847 cacheid=xorg_cv_cc_flag__Werror_trigraphs
76347634- if eval \${$cacheid+:} false; then :
76357635- $as_echo_n "(cached) " >&6
76367636-else
78487848+ if eval test \${$cacheid+y}
78497849+then :
78507850+ printf %s "(cached) " >&6
78517851+else $as_nop
76377852 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
76387853/* end confdefs.h. */
76397854int i;
76407855int
76417641-main ()
78567856+main (void)
76427857{
7643785876447859 ;
76457860 return 0;
76467861}
76477862_ACEOF
76487648-if ac_fn_c_try_link "$LINENO"; then :
78637863+if ac_fn_c_try_link "$LINENO"
78647864+then :
76497865 eval $cacheid=yes
76507650-else
78667866+else $as_nop
76517867 eval $cacheid=no
76527868fi
76537653-rm -f core conftest.err conftest.$ac_objext \
78697869+rm -f core conftest.err conftest.$ac_objext conftest.beam \
76547870 conftest$ac_exeext conftest.$ac_ext
76557871fi
76567872···76587874 CFLAGS="$xorg_testset_save_CFLAGS"
7659787576607876 eval supported=\$$cacheid
76617661- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
76627662-$as_echo "$supported" >&6; }
78777877+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
78787878+printf "%s\n" "$supported" >&6; }
76637879 if test "$supported" = "yes" ; then
76647880 BASE_CFLAGS="$BASE_CFLAGS -Werror=trigraphs"
76657881 found="yes"
···7684790076857901if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
76867902 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
76877687- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
76887688-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
76897689-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
76907690- $as_echo_n "(cached) " >&6
76917691-else
79037903+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
79047904+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
79057905+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
79067906+then :
79077907+ printf %s "(cached) " >&6
79087908+else $as_nop
76927909 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
76937910/* end confdefs.h. */
76947911int i;
76957912_ACEOF
76967696-if ac_fn_c_try_compile "$LINENO"; then :
79137913+if ac_fn_c_try_compile "$LINENO"
79147914+then :
76977915 xorg_cv_cc_flag_unknown_warning_option=yes
76987698-else
79167916+else $as_nop
76997917 xorg_cv_cc_flag_unknown_warning_option=no
77007918fi
77017701-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
79197919+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
77027920fi
77037703-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
77047704-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
79217921+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
79227922+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
77057923 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
77067924 CFLAGS="$xorg_testset_save_CFLAGS"
77077925fi
···77117929 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
77127930 fi
77137931 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
77147714- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
77157715-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
77167716-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
77177717- $as_echo_n "(cached) " >&6
77187718-else
79327932+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
79337933+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
79347934+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
79357935+then :
79367936+ printf %s "(cached) " >&6
79377937+else $as_nop
77197938 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
77207939/* end confdefs.h. */
77217940int i;
77227941_ACEOF
77237723-if ac_fn_c_try_compile "$LINENO"; then :
79427942+if ac_fn_c_try_compile "$LINENO"
79437943+then :
77247944 xorg_cv_cc_flag_unused_command_line_argument=yes
77257725-else
79457945+else $as_nop
77267946 xorg_cv_cc_flag_unused_command_line_argument=no
77277947fi
77287728-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
79487948+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
77297949fi
77307730-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
77317731-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
79507950+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
79517951+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
77327952 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
77337953 CFLAGS="$xorg_testset_save_CFLAGS"
77347954fi
···7746796677477967 CFLAGS="$CFLAGS -Werror=array-bounds"
7748796877497749- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=array-bounds" >&5
77507750-$as_echo_n "checking if $CC supports -Werror=array-bounds... " >&6; }
79697969+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=array-bounds" >&5
79707970+printf %s "checking if $CC supports -Werror=array-bounds... " >&6; }
77517971 cacheid=xorg_cv_cc_flag__Werror_array_bounds
77527752- if eval \${$cacheid+:} false; then :
77537753- $as_echo_n "(cached) " >&6
77547754-else
79727972+ if eval test \${$cacheid+y}
79737973+then :
79747974+ printf %s "(cached) " >&6
79757975+else $as_nop
77557976 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
77567977/* end confdefs.h. */
77577978int i;
77587979int
77597759-main ()
79807980+main (void)
77607981{
7761798277627983 ;
77637984 return 0;
77647985}
77657986_ACEOF
77667766-if ac_fn_c_try_link "$LINENO"; then :
79877987+if ac_fn_c_try_link "$LINENO"
79887988+then :
77677989 eval $cacheid=yes
77687768-else
79907990+else $as_nop
77697991 eval $cacheid=no
77707992fi
77717771-rm -f core conftest.err conftest.$ac_objext \
79937993+rm -f core conftest.err conftest.$ac_objext conftest.beam \
77727994 conftest$ac_exeext conftest.$ac_ext
77737995fi
77747996···77767998 CFLAGS="$xorg_testset_save_CFLAGS"
7777799977788000 eval supported=\$$cacheid
77797779- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
77807780-$as_echo "$supported" >&6; }
80018001+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
80028002+printf "%s\n" "$supported" >&6; }
77818003 if test "$supported" = "yes" ; then
77828004 BASE_CFLAGS="$BASE_CFLAGS -Werror=array-bounds"
77838005 found="yes"
···7802802478038025if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
78048026 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
78057805- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
78067806-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
78077807-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
78087808- $as_echo_n "(cached) " >&6
78097809-else
80278027+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
80288028+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
80298029+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
80308030+then :
80318031+ printf %s "(cached) " >&6
80328032+else $as_nop
78108033 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
78118034/* end confdefs.h. */
78128035int i;
78138036_ACEOF
78147814-if ac_fn_c_try_compile "$LINENO"; then :
80378037+if ac_fn_c_try_compile "$LINENO"
80388038+then :
78158039 xorg_cv_cc_flag_unknown_warning_option=yes
78167816-else
80408040+else $as_nop
78178041 xorg_cv_cc_flag_unknown_warning_option=no
78188042fi
78197819-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
80438043+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
78208044fi
78217821-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
78227822-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
80458045+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
80468046+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
78238047 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
78248048 CFLAGS="$xorg_testset_save_CFLAGS"
78258049fi
···78298053 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
78308054 fi
78318055 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
78327832- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
78337833-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
78347834-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
78357835- $as_echo_n "(cached) " >&6
78367836-else
80568056+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
80578057+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
80588058+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
80598059+then :
80608060+ printf %s "(cached) " >&6
80618061+else $as_nop
78378062 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
78388063/* end confdefs.h. */
78398064int i;
78408065_ACEOF
78417841-if ac_fn_c_try_compile "$LINENO"; then :
80668066+if ac_fn_c_try_compile "$LINENO"
80678067+then :
78428068 xorg_cv_cc_flag_unused_command_line_argument=yes
78437843-else
80698069+else $as_nop
78448070 xorg_cv_cc_flag_unused_command_line_argument=no
78458071fi
78467846-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
80728072+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
78478073fi
78487848-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
78497849-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
80748074+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
80758075+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
78508076 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
78518077 CFLAGS="$xorg_testset_save_CFLAGS"
78528078fi
···7864809078658091 CFLAGS="$CFLAGS -Werror=write-strings"
7866809278677867- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=write-strings" >&5
78687868-$as_echo_n "checking if $CC supports -Werror=write-strings... " >&6; }
80938093+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=write-strings" >&5
80948094+printf %s "checking if $CC supports -Werror=write-strings... " >&6; }
78698095 cacheid=xorg_cv_cc_flag__Werror_write_strings
78707870- if eval \${$cacheid+:} false; then :
78717871- $as_echo_n "(cached) " >&6
78727872-else
80968096+ if eval test \${$cacheid+y}
80978097+then :
80988098+ printf %s "(cached) " >&6
80998099+else $as_nop
78738100 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
78748101/* end confdefs.h. */
78758102int i;
78768103int
78777877-main ()
81048104+main (void)
78788105{
7879810678808107 ;
78818108 return 0;
78828109}
78838110_ACEOF
78847884-if ac_fn_c_try_link "$LINENO"; then :
81118111+if ac_fn_c_try_link "$LINENO"
81128112+then :
78858113 eval $cacheid=yes
78867886-else
81148114+else $as_nop
78878115 eval $cacheid=no
78888116fi
78897889-rm -f core conftest.err conftest.$ac_objext \
81178117+rm -f core conftest.err conftest.$ac_objext conftest.beam \
78908118 conftest$ac_exeext conftest.$ac_ext
78918119fi
78928120···78948122 CFLAGS="$xorg_testset_save_CFLAGS"
7895812378968124 eval supported=\$$cacheid
78977897- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
78987898-$as_echo "$supported" >&6; }
81258125+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
81268126+printf "%s\n" "$supported" >&6; }
78998127 if test "$supported" = "yes" ; then
79008128 BASE_CFLAGS="$BASE_CFLAGS -Werror=write-strings"
79018129 found="yes"
···7920814879218149if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
79228150 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
79237923- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
79247924-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
79257925-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
79267926- $as_echo_n "(cached) " >&6
79277927-else
81518151+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
81528152+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
81538153+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
81548154+then :
81558155+ printf %s "(cached) " >&6
81568156+else $as_nop
79288157 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
79298158/* end confdefs.h. */
79308159int i;
79318160_ACEOF
79327932-if ac_fn_c_try_compile "$LINENO"; then :
81618161+if ac_fn_c_try_compile "$LINENO"
81628162+then :
79338163 xorg_cv_cc_flag_unknown_warning_option=yes
79347934-else
81648164+else $as_nop
79358165 xorg_cv_cc_flag_unknown_warning_option=no
79368166fi
79377937-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
81678167+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
79388168fi
79397939-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
79407940-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
81698169+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
81708170+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
79418171 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
79428172 CFLAGS="$xorg_testset_save_CFLAGS"
79438173fi
···79478177 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
79488178 fi
79498179 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
79507950- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
79517951-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
79527952-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
79537953- $as_echo_n "(cached) " >&6
79547954-else
81808180+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
81818181+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
81828182+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
81838183+then :
81848184+ printf %s "(cached) " >&6
81858185+else $as_nop
79558186 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
79568187/* end confdefs.h. */
79578188int i;
79588189_ACEOF
79597959-if ac_fn_c_try_compile "$LINENO"; then :
81908190+if ac_fn_c_try_compile "$LINENO"
81918191+then :
79608192 xorg_cv_cc_flag_unused_command_line_argument=yes
79617961-else
81938193+else $as_nop
79628194 xorg_cv_cc_flag_unused_command_line_argument=no
79638195fi
79647964-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
81968196+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
79658197fi
79667966-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
79677967-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
81988198+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
81998199+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
79688200 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
79698201 CFLAGS="$xorg_testset_save_CFLAGS"
79708202fi
···7982821479838215 CFLAGS="$CFLAGS -Werror=address"
7984821679857985- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=address" >&5
79867986-$as_echo_n "checking if $CC supports -Werror=address... " >&6; }
82178217+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=address" >&5
82188218+printf %s "checking if $CC supports -Werror=address... " >&6; }
79878219 cacheid=xorg_cv_cc_flag__Werror_address
79887988- if eval \${$cacheid+:} false; then :
79897989- $as_echo_n "(cached) " >&6
79907990-else
82208220+ if eval test \${$cacheid+y}
82218221+then :
82228222+ printf %s "(cached) " >&6
82238223+else $as_nop
79918224 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
79928225/* end confdefs.h. */
79938226int i;
79948227int
79957995-main ()
82288228+main (void)
79968229{
7997823079988231 ;
79998232 return 0;
80008233}
80018234_ACEOF
80028002-if ac_fn_c_try_link "$LINENO"; then :
82358235+if ac_fn_c_try_link "$LINENO"
82368236+then :
80038237 eval $cacheid=yes
80048004-else
82388238+else $as_nop
80058239 eval $cacheid=no
80068240fi
80078007-rm -f core conftest.err conftest.$ac_objext \
82418241+rm -f core conftest.err conftest.$ac_objext conftest.beam \
80088242 conftest$ac_exeext conftest.$ac_ext
80098243fi
80108244···80128246 CFLAGS="$xorg_testset_save_CFLAGS"
8013824780148248 eval supported=\$$cacheid
80158015- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
80168016-$as_echo "$supported" >&6; }
82498249+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
82508250+printf "%s\n" "$supported" >&6; }
80178251 if test "$supported" = "yes" ; then
80188252 BASE_CFLAGS="$BASE_CFLAGS -Werror=address"
80198253 found="yes"
···8038827280398273if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
80408274 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
80418041- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
80428042-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
80438043-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
80448044- $as_echo_n "(cached) " >&6
80458045-else
82758275+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
82768276+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
82778277+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
82788278+then :
82798279+ printf %s "(cached) " >&6
82808280+else $as_nop
80468281 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
80478282/* end confdefs.h. */
80488283int i;
80498284_ACEOF
80508050-if ac_fn_c_try_compile "$LINENO"; then :
82858285+if ac_fn_c_try_compile "$LINENO"
82868286+then :
80518287 xorg_cv_cc_flag_unknown_warning_option=yes
80528052-else
82888288+else $as_nop
80538289 xorg_cv_cc_flag_unknown_warning_option=no
80548290fi
80558055-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
82918291+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
80568292fi
80578057-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
80588058-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
82938293+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
82948294+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
80598295 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
80608296 CFLAGS="$xorg_testset_save_CFLAGS"
80618297fi
···80658301 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
80668302 fi
80678303 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
80688068- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
80698069-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
80708070-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
80718071- $as_echo_n "(cached) " >&6
80728072-else
83048304+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
83058305+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
83068306+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
83078307+then :
83088308+ printf %s "(cached) " >&6
83098309+else $as_nop
80738310 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
80748311/* end confdefs.h. */
80758312int i;
80768313_ACEOF
80778077-if ac_fn_c_try_compile "$LINENO"; then :
83148314+if ac_fn_c_try_compile "$LINENO"
83158315+then :
80788316 xorg_cv_cc_flag_unused_command_line_argument=yes
80798079-else
83178317+else $as_nop
80808318 xorg_cv_cc_flag_unused_command_line_argument=no
80818319fi
80828082-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
83208320+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
80838321fi
80848084-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
80858085-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
83228322+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
83238323+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
80868324 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
80878325 CFLAGS="$xorg_testset_save_CFLAGS"
80888326fi
···8100833881018339 CFLAGS="$CFLAGS -Werror=int-to-pointer-cast"
8102834081038103- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=int-to-pointer-cast" >&5
81048104-$as_echo_n "checking if $CC supports -Werror=int-to-pointer-cast... " >&6; }
83418341+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=int-to-pointer-cast" >&5
83428342+printf %s "checking if $CC supports -Werror=int-to-pointer-cast... " >&6; }
81058343 cacheid=xorg_cv_cc_flag__Werror_int_to_pointer_cast
81068106- if eval \${$cacheid+:} false; then :
81078107- $as_echo_n "(cached) " >&6
81088108-else
83448344+ if eval test \${$cacheid+y}
83458345+then :
83468346+ printf %s "(cached) " >&6
83478347+else $as_nop
81098348 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
81108349/* end confdefs.h. */
81118350int i;
81128351int
81138113-main ()
83528352+main (void)
81148353{
8115835481168355 ;
81178356 return 0;
81188357}
81198358_ACEOF
81208120-if ac_fn_c_try_link "$LINENO"; then :
83598359+if ac_fn_c_try_link "$LINENO"
83608360+then :
81218361 eval $cacheid=yes
81228122-else
83628362+else $as_nop
81238363 eval $cacheid=no
81248364fi
81258125-rm -f core conftest.err conftest.$ac_objext \
83658365+rm -f core conftest.err conftest.$ac_objext conftest.beam \
81268366 conftest$ac_exeext conftest.$ac_ext
81278367fi
81288368···81308370 CFLAGS="$xorg_testset_save_CFLAGS"
8131837181328372 eval supported=\$$cacheid
81338133- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
81348134-$as_echo "$supported" >&6; }
83738373+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
83748374+printf "%s\n" "$supported" >&6; }
81358375 if test "$supported" = "yes" ; then
81368376 BASE_CFLAGS="$BASE_CFLAGS -Werror=int-to-pointer-cast"
81378377 found="yes"
···8149838981508390 CFLAGS="$CFLAGS -errwarn=E_BAD_PTR_INT_COMBINATION"
8151839181528152- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -errwarn=E_BAD_PTR_INT_COMBINATION" >&5
81538153-$as_echo_n "checking if $CC supports -errwarn=E_BAD_PTR_INT_COMBINATION... " >&6; }
83928392+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -errwarn=E_BAD_PTR_INT_COMBINATION" >&5
83938393+printf %s "checking if $CC supports -errwarn=E_BAD_PTR_INT_COMBINATION... " >&6; }
81548394 cacheid=xorg_cv_cc_flag__errwarn_E_BAD_PTR_INT_COMBINATION
81558155- if eval \${$cacheid+:} false; then :
81568156- $as_echo_n "(cached) " >&6
81578157-else
83958395+ if eval test \${$cacheid+y}
83968396+then :
83978397+ printf %s "(cached) " >&6
83988398+else $as_nop
81588399 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
81598400/* end confdefs.h. */
81608401int i;
81618402int
81628162-main ()
84038403+main (void)
81638404{
8164840581658406 ;
81668407 return 0;
81678408}
81688409_ACEOF
81698169-if ac_fn_c_try_link "$LINENO"; then :
84108410+if ac_fn_c_try_link "$LINENO"
84118411+then :
81708412 eval $cacheid=yes
81718171-else
84138413+else $as_nop
81728414 eval $cacheid=no
81738415fi
81748174-rm -f core conftest.err conftest.$ac_objext \
84168416+rm -f core conftest.err conftest.$ac_objext conftest.beam \
81758417 conftest$ac_exeext conftest.$ac_ext
81768418fi
81778419···81798421 CFLAGS="$xorg_testset_save_CFLAGS"
8180842281818423 eval supported=\$$cacheid
81828182- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
81838183-$as_echo "$supported" >&6; }
84248424+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
84258425+printf "%s\n" "$supported" >&6; }
81848426 if test "$supported" = "yes" ; then
81858427 BASE_CFLAGS="$BASE_CFLAGS -errwarn=E_BAD_PTR_INT_COMBINATION"
81868428 found="yes"
···8205844782068448if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
82078449 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
82088208- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
82098209-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
82108210-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
82118211- $as_echo_n "(cached) " >&6
82128212-else
84508450+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
84518451+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
84528452+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
84538453+then :
84548454+ printf %s "(cached) " >&6
84558455+else $as_nop
82138456 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
82148457/* end confdefs.h. */
82158458int i;
82168459_ACEOF
82178217-if ac_fn_c_try_compile "$LINENO"; then :
84608460+if ac_fn_c_try_compile "$LINENO"
84618461+then :
82188462 xorg_cv_cc_flag_unknown_warning_option=yes
82198219-else
84638463+else $as_nop
82208464 xorg_cv_cc_flag_unknown_warning_option=no
82218465fi
82228222-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
84668466+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
82238467fi
82248224-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
82258225-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
84688468+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
84698469+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
82268470 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
82278471 CFLAGS="$xorg_testset_save_CFLAGS"
82288472fi
···82328476 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
82338477 fi
82348478 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
82358235- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
82368236-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
82378237-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
82388238- $as_echo_n "(cached) " >&6
82398239-else
84798479+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
84808480+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
84818481+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
84828482+then :
84838483+ printf %s "(cached) " >&6
84848484+else $as_nop
82408485 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
82418486/* end confdefs.h. */
82428487int i;
82438488_ACEOF
82448244-if ac_fn_c_try_compile "$LINENO"; then :
84898489+if ac_fn_c_try_compile "$LINENO"
84908490+then :
82458491 xorg_cv_cc_flag_unused_command_line_argument=yes
82468246-else
84928492+else $as_nop
82478493 xorg_cv_cc_flag_unused_command_line_argument=no
82488494fi
82498249-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
84958495+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
82508496fi
82518251-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
82528252-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
84978497+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
84988498+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
82538499 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
82548500 CFLAGS="$xorg_testset_save_CFLAGS"
82558501fi
···8267851382688514 CFLAGS="$CFLAGS -Werror=pointer-to-int-cast"
8269851582708270- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=pointer-to-int-cast" >&5
82718271-$as_echo_n "checking if $CC supports -Werror=pointer-to-int-cast... " >&6; }
85168516+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=pointer-to-int-cast" >&5
85178517+printf %s "checking if $CC supports -Werror=pointer-to-int-cast... " >&6; }
82728518 cacheid=xorg_cv_cc_flag__Werror_pointer_to_int_cast
82738273- if eval \${$cacheid+:} false; then :
82748274- $as_echo_n "(cached) " >&6
82758275-else
85198519+ if eval test \${$cacheid+y}
85208520+then :
85218521+ printf %s "(cached) " >&6
85228522+else $as_nop
82768523 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
82778524/* end confdefs.h. */
82788525int i;
82798526int
82808280-main ()
85278527+main (void)
82818528{
8282852982838530 ;
82848531 return 0;
82858532}
82868533_ACEOF
82878287-if ac_fn_c_try_link "$LINENO"; then :
85348534+if ac_fn_c_try_link "$LINENO"
85358535+then :
82888536 eval $cacheid=yes
82898289-else
85378537+else $as_nop
82908538 eval $cacheid=no
82918539fi
82928292-rm -f core conftest.err conftest.$ac_objext \
85408540+rm -f core conftest.err conftest.$ac_objext conftest.beam \
82938541 conftest$ac_exeext conftest.$ac_ext
82948542fi
82958543···82978545 CFLAGS="$xorg_testset_save_CFLAGS"
8298854682998547 eval supported=\$$cacheid
83008300- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
83018301-$as_echo "$supported" >&6; }
85488548+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
85498549+printf "%s\n" "$supported" >&6; }
83028550 if test "$supported" = "yes" ; then
83038551 BASE_CFLAGS="$BASE_CFLAGS -Werror=pointer-to-int-cast"
83048552 found="yes"
···8307855583088556 # Also -errwarn=E_BAD_PTR_INT_COMBINATION
83098557else
83108310-{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
83118311-$as_echo "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}
85588558+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&5
85598559+printf "%s\n" "$as_me: WARNING: You have chosen not to turn some select compiler warnings into errors. This should not be necessary. Please report why you needed to do so in a bug report at $PACKAGE_BUGREPORT" >&2;}
831285608313856183148562···8326857483278575if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
83288576 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
83298329- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
83308330-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
83318331-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
83328332- $as_echo_n "(cached) " >&6
83338333-else
85778577+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
85788578+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
85798579+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
85808580+then :
85818581+ printf %s "(cached) " >&6
85828582+else $as_nop
83348583 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
83358584/* end confdefs.h. */
83368585int i;
83378586_ACEOF
83388338-if ac_fn_c_try_compile "$LINENO"; then :
85878587+if ac_fn_c_try_compile "$LINENO"
85888588+then :
83398589 xorg_cv_cc_flag_unknown_warning_option=yes
83408340-else
85908590+else $as_nop
83418591 xorg_cv_cc_flag_unknown_warning_option=no
83428592fi
83438343-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
85938593+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
83448594fi
83458345-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
83468346-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
85958595+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
85968596+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
83478597 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
83488598 CFLAGS="$xorg_testset_save_CFLAGS"
83498599fi
···83538603 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
83548604 fi
83558605 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
83568356- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
83578357-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
83588358-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
83598359- $as_echo_n "(cached) " >&6
83608360-else
86068606+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
86078607+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
86088608+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
86098609+then :
86108610+ printf %s "(cached) " >&6
86118611+else $as_nop
83618612 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
83628613/* end confdefs.h. */
83638614int i;
83648615_ACEOF
83658365-if ac_fn_c_try_compile "$LINENO"; then :
86168616+if ac_fn_c_try_compile "$LINENO"
86178617+then :
83668618 xorg_cv_cc_flag_unused_command_line_argument=yes
83678367-else
86198619+else $as_nop
83688620 xorg_cv_cc_flag_unused_command_line_argument=no
83698621fi
83708370-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
86228622+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
83718623fi
83728372-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
83738373-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
86248624+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
86258625+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
83748626 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
83758627 CFLAGS="$xorg_testset_save_CFLAGS"
83768628fi
···8388864083898641 CFLAGS="$CFLAGS -Wimplicit"
8390864283918391- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wimplicit" >&5
83928392-$as_echo_n "checking if $CC supports -Wimplicit... " >&6; }
86438643+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wimplicit" >&5
86448644+printf %s "checking if $CC supports -Wimplicit... " >&6; }
83938645 cacheid=xorg_cv_cc_flag__Wimplicit
83948394- if eval \${$cacheid+:} false; then :
83958395- $as_echo_n "(cached) " >&6
83968396-else
86468646+ if eval test \${$cacheid+y}
86478647+then :
86488648+ printf %s "(cached) " >&6
86498649+else $as_nop
83978650 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
83988651/* end confdefs.h. */
83998652int i;
84008653int
84018401-main ()
86548654+main (void)
84028655{
8403865684048657 ;
84058658 return 0;
84068659}
84078660_ACEOF
84088408-if ac_fn_c_try_link "$LINENO"; then :
86618661+if ac_fn_c_try_link "$LINENO"
86628662+then :
84098663 eval $cacheid=yes
84108410-else
86648664+else $as_nop
84118665 eval $cacheid=no
84128666fi
84138413-rm -f core conftest.err conftest.$ac_objext \
86678667+rm -f core conftest.err conftest.$ac_objext conftest.beam \
84148668 conftest$ac_exeext conftest.$ac_ext
84158669fi
84168670···84188672 CFLAGS="$xorg_testset_save_CFLAGS"
8419867384208674 eval supported=\$$cacheid
84218421- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
84228422-$as_echo "$supported" >&6; }
86758675+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
86768676+printf "%s\n" "$supported" >&6; }
84238677 if test "$supported" = "yes" ; then
84248678 BASE_CFLAGS="$BASE_CFLAGS -Wimplicit"
84258679 found="yes"
···8444869884458699if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
84468700 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
84478447- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
84488448-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
84498449-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
84508450- $as_echo_n "(cached) " >&6
84518451-else
87018701+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
87028702+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
87038703+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
87048704+then :
87058705+ printf %s "(cached) " >&6
87068706+else $as_nop
84528707 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
84538708/* end confdefs.h. */
84548709int i;
84558710_ACEOF
84568456-if ac_fn_c_try_compile "$LINENO"; then :
87118711+if ac_fn_c_try_compile "$LINENO"
87128712+then :
84578713 xorg_cv_cc_flag_unknown_warning_option=yes
84588458-else
87148714+else $as_nop
84598715 xorg_cv_cc_flag_unknown_warning_option=no
84608716fi
84618461-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
87178717+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
84628718fi
84638463-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
84648464-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
87198719+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
87208720+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
84658721 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
84668722 CFLAGS="$xorg_testset_save_CFLAGS"
84678723fi
···84718727 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
84728728 fi
84738729 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
84748474- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
84758475-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
84768476-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
84778477- $as_echo_n "(cached) " >&6
84788478-else
87308730+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
87318731+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
87328732+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
87338733+then :
87348734+ printf %s "(cached) " >&6
87358735+else $as_nop
84798736 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
84808737/* end confdefs.h. */
84818738int i;
84828739_ACEOF
84838483-if ac_fn_c_try_compile "$LINENO"; then :
87408740+if ac_fn_c_try_compile "$LINENO"
87418741+then :
84848742 xorg_cv_cc_flag_unused_command_line_argument=yes
84858485-else
87438743+else $as_nop
84868744 xorg_cv_cc_flag_unused_command_line_argument=no
84878745fi
84888488-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
87468746+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
84898747fi
84908490-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
84918491-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
87488748+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
87498749+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
84928750 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
84938751 CFLAGS="$xorg_testset_save_CFLAGS"
84948752fi
···8506876485078765 CFLAGS="$CFLAGS -Wnonnull"
8508876685098509- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wnonnull" >&5
85108510-$as_echo_n "checking if $CC supports -Wnonnull... " >&6; }
87678767+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wnonnull" >&5
87688768+printf %s "checking if $CC supports -Wnonnull... " >&6; }
85118769 cacheid=xorg_cv_cc_flag__Wnonnull
85128512- if eval \${$cacheid+:} false; then :
85138513- $as_echo_n "(cached) " >&6
85148514-else
87708770+ if eval test \${$cacheid+y}
87718771+then :
87728772+ printf %s "(cached) " >&6
87738773+else $as_nop
85158774 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
85168775/* end confdefs.h. */
85178776int i;
85188777int
85198519-main ()
87788778+main (void)
85208779{
8521878085228781 ;
85238782 return 0;
85248783}
85258784_ACEOF
85268526-if ac_fn_c_try_link "$LINENO"; then :
87858785+if ac_fn_c_try_link "$LINENO"
87868786+then :
85278787 eval $cacheid=yes
85288528-else
87888788+else $as_nop
85298789 eval $cacheid=no
85308790fi
85318531-rm -f core conftest.err conftest.$ac_objext \
87918791+rm -f core conftest.err conftest.$ac_objext conftest.beam \
85328792 conftest$ac_exeext conftest.$ac_ext
85338793fi
85348794···85368796 CFLAGS="$xorg_testset_save_CFLAGS"
8537879785388798 eval supported=\$$cacheid
85398539- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
85408540-$as_echo "$supported" >&6; }
87998799+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
88008800+printf "%s\n" "$supported" >&6; }
85418801 if test "$supported" = "yes" ; then
85428802 BASE_CFLAGS="$BASE_CFLAGS -Wnonnull"
85438803 found="yes"
···8562882285638823if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
85648824 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
85658565- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
85668566-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
85678567-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
85688568- $as_echo_n "(cached) " >&6
85698569-else
88258825+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
88268826+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
88278827+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
88288828+then :
88298829+ printf %s "(cached) " >&6
88308830+else $as_nop
85708831 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
85718832/* end confdefs.h. */
85728833int i;
85738834_ACEOF
85748574-if ac_fn_c_try_compile "$LINENO"; then :
88358835+if ac_fn_c_try_compile "$LINENO"
88368836+then :
85758837 xorg_cv_cc_flag_unknown_warning_option=yes
85768576-else
88388838+else $as_nop
85778839 xorg_cv_cc_flag_unknown_warning_option=no
85788840fi
85798579-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
88418841+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
85808842fi
85818581-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
85828582-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
88438843+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
88448844+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
85838845 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
85848846 CFLAGS="$xorg_testset_save_CFLAGS"
85858847fi
···85898851 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
85908852 fi
85918853 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
85928592- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
85938593-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
85948594-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
85958595- $as_echo_n "(cached) " >&6
85968596-else
88548854+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
88558855+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
88568856+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
88578857+then :
88588858+ printf %s "(cached) " >&6
88598859+else $as_nop
85978860 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
85988861/* end confdefs.h. */
85998862int i;
86008863_ACEOF
86018601-if ac_fn_c_try_compile "$LINENO"; then :
88648864+if ac_fn_c_try_compile "$LINENO"
88658865+then :
86028866 xorg_cv_cc_flag_unused_command_line_argument=yes
86038603-else
88678867+else $as_nop
86048868 xorg_cv_cc_flag_unused_command_line_argument=no
86058869fi
86068606-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
88708870+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
86078871fi
86088608-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
86098609-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
88728872+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
88738873+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
86108874 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
86118875 CFLAGS="$xorg_testset_save_CFLAGS"
86128876fi
···8624888886258889 CFLAGS="$CFLAGS -Winit-self"
8626889086278627- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Winit-self" >&5
86288628-$as_echo_n "checking if $CC supports -Winit-self... " >&6; }
88918891+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Winit-self" >&5
88928892+printf %s "checking if $CC supports -Winit-self... " >&6; }
86298893 cacheid=xorg_cv_cc_flag__Winit_self
86308630- if eval \${$cacheid+:} false; then :
86318631- $as_echo_n "(cached) " >&6
86328632-else
88948894+ if eval test \${$cacheid+y}
88958895+then :
88968896+ printf %s "(cached) " >&6
88978897+else $as_nop
86338898 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
86348899/* end confdefs.h. */
86358900int i;
86368901int
86378637-main ()
89028902+main (void)
86388903{
8639890486408905 ;
86418906 return 0;
86428907}
86438908_ACEOF
86448644-if ac_fn_c_try_link "$LINENO"; then :
89098909+if ac_fn_c_try_link "$LINENO"
89108910+then :
86458911 eval $cacheid=yes
86468646-else
89128912+else $as_nop
86478913 eval $cacheid=no
86488914fi
86498649-rm -f core conftest.err conftest.$ac_objext \
89158915+rm -f core conftest.err conftest.$ac_objext conftest.beam \
86508916 conftest$ac_exeext conftest.$ac_ext
86518917fi
86528918···86548920 CFLAGS="$xorg_testset_save_CFLAGS"
8655892186568922 eval supported=\$$cacheid
86578657- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
86588658-$as_echo "$supported" >&6; }
89238923+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
89248924+printf "%s\n" "$supported" >&6; }
86598925 if test "$supported" = "yes" ; then
86608926 BASE_CFLAGS="$BASE_CFLAGS -Winit-self"
86618927 found="yes"
···8680894686818947if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
86828948 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
86838683- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
86848684-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
86858685-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
86868686- $as_echo_n "(cached) " >&6
86878687-else
89498949+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
89508950+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
89518951+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
89528952+then :
89538953+ printf %s "(cached) " >&6
89548954+else $as_nop
86888955 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
86898956/* end confdefs.h. */
86908957int i;
86918958_ACEOF
86928692-if ac_fn_c_try_compile "$LINENO"; then :
89598959+if ac_fn_c_try_compile "$LINENO"
89608960+then :
86938961 xorg_cv_cc_flag_unknown_warning_option=yes
86948694-else
89628962+else $as_nop
86958963 xorg_cv_cc_flag_unknown_warning_option=no
86968964fi
86978697-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
89658965+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
86988966fi
86998699-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
87008700-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
89678967+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
89688968+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
87018969 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
87028970 CFLAGS="$xorg_testset_save_CFLAGS"
87038971fi
···87078975 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
87088976 fi
87098977 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
87108710- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
87118711-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
87128712-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
87138713- $as_echo_n "(cached) " >&6
87148714-else
89788978+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
89798979+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
89808980+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
89818981+then :
89828982+ printf %s "(cached) " >&6
89838983+else $as_nop
87158984 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
87168985/* end confdefs.h. */
87178986int i;
87188987_ACEOF
87198719-if ac_fn_c_try_compile "$LINENO"; then :
89888988+if ac_fn_c_try_compile "$LINENO"
89898989+then :
87208990 xorg_cv_cc_flag_unused_command_line_argument=yes
87218721-else
89918991+else $as_nop
87228992 xorg_cv_cc_flag_unused_command_line_argument=no
87238993fi
87248724-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
89948994+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
87258995fi
87268726-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
87278727-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
89968996+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
89978997+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
87288998 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
87298999 CFLAGS="$xorg_testset_save_CFLAGS"
87309000fi
···8742901287439013 CFLAGS="$CFLAGS -Wmain"
8744901487458745- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmain" >&5
87468746-$as_echo_n "checking if $CC supports -Wmain... " >&6; }
90159015+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmain" >&5
90169016+printf %s "checking if $CC supports -Wmain... " >&6; }
87479017 cacheid=xorg_cv_cc_flag__Wmain
87488748- if eval \${$cacheid+:} false; then :
87498749- $as_echo_n "(cached) " >&6
87508750-else
90189018+ if eval test \${$cacheid+y}
90199019+then :
90209020+ printf %s "(cached) " >&6
90219021+else $as_nop
87519022 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
87529023/* end confdefs.h. */
87539024int i;
87549025int
87558755-main ()
90269026+main (void)
87569027{
8757902887589029 ;
87599030 return 0;
87609031}
87619032_ACEOF
87628762-if ac_fn_c_try_link "$LINENO"; then :
90339033+if ac_fn_c_try_link "$LINENO"
90349034+then :
87639035 eval $cacheid=yes
87648764-else
90369036+else $as_nop
87659037 eval $cacheid=no
87669038fi
87678767-rm -f core conftest.err conftest.$ac_objext \
90399039+rm -f core conftest.err conftest.$ac_objext conftest.beam \
87689040 conftest$ac_exeext conftest.$ac_ext
87699041fi
87709042···87729044 CFLAGS="$xorg_testset_save_CFLAGS"
8773904587749046 eval supported=\$$cacheid
87758775- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
87768776-$as_echo "$supported" >&6; }
90479047+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
90489048+printf "%s\n" "$supported" >&6; }
87779049 if test "$supported" = "yes" ; then
87789050 BASE_CFLAGS="$BASE_CFLAGS -Wmain"
87799051 found="yes"
···8798907087999071if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
88009072 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
88018801- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
88028802-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
88038803-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
88048804- $as_echo_n "(cached) " >&6
88058805-else
90739073+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
90749074+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
90759075+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
90769076+then :
90779077+ printf %s "(cached) " >&6
90789078+else $as_nop
88069079 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
88079080/* end confdefs.h. */
88089081int i;
88099082_ACEOF
88108810-if ac_fn_c_try_compile "$LINENO"; then :
90839083+if ac_fn_c_try_compile "$LINENO"
90849084+then :
88119085 xorg_cv_cc_flag_unknown_warning_option=yes
88128812-else
90869086+else $as_nop
88139087 xorg_cv_cc_flag_unknown_warning_option=no
88149088fi
88158815-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
90899089+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
88169090fi
88178817-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
88188818-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
90919091+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
90929092+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
88199093 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
88209094 CFLAGS="$xorg_testset_save_CFLAGS"
88219095fi
···88259099 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
88269100 fi
88279101 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
88288828- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
88298829-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
88308830-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
88318831- $as_echo_n "(cached) " >&6
88328832-else
91029102+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
91039103+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
91049104+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
91059105+then :
91069106+ printf %s "(cached) " >&6
91079107+else $as_nop
88339108 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
88349109/* end confdefs.h. */
88359110int i;
88369111_ACEOF
88378837-if ac_fn_c_try_compile "$LINENO"; then :
91129112+if ac_fn_c_try_compile "$LINENO"
91139113+then :
88389114 xorg_cv_cc_flag_unused_command_line_argument=yes
88398839-else
91159115+else $as_nop
88409116 xorg_cv_cc_flag_unused_command_line_argument=no
88419117fi
88428842-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
91189118+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
88439119fi
88448844-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
88458845-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
91209120+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
91219121+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
88469122 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
88479123 CFLAGS="$xorg_testset_save_CFLAGS"
88489124fi
···8860913688619137 CFLAGS="$CFLAGS -Wmissing-braces"
8862913888638863- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmissing-braces" >&5
88648864-$as_echo_n "checking if $CC supports -Wmissing-braces... " >&6; }
91399139+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wmissing-braces" >&5
91409140+printf %s "checking if $CC supports -Wmissing-braces... " >&6; }
88659141 cacheid=xorg_cv_cc_flag__Wmissing_braces
88668866- if eval \${$cacheid+:} false; then :
88678867- $as_echo_n "(cached) " >&6
88688868-else
91429142+ if eval test \${$cacheid+y}
91439143+then :
91449144+ printf %s "(cached) " >&6
91459145+else $as_nop
88699146 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
88709147/* end confdefs.h. */
88719148int i;
88729149int
88738873-main ()
91509150+main (void)
88749151{
8875915288769153 ;
88779154 return 0;
88789155}
88799156_ACEOF
88808880-if ac_fn_c_try_link "$LINENO"; then :
91579157+if ac_fn_c_try_link "$LINENO"
91589158+then :
88819159 eval $cacheid=yes
88828882-else
91609160+else $as_nop
88839161 eval $cacheid=no
88849162fi
88858885-rm -f core conftest.err conftest.$ac_objext \
91639163+rm -f core conftest.err conftest.$ac_objext conftest.beam \
88869164 conftest$ac_exeext conftest.$ac_ext
88879165fi
88889166···88909168 CFLAGS="$xorg_testset_save_CFLAGS"
8891916988929170 eval supported=\$$cacheid
88938893- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
88948894-$as_echo "$supported" >&6; }
91719171+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
91729172+printf "%s\n" "$supported" >&6; }
88959173 if test "$supported" = "yes" ; then
88969174 BASE_CFLAGS="$BASE_CFLAGS -Wmissing-braces"
88979175 found="yes"
···8916919489179195if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
89189196 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
89198919- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
89208920-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
89218921-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
89228922- $as_echo_n "(cached) " >&6
89238923-else
91979197+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
91989198+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
91999199+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
92009200+then :
92019201+ printf %s "(cached) " >&6
92029202+else $as_nop
89249203 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
89259204/* end confdefs.h. */
89269205int i;
89279206_ACEOF
89288928-if ac_fn_c_try_compile "$LINENO"; then :
92079207+if ac_fn_c_try_compile "$LINENO"
92089208+then :
89299209 xorg_cv_cc_flag_unknown_warning_option=yes
89308930-else
92109210+else $as_nop
89319211 xorg_cv_cc_flag_unknown_warning_option=no
89329212fi
89338933-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
92139213+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
89349214fi
89358935-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
89368936-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
92159215+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
92169216+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
89379217 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
89389218 CFLAGS="$xorg_testset_save_CFLAGS"
89399219fi
···89439223 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
89449224 fi
89459225 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
89468946- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
89478947-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
89488948-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
89498949- $as_echo_n "(cached) " >&6
89508950-else
92269226+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
92279227+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
92289228+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
92299229+then :
92309230+ printf %s "(cached) " >&6
92319231+else $as_nop
89519232 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
89529233/* end confdefs.h. */
89539234int i;
89549235_ACEOF
89558955-if ac_fn_c_try_compile "$LINENO"; then :
92369236+if ac_fn_c_try_compile "$LINENO"
92379237+then :
89569238 xorg_cv_cc_flag_unused_command_line_argument=yes
89578957-else
92399239+else $as_nop
89589240 xorg_cv_cc_flag_unused_command_line_argument=no
89599241fi
89608960-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
92429242+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
89619243fi
89628962-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
89638963-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
92449244+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
92459245+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
89649246 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
89659247 CFLAGS="$xorg_testset_save_CFLAGS"
89669248fi
···8978926089799261 CFLAGS="$CFLAGS -Wsequence-point"
8980926289818981- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wsequence-point" >&5
89828982-$as_echo_n "checking if $CC supports -Wsequence-point... " >&6; }
92639263+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wsequence-point" >&5
92649264+printf %s "checking if $CC supports -Wsequence-point... " >&6; }
89839265 cacheid=xorg_cv_cc_flag__Wsequence_point
89848984- if eval \${$cacheid+:} false; then :
89858985- $as_echo_n "(cached) " >&6
89868986-else
92669266+ if eval test \${$cacheid+y}
92679267+then :
92689268+ printf %s "(cached) " >&6
92699269+else $as_nop
89879270 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
89889271/* end confdefs.h. */
89899272int i;
89909273int
89918991-main ()
92749274+main (void)
89929275{
8993927689949277 ;
89959278 return 0;
89969279}
89979280_ACEOF
89988998-if ac_fn_c_try_link "$LINENO"; then :
92819281+if ac_fn_c_try_link "$LINENO"
92829282+then :
89999283 eval $cacheid=yes
90009000-else
92849284+else $as_nop
90019285 eval $cacheid=no
90029286fi
90039003-rm -f core conftest.err conftest.$ac_objext \
92879287+rm -f core conftest.err conftest.$ac_objext conftest.beam \
90049288 conftest$ac_exeext conftest.$ac_ext
90059289fi
90069290···90089292 CFLAGS="$xorg_testset_save_CFLAGS"
9009929390109294 eval supported=\$$cacheid
90119011- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
90129012-$as_echo "$supported" >&6; }
92959295+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
92969296+printf "%s\n" "$supported" >&6; }
90139297 if test "$supported" = "yes" ; then
90149298 BASE_CFLAGS="$BASE_CFLAGS -Wsequence-point"
90159299 found="yes"
···9034931890359319if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
90369320 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
90379037- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
90389038-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
90399039-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
90409040- $as_echo_n "(cached) " >&6
90419041-else
93219321+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
93229322+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
93239323+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
93249324+then :
93259325+ printf %s "(cached) " >&6
93269326+else $as_nop
90429327 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
90439328/* end confdefs.h. */
90449329int i;
90459330_ACEOF
90469046-if ac_fn_c_try_compile "$LINENO"; then :
93319331+if ac_fn_c_try_compile "$LINENO"
93329332+then :
90479333 xorg_cv_cc_flag_unknown_warning_option=yes
90489048-else
93349334+else $as_nop
90499335 xorg_cv_cc_flag_unknown_warning_option=no
90509336fi
90519051-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
93379337+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
90529338fi
90539053-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
90549054-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
93399339+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
93409340+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
90559341 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
90569342 CFLAGS="$xorg_testset_save_CFLAGS"
90579343fi
···90619347 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
90629348 fi
90639349 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
90649064- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
90659065-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
90669066-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
90679067- $as_echo_n "(cached) " >&6
90689068-else
93509350+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
93519351+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
93529352+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
93539353+then :
93549354+ printf %s "(cached) " >&6
93559355+else $as_nop
90699356 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
90709357/* end confdefs.h. */
90719358int i;
90729359_ACEOF
90739073-if ac_fn_c_try_compile "$LINENO"; then :
93609360+if ac_fn_c_try_compile "$LINENO"
93619361+then :
90749362 xorg_cv_cc_flag_unused_command_line_argument=yes
90759075-else
93639363+else $as_nop
90769364 xorg_cv_cc_flag_unused_command_line_argument=no
90779365fi
90789078-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
93669366+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
90799367fi
90809080-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
90819081-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
93689368+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
93699369+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
90829370 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
90839371 CFLAGS="$xorg_testset_save_CFLAGS"
90849372fi
···9096938490979385 CFLAGS="$CFLAGS -Wreturn-type"
9098938690999099- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wreturn-type" >&5
91009100-$as_echo_n "checking if $CC supports -Wreturn-type... " >&6; }
93879387+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wreturn-type" >&5
93889388+printf %s "checking if $CC supports -Wreturn-type... " >&6; }
91019389 cacheid=xorg_cv_cc_flag__Wreturn_type
91029102- if eval \${$cacheid+:} false; then :
91039103- $as_echo_n "(cached) " >&6
91049104-else
93909390+ if eval test \${$cacheid+y}
93919391+then :
93929392+ printf %s "(cached) " >&6
93939393+else $as_nop
91059394 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
91069395/* end confdefs.h. */
91079396int i;
91089397int
91099109-main ()
93989398+main (void)
91109399{
9111940091129401 ;
91139402 return 0;
91149403}
91159404_ACEOF
91169116-if ac_fn_c_try_link "$LINENO"; then :
94059405+if ac_fn_c_try_link "$LINENO"
94069406+then :
91179407 eval $cacheid=yes
91189118-else
94089408+else $as_nop
91199409 eval $cacheid=no
91209410fi
91219121-rm -f core conftest.err conftest.$ac_objext \
94119411+rm -f core conftest.err conftest.$ac_objext conftest.beam \
91229412 conftest$ac_exeext conftest.$ac_ext
91239413fi
91249414···91269416 CFLAGS="$xorg_testset_save_CFLAGS"
9127941791289418 eval supported=\$$cacheid
91299129- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
91309130-$as_echo "$supported" >&6; }
94199419+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
94209420+printf "%s\n" "$supported" >&6; }
91319421 if test "$supported" = "yes" ; then
91329422 BASE_CFLAGS="$BASE_CFLAGS -Wreturn-type"
91339423 found="yes"
···9152944291539443if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
91549444 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
91559155- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
91569156-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
91579157-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
91589158- $as_echo_n "(cached) " >&6
91599159-else
94459445+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
94469446+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
94479447+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
94489448+then :
94499449+ printf %s "(cached) " >&6
94509450+else $as_nop
91609451 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
91619452/* end confdefs.h. */
91629453int i;
91639454_ACEOF
91649164-if ac_fn_c_try_compile "$LINENO"; then :
94559455+if ac_fn_c_try_compile "$LINENO"
94569456+then :
91659457 xorg_cv_cc_flag_unknown_warning_option=yes
91669166-else
94589458+else $as_nop
91679459 xorg_cv_cc_flag_unknown_warning_option=no
91689460fi
91699169-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
94619461+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
91709462fi
91719171-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
91729172-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
94639463+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
94649464+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
91739465 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
91749466 CFLAGS="$xorg_testset_save_CFLAGS"
91759467fi
···91799471 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
91809472 fi
91819473 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
91829182- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
91839183-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
91849184-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
91859185- $as_echo_n "(cached) " >&6
91869186-else
94749474+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
94759475+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
94769476+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
94779477+then :
94789478+ printf %s "(cached) " >&6
94799479+else $as_nop
91879480 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
91889481/* end confdefs.h. */
91899482int i;
91909483_ACEOF
91919191-if ac_fn_c_try_compile "$LINENO"; then :
94849484+if ac_fn_c_try_compile "$LINENO"
94859485+then :
91929486 xorg_cv_cc_flag_unused_command_line_argument=yes
91939193-else
94879487+else $as_nop
91949488 xorg_cv_cc_flag_unused_command_line_argument=no
91959489fi
91969196-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
94909490+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
91979491fi
91989198-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
91999199-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
94929492+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
94939493+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
92009494 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
92019495 CFLAGS="$xorg_testset_save_CFLAGS"
92029496fi
···9214950892159509 CFLAGS="$CFLAGS -Wtrigraphs"
9216951092179217- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wtrigraphs" >&5
92189218-$as_echo_n "checking if $CC supports -Wtrigraphs... " >&6; }
95119511+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wtrigraphs" >&5
95129512+printf %s "checking if $CC supports -Wtrigraphs... " >&6; }
92199513 cacheid=xorg_cv_cc_flag__Wtrigraphs
92209220- if eval \${$cacheid+:} false; then :
92219221- $as_echo_n "(cached) " >&6
92229222-else
95149514+ if eval test \${$cacheid+y}
95159515+then :
95169516+ printf %s "(cached) " >&6
95179517+else $as_nop
92239518 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
92249519/* end confdefs.h. */
92259520int i;
92269521int
92279227-main ()
95229522+main (void)
92289523{
9229952492309525 ;
92319526 return 0;
92329527}
92339528_ACEOF
92349234-if ac_fn_c_try_link "$LINENO"; then :
95299529+if ac_fn_c_try_link "$LINENO"
95309530+then :
92359531 eval $cacheid=yes
92369236-else
95329532+else $as_nop
92379533 eval $cacheid=no
92389534fi
92399239-rm -f core conftest.err conftest.$ac_objext \
95359535+rm -f core conftest.err conftest.$ac_objext conftest.beam \
92409536 conftest$ac_exeext conftest.$ac_ext
92419537fi
92429538···92449540 CFLAGS="$xorg_testset_save_CFLAGS"
9245954192469542 eval supported=\$$cacheid
92479247- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
92489248-$as_echo "$supported" >&6; }
95439543+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
95449544+printf "%s\n" "$supported" >&6; }
92499545 if test "$supported" = "yes" ; then
92509546 BASE_CFLAGS="$BASE_CFLAGS -Wtrigraphs"
92519547 found="yes"
···9270956692719567if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
92729568 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
92739273- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
92749274-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
92759275-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
92769276- $as_echo_n "(cached) " >&6
92779277-else
95699569+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
95709570+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
95719571+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
95729572+then :
95739573+ printf %s "(cached) " >&6
95749574+else $as_nop
92789575 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
92799576/* end confdefs.h. */
92809577int i;
92819578_ACEOF
92829282-if ac_fn_c_try_compile "$LINENO"; then :
95799579+if ac_fn_c_try_compile "$LINENO"
95809580+then :
92839581 xorg_cv_cc_flag_unknown_warning_option=yes
92849284-else
95829582+else $as_nop
92859583 xorg_cv_cc_flag_unknown_warning_option=no
92869584fi
92879287-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
95859585+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
92889586fi
92899289-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
92909290-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
95879587+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
95889588+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
92919589 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
92929590 CFLAGS="$xorg_testset_save_CFLAGS"
92939591fi
···92979595 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
92989596 fi
92999597 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
93009300- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
93019301-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
93029302-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
93039303- $as_echo_n "(cached) " >&6
93049304-else
95989598+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
95999599+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
96009600+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
96019601+then :
96029602+ printf %s "(cached) " >&6
96039603+else $as_nop
93059604 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
93069605/* end confdefs.h. */
93079606int i;
93089607_ACEOF
93099309-if ac_fn_c_try_compile "$LINENO"; then :
96089608+if ac_fn_c_try_compile "$LINENO"
96099609+then :
93109610 xorg_cv_cc_flag_unused_command_line_argument=yes
93119311-else
96119611+else $as_nop
93129612 xorg_cv_cc_flag_unused_command_line_argument=no
93139613fi
93149314-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
96149614+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
93159615fi
93169316-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
93179317-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
96169616+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
96179617+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
93189618 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
93199619 CFLAGS="$xorg_testset_save_CFLAGS"
93209620fi
···9332963293339633 CFLAGS="$CFLAGS -Warray-bounds"
9334963493359335- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Warray-bounds" >&5
93369336-$as_echo_n "checking if $CC supports -Warray-bounds... " >&6; }
96359635+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Warray-bounds" >&5
96369636+printf %s "checking if $CC supports -Warray-bounds... " >&6; }
93379637 cacheid=xorg_cv_cc_flag__Warray_bounds
93389338- if eval \${$cacheid+:} false; then :
93399339- $as_echo_n "(cached) " >&6
93409340-else
96389638+ if eval test \${$cacheid+y}
96399639+then :
96409640+ printf %s "(cached) " >&6
96419641+else $as_nop
93419642 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
93429643/* end confdefs.h. */
93439644int i;
93449645int
93459345-main ()
96469646+main (void)
93469647{
9347964893489649 ;
93499650 return 0;
93509651}
93519652_ACEOF
93529352-if ac_fn_c_try_link "$LINENO"; then :
96539653+if ac_fn_c_try_link "$LINENO"
96549654+then :
93539655 eval $cacheid=yes
93549354-else
96569656+else $as_nop
93559657 eval $cacheid=no
93569658fi
93579357-rm -f core conftest.err conftest.$ac_objext \
96599659+rm -f core conftest.err conftest.$ac_objext conftest.beam \
93589660 conftest$ac_exeext conftest.$ac_ext
93599661fi
93609662···93629664 CFLAGS="$xorg_testset_save_CFLAGS"
9363966593649666 eval supported=\$$cacheid
93659365- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
93669366-$as_echo "$supported" >&6; }
96679667+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
96689668+printf "%s\n" "$supported" >&6; }
93679669 if test "$supported" = "yes" ; then
93689670 BASE_CFLAGS="$BASE_CFLAGS -Warray-bounds"
93699671 found="yes"
···9388969093899691if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
93909692 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
93919391- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
93929392-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
93939393-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
93949394- $as_echo_n "(cached) " >&6
93959395-else
96939693+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
96949694+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
96959695+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
96969696+then :
96979697+ printf %s "(cached) " >&6
96989698+else $as_nop
93969699 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
93979700/* end confdefs.h. */
93989701int i;
93999702_ACEOF
94009400-if ac_fn_c_try_compile "$LINENO"; then :
97039703+if ac_fn_c_try_compile "$LINENO"
97049704+then :
94019705 xorg_cv_cc_flag_unknown_warning_option=yes
94029402-else
97069706+else $as_nop
94039707 xorg_cv_cc_flag_unknown_warning_option=no
94049708fi
94059405-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
97099709+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
94069710fi
94079407-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
94089408-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
97119711+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
97129712+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
94099713 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
94109714 CFLAGS="$xorg_testset_save_CFLAGS"
94119715fi
···94159719 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
94169720 fi
94179721 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
94189418- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
94199419-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
94209420-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
94219421- $as_echo_n "(cached) " >&6
94229422-else
97229722+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
97239723+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
97249724+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
97259725+then :
97269726+ printf %s "(cached) " >&6
97279727+else $as_nop
94239728 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
94249729/* end confdefs.h. */
94259730int i;
94269731_ACEOF
94279427-if ac_fn_c_try_compile "$LINENO"; then :
97329732+if ac_fn_c_try_compile "$LINENO"
97339733+then :
94289734 xorg_cv_cc_flag_unused_command_line_argument=yes
94299429-else
97359735+else $as_nop
94309736 xorg_cv_cc_flag_unused_command_line_argument=no
94319737fi
94329432-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
97389738+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
94339739fi
94349434-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
94359435-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
97409740+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
97419741+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
94369742 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
94379743 CFLAGS="$xorg_testset_save_CFLAGS"
94389744fi
···9450975694519757 CFLAGS="$CFLAGS -Wwrite-strings"
9452975894539453- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wwrite-strings" >&5
94549454-$as_echo_n "checking if $CC supports -Wwrite-strings... " >&6; }
97599759+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wwrite-strings" >&5
97609760+printf %s "checking if $CC supports -Wwrite-strings... " >&6; }
94559761 cacheid=xorg_cv_cc_flag__Wwrite_strings
94569456- if eval \${$cacheid+:} false; then :
94579457- $as_echo_n "(cached) " >&6
94589458-else
97629762+ if eval test \${$cacheid+y}
97639763+then :
97649764+ printf %s "(cached) " >&6
97659765+else $as_nop
94599766 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
94609767/* end confdefs.h. */
94619768int i;
94629769int
94639463-main ()
97709770+main (void)
94649771{
9465977294669773 ;
94679774 return 0;
94689775}
94699776_ACEOF
94709470-if ac_fn_c_try_link "$LINENO"; then :
97779777+if ac_fn_c_try_link "$LINENO"
97789778+then :
94719779 eval $cacheid=yes
94729472-else
97809780+else $as_nop
94739781 eval $cacheid=no
94749782fi
94759475-rm -f core conftest.err conftest.$ac_objext \
97839783+rm -f core conftest.err conftest.$ac_objext conftest.beam \
94769784 conftest$ac_exeext conftest.$ac_ext
94779785fi
94789786···94809788 CFLAGS="$xorg_testset_save_CFLAGS"
9481978994829790 eval supported=\$$cacheid
94839483- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
94849484-$as_echo "$supported" >&6; }
97919791+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
97929792+printf "%s\n" "$supported" >&6; }
94859793 if test "$supported" = "yes" ; then
94869794 BASE_CFLAGS="$BASE_CFLAGS -Wwrite-strings"
94879795 found="yes"
···9506981495079815if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
95089816 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
95099509- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
95109510-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
95119511-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
95129512- $as_echo_n "(cached) " >&6
95139513-else
98179817+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
98189818+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
98199819+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
98209820+then :
98219821+ printf %s "(cached) " >&6
98229822+else $as_nop
95149823 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
95159824/* end confdefs.h. */
95169825int i;
95179826_ACEOF
95189518-if ac_fn_c_try_compile "$LINENO"; then :
98279827+if ac_fn_c_try_compile "$LINENO"
98289828+then :
95199829 xorg_cv_cc_flag_unknown_warning_option=yes
95209520-else
98309830+else $as_nop
95219831 xorg_cv_cc_flag_unknown_warning_option=no
95229832fi
95239523-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
98339833+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
95249834fi
95259525-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
95269526-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
98359835+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
98369836+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
95279837 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
95289838 CFLAGS="$xorg_testset_save_CFLAGS"
95299839fi
···95339843 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
95349844 fi
95359845 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
95369536- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
95379537-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
95389538-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
95399539- $as_echo_n "(cached) " >&6
95409540-else
98469846+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
98479847+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
98489848+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
98499849+then :
98509850+ printf %s "(cached) " >&6
98519851+else $as_nop
95419852 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
95429853/* end confdefs.h. */
95439854int i;
95449855_ACEOF
95459545-if ac_fn_c_try_compile "$LINENO"; then :
98569856+if ac_fn_c_try_compile "$LINENO"
98579857+then :
95469858 xorg_cv_cc_flag_unused_command_line_argument=yes
95479547-else
98599859+else $as_nop
95489860 xorg_cv_cc_flag_unused_command_line_argument=no
95499861fi
95509550-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
98629862+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
95519863fi
95529552-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
95539553-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
98649864+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
98659865+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
95549866 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
95559867 CFLAGS="$xorg_testset_save_CFLAGS"
95569868fi
···9568988095699881 CFLAGS="$CFLAGS -Waddress"
9570988295719571- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Waddress" >&5
95729572-$as_echo_n "checking if $CC supports -Waddress... " >&6; }
98839883+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Waddress" >&5
98849884+printf %s "checking if $CC supports -Waddress... " >&6; }
95739885 cacheid=xorg_cv_cc_flag__Waddress
95749574- if eval \${$cacheid+:} false; then :
95759575- $as_echo_n "(cached) " >&6
95769576-else
98869886+ if eval test \${$cacheid+y}
98879887+then :
98889888+ printf %s "(cached) " >&6
98899889+else $as_nop
95779890 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
95789891/* end confdefs.h. */
95799892int i;
95809893int
95819581-main ()
98949894+main (void)
95829895{
9583989695849897 ;
95859898 return 0;
95869899}
95879900_ACEOF
95889588-if ac_fn_c_try_link "$LINENO"; then :
99019901+if ac_fn_c_try_link "$LINENO"
99029902+then :
95899903 eval $cacheid=yes
95909590-else
99049904+else $as_nop
95919905 eval $cacheid=no
95929906fi
95939593-rm -f core conftest.err conftest.$ac_objext \
99079907+rm -f core conftest.err conftest.$ac_objext conftest.beam \
95949908 conftest$ac_exeext conftest.$ac_ext
95959909fi
95969910···95989912 CFLAGS="$xorg_testset_save_CFLAGS"
9599991396009914 eval supported=\$$cacheid
96019601- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
96029602-$as_echo "$supported" >&6; }
99159915+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
99169916+printf "%s\n" "$supported" >&6; }
96039917 if test "$supported" = "yes" ; then
96049918 BASE_CFLAGS="$BASE_CFLAGS -Waddress"
96059919 found="yes"
···9624993896259939if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
96269940 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
96279627- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
96289628-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
96299629-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
96309630- $as_echo_n "(cached) " >&6
96319631-else
99419941+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
99429942+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
99439943+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
99449944+then :
99459945+ printf %s "(cached) " >&6
99469946+else $as_nop
96329947 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
96339948/* end confdefs.h. */
96349949int i;
96359950_ACEOF
96369636-if ac_fn_c_try_compile "$LINENO"; then :
99519951+if ac_fn_c_try_compile "$LINENO"
99529952+then :
96379953 xorg_cv_cc_flag_unknown_warning_option=yes
96389638-else
99549954+else $as_nop
96399955 xorg_cv_cc_flag_unknown_warning_option=no
96409956fi
96419641-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
99579957+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
96429958fi
96439643-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
96449644-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
99599959+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
99609960+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
96459961 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
96469962 CFLAGS="$xorg_testset_save_CFLAGS"
96479963fi
···96519967 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
96529968 fi
96539969 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
96549654- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
96559655-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
96569656-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
96579657- $as_echo_n "(cached) " >&6
96589658-else
99709970+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
99719971+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
99729972+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
99739973+then :
99749974+ printf %s "(cached) " >&6
99759975+else $as_nop
96599976 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
96609977/* end confdefs.h. */
96619978int i;
96629979_ACEOF
96639663-if ac_fn_c_try_compile "$LINENO"; then :
99809980+if ac_fn_c_try_compile "$LINENO"
99819981+then :
96649982 xorg_cv_cc_flag_unused_command_line_argument=yes
96659665-else
99839983+else $as_nop
96669984 xorg_cv_cc_flag_unused_command_line_argument=no
96679985fi
96689668-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
99869986+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
96699987fi
96709670-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
96719671-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
99889988+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
99899989+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
96729990 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
96739991 CFLAGS="$xorg_testset_save_CFLAGS"
96749992fi
···968610004968710005 CFLAGS="$CFLAGS -Wint-to-pointer-cast"
96881000696899689- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wint-to-pointer-cast" >&5
96909690-$as_echo_n "checking if $CC supports -Wint-to-pointer-cast... " >&6; }
1000710007+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wint-to-pointer-cast" >&5
1000810008+printf %s "checking if $CC supports -Wint-to-pointer-cast... " >&6; }
969110009 cacheid=xorg_cv_cc_flag__Wint_to_pointer_cast
96929692- if eval \${$cacheid+:} false; then :
96939693- $as_echo_n "(cached) " >&6
96949694-else
1001010010+ if eval test \${$cacheid+y}
1001110011+then :
1001210012+ printf %s "(cached) " >&6
1001310013+else $as_nop
969510014 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
969610015/* end confdefs.h. */
969710016int i;
969810017int
96999699-main ()
1001810018+main (void)
970010019{
970110020970210021 ;
970310022 return 0;
970410023}
970510024_ACEOF
97069706-if ac_fn_c_try_link "$LINENO"; then :
1002510025+if ac_fn_c_try_link "$LINENO"
1002610026+then :
970710027 eval $cacheid=yes
97089708-else
1002810028+else $as_nop
970910029 eval $cacheid=no
971010030fi
97119711-rm -f core conftest.err conftest.$ac_objext \
1003110031+rm -f core conftest.err conftest.$ac_objext conftest.beam \
971210032 conftest$ac_exeext conftest.$ac_ext
971310033fi
971410034···971610036 CFLAGS="$xorg_testset_save_CFLAGS"
971710037971810038 eval supported=\$$cacheid
97199719- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
97209720-$as_echo "$supported" >&6; }
1003910039+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
1004010040+printf "%s\n" "$supported" >&6; }
972110041 if test "$supported" = "yes" ; then
972210042 BASE_CFLAGS="$BASE_CFLAGS -Wint-to-pointer-cast"
972310043 found="yes"
···974210062974310063if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
974410064 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
97459745- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
97469746-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
97479747-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
97489748- $as_echo_n "(cached) " >&6
97499749-else
1006510065+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
1006610066+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
1006710067+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
1006810068+then :
1006910069+ printf %s "(cached) " >&6
1007010070+else $as_nop
975010071 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
975110072/* end confdefs.h. */
975210073int i;
975310074_ACEOF
97549754-if ac_fn_c_try_compile "$LINENO"; then :
1007510075+if ac_fn_c_try_compile "$LINENO"
1007610076+then :
975510077 xorg_cv_cc_flag_unknown_warning_option=yes
97569756-else
1007810078+else $as_nop
975710079 xorg_cv_cc_flag_unknown_warning_option=no
975810080fi
97599759-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1008110081+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
976010082fi
97619761-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
97629762-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
1008310083+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
1008410084+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
976310085 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
976410086 CFLAGS="$xorg_testset_save_CFLAGS"
976510087fi
···976910091 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
977010092 fi
977110093 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
97729772- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
97739773-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
97749774-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
97759775- $as_echo_n "(cached) " >&6
97769776-else
1009410094+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
1009510095+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
1009610096+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
1009710097+then :
1009810098+ printf %s "(cached) " >&6
1009910099+else $as_nop
977710100 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
977810101/* end confdefs.h. */
977910102int i;
978010103_ACEOF
97819781-if ac_fn_c_try_compile "$LINENO"; then :
1010410104+if ac_fn_c_try_compile "$LINENO"
1010510105+then :
978210106 xorg_cv_cc_flag_unused_command_line_argument=yes
97839783-else
1010710107+else $as_nop
978410108 xorg_cv_cc_flag_unused_command_line_argument=no
978510109fi
97869786-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1011010110+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
978710111fi
97889788-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
97899789-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
1011210112+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
1011310113+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
979010114 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
979110115 CFLAGS="$xorg_testset_save_CFLAGS"
979210116fi
···980410128980510129 CFLAGS="$CFLAGS -Wpointer-to-int-cast"
98061013098079807- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wpointer-to-int-cast" >&5
98089808-$as_echo_n "checking if $CC supports -Wpointer-to-int-cast... " >&6; }
1013110131+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Wpointer-to-int-cast" >&5
1013210132+printf %s "checking if $CC supports -Wpointer-to-int-cast... " >&6; }
980910133 cacheid=xorg_cv_cc_flag__Wpointer_to_int_cast
98109810- if eval \${$cacheid+:} false; then :
98119811- $as_echo_n "(cached) " >&6
98129812-else
1013410134+ if eval test \${$cacheid+y}
1013510135+then :
1013610136+ printf %s "(cached) " >&6
1013710137+else $as_nop
981310138 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
981410139/* end confdefs.h. */
981510140int i;
981610141int
98179817-main ()
1014210142+main (void)
981810143{
981910144982010145 ;
982110146 return 0;
982210147}
982310148_ACEOF
98249824-if ac_fn_c_try_link "$LINENO"; then :
1014910149+if ac_fn_c_try_link "$LINENO"
1015010150+then :
982510151 eval $cacheid=yes
98269826-else
1015210152+else $as_nop
982710153 eval $cacheid=no
982810154fi
98299829-rm -f core conftest.err conftest.$ac_objext \
1015510155+rm -f core conftest.err conftest.$ac_objext conftest.beam \
983010156 conftest$ac_exeext conftest.$ac_ext
983110157fi
983210158···983410160 CFLAGS="$xorg_testset_save_CFLAGS"
983510161983610162 eval supported=\$$cacheid
98379837- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
98389838-$as_echo "$supported" >&6; }
1016310163+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
1016410164+printf "%s\n" "$supported" >&6; }
983910165 if test "$supported" = "yes" ; then
984010166 BASE_CFLAGS="$BASE_CFLAGS -Wpointer-to-int-cast"
984110167 found="yes"
···986410190986510191986610192# Check whether --enable-strict-compilation was given.
98679867-if test "${enable_strict_compilation+set}" = set; then :
1019310193+if test ${enable_strict_compilation+y}
1019410194+then :
986810195 enableval=$enable_strict_compilation; STRICT_COMPILE=$enableval
98699869-else
1019610196+else $as_nop
987010197 STRICT_COMPILE=no
987110198fi
987210199···989310220989410221if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
989510222 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
98969896- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
98979897-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
98989898-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
98999899- $as_echo_n "(cached) " >&6
99009900-else
1022310223+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
1022410224+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
1022510225+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
1022610226+then :
1022710227+ printf %s "(cached) " >&6
1022810228+else $as_nop
990110229 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
990210230/* end confdefs.h. */
990310231int i;
990410232_ACEOF
99059905-if ac_fn_c_try_compile "$LINENO"; then :
1023310233+if ac_fn_c_try_compile "$LINENO"
1023410234+then :
990610235 xorg_cv_cc_flag_unknown_warning_option=yes
99079907-else
1023610236+else $as_nop
990810237 xorg_cv_cc_flag_unknown_warning_option=no
990910238fi
99109910-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1023910239+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
991110240fi
99129912-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
99139913-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
1024110241+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
1024210242+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
991410243 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
991510244 CFLAGS="$xorg_testset_save_CFLAGS"
991610245fi
···992010249 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
992110250 fi
992210251 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
99239923- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
99249924-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
99259925-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
99269926- $as_echo_n "(cached) " >&6
99279927-else
1025210252+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
1025310253+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
1025410254+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
1025510255+then :
1025610256+ printf %s "(cached) " >&6
1025710257+else $as_nop
992810258 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
992910259/* end confdefs.h. */
993010260int i;
993110261_ACEOF
99329932-if ac_fn_c_try_compile "$LINENO"; then :
1026210262+if ac_fn_c_try_compile "$LINENO"
1026310263+then :
993310264 xorg_cv_cc_flag_unused_command_line_argument=yes
99349934-else
1026510265+else $as_nop
993510266 xorg_cv_cc_flag_unused_command_line_argument=no
993610267fi
99379937-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1026810268+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
993810269fi
99399939-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
99409940-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
1027010270+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
1027110271+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
994110272 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
994210273 CFLAGS="$xorg_testset_save_CFLAGS"
994310274fi
···995510286995610287 CFLAGS="$CFLAGS -pedantic"
99571028899589958- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -pedantic" >&5
99599959-$as_echo_n "checking if $CC supports -pedantic... " >&6; }
1028910289+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -pedantic" >&5
1029010290+printf %s "checking if $CC supports -pedantic... " >&6; }
996010291 cacheid=xorg_cv_cc_flag__pedantic
99619961- if eval \${$cacheid+:} false; then :
99629962- $as_echo_n "(cached) " >&6
99639963-else
1029210292+ if eval test \${$cacheid+y}
1029310293+then :
1029410294+ printf %s "(cached) " >&6
1029510295+else $as_nop
996410296 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
996510297/* end confdefs.h. */
996610298int i;
996710299int
99689968-main ()
1030010300+main (void)
996910301{
997010302997110303 ;
997210304 return 0;
997310305}
997410306_ACEOF
99759975-if ac_fn_c_try_link "$LINENO"; then :
1030710307+if ac_fn_c_try_link "$LINENO"
1030810308+then :
997610309 eval $cacheid=yes
99779977-else
1031010310+else $as_nop
997810311 eval $cacheid=no
997910312fi
99809980-rm -f core conftest.err conftest.$ac_objext \
1031310313+rm -f core conftest.err conftest.$ac_objext conftest.beam \
998110314 conftest$ac_exeext conftest.$ac_ext
998210315fi
998310316···998510318 CFLAGS="$xorg_testset_save_CFLAGS"
998610319998710320 eval supported=\$$cacheid
99889988- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
99899989-$as_echo "$supported" >&6; }
1032110321+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
1032210322+printf "%s\n" "$supported" >&6; }
999010323 if test "$supported" = "yes" ; then
999110324 STRICT_CFLAGS="$STRICT_CFLAGS -pedantic"
999210325 found="yes"
···10011103441001210345if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
1001310346 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
1001410014- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
1001510015-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
1001610016-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
1001710017- $as_echo_n "(cached) " >&6
1001810018-else
1034710347+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
1034810348+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
1034910349+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
1035010350+then :
1035110351+ printf %s "(cached) " >&6
1035210352+else $as_nop
1001910353 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1002010354/* end confdefs.h. */
1002110355int i;
1002210356_ACEOF
1002310023-if ac_fn_c_try_compile "$LINENO"; then :
1035710357+if ac_fn_c_try_compile "$LINENO"
1035810358+then :
1002410359 xorg_cv_cc_flag_unknown_warning_option=yes
1002510025-else
1036010360+else $as_nop
1002610361 xorg_cv_cc_flag_unknown_warning_option=no
1002710362fi
1002810028-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1036310363+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
1002910364fi
1003010030-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
1003110031-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
1036510365+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
1036610366+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
1003210367 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
1003310368 CFLAGS="$xorg_testset_save_CFLAGS"
1003410369fi
···1003810373 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
1003910374 fi
1004010375 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
1004110041- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
1004210042-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
1004310043-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
1004410044- $as_echo_n "(cached) " >&6
1004510045-else
1037610376+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
1037710377+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
1037810378+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
1037910379+then :
1038010380+ printf %s "(cached) " >&6
1038110381+else $as_nop
1004610382 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1004710383/* end confdefs.h. */
1004810384int i;
1004910385_ACEOF
1005010050-if ac_fn_c_try_compile "$LINENO"; then :
1038610386+if ac_fn_c_try_compile "$LINENO"
1038710387+then :
1005110388 xorg_cv_cc_flag_unused_command_line_argument=yes
1005210052-else
1038910389+else $as_nop
1005310390 xorg_cv_cc_flag_unused_command_line_argument=no
1005410391fi
1005510055-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1039210392+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
1005610393fi
1005710057-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
1005810058-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
1039410394+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
1039510395+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
1005910396 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
1006010397 CFLAGS="$xorg_testset_save_CFLAGS"
1006110398fi
···10073104101007410411 CFLAGS="$CFLAGS -Werror"
10075104121007610076- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror" >&5
1007710077-$as_echo_n "checking if $CC supports -Werror... " >&6; }
1041310413+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror" >&5
1041410414+printf %s "checking if $CC supports -Werror... " >&6; }
1007810415 cacheid=xorg_cv_cc_flag__Werror
1007910079- if eval \${$cacheid+:} false; then :
1008010080- $as_echo_n "(cached) " >&6
1008110081-else
1041610416+ if eval test \${$cacheid+y}
1041710417+then :
1041810418+ printf %s "(cached) " >&6
1041910419+else $as_nop
1008210420 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1008310421/* end confdefs.h. */
1008410422int i;
1008510423int
1008610086-main ()
1042410424+main (void)
1008710425{
10088104261008910427 ;
1009010428 return 0;
1009110429}
1009210430_ACEOF
1009310093-if ac_fn_c_try_link "$LINENO"; then :
1043110431+if ac_fn_c_try_link "$LINENO"
1043210432+then :
1009410433 eval $cacheid=yes
1009510095-else
1043410434+else $as_nop
1009610435 eval $cacheid=no
1009710436fi
1009810098-rm -f core conftest.err conftest.$ac_objext \
1043710437+rm -f core conftest.err conftest.$ac_objext conftest.beam \
1009910438 conftest$ac_exeext conftest.$ac_ext
1010010439fi
1010110440···1010310442 CFLAGS="$xorg_testset_save_CFLAGS"
10104104431010510444 eval supported=\$$cacheid
1010610106- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
1010710107-$as_echo "$supported" >&6; }
1044510445+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
1044610446+printf "%s\n" "$supported" >&6; }
1010810447 if test "$supported" = "yes" ; then
1010910448 STRICT_CFLAGS="$STRICT_CFLAGS -Werror"
1011010449 found="yes"
···10122104611012310462 CFLAGS="$CFLAGS -errwarn"
10124104631012510125- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -errwarn" >&5
1012610126-$as_echo_n "checking if $CC supports -errwarn... " >&6; }
1046410464+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -errwarn" >&5
1046510465+printf %s "checking if $CC supports -errwarn... " >&6; }
1012710466 cacheid=xorg_cv_cc_flag__errwarn
1012810128- if eval \${$cacheid+:} false; then :
1012910129- $as_echo_n "(cached) " >&6
1013010130-else
1046710467+ if eval test \${$cacheid+y}
1046810468+then :
1046910469+ printf %s "(cached) " >&6
1047010470+else $as_nop
1013110471 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1013210472/* end confdefs.h. */
1013310473int i;
1013410474int
1013510135-main ()
1047510475+main (void)
1013610476{
10137104771013810478 ;
1013910479 return 0;
1014010480}
1014110481_ACEOF
1014210142-if ac_fn_c_try_link "$LINENO"; then :
1048210482+if ac_fn_c_try_link "$LINENO"
1048310483+then :
1014310484 eval $cacheid=yes
1014410144-else
1048510485+else $as_nop
1014510486 eval $cacheid=no
1014610487fi
1014710147-rm -f core conftest.err conftest.$ac_objext \
1048810488+rm -f core conftest.err conftest.$ac_objext conftest.beam \
1014810489 conftest$ac_exeext conftest.$ac_ext
1014910490fi
1015010491···1015210493 CFLAGS="$xorg_testset_save_CFLAGS"
10153104941015410495 eval supported=\$$cacheid
1015510155- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
1015610156-$as_echo "$supported" >&6; }
1049610496+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
1049710497+printf "%s\n" "$supported" >&6; }
1015710498 if test "$supported" = "yes" ; then
1015810499 STRICT_CFLAGS="$STRICT_CFLAGS -errwarn"
1015910500 found="yes"
···10181105221018210523if test "x$xorg_testset_cc_unknown_warning_option" = "x" ; then
1018310524 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
1018410184- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
1018510185-$as_echo_n "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
1018610186-if ${xorg_cv_cc_flag_unknown_warning_option+:} false; then :
1018710187- $as_echo_n "(cached) " >&6
1018810188-else
1052510525+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unknown-warning-option" >&5
1052610526+printf %s "checking if $CC supports -Werror=unknown-warning-option... " >&6; }
1052710527+if test ${xorg_cv_cc_flag_unknown_warning_option+y}
1052810528+then :
1052910529+ printf %s "(cached) " >&6
1053010530+else $as_nop
1018910531 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1019010532/* end confdefs.h. */
1019110533int i;
1019210534_ACEOF
1019310193-if ac_fn_c_try_compile "$LINENO"; then :
1053510535+if ac_fn_c_try_compile "$LINENO"
1053610536+then :
1019410537 xorg_cv_cc_flag_unknown_warning_option=yes
1019510195-else
1053810538+else $as_nop
1019610539 xorg_cv_cc_flag_unknown_warning_option=no
1019710540fi
1019810198-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1054110541+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
1019910542fi
1020010200-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
1020110201-$as_echo "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
1054310543+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unknown_warning_option" >&5
1054410544+printf "%s\n" "$xorg_cv_cc_flag_unknown_warning_option" >&6; }
1020210545 xorg_testset_cc_unknown_warning_option=$xorg_cv_cc_flag_unknown_warning_option
1020310546 CFLAGS="$xorg_testset_save_CFLAGS"
1020410547fi
···1020810551 CFLAGS="$CFLAGS -Werror=unknown-warning-option"
1020910552 fi
1021010553 CFLAGS="$CFLAGS -Werror=unused-command-line-argument"
1021110211- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
1021210212-$as_echo_n "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
1021310213-if ${xorg_cv_cc_flag_unused_command_line_argument+:} false; then :
1021410214- $as_echo_n "(cached) " >&6
1021510215-else
1055410554+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=unused-command-line-argument" >&5
1055510555+printf %s "checking if $CC supports -Werror=unused-command-line-argument... " >&6; }
1055610556+if test ${xorg_cv_cc_flag_unused_command_line_argument+y}
1055710557+then :
1055810558+ printf %s "(cached) " >&6
1055910559+else $as_nop
1021610560 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1021710561/* end confdefs.h. */
1021810562int i;
1021910563_ACEOF
1022010220-if ac_fn_c_try_compile "$LINENO"; then :
1056410564+if ac_fn_c_try_compile "$LINENO"
1056510565+then :
1022110566 xorg_cv_cc_flag_unused_command_line_argument=yes
1022210222-else
1056710567+else $as_nop
1022310568 xorg_cv_cc_flag_unused_command_line_argument=no
1022410569fi
1022510225-rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1057010570+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
1022610571fi
1022710227-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
1022810228-$as_echo "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
1057210572+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $xorg_cv_cc_flag_unused_command_line_argument" >&5
1057310573+printf "%s\n" "$xorg_cv_cc_flag_unused_command_line_argument" >&6; }
1022910574 xorg_testset_cc_unused_command_line_argument=$xorg_cv_cc_flag_unused_command_line_argument
1023010575 CFLAGS="$xorg_testset_save_CFLAGS"
1023110576fi
···10243105881024410589 CFLAGS="$CFLAGS -Werror=attributes"
10245105901024610246- { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=attributes" >&5
1024710247-$as_echo_n "checking if $CC supports -Werror=attributes... " >&6; }
1059110591+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC supports -Werror=attributes" >&5
1059210592+printf %s "checking if $CC supports -Werror=attributes... " >&6; }
1024810593 cacheid=xorg_cv_cc_flag__Werror_attributes
1024910249- if eval \${$cacheid+:} false; then :
1025010250- $as_echo_n "(cached) " >&6
1025110251-else
1059410594+ if eval test \${$cacheid+y}
1059510595+then :
1059610596+ printf %s "(cached) " >&6
1059710597+else $as_nop
1025210598 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1025310599/* end confdefs.h. */
1025410600int i;
1025510601int
1025610256-main ()
1060210602+main (void)
1025710603{
10258106041025910605 ;
1026010606 return 0;
1026110607}
1026210608_ACEOF
1026310263-if ac_fn_c_try_link "$LINENO"; then :
1060910609+if ac_fn_c_try_link "$LINENO"
1061010610+then :
1026410611 eval $cacheid=yes
1026510265-else
1061210612+else $as_nop
1026610613 eval $cacheid=no
1026710614fi
1026810268-rm -f core conftest.err conftest.$ac_objext \
1061510615+rm -f core conftest.err conftest.$ac_objext conftest.beam \
1026910616 conftest$ac_exeext conftest.$ac_ext
1027010617fi
1027110618···1027310620 CFLAGS="$xorg_testset_save_CFLAGS"
10274106211027510622 eval supported=\$$cacheid
1027610276- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
1027710277-$as_echo "$supported" >&6; }
1062310623+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $supported" >&5
1062410624+printf "%s\n" "$supported" >&6; }
1027810625 if test "$supported" = "yes" ; then
1027910626 STRICT_CFLAGS="$STRICT_CFLAGS -Werror=attributes"
1028010627 found="yes"
···1029310640102941064110295106421064310643+1064410644+1029610645cat >>confdefs.h <<_ACEOF
1029710646#define PACKAGE_VERSION_MAJOR `echo $PACKAGE_VERSION | cut -d . -f 1`
1029810647_ACEOF
···1030210651 PVM="0"
1030310652 fi
10304106531030510305-cat >>confdefs.h <<_ACEOF
1030610306-#define PACKAGE_VERSION_MINOR $PVM
1030710307-_ACEOF
1065410654+printf "%s\n" "#define PACKAGE_VERSION_MINOR $PVM" >>confdefs.h
10308106551030910656 PVP=`echo $PACKAGE_VERSION | cut -d . -f 3 | cut -d - -f 1`
1031010657 if test "x$PVP" = "x"; then
1031110658 PVP="0"
1031210659 fi
10313106601031410314-cat >>confdefs.h <<_ACEOF
1031510315-#define PACKAGE_VERSION_PATCHLEVEL $PVP
1031610316-_ACEOF
1066110661+printf "%s\n" "#define PACKAGE_VERSION_PATCHLEVEL $PVP" >>confdefs.h
103171066210318106631031910664···1034310688 # Solaris 2.0 - 11.3 use SysV man page section numbers, so we
1034410689 # check for a man page file found in later versions that use
1034510690 # traditional section numbers instead
1034610346- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for /usr/share/man/man7/attributes.7" >&5
1034710347-$as_echo_n "checking for /usr/share/man/man7/attributes.7... " >&6; }
1034810348-if ${ac_cv_file__usr_share_man_man7_attributes_7+:} false; then :
1034910349- $as_echo_n "(cached) " >&6
1035010350-else
1069110691+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for /usr/share/man/man7/attributes.7" >&5
1069210692+printf %s "checking for /usr/share/man/man7/attributes.7... " >&6; }
1069310693+if test ${ac_cv_file__usr_share_man_man7_attributes_7+y}
1069410694+then :
1069510695+ printf %s "(cached) " >&6
1069610696+else $as_nop
1035110697 test "$cross_compiling" = yes &&
1035210698 as_fn_error $? "cannot check for file existence when cross compiling" "$LINENO" 5
1035310699if test -r "/usr/share/man/man7/attributes.7"; then
···1035610702 ac_cv_file__usr_share_man_man7_attributes_7=no
1035710703fi
1035810704fi
1035910359-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_file__usr_share_man_man7_attributes_7" >&5
1036010360-$as_echo "$ac_cv_file__usr_share_man_man7_attributes_7" >&6; }
1036110361-if test "x$ac_cv_file__usr_share_man_man7_attributes_7" = xyes; then :
1070510705+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_file__usr_share_man_man7_attributes_7" >&5
1070610706+printf "%s\n" "$ac_cv_file__usr_share_man_man7_attributes_7" >&6; }
1070710707+if test "x$ac_cv_file__usr_share_man_man7_attributes_7" = xyes
1070810708+then :
1036210709 SYSV_MAN_SECTIONS=false
1036310363-else
1071010710+else $as_nop
1036410711 SYSV_MAN_SECTIONS=true
1036510712fi
1036610713···104551080210456108031045710804# Check whether --enable-silent-rules was given.
1045810458-if test "${enable_silent_rules+set}" = set; then :
1080510805+if test ${enable_silent_rules+y}
1080610806+then :
1045910807 enableval=$enable_silent_rules;
1046010808fi
1046110809···1046510813 *) AM_DEFAULT_VERBOSITY=0;;
1046610814esac
1046710815am_make=${MAKE-make}
1046810468-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
1046910469-$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
1047010470-if ${am_cv_make_support_nested_variables+:} false; then :
1047110471- $as_echo_n "(cached) " >&6
1047210472-else
1047310473- if $as_echo 'TRUE=$(BAR$(V))
1081610816+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
1081710817+printf %s "checking whether $am_make supports nested variables... " >&6; }
1081810818+if test ${am_cv_make_support_nested_variables+y}
1081910819+then :
1082010820+ printf %s "(cached) " >&6
1082110821+else $as_nop
1082210822+ if printf "%s\n" 'TRUE=$(BAR$(V))
1047410823BAR0=false
1047510824BAR1=true
1047610825V=1
···1048210831 am_cv_make_support_nested_variables=no
1048310832fi
1048410833fi
1048510485-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
1048610486-$as_echo "$am_cv_make_support_nested_variables" >&6; }
1083410834+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
1083510835+printf "%s\n" "$am_cv_make_support_nested_variables" >&6; }
1048710836if test $am_cv_make_support_nested_variables = yes; then
1048810837 AM_V='$(V)'
1048910838 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
···1049510844104961084510497108461084710847+1049810848# Checks for pkg-config packages
10499108491050010850pkg_failed=no
1050110501-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XBIFF" >&5
1050210502-$as_echo_n "checking for XBIFF... " >&6; }
1085110851+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25" >&5
1085210852+printf %s "checking for xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25... " >&6; }
10503108531050410854if test -n "$XBIFF_CFLAGS"; then
1050510855 pkg_cv_XBIFF_CFLAGS="$XBIFF_CFLAGS"
1050610856 elif test -n "$PKG_CONFIG"; then
1050710857 if test -n "$PKG_CONFIG" && \
1050810508- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xaw7 xmu xbitmaps xext x11\""; } >&5
1050910509- ($PKG_CONFIG --exists --print-errors "xaw7 xmu xbitmaps xext x11") 2>&5
1085810858+ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25\""; } >&5
1085910859+ ($PKG_CONFIG --exists --print-errors "xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25") 2>&5
1051010860 ac_status=$?
1051110511- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1086110861+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1051210862 test $ac_status = 0; }; then
1051310513- pkg_cv_XBIFF_CFLAGS=`$PKG_CONFIG --cflags "xaw7 xmu xbitmaps xext x11" 2>/dev/null`
1086310863+ pkg_cv_XBIFF_CFLAGS=`$PKG_CONFIG --cflags "xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25" 2>/dev/null`
1051410864 test "x$?" != "x0" && pkg_failed=yes
1051510865else
1051610866 pkg_failed=yes
···1052210872 pkg_cv_XBIFF_LIBS="$XBIFF_LIBS"
1052310873 elif test -n "$PKG_CONFIG"; then
1052410874 if test -n "$PKG_CONFIG" && \
1052510525- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xaw7 xmu xbitmaps xext x11\""; } >&5
1052610526- ($PKG_CONFIG --exists --print-errors "xaw7 xmu xbitmaps xext x11") 2>&5
1087510875+ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25\""; } >&5
1087610876+ ($PKG_CONFIG --exists --print-errors "xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25") 2>&5
1052710877 ac_status=$?
1052810528- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1087810878+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1052910879 test $ac_status = 0; }; then
1053010530- pkg_cv_XBIFF_LIBS=`$PKG_CONFIG --libs "xaw7 xmu xbitmaps xext x11" 2>/dev/null`
1088010880+ pkg_cv_XBIFF_LIBS=`$PKG_CONFIG --libs "xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25" 2>/dev/null`
1053110881 test "x$?" != "x0" && pkg_failed=yes
1053210882else
1053310883 pkg_failed=yes
···105391088910540108901054110891if test $pkg_failed = yes; then
1054210542- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1054310543-$as_echo "no" >&6; }
1089210892+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
1089310893+printf "%s\n" "no" >&6; }
10544108941054510895if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
1054610896 _pkg_short_errors_supported=yes
···1054810898 _pkg_short_errors_supported=no
1054910899fi
1055010900 if test $_pkg_short_errors_supported = yes; then
1055110551- XBIFF_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "xaw7 xmu xbitmaps xext x11" 2>&1`
1090110901+ XBIFF_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25" 2>&1`
1055210902 else
1055310553- XBIFF_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "xaw7 xmu xbitmaps xext x11" 2>&1`
1090310903+ XBIFF_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25" 2>&1`
1055410904 fi
1055510905 # Put the nasty error message in config.log where it belongs
1055610906 echo "$XBIFF_PKG_ERRORS" >&5
10557109071055810558- as_fn_error $? "Package requirements (xaw7 xmu xbitmaps xext x11) were not met:
1090810908+ as_fn_error $? "Package requirements (xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25) were not met:
10559109091056010910$XBIFF_PKG_ERRORS
1056110911···1056610916and XBIFF_LIBS to avoid the need to call pkg-config.
1056710917See the pkg-config man page for more details." "$LINENO" 5
1056810918elif test $pkg_failed = untried; then
1056910569- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
1057010570-$as_echo "no" >&6; }
1057110571- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1057210572-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1091910919+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5
1092010920+printf "%s\n" "no" >&6; }
1092110921+ { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1092210922+printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;}
1057310923as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it
1057410924is in your PATH or set the PKG_CONFIG environment variable to the full
1057510925path to pkg-config.
···1058310933else
1058410934 XBIFF_CFLAGS=$pkg_cv_XBIFF_CFLAGS
1058510935 XBIFF_LIBS=$pkg_cv_XBIFF_LIBS
1058610586- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1058710587-$as_echo "yes" >&6; }
1093610936+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5
1093710937+printf "%s\n" "yes" >&6; }
10588109381058910939fi
10590109401059110941# Checks for headers
1059210592-for ac_header in paths.h
1059310593-do :
1059410594- ac_fn_c_check_header_mongrel "$LINENO" "paths.h" "ac_cv_header_paths_h" "$ac_includes_default"
1059510595-if test "x$ac_cv_header_paths_h" = xyes; then :
1059610596- cat >>confdefs.h <<_ACEOF
1059710597-#define HAVE_PATHS_H 1
1094210942+ac_fn_c_check_header_compile "$LINENO" "paths.h" "ac_cv_header_paths_h" "$ac_includes_default"
1094310943+if test "x$ac_cv_header_paths_h" = xyes
1094410944+then :
1094510945+ printf "%s\n" "#define HAVE_PATHS_H 1" >>confdefs.h
1094610946+1094710947+fi
1094810948+1094910949+1095010950+# Checks for typedefs, structures, and compiler characteristics.
1095110951+# Check whether --enable-largefile was given.
1095210952+if test ${enable_largefile+y}
1095310953+then :
1095410954+ enableval=$enable_largefile;
1095510955+fi
1095610956+1095710957+if test "$enable_largefile" != no; then
1095810958+1095910959+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5
1096010960+printf %s "checking for special C compiler options needed for large files... " >&6; }
1096110961+if test ${ac_cv_sys_largefile_CC+y}
1096210962+then :
1096310963+ printf %s "(cached) " >&6
1096410964+else $as_nop
1096510965+ ac_cv_sys_largefile_CC=no
1096610966+ if test "$GCC" != yes; then
1096710967+ ac_save_CC=$CC
1096810968+ while :; do
1096910969+ # IRIX 6.2 and later do not support large files by default,
1097010970+ # so use the C compiler's -n32 option if that helps.
1097110971+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1097210972+/* end confdefs.h. */
1097310973+#include <sys/types.h>
1097410974+ /* Check that off_t can represent 2**63 - 1 correctly.
1097510975+ We can't simply define LARGE_OFF_T to be 9223372036854775807,
1097610976+ since some C++ compilers masquerading as C compilers
1097710977+ incorrectly reject 9223372036854775807. */
1097810978+#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31))
1097910979+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
1098010980+ && LARGE_OFF_T % 2147483647 == 1)
1098110981+ ? 1 : -1];
1098210982+int
1098310983+main (void)
1098410984+{
1098510985+1098610986+ ;
1098710987+ return 0;
1098810988+}
1098910989+_ACEOF
1099010990+ if ac_fn_c_try_compile "$LINENO"
1099110991+then :
1099210992+ break
1099310993+fi
1099410994+rm -f core conftest.err conftest.$ac_objext conftest.beam
1099510995+ CC="$CC -n32"
1099610996+ if ac_fn_c_try_compile "$LINENO"
1099710997+then :
1099810998+ ac_cv_sys_largefile_CC=' -n32'; break
1099910999+fi
1100011000+rm -f core conftest.err conftest.$ac_objext conftest.beam
1100111001+ break
1100211002+ done
1100311003+ CC=$ac_save_CC
1100411004+ rm -f conftest.$ac_ext
1100511005+ fi
1100611006+fi
1100711007+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_largefile_CC" >&5
1100811008+printf "%s\n" "$ac_cv_sys_largefile_CC" >&6; }
1100911009+ if test "$ac_cv_sys_largefile_CC" != no; then
1101011010+ CC=$CC$ac_cv_sys_largefile_CC
1101111011+ fi
1101211012+1101311013+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5
1101411014+printf %s "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; }
1101511015+if test ${ac_cv_sys_file_offset_bits+y}
1101611016+then :
1101711017+ printf %s "(cached) " >&6
1101811018+else $as_nop
1101911019+ while :; do
1102011020+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1102111021+/* end confdefs.h. */
1102211022+#include <sys/types.h>
1102311023+ /* Check that off_t can represent 2**63 - 1 correctly.
1102411024+ We can't simply define LARGE_OFF_T to be 9223372036854775807,
1102511025+ since some C++ compilers masquerading as C compilers
1102611026+ incorrectly reject 9223372036854775807. */
1102711027+#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31))
1102811028+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
1102911029+ && LARGE_OFF_T % 2147483647 == 1)
1103011030+ ? 1 : -1];
1103111031+int
1103211032+main (void)
1103311033+{
1103411034+1103511035+ ;
1103611036+ return 0;
1103711037+}
1059811038_ACEOF
1103911039+if ac_fn_c_try_compile "$LINENO"
1104011040+then :
1104111041+ ac_cv_sys_file_offset_bits=no; break
1104211042+fi
1104311043+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
1104411044+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1104511045+/* end confdefs.h. */
1104611046+#define _FILE_OFFSET_BITS 64
1104711047+#include <sys/types.h>
1104811048+ /* Check that off_t can represent 2**63 - 1 correctly.
1104911049+ We can't simply define LARGE_OFF_T to be 9223372036854775807,
1105011050+ since some C++ compilers masquerading as C compilers
1105111051+ incorrectly reject 9223372036854775807. */
1105211052+#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31))
1105311053+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
1105411054+ && LARGE_OFF_T % 2147483647 == 1)
1105511055+ ? 1 : -1];
1105611056+int
1105711057+main (void)
1105811058+{
10599110591106011060+ ;
1106111061+ return 0;
1106211062+}
1106311063+_ACEOF
1106411064+if ac_fn_c_try_compile "$LINENO"
1106511065+then :
1106611066+ ac_cv_sys_file_offset_bits=64; break
1060011067fi
1106811068+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
1106911069+ ac_cv_sys_file_offset_bits=unknown
1107011070+ break
1107111071+done
1107211072+fi
1107311073+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_file_offset_bits" >&5
1107411074+printf "%s\n" "$ac_cv_sys_file_offset_bits" >&6; }
1107511075+case $ac_cv_sys_file_offset_bits in #(
1107611076+ no | unknown) ;;
1107711077+ *)
1107811078+printf "%s\n" "#define _FILE_OFFSET_BITS $ac_cv_sys_file_offset_bits" >>confdefs.h
1107911079+;;
1108011080+esac
1108111081+rm -rf conftest*
1108211082+ if test $ac_cv_sys_file_offset_bits = unknown; then
1108311083+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5
1108411084+printf %s "checking for _LARGE_FILES value needed for large files... " >&6; }
1108511085+if test ${ac_cv_sys_large_files+y}
1108611086+then :
1108711087+ printf %s "(cached) " >&6
1108811088+else $as_nop
1108911089+ while :; do
1109011090+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1109111091+/* end confdefs.h. */
1109211092+#include <sys/types.h>
1109311093+ /* Check that off_t can represent 2**63 - 1 correctly.
1109411094+ We can't simply define LARGE_OFF_T to be 9223372036854775807,
1109511095+ since some C++ compilers masquerading as C compilers
1109611096+ incorrectly reject 9223372036854775807. */
1109711097+#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31))
1109811098+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
1109911099+ && LARGE_OFF_T % 2147483647 == 1)
1110011100+ ? 1 : -1];
1110111101+int
1110211102+main (void)
1110311103+{
10601111041110511105+ ;
1110611106+ return 0;
1110711107+}
1110811108+_ACEOF
1110911109+if ac_fn_c_try_compile "$LINENO"
1111011110+then :
1111111111+ ac_cv_sys_large_files=no; break
1111211112+fi
1111311113+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
1111411114+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1111511115+/* end confdefs.h. */
1111611116+#define _LARGE_FILES 1
1111711117+#include <sys/types.h>
1111811118+ /* Check that off_t can represent 2**63 - 1 correctly.
1111911119+ We can't simply define LARGE_OFF_T to be 9223372036854775807,
1112011120+ since some C++ compilers masquerading as C compilers
1112111121+ incorrectly reject 9223372036854775807. */
1112211122+#define LARGE_OFF_T (((off_t) 1 << 31 << 31) - 1 + ((off_t) 1 << 31 << 31))
1112311123+ int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
1112411124+ && LARGE_OFF_T % 2147483647 == 1)
1112511125+ ? 1 : -1];
1112611126+int
1112711127+main (void)
1112811128+{
1112911129+1113011130+ ;
1113111131+ return 0;
1113211132+}
1113311133+_ACEOF
1113411134+if ac_fn_c_try_compile "$LINENO"
1113511135+then :
1113611136+ ac_cv_sys_large_files=1; break
1113711137+fi
1113811138+rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext
1113911139+ ac_cv_sys_large_files=unknown
1114011140+ break
1060211141done
1114211142+fi
1114311143+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sys_large_files" >&5
1114411144+printf "%s\n" "$ac_cv_sys_large_files" >&6; }
1114511145+case $ac_cv_sys_large_files in #(
1114611146+ no | unknown) ;;
1114711147+ *)
1114811148+printf "%s\n" "#define _LARGE_FILES $ac_cv_sys_large_files" >>confdefs.h
1114911149+;;
1115011150+esac
1115111151+rm -rf conftest*
1115211152+ fi
1115311153+fi
106031115410604111551060511156# Allow builder to set path to look for mailboxes
1060610606-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for mailbox directory" >&5
1060710607-$as_echo_n "checking for mailbox directory... " >&6; }
1115711157+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for mailbox directory" >&5
1115811158+printf %s "checking for mailbox directory... " >&6; }
10608111591060911160# Check whether --with-mailbox-directory was given.
1061010610-if test "${with_mailbox_directory+set}" = set; then :
1116111161+if test ${with_mailbox_directory+y}
1116211162+then :
1061111163 withval=$with_mailbox_directory; mailbox_directory=$with_mailbox_directory
1061211164fi
106131116510614111661061511167if test "x$mailbox_directory" != "x"; then
10616111681061710617-cat >>confdefs.h <<_ACEOF
1061810618-#define MAILBOX_DIRECTORY "$mailbox_directory"
1061910619-_ACEOF
1116911169+printf "%s\n" "#define MAILBOX_DIRECTORY \"$mailbox_directory\"" >>confdefs.h
10620111701062110621- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $mailbox_directory" >&5
1062210622-$as_echo "$mailbox_directory" >&6; }
1117111171+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $mailbox_directory" >&5
1117211172+printf "%s\n" "$mailbox_directory" >&6; }
1062311173else
1062410624- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not set" >&5
1062510625-$as_echo "not set" >&6; }
1117411174+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: not set" >&5
1117511175+printf "%s\n" "not set" >&6; }
1062611176fi
10627111771062811178ac_config_files="$ac_config_files Makefile man/Makefile"
···1065411204 case $ac_val in #(
1065511205 *${as_nl}*)
1065611206 case $ac_var in #(
1065710657- *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1065810658-$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1120711207+ *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
1120811208+printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
1065911209 esac
1066011210 case $ac_var in #(
1066111211 _ | IFS | as_nl) ;; #(
···1068511235 /^ac_cv_env_/b end
1068611236 t clear
1068711237 :clear
1068810688- s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
1123811238+ s/^\([^=]*\)=\(.*[{}].*\)$/test ${\1+y} || &/
1068911239 t end
1069011240 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
1069111241 :end' >>confcache
1069211242if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
1069311243 if test -w "$cache_file"; then
1069411244 if test "x$cache_file" != "x/dev/null"; then
1069510695- { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
1069610696-$as_echo "$as_me: updating cache $cache_file" >&6;}
1124511245+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
1124611246+printf "%s\n" "$as_me: updating cache $cache_file" >&6;}
1069711247 if test ! -f "$cache_file" || test -h "$cache_file"; then
1069811248 cat confcache >"$cache_file"
1069911249 else
···1070711257 fi
1070811258 fi
1070911259 else
1071010710- { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
1071110711-$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
1126011260+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
1126111261+printf "%s\n" "$as_me: not updating unwritable cache $cache_file" >&6;}
1071211262 fi
1071311263fi
1071411264rm -f confcache
···1072511275for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
1072611276 # 1. Remove the extension, and $U if already installed.
1072711277 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
1072810728- ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
1127811278+ ac_i=`printf "%s\n" "$ac_i" | sed "$ac_script"`
1072911279 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
1073011280 # will be set to the directory where LIBOBJS objects are built.
1073111281 as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
···1073611286LTLIBOBJS=$ac_ltlibobjs
107371128710738112881073910739-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
1074010740-$as_echo_n "checking that generated files are newer than configure... " >&6; }
1128911289+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
1129011290+printf %s "checking that generated files are newer than configure... " >&6; }
1074111291 if test -n "$am_sleep_pid"; then
1074211292 # Hide warnings about reused PIDs.
1074311293 wait $am_sleep_pid 2>/dev/null
1074411294 fi
1074510745- { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
1074610746-$as_echo "done" >&6; }
1129511295+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: done" >&5
1129611296+printf "%s\n" "done" >&6; }
1074711297 if test -n "$EXEEXT"; then
1074811298 am__EXEEXT_TRUE=
1074911299 am__EXEEXT_FALSE='#'
···1076911319ac_write_fail=0
1077011320ac_clean_files_save=$ac_clean_files
1077111321ac_clean_files="$ac_clean_files $CONFIG_STATUS"
1077210772-{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
1077310773-$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
1132211322+{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
1132311323+printf "%s\n" "$as_me: creating $CONFIG_STATUS" >&6;}
1077411324as_write_fail=0
1077511325cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
1077611326#! $SHELL
···10793113431079411344# Be more Bourne compatible
1079511345DUALCASE=1; export DUALCASE # for MKS sh
1079610796-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
1134611346+as_nop=:
1134711347+if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1
1134811348+then :
1079711349 emulate sh
1079811350 NULLCMD=:
1079911351 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
1080011352 # is contrary to our usage. Disable this feature.
1080111353 alias -g '${1+"$@"}'='"$@"'
1080211354 setopt NO_GLOB_SUBST
1080310803-else
1135511355+else $as_nop
1080411356 case `(set -o) 2>/dev/null` in #(
1080511357 *posix*) :
1080611358 set -o posix ;; #(
···1081011362fi
108111136310812113641136511365+1136611366+# Reset variables that may have inherited troublesome values from
1136711367+# the environment.
1136811368+1136911369+# IFS needs to be set, to space, tab, and newline, in precisely that order.
1137011370+# (If _AS_PATH_WALK were called with IFS unset, it would have the
1137111371+# side effect of setting IFS to empty, thus disabling word splitting.)
1137211372+# Quoting is to prevent editors from complaining about space-tab.
1081311373as_nl='
1081411374'
1081511375export as_nl
1081610816-# Printing a long string crashes Solaris 7 /usr/bin/printf.
1081710817-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
1081810818-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
1081910819-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
1082010820-# Prefer a ksh shell builtin over an external printf program on Solaris,
1082110821-# but without wasting forks for bash or zsh.
1082210822-if test -z "$BASH_VERSION$ZSH_VERSION" \
1082310823- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
1082410824- as_echo='print -r --'
1082510825- as_echo_n='print -rn --'
1082610826-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
1082710827- as_echo='printf %s\n'
1082810828- as_echo_n='printf %s'
1082910829-else
1083010830- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
1083110831- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
1083210832- as_echo_n='/usr/ucb/echo -n'
1083310833- else
1083410834- as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
1083510835- as_echo_n_body='eval
1083610836- arg=$1;
1083710837- case $arg in #(
1083810838- *"$as_nl"*)
1083910839- expr "X$arg" : "X\\(.*\\)$as_nl";
1084010840- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
1084110841- esac;
1084210842- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
1084310843- '
1084410844- export as_echo_n_body
1084510845- as_echo_n='sh -c $as_echo_n_body as_echo'
1084610846- fi
1084710847- export as_echo_body
1084810848- as_echo='sh -c $as_echo_body as_echo'
1084910849-fi
1137611376+IFS=" "" $as_nl"
1137711377+1137811378+PS1='$ '
1137911379+PS2='> '
1138011380+PS4='+ '
1138111381+1138211382+# Ensure predictable behavior from utilities with locale-dependent output.
1138311383+LC_ALL=C
1138411384+export LC_ALL
1138511385+LANGUAGE=C
1138611386+export LANGUAGE
1138711387+1138811388+# We cannot yet rely on "unset" to work, but we need these variables
1138911389+# to be unset--not just set to an empty or harmless value--now, to
1139011390+# avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct
1139111391+# also avoids known problems related to "unset" and subshell syntax
1139211392+# in other old shells (e.g. bash 2.01 and pdksh 5.2.14).
1139311393+for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH
1139411394+do eval test \${$as_var+y} \
1139511395+ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
1139611396+done
1139711397+1139811398+# Ensure that fds 0, 1, and 2 are open.
1139911399+if (exec 3>&0) 2>/dev/null; then :; else exec 0</dev/null; fi
1140011400+if (exec 3>&1) 2>/dev/null; then :; else exec 1>/dev/null; fi
1140111401+if (exec 3>&2) ; then :; else exec 2>/dev/null; fi
10850114021085111403# The user is always right.
1085210852-if test "${PATH_SEPARATOR+set}" != set; then
1140411404+if ${PATH_SEPARATOR+false} :; then
1085311405 PATH_SEPARATOR=:
1085411406 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
1085511407 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
···1085811410fi
108591141110860114121086110861-# IFS
1086210862-# We need space, tab and new line, in precisely that order. Quoting is
1086310863-# there to prevent editors from complaining about space-tab.
1086410864-# (If _AS_PATH_WALK were called with IFS unset, it would disable word
1086510865-# splitting by setting IFS to empty value.)
1086610866-IFS=" "" $as_nl"
1086710867-1086811413# Find who we are. Look in the path if we contain no directory separator.
1086911414as_myself=
1087011415case $0 in #((
···1087311418for as_dir in $PATH
1087411419do
1087511420 IFS=$as_save_IFS
1087610876- test -z "$as_dir" && as_dir=.
1087710877- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
1142111421+ case $as_dir in #(((
1142211422+ '') as_dir=./ ;;
1142311423+ */) ;;
1142411424+ *) as_dir=$as_dir/ ;;
1142511425+ esac
1142611426+ test -r "$as_dir$0" && as_myself=$as_dir$0 && break
1087811427 done
1087911428IFS=$as_save_IFS
1088011429···1088611435 as_myself=$0
1088711436fi
1088811437if test ! -f "$as_myself"; then
1088910889- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
1143811438+ printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
1089011439 exit 1
1089111440fi
10892114411089310893-# Unset variables that we do not need and which cause bugs (e.g. in
1089410894-# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
1089510895-# suppresses any "Segmentation fault" message there. '((' could
1089610896-# trigger a bug in pdksh 5.2.14.
1089710897-for as_var in BASH_ENV ENV MAIL MAILPATH
1089810898-do eval test x\${$as_var+set} = xset \
1089910899- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
1090010900-done
1090110901-PS1='$ '
1090210902-PS2='> '
1090310903-PS4='+ '
1090410904-1090510905-# NLS nuisances.
1090610906-LC_ALL=C
1090710907-export LC_ALL
1090810908-LANGUAGE=C
1090910909-export LANGUAGE
1091010910-1091110911-# CDPATH.
1091210912-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
109131144210914114431091511444# as_fn_error STATUS ERROR [LINENO LOG_FD]
···1092211451 as_status=$1; test $as_status -eq 0 && as_status=1
1092311452 if test "$4"; then
1092411453 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1092510925- $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
1145411454+ printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
1092611455 fi
1092710927- $as_echo "$as_me: error: $2" >&2
1145611456+ printf "%s\n" "$as_me: error: $2" >&2
1092811457 as_fn_exit $as_status
1092911458} # as_fn_error
1145911459+109301146010931114611093211462# as_fn_set_status STATUS
···1095511485 { eval $1=; unset $1;}
1095611486}
1095711487as_unset=as_fn_unset
1148811488+1095811489# as_fn_append VAR VALUE
1095911490# ----------------------
1096011491# Append the text in VALUE to the end of the definition contained in VAR. Take
1096111492# advantage of any shell optimizations that allow amortized linear growth over
1096211493# repeated appends, instead of the typical quadratic growth present in naive
1096311494# implementations.
1096410964-if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
1149511495+if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null
1149611496+then :
1096511497 eval 'as_fn_append ()
1096611498 {
1096711499 eval $1+=\$2
1096811500 }'
1096910969-else
1150111501+else $as_nop
1097011502 as_fn_append ()
1097111503 {
1097211504 eval $1=\$$1\$2
···1097811510# Perform arithmetic evaluation on the ARGs, and store the result in the
1097911511# global $as_val. Take advantage of shells that can avoid forks. The arguments
1098011512# must be portable across $(()) and expr.
1098110981-if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
1151311513+if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null
1151411514+then :
1098211515 eval 'as_fn_arith ()
1098311516 {
1098411517 as_val=$(( $* ))
1098511518 }'
1098610986-else
1151911519+else $as_nop
1098711520 as_fn_arith ()
1098811521 {
1098911522 as_val=`expr "$@" || test $? -eq 1`
···1101411547$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
1101511548 X"$0" : 'X\(//\)$' \| \
1101611549 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
1101711017-$as_echo X/"$0" |
1155011550+printf "%s\n" X/"$0" |
1101811551 sed '/^.*\/\([^/][^/]*\)\/*$/{
1101911552 s//\1/
1102011553 q
···1103611569as_cr_digits='0123456789'
1103711570as_cr_alnum=$as_cr_Letters$as_cr_digits
11038115711157211572+1157311573+# Determine whether it's possible to make 'echo' print without a newline.
1157411574+# These variables are no longer used directly by Autoconf, but are AC_SUBSTed
1157511575+# for compatibility with existing Makefiles.
1103911576ECHO_C= ECHO_N= ECHO_T=
1104011577case `echo -n x` in #(((((
1104111578-n*)
···1104811585*)
1104911586 ECHO_N='-n';;
1105011587esac
1158811588+1158911589+# For backward compatibility with old third-party macros, we provide
1159011590+# the shell variables $as_echo and $as_echo_n. New code should use
1159111591+# AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively.
1159211592+as_echo='printf %s\n'
1159311593+as_echo_n='printf %s'
11051115941105211595rm -f conf$$ conf$$.exe conf$$.file
1105311596if test -d conf$$.dir; then
···1109011633 as_dirs=
1109111634 while :; do
1109211635 case $as_dir in #(
1109311093- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
1163611636+ *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
1109411637 *) as_qdir=$as_dir;;
1109511638 esac
1109611639 as_dirs="'$as_qdir' $as_dirs"
···1109911642 X"$as_dir" : 'X\(//\)[^/]' \| \
1110011643 X"$as_dir" : 'X\(//\)$' \| \
1110111644 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
1110211102-$as_echo X"$as_dir" |
1164511645+printf "%s\n" X"$as_dir" |
1110311646 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1110411647 s//\1/
1110511648 q
···1116111704# report actual input values of CONFIG_FILES etc. instead of their
1116211705# values after options handling.
1116311706ac_log="
1116411164-This file was extended by xbiff $as_me 1.0.4, which was
1116511165-generated by GNU Autoconf 2.69. Invocation command line was
1170711707+This file was extended by xbiff $as_me 1.0.5, which was
1170811708+generated by GNU Autoconf 2.71. Invocation command line was
11166117091116711710 CONFIG_FILES = $CONFIG_FILES
1116811711 CONFIG_HEADERS = $CONFIG_HEADERS
···1122411767Report bugs to <https://gitlab.freedesktop.org/xorg/app/xbiff/issues>."
11225117681122611769_ACEOF
1177011770+ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"`
1177111771+ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\''/g"`
1122711772cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1122811228-ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1177311773+ac_cs_config='$ac_cs_config_escaped'
1122911774ac_cs_version="\\
1123011230-xbiff config.status 1.0.4
1123111231-configured by $0, generated by GNU Autoconf 2.69,
1177511775+xbiff config.status 1.0.5
1177611776+configured by $0, generated by GNU Autoconf 2.71,
1123211777 with options \\"\$ac_cs_config\\"
11233117781123411234-Copyright (C) 2012 Free Software Foundation, Inc.
1177911779+Copyright (C) 2021 Free Software Foundation, Inc.
1123511780This config.status script is free software; the Free Software Foundation
1123611781gives unlimited permission to copy, distribute and modify it."
1123711782···1127111816 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
1127211817 ac_cs_recheck=: ;;
1127311818 --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
1127411274- $as_echo "$ac_cs_version"; exit ;;
1181911819+ printf "%s\n" "$ac_cs_version"; exit ;;
1127511820 --config | --confi | --conf | --con | --co | --c )
1127611276- $as_echo "$ac_cs_config"; exit ;;
1182111821+ printf "%s\n" "$ac_cs_config"; exit ;;
1127711822 --debug | --debu | --deb | --de | --d | -d )
1127811823 debug=: ;;
1127911824 --file | --fil | --fi | --f )
1128011825 $ac_shift
1128111826 case $ac_optarg in
1128211282- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
1182711827+ *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
1128311828 '') as_fn_error $? "missing file argument" ;;
1128411829 esac
1128511830 as_fn_append CONFIG_FILES " '$ac_optarg'"
···1128711832 --header | --heade | --head | --hea )
1128811833 $ac_shift
1128911834 case $ac_optarg in
1129011290- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
1183511835+ *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
1129111836 esac
1129211837 as_fn_append CONFIG_HEADERS " '$ac_optarg'"
1129311838 ac_need_defaults=false;;
···1129611841 as_fn_error $? "ambiguous option: \`$1'
1129711842Try \`$0 --help' for more information.";;
1129811843 --help | --hel | -h )
1129911299- $as_echo "$ac_cs_usage"; exit ;;
1184411844+ printf "%s\n" "$ac_cs_usage"; exit ;;
1130011845 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
1130111846 | -silent | --silent | --silen | --sile | --sil | --si | --s)
1130211847 ac_cs_silent=: ;;
···1132411869if \$ac_cs_recheck; then
1132511870 set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
1132611871 shift
1132711327- \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
1187211872+ \printf "%s\n" "running CONFIG_SHELL=$SHELL \$*" >&6
1132811873 CONFIG_SHELL='$SHELL'
1132911874 export CONFIG_SHELL
1133011875 exec "\$@"
···1133811883 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
1133911884## Running $as_me. ##
1134011885_ASBOX
1134111341- $as_echo "$ac_log"
1188611886+ printf "%s\n" "$ac_log"
1134211887} >&5
11343118881134411889_ACEOF
···1137111916# We use the long form for the default assignment because of an extremely
1137211917# bizarre bug on SunOS 4.1.3.
1137311918if $ac_need_defaults; then
1137411374- test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
1137511375- test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
1137611376- test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
1191911919+ test ${CONFIG_FILES+y} || CONFIG_FILES=$config_files
1192011920+ test ${CONFIG_HEADERS+y} || CONFIG_HEADERS=$config_headers
1192111921+ test ${CONFIG_COMMANDS+y} || CONFIG_COMMANDS=$config_commands
1137711922fi
11378119231137911924# Have a temporary directory for convenience. Make it in the build tree
···1170912254 esac ||
1171012255 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
1171112256 esac
1171211712- case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
1225712257+ case $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
1171312258 as_fn_append ac_file_inputs " '$ac_f'"
1171412259 done
1171512260···1171712262 # use $as_me), people would be surprised to read:
1171812263 # /* config.h. Generated by config.status. */
1171912264 configure_input='Generated from '`
1172011720- $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
1226512265+ printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
1172112266 `' by configure.'
1172212267 if test x"$ac_file" != x-; then
1172312268 configure_input="$ac_file. $configure_input"
1172411724- { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
1172511725-$as_echo "$as_me: creating $ac_file" >&6;}
1226912269+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
1227012270+printf "%s\n" "$as_me: creating $ac_file" >&6;}
1172612271 fi
1172712272 # Neutralize special characters interpreted by sed in replacement strings.
1172812273 case $configure_input in #(
1172912274 *\&* | *\|* | *\\* )
1173011730- ac_sed_conf_input=`$as_echo "$configure_input" |
1227512275+ ac_sed_conf_input=`printf "%s\n" "$configure_input" |
1173112276 sed 's/[\\\\&|]/\\\\&/g'`;; #(
1173212277 *) ac_sed_conf_input=$configure_input;;
1173312278 esac
···1174412289 X"$ac_file" : 'X\(//\)[^/]' \| \
1174512290 X"$ac_file" : 'X\(//\)$' \| \
1174612291 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
1174711747-$as_echo X"$ac_file" |
1229212292+printf "%s\n" X"$ac_file" |
1174812293 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1174912294 s//\1/
1175012295 q
···1176812313case "$ac_dir" in
1176912314.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
1177012315*)
1177111771- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
1231612316+ ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'`
1177212317 # A ".." for each directory in $ac_dir_suffix.
1177311773- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1231812318+ ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
1177412319 case $ac_top_builddir_sub in
1177512320 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
1177612321 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
···1183212377case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
1183312378*datarootdir*) ac_datarootdir_seen=yes;;
1183412379*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
1183511835- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
1183611836-$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
1238012380+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
1238112381+printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
1183712382_ACEOF
1183812383cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1183912384 ac_datarootdir_hack='
···1187712422 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
1187812423 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
1187912424 "$ac_tmp/out"`; test -z "$ac_out"; } &&
1188011880- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1242512425+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1188112426which seems to be undefined. Please make sure it is defined" >&5
1188211882-$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1242712427+printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
1188312428which seems to be undefined. Please make sure it is defined" >&2;}
11884124291188512430 rm -f "$ac_tmp/stdin"
···1189512440 #
1189612441 if test x"$ac_file" != x-; then
1189712442 {
1189811898- $as_echo "/* $configure_input */" \
1244312443+ printf "%s\n" "/* $configure_input */" >&1 \
1189912444 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
1190012445 } >"$ac_tmp/config.h" \
1190112446 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1190212447 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
1190311903- { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1190411904-$as_echo "$as_me: $ac_file is unchanged" >&6;}
1244812448+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
1244912449+printf "%s\n" "$as_me: $ac_file is unchanged" >&6;}
1190512450 else
1190612451 rm -f "$ac_file"
1190712452 mv "$ac_tmp/config.h" "$ac_file" \
1190812453 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
1190912454 fi
1191012455 else
1191111911- $as_echo "/* $configure_input */" \
1245612456+ printf "%s\n" "/* $configure_input */" >&1 \
1191212457 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
1191312458 || as_fn_error $? "could not create -" "$LINENO" 5
1191412459 fi
···1192812473 X"$_am_arg" : 'X\(//\)[^/]' \| \
1192912474 X"$_am_arg" : 'X\(//\)$' \| \
1193012475 X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
1193111931-$as_echo X"$_am_arg" |
1247612476+printf "%s\n" X"$_am_arg" |
1193212477 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1193312478 s//\1/
1193412479 q
···1194812493 s/.*/./; q'`/stamp-h$_am_stamp_count
1194912494 ;;
11950124951195111951- :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1195211952-$as_echo "$as_me: executing $ac_file commands" >&6;}
1249612496+ :C) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
1249712497+printf "%s\n" "$as_me: executing $ac_file commands" >&6;}
1195312498 ;;
1195412499 esac
1195512500···1198112526 X"$mf" : 'X\(//\)[^/]' \| \
1198212527 X"$mf" : 'X\(//\)$' \| \
1198312528 X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
1198411984-$as_echo X"$mf" |
1252912529+printf "%s\n" X"$mf" |
1198512530 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1198612531 s//\1/
1198712532 q
···1202312568 X"$file" : 'X\(//\)[^/]' \| \
1202412569 X"$file" : 'X\(//\)$' \| \
1202512570 X"$file" : 'X\(/\)' \| . 2>/dev/null ||
1202612026-$as_echo X"$file" |
1257112571+printf "%s\n" X"$file" |
1202712572 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
1202812573 s//\1/
1202912574 q
···1208212627 $ac_cs_success || as_fn_exit 1
1208312628fi
1208412629if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
1208512085- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
1208612086-$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
1263012630+ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
1263112631+printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
1208712632fi
1208812633
+6-3
app/xbiff/configure.ac
···23232424# Initialize Autoconf
2525AC_PREREQ([2.60])
2626-AC_INIT([xbiff], [1.0.4],
2626+AC_INIT([xbiff], [1.0.5],
2727 [https://gitlab.freedesktop.org/xorg/app/xbiff/issues], [xbiff])
2828AC_CONFIG_SRCDIR([Makefile.am])
2929AC_CONFIG_HEADERS([config.h])
30303131# Initialize Automake
3232-AM_INIT_AUTOMAKE([foreign dist-bzip2])
3232+AM_INIT_AUTOMAKE([foreign dist-xz])
33333434# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
3535m4_ifndef([XORG_MACROS_VERSION],
···3838XORG_DEFAULT_OPTIONS
39394040# Checks for pkg-config packages
4141-PKG_CHECK_MODULES(XBIFF, xaw7 xmu xbitmaps xext x11)
4141+PKG_CHECK_MODULES(XBIFF, [xaw7 xmu xt >= 1.1 xbitmaps xext x11 xproto >= 7.0.25])
42424343# Checks for headers
4444AC_CHECK_HEADERS([paths.h])
4545+4646+# Checks for typedefs, structures, and compiler characteristics.
4747+AC_SYS_LARGEFILE
45484649# Allow builder to set path to look for mailboxes
4750AC_MSG_CHECKING([for mailbox directory])
+214-200
app/xbiff/install-sh
···11#!/bin/sh
22# install - install a program, script, or datafile
3344-scriptversion=2011-11-20.07; # UTC
44+scriptversion=2020-11-14.01; # UTC
5566# This originates from X11R5 (mit/util/scripts/install.sh), which was
77# later released in X11R6 (xc/config/util/install.sh) with the
···4141# This script is compatible with the BSD install script, but was written
4242# from scratch.
43434444+tab=' '
4445nl='
4546'
4646-IFS=" "" $nl"
4747+IFS=" $tab$nl"
47484848-# set DOITPROG to echo to test this script
4949+# Set DOITPROG to "echo" to test this script.
49505050-# Don't use :- since 4.3BSD and earlier shells don't like it.
5151doit=${DOITPROG-}
5252-if test -z "$doit"; then
5353- doit_exec=exec
5454-else
5555- doit_exec=$doit
5656-fi
5252+doit_exec=${doit:-exec}
57535854# Put in absolute file names if you don't have them in your path;
5955# or use environment vars.
···6864rmprog=${RMPROG-rm}
6965stripprog=${STRIPPROG-strip}
70667171-posix_glob='?'
7272-initialize_posix_glob='
7373- test "$posix_glob" != "?" || {
7474- if (set -f) 2>/dev/null; then
7575- posix_glob=
7676- else
7777- posix_glob=:
7878- fi
7979- }
8080-'
8181-8267posix_mkdir=
83688469# Desired mode of installed file.
8570mode=0755
86717272+# Create dirs (including intermediate dirs) using mode 755.
7373+# This is like GNU 'install' as of coreutils 8.32 (2020).
7474+mkdir_umask=22
7575+7676+backupsuffix=
8777chgrpcmd=
8878chmodcmd=$chmodprog
8979chowncmd=
···9787dst_arg=
98889989copy_on_change=false
100100-no_target_directory=
9090+is_target_a_directory=possibly
1019110292usage="\
10393Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE
···114104 --version display version info and exit.
115105116106 -c (ignored)
117117- -C install only if different (preserve the last data modification time)
107107+ -C install only if different (preserve data modification time)
118108 -d create directories instead of installing files.
119109 -g GROUP $chgrpprog installed files to GROUP.
120110 -m MODE $chmodprog installed files to MODE.
121111 -o USER $chownprog installed files to USER.
112112+ -p pass -p to $cpprog.
122113 -s $stripprog installed files.
114114+ -S SUFFIX attempt to back up existing files, with suffix SUFFIX.
123115 -t DIRECTORY install into DIRECTORY.
124116 -T report an error if DSTFILE is a directory.
125117126118Environment variables override the default commands:
127119 CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG
128120 RMPROG STRIPPROG
121121+122122+By default, rm is invoked with -f; when overridden with RMPROG,
123123+it's up to you to specify -f if you want it.
124124+125125+If -S is not specified, no backups are attempted.
126126+127127+Email bug reports to bug-automake@gnu.org.
128128+Automake home page: https://www.gnu.org/software/automake/
129129"
130130131131while test $# -ne 0; do
···137137 -d) dir_arg=true;;
138138139139 -g) chgrpcmd="$chgrpprog $2"
140140- shift;;
140140+ shift;;
141141142142 --help) echo "$usage"; exit $?;;
143143144144 -m) mode=$2
145145- case $mode in
146146- *' '* | *' '* | *'
147147-'* | *'*'* | *'?'* | *'['*)
148148- echo "$0: invalid mode: $mode" >&2
149149- exit 1;;
150150- esac
151151- shift;;
145145+ case $mode in
146146+ *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*)
147147+ echo "$0: invalid mode: $mode" >&2
148148+ exit 1;;
149149+ esac
150150+ shift;;
152151153152 -o) chowncmd="$chownprog $2"
154154- shift;;
153153+ shift;;
154154+155155+ -p) cpprog="$cpprog -p";;
155156156157 -s) stripcmd=$stripprog;;
157158158158- -t) dst_arg=$2
159159- # Protect names problematic for 'test' and other utilities.
160160- case $dst_arg in
161161- -* | [=\(\)!]) dst_arg=./$dst_arg;;
162162- esac
163163- shift;;
159159+ -S) backupsuffix="$2"
160160+ shift;;
164161165165- -T) no_target_directory=true;;
162162+ -t)
163163+ is_target_a_directory=always
164164+ dst_arg=$2
165165+ # Protect names problematic for 'test' and other utilities.
166166+ case $dst_arg in
167167+ -* | [=\(\)!]) dst_arg=./$dst_arg;;
168168+ esac
169169+ shift;;
170170+171171+ -T) is_target_a_directory=never;;
166172167173 --version) echo "$0 $scriptversion"; exit $?;;
168174169169- --) shift
170170- break;;
175175+ --) shift
176176+ break;;
171177172172- -*) echo "$0: invalid option: $1" >&2
173173- exit 1;;
178178+ -*) echo "$0: invalid option: $1" >&2
179179+ exit 1;;
174180175181 *) break;;
176182 esac
177183 shift
178184done
185185+186186+# We allow the use of options -d and -T together, by making -d
187187+# take the precedence; this is for compatibility with GNU install.
188188+189189+if test -n "$dir_arg"; then
190190+ if test -n "$dst_arg"; then
191191+ echo "$0: target directory not allowed when installing a directory." >&2
192192+ exit 1
193193+ fi
194194+fi
179195180196if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then
181197 # When -d is used, all remaining arguments are directories to create.
···208224fi
209225210226if test -z "$dir_arg"; then
227227+ if test $# -gt 1 || test "$is_target_a_directory" = always; then
228228+ if test ! -d "$dst_arg"; then
229229+ echo "$0: $dst_arg: Is not a directory." >&2
230230+ exit 1
231231+ fi
232232+ fi
233233+fi
234234+235235+if test -z "$dir_arg"; then
211236 do_exit='(exit $ret); exit $ret'
212237 trap "ret=129; $do_exit" 1
213238 trap "ret=130; $do_exit" 2
···223248224249 *[0-7])
225250 if test -z "$stripcmd"; then
226226- u_plus_rw=
251251+ u_plus_rw=
227252 else
228228- u_plus_rw='% 200'
253253+ u_plus_rw='% 200'
229254 fi
230255 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
231256 *)
232257 if test -z "$stripcmd"; then
233233- u_plus_rw=
258258+ u_plus_rw=
234259 else
235235- u_plus_rw=,u+rw
260260+ u_plus_rw=,u+rw
236261 fi
237262 cp_umask=$mode$u_plus_rw;;
238263 esac
···250275 dstdir=$dst
251276 test -d "$dstdir"
252277 dstdir_status=$?
278278+ # Don't chown directories that already exist.
279279+ if test $dstdir_status = 0; then
280280+ chowncmd=""
281281+ fi
253282 else
254283255284 # Waiting for this to be detected by the "$cpprog $src $dsttmp" command
···266295 fi
267296 dst=$dst_arg
268297269269- # If destination is a directory, append the input filename; won't work
270270- # if double slashes aren't ignored.
298298+ # If destination is a directory, append the input filename.
271299 if test -d "$dst"; then
272272- if test -n "$no_target_directory"; then
273273- echo "$0: $dst_arg: Is a directory" >&2
274274- exit 1
300300+ if test "$is_target_a_directory" = never; then
301301+ echo "$0: $dst_arg: Is a directory" >&2
302302+ exit 1
275303 fi
276304 dstdir=$dst
277277- dst=$dstdir/`basename "$src"`
305305+ dstbase=`basename "$src"`
306306+ case $dst in
307307+ */) dst=$dst$dstbase;;
308308+ *) dst=$dst/$dstbase;;
309309+ esac
278310 dstdir_status=0
279311 else
280280- # Prefer dirname, but fall back on a substitute if dirname fails.
281281- dstdir=`
282282- (dirname "$dst") 2>/dev/null ||
283283- expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
284284- X"$dst" : 'X\(//\)[^/]' \| \
285285- X"$dst" : 'X\(//\)$' \| \
286286- X"$dst" : 'X\(/\)' \| . 2>/dev/null ||
287287- echo X"$dst" |
288288- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
289289- s//\1/
290290- q
291291- }
292292- /^X\(\/\/\)[^/].*/{
293293- s//\1/
294294- q
295295- }
296296- /^X\(\/\/\)$/{
297297- s//\1/
298298- q
299299- }
300300- /^X\(\/\).*/{
301301- s//\1/
302302- q
303303- }
304304- s/.*/./; q'
305305- `
306306-312312+ dstdir=`dirname "$dst"`
307313 test -d "$dstdir"
308314 dstdir_status=$?
309315 fi
310316 fi
317317+318318+ case $dstdir in
319319+ */) dstdirslash=$dstdir;;
320320+ *) dstdirslash=$dstdir/;;
321321+ esac
311322312323 obsolete_mkdir_used=false
313324314325 if test $dstdir_status != 0; then
315326 case $posix_mkdir in
316327 '')
317317- # Create intermediate dirs using mode 755 as modified by the umask.
318318- # This is like FreeBSD 'install' as of 1997-10-28.
319319- umask=`umask`
320320- case $stripcmd.$umask in
321321- # Optimize common cases.
322322- *[2367][2367]) mkdir_umask=$umask;;
323323- .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;;
328328+ # With -d, create the new directory with the user-specified mode.
329329+ # Otherwise, rely on $mkdir_umask.
330330+ if test -n "$dir_arg"; then
331331+ mkdir_mode=-m$mode
332332+ else
333333+ mkdir_mode=
334334+ fi
335335+336336+ posix_mkdir=false
337337+ # The $RANDOM variable is not portable (e.g., dash). Use it
338338+ # here however when possible just to lower collision chance.
339339+ tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
324340325325- *[0-7])
326326- mkdir_umask=`expr $umask + 22 \
327327- - $umask % 100 % 40 + $umask % 20 \
328328- - $umask % 10 % 4 + $umask % 2
329329- `;;
330330- *) mkdir_umask=$umask,go-w;;
331331- esac
341341+ trap '
342342+ ret=$?
343343+ rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null
344344+ exit $ret
345345+ ' 0
332346333333- # With -d, create the new directory with the user-specified mode.
334334- # Otherwise, rely on $mkdir_umask.
335335- if test -n "$dir_arg"; then
336336- mkdir_mode=-m$mode
347347+ # Because "mkdir -p" follows existing symlinks and we likely work
348348+ # directly in world-writeable /tmp, make sure that the '$tmpdir'
349349+ # directory is successfully created first before we actually test
350350+ # 'mkdir -p'.
351351+ if (umask $mkdir_umask &&
352352+ $mkdirprog $mkdir_mode "$tmpdir" &&
353353+ exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
354354+ then
355355+ if test -z "$dir_arg" || {
356356+ # Check for POSIX incompatibilities with -m.
357357+ # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
358358+ # other-writable bit of parent directory when it shouldn't.
359359+ # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
360360+ test_tmpdir="$tmpdir/a"
361361+ ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
362362+ case $ls_ld_tmpdir in
363363+ d????-?r-*) different_mode=700;;
364364+ d????-?--*) different_mode=755;;
365365+ *) false;;
366366+ esac &&
367367+ $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
368368+ ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
369369+ test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
370370+ }
371371+ }
372372+ then posix_mkdir=:
373373+ fi
374374+ rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
337375 else
338338- mkdir_mode=
376376+ # Remove any dirs left behind by ancient mkdir implementations.
377377+ rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
339378 fi
340340-341341- posix_mkdir=false
342342- case $umask in
343343- *[123567][0-7][0-7])
344344- # POSIX mkdir -p sets u+wx bits regardless of umask, which
345345- # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
346346- ;;
347347- *)
348348- tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
349349- trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
350350-351351- if (umask $mkdir_umask &&
352352- exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
353353- then
354354- if test -z "$dir_arg" || {
355355- # Check for POSIX incompatibilities with -m.
356356- # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
357357- # other-writable bit of parent directory when it shouldn't.
358358- # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
359359- ls_ld_tmpdir=`ls -ld "$tmpdir"`
360360- case $ls_ld_tmpdir in
361361- d????-?r-*) different_mode=700;;
362362- d????-?--*) different_mode=755;;
363363- *) false;;
364364- esac &&
365365- $mkdirprog -m$different_mode -p -- "$tmpdir" && {
366366- ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
367367- test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
368368- }
369369- }
370370- then posix_mkdir=:
371371- fi
372372- rmdir "$tmpdir/d" "$tmpdir"
373373- else
374374- # Remove any dirs left behind by ancient mkdir implementations.
375375- rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
376376- fi
377377- trap '' 0;;
378378- esac;;
379379+ trap '' 0;;
379380 esac
380381381382 if
382383 $posix_mkdir && (
383383- umask $mkdir_umask &&
384384- $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
384384+ umask $mkdir_umask &&
385385+ $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir"
385386 )
386387 then :
387388 else
388389389389- # The umask is ridiculous, or mkdir does not conform to POSIX,
390390+ # mkdir does not conform to POSIX,
390391 # or it failed possibly due to a race condition. Create the
391392 # directory the slow way, step by step, checking for races as we go.
392393393394 case $dstdir in
394394- /*) prefix='/';;
395395- [-=\(\)!]*) prefix='./';;
396396- *) prefix='';;
395395+ /*) prefix='/';;
396396+ [-=\(\)!]*) prefix='./';;
397397+ *) prefix='';;
397398 esac
398398-399399- eval "$initialize_posix_glob"
400399401400 oIFS=$IFS
402401 IFS=/
403403- $posix_glob set -f
402402+ set -f
404403 set fnord $dstdir
405404 shift
406406- $posix_glob set +f
405405+ set +f
407406 IFS=$oIFS
408407409408 prefixes=
410409411410 for d
412411 do
413413- test X"$d" = X && continue
412412+ test X"$d" = X && continue
414413415415- prefix=$prefix$d
416416- if test -d "$prefix"; then
417417- prefixes=
418418- else
419419- if $posix_mkdir; then
420420- (umask=$mkdir_umask &&
421421- $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
422422- # Don't fail if two instances are running concurrently.
423423- test -d "$prefix" || exit 1
424424- else
425425- case $prefix in
426426- *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
427427- *) qprefix=$prefix;;
428428- esac
429429- prefixes="$prefixes '$qprefix'"
430430- fi
431431- fi
432432- prefix=$prefix/
414414+ prefix=$prefix$d
415415+ if test -d "$prefix"; then
416416+ prefixes=
417417+ else
418418+ if $posix_mkdir; then
419419+ (umask $mkdir_umask &&
420420+ $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break
421421+ # Don't fail if two instances are running concurrently.
422422+ test -d "$prefix" || exit 1
423423+ else
424424+ case $prefix in
425425+ *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
426426+ *) qprefix=$prefix;;
427427+ esac
428428+ prefixes="$prefixes '$qprefix'"
429429+ fi
430430+ fi
431431+ prefix=$prefix/
433432 done
434433435434 if test -n "$prefixes"; then
436436- # Don't fail if two instances are running concurrently.
437437- (umask $mkdir_umask &&
438438- eval "\$doit_exec \$mkdirprog $prefixes") ||
439439- test -d "$dstdir" || exit 1
440440- obsolete_mkdir_used=true
435435+ # Don't fail if two instances are running concurrently.
436436+ (umask $mkdir_umask &&
437437+ eval "\$doit_exec \$mkdirprog $prefixes") ||
438438+ test -d "$dstdir" || exit 1
439439+ obsolete_mkdir_used=true
441440 fi
442441 fi
443442 fi
···450449 else
451450452451 # Make a couple of temp file names in the proper directory.
453453- dsttmp=$dstdir/_inst.$$_
454454- rmtmp=$dstdir/_rm.$$_
452452+ dsttmp=${dstdirslash}_inst.$$_
453453+ rmtmp=${dstdirslash}_rm.$$_
455454456455 # Trap to clean up those temp files at exit.
457456 trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
458457459458 # Copy the file name to the temp name.
460460- (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") &&
459459+ (umask $cp_umask &&
460460+ { test -z "$stripcmd" || {
461461+ # Create $dsttmp read-write so that cp doesn't create it read-only,
462462+ # which would cause strip to fail.
463463+ if test -z "$doit"; then
464464+ : >"$dsttmp" # No need to fork-exec 'touch'.
465465+ else
466466+ $doit touch "$dsttmp"
467467+ fi
468468+ }
469469+ } &&
470470+ $doit_exec $cpprog "$src" "$dsttmp") &&
461471462472 # and set any options; do chmod last to preserve setuid bits.
463473 #
···472482473483 # If -C, don't bother to copy if it wouldn't change the file.
474484 if $copy_on_change &&
475475- old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
476476- new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
477477-478478- eval "$initialize_posix_glob" &&
479479- $posix_glob set -f &&
485485+ old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` &&
486486+ new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` &&
487487+ set -f &&
480488 set X $old && old=:$2:$4:$5:$6 &&
481489 set X $new && new=:$2:$4:$5:$6 &&
482482- $posix_glob set +f &&
483483-490490+ set +f &&
484491 test "$old" = "$new" &&
485492 $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1
486493 then
487494 rm -f "$dsttmp"
488495 else
496496+ # If $backupsuffix is set, and the file being installed
497497+ # already exists, attempt a backup. Don't worry if it fails,
498498+ # e.g., if mv doesn't support -f.
499499+ if test -n "$backupsuffix" && test -f "$dst"; then
500500+ $doit $mvcmd -f "$dst" "$dst$backupsuffix" 2>/dev/null
501501+ fi
502502+489503 # Rename the file to the real destination.
490504 $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null ||
491505···493507 # to itself, or perhaps because mv is so ancient that it does not
494508 # support -f.
495509 {
496496- # Now remove or move aside any old file at destination location.
497497- # We try this two ways since rm can't unlink itself on some
498498- # systems and the destination file might be busy for other
499499- # reasons. In this case, the final cleanup might fail but the new
500500- # file should still install successfully.
501501- {
502502- test ! -f "$dst" ||
503503- $doit $rmcmd -f "$dst" 2>/dev/null ||
504504- { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
505505- { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }
506506- } ||
507507- { echo "$0: cannot unlink or rename $dst" >&2
508508- (exit 1); exit 1
509509- }
510510- } &&
510510+ # Now remove or move aside any old file at destination location.
511511+ # We try this two ways since rm can't unlink itself on some
512512+ # systems and the destination file might be busy for other
513513+ # reasons. In this case, the final cleanup might fail but the new
514514+ # file should still install successfully.
515515+ {
516516+ test ! -f "$dst" ||
517517+ $doit $rmcmd "$dst" 2>/dev/null ||
518518+ { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null &&
519519+ { $doit $rmcmd "$rmtmp" 2>/dev/null; :; }
520520+ } ||
521521+ { echo "$0: cannot unlink or rename $dst" >&2
522522+ (exit 1); exit 1
523523+ }
524524+ } &&
511525512512- # Now rename the file to the real destination.
513513- $doit $mvcmd "$dsttmp" "$dst"
526526+ # Now rename the file to the real destination.
527527+ $doit $mvcmd "$dsttmp" "$dst"
514528 }
515529 fi || exit 1
516530···519533done
520534521535# Local variables:
522522-# eval: (add-hook 'write-file-hooks 'time-stamp)
536536+# eval: (add-hook 'before-save-hook 'time-stamp)
523537# time-stamp-start: "scriptversion="
524538# time-stamp-format: "%:y-%02m-%02d.%02H"
525525-# time-stamp-time-zone: "UTC"
539539+# time-stamp-time-zone: "UTC0"
526540# time-stamp-end: "; # UTC"
527541# End:
···7777.B \-shape
7878This option indicates that the mailbox window should be shaped if masks for
7979the empty or full images are given.
8080+.TP 8
8181+.B \-version
8282+This option indicates that \fIxbiff\fP should print its version and exit.
8083.PP
8184The following standard X Toolkit command line arguments are commonly used with
8285.I xbiff:
+45-19
app/xbiff/xbiff.c
···3030*/
3131/* $XFree86: xc/programs/xbiff/xbiff.c,v 1.3tsi Exp $ */
32323333+#ifdef HAVE_CONFIG_H
3434+#include "config.h"
3535+#endif
3636+3337#include <stdio.h>
3438#include <stdlib.h>
3539#include <X11/Xatom.h>
···6468 { "quit", quit },
6569};
66706767-static void Usage (void)
7171+static void _X_NORETURN _X_COLD
7272+Usage (int exitval)
6873{
6969- static const char *help_message[] = {
7070-"where options include:",
7171-" -display host:dpy X server to contact",
7272-" -geometry geom size of mailbox",
7373-" -file file file to watch",
7474-" -update seconds how often to check for mail",
7575-" -volume percentage how loud to ring the bell",
7676-" -bg color background color",
7777-" -fg color foreground color",
7878-" -rv reverse video",
7979-" -shape shape the window",
8080-NULL};
8181- const char **cpp;
7474+ const char *help_message =
7575+"where options include:\n"
7676+" -display host:dpy X server to contact\n"
7777+" -geometry geom size of mailbox\n"
7878+" -file file file to watch\n"
7979+" -update seconds how often to check for mail\n"
8080+" -volume percentage how loud to ring the bell\n"
8181+" -bg color background color\n"
8282+" -fg color foreground color\n"
8383+" -rv reverse video\n"
8484+" -shape shape the window\n"
8585+" -help print usage info and exit\n"
8686+" -version print version info and exit\n";
82878388 fprintf (stderr, "usage: %s [-options ...]\n", ProgramName);
8484- for (cpp = help_message; *cpp; cpp++)
8585- fprintf (stderr, "%s\n", *cpp);
8686- fprintf (stderr, "\n");
8787- exit (1);
8989+ fprintf (stderr, "%s\n", help_message);
9090+ exit (exitval);
8891}
89929093···9810199102 XtSetLanguageProc(NULL, (XtLanguageProc) NULL, NULL);
100103104104+ /* Handle args that don't require opening a display */
105105+ for (int n = 1; n < argc; n++) {
106106+ const char *argn = argv[n];
107107+ /* accept single or double dash for -help & -version */
108108+ if (argn[0] == '-' && argn[1] == '-') {
109109+ argn++;
110110+ }
111111+ if (strcmp(argn, "-help") == 0) {
112112+ Usage(0);
113113+ }
114114+ if (strcmp(argn, "-version") == 0) {
115115+ puts(PACKAGE_STRING);
116116+ exit(0);
117117+ }
118118+ }
119119+101120 toplevel = XtAppInitialize(&xtcontext, "XBiff", options, XtNumber (options),
102121 &argc, argv, NULL, NULL, 0);
103103- if (argc != 1) Usage ();
122122+ if (argc != 1) {
123123+ fputs("Unknown argument(s):", stderr);
124124+ for (int n = 1; n < argc; n++) {
125125+ fprintf(stderr, " %s", argv[n]);
126126+ }
127127+ fputs("\n\n", stderr);
128128+ Usage(1);
129129+ }
104130105131 /*
106132 * This is a hack so that f.delete will do something useful in this